import * as mars3d from "mars3d"
|
|
export let map // mars3d.Map三维地图对象
|
export let graphicLayer // 矢量图层对象
|
|
export const eventTarget = new mars3d.BaseClass() // 事件对象,用于抛出事件到面板中
|
|
// 需要覆盖config.json中地图属性参数(当前示例框架中自动处理合并)
|
export const mapOptions = {
|
scene: {
|
center: { lat: 31.516143, lng: 117.282937, alt: 46242, heading: 2, pitch: -49 }
|
}
|
}
|
|
/**
|
* 初始化地图业务,生命周期钩子函数(必须)
|
* 框架在地图初始化完成后自动调用该函数
|
* @param {mars3d.Map} mapInstance 地图对象
|
* @returns {void} 无
|
*/
|
export function onMounted(mapInstance) {
|
map = mapInstance // 记录map
|
|
map.fixedLight = true // 固定光照,避免gltf模型随时间存在亮度不一致。
|
|
graphicLayer = new mars3d.layer.GraphicLayer({
|
hasEdit: true,
|
isAutoEditing: true // 绘制完成后是否自动激活编辑
|
})
|
map.addLayer(graphicLayer)
|
|
// 加载模型列表
|
const configUrl = "//data.mars3d.cn/gltf/list.json"
|
mars3d.Util.fetchJson({ url: configUrl })
|
.then(function (data) {
|
eventTarget.fire("loadModelList", { data })
|
})
|
.catch(function (error) {
|
console.log("加载JSON出错", error)
|
})
|
bindLayerEvent()
|
}
|
|
/**
|
* 释放当前地图业务的生命周期函数
|
* @returns {void} 无
|
*/
|
export function onUnmounted() {
|
map = null
|
deleteAll()
|
}
|
|
// 绘制模型
|
export function startDrawModel(style) {
|
graphicLayer.startDraw({
|
type: "model",
|
drawShow: true, // 绘制时,是否显示模型,可避免在3dtiles上拾取坐标存在问题。
|
style: style
|
})
|
}
|
|
// 在图层级处理一些事物
|
function bindLayerEvent() {
|
// 在layer上绑定监听事件
|
graphicLayer.on(mars3d.EventType.click, function (event) {
|
console.log("监听layer,单击了矢量对象", event)
|
})
|
/* graphicLayer.on(mars3d.EventType.mouseOver, function (event) {
|
console.log("监听layer,鼠标移入了矢量对象", event)
|
})
|
graphicLayer.on(mars3d.EventType.mouseOut, function (event) {
|
console.log("监听layer,鼠标移出了矢量对象", event)
|
}) */
|
|
// 数据编辑相关事件, 用于属性弹窗的交互
|
graphicLayer.on(mars3d.EventType.drawCreated, function (e) {
|
eventTarget.fire("graphicEditor-start", e)
|
})
|
graphicLayer.on(
|
[mars3d.EventType.editStart, mars3d.EventType.editMovePoint, mars3d.EventType.editStyle, mars3d.EventType.editRemovePoint],
|
function (e) {
|
eventTarget.fire("graphicEditor-update", e)
|
}
|
)
|
graphicLayer.on([mars3d.EventType.editStop, mars3d.EventType.removeGraphic], function (e) {
|
eventTarget.fire("graphicEditor-stop", e)
|
})
|
}
|
|
// 深度检测
|
export function chkTestTerrain(val) {
|
map.scene.globe.depthTestAgainstTerrain = val
|
}
|
|
// 仅在模型上编辑
|
export function onlyPickModelPosition(val) {
|
map.onlyPickModelPosition = val
|
}
|
|
export function deleteAll() {
|
graphicLayer.clear()
|
}
|
|
export function changeItemImage(item) {
|
return mars3d.Util.template(item.image, map.options.templateValues)
|
}
|
|
export function changeItemUrl(item) {
|
return mars3d.Util.template(item.style.url, map.options.templateValues)
|
}
|
|
/**
|
*打开geojson文件
|
*
|
* @export
|
* @param {FileInfo} file 文件名称
|
* @returns {void} 无
|
*/
|
export function openGeoJSON(file) {
|
const fileName = file.name
|
const fileType = fileName?.substring(fileName.lastIndexOf(".") + 1, fileName.length).toLowerCase()
|
|
if (fileType === "json" || fileType === "geojson") {
|
const reader = new FileReader()
|
reader.readAsText(file, "UTF-8")
|
reader.onloadend = function (e) {
|
const json = this.result
|
graphicLayer.loadGeoJSON(json, {
|
flyTo: true
|
})
|
}
|
} else {
|
globalMsg("暂不支持 " + fileType + " 文件类型的数据!")
|
}
|
}
|
|
// 保存文件
|
export function saveGeoJSON() {
|
if (graphicLayer.length === 0) {
|
globalMsg("当前没有标注任何数据,无需保存!")
|
return
|
}
|
const geojson = graphicLayer.toGeoJSON()
|
mars3d.Util.downloadFile("模型标绘.json", JSON.stringify(geojson))
|
}
|