import * as mars3d from "mars3d" export let map // mars3d.Map三维地图对象 export let graphicLayer // 矢量图层对象 export const eventTarget = new mars3d.BaseClass() /** * 初始化地图业务,生命周期钩子函数(必须) * 框架在地图初始化完成后自动调用该函数 * @param {mars3d.Map} mapInstance 地图对象 * @returns {void} 无 */ export function onMounted(mapInstance) { map = mapInstance // 记录map // 创建矢量数据图层 graphicLayer = new mars3d.layer.GraphicLayer() map.addLayer(graphicLayer) bindLayerEvent() // 对图层绑定相关事件 bindLayerPopup() // 在图层上绑定popup,对所有加到这个图层的矢量数据都生效 bindLayerContextMenu() // 在图层绑定右键菜单,对所有加到这个图层的矢量数据都生效 // 加一些演示数据 addDemoGraphic1(graphicLayer) addDemoGraphic2(graphicLayer) addDemoGraphic3(graphicLayer) addDemoGraphic4(graphicLayer) } /** * 释放当前地图业务的生命周期函数 * @returns {void} 无 */ export function onUnmounted() { map = null graphicLayer.remove() graphicLayer = null } function addDemoGraphic1(graphicLayer) { const graphic = new mars3d.graphic.BillboardEntity({ name: "根据视距缩放图标", position: new mars3d.LngLatPoint(116.301798, 30.835848, 915), style: { image: "img/marker/mark3.png", scale: 1, horizontalOrigin: Cesium.HorizontalOrigin.CENTER, verticalOrigin: Cesium.VerticalOrigin.BOTTOM, scaleByDistance: new Cesium.NearFarScalar(10000, 1.0, 500000, 0.1), label: { text: "我是原始的", font_size: 18, color: "#ffffff", pixelOffsetY: -40, distanceDisplayCondition: true, distanceDisplayCondition_far: 500000, distanceDisplayCondition_near: 0 } }, attr: { remark: "示例1" } }) graphicLayer.addGraphic(graphic) // 演示个性化处理graphic initGraphicManager(graphic) // graphic转json,clone一个对象 const json = graphic.toJSON() console.log("转换后的json", json) json.position = [116.33493, 30.822064, 644.43] // 新的坐标 json.style.label = json.style.label || {} json.style.label.text = "我是转换后生成的" graphicLayer.addGraphic(json) // 支持直接加json,内部转为graphic } function addDemoGraphic2(graphicLayer) { const graphic = new mars3d.graphic.BillboardEntity({ name: "贴地图标", position: [116.39224, 30.902853], style: { image: "img/marker/di3.png", scale: 0.5, horizontalOrigin: Cesium.HorizontalOrigin.CENTER, verticalOrigin: Cesium.VerticalOrigin.BOTTOM, clampToGround: true, label: { text: "鼠标移入会放大", pixelOffsetY: -50 }, // 高亮时的样式(默认为鼠标移入,也可以指定type:'click'单击高亮),构造后也可以openHighlight、closeHighlight方法来手动调用 highlight: { scale: 0.8 } }, attr: { remark: "示例2" } }) graphicLayer.addGraphic(graphic) } function addDemoGraphic3(graphicLayer) { const graphic = new mars3d.graphic.BillboardEntity({ name: "绿色自定义图标", position: [116.340443, 30.882935, 389.88], style: { image: "img/marker/symbol1.png", scale: 1, pixelOffset: new Cesium.Cartesian2(0, -6) // 偏移量 }, attr: { remark: "示例3" } }) graphicLayer.addGraphic(graphic) } function addDemoGraphic4(graphicLayer) { const propertyFJ = getSampledPositionProperty([ [116.223119, 30.933365, 487.4], [116.313957, 30.861597, 417.7], [116.333367, 30.847406, 402], [116.392083, 30.852692, 616], [116.413892, 30.869853, 486.4], [116.515749, 30.868033, 669.6] ]) const graphic = new mars3d.graphic.BillboardEntity({ position: propertyFJ, orientation: new Cesium.VelocityOrientationProperty(propertyFJ), style: { image: "img/marker/huojian.svg", scale: 0.5, alignedAxis: new Cesium.VelocityVectorProperty(propertyFJ, true) }, attr: { remark: "示例4" }, hasEdit: false }) graphicLayer.addGraphic(graphic) } // 计算演示的SampledPositionProperty轨迹 function getSampledPositionProperty(points) { const property = new Cesium.SampledPositionProperty() property.forwardExtrapolationType = Cesium.ExtrapolationType.HOLD const start = map.clock.currentTime const positions = mars3d.LngLatArray.toCartesians(points) for (let i = 0; i < positions.length; i++) { const time = Cesium.JulianDate.addSeconds(start, i * 20, new Cesium.JulianDate()) const position = positions[i] property.addSample(time, position) } return property } // 在图层级处理一些事物 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) }) */ // 数据编辑相关事件,用于editorUI属性弹窗的交互 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) }) } // 在图层绑定Popup弹窗 export function bindLayerPopup() { graphicLayer.bindPopup(function (event) { const attr = event.graphic.attr || {} attr["类型"] = event.graphic.type attr["来源"] = "我是layer上绑定的Popup" attr["备注"] = "我支持鼠标交互" return mars3d.Util.getTemplateHtml({ title: "矢量图层", template: "all", attr: attr }) }) } // 绑定右键菜单 export function bindLayerContextMenu() { graphicLayer.bindContextMenu([ { text: "开始编辑对象", icon: "fa fa-edit", show: function (e) { const graphic = e.graphic if (!graphic || !graphic.startEditing) { return false } return !graphic.isEditing }, callback: function (e) { const graphic = e.graphic if (!graphic) { return false } if (graphic) { graphicLayer.startEditing(graphic) } } }, { text: "停止编辑对象", icon: "fa fa-edit", show: function (e) { const graphic = e.graphic if (!graphic) { return false } return graphic.isEditing }, callback: function (e) { const graphic = e.graphic if (!graphic) { return false } if (graphic) { graphicLayer.stopEditing(graphic) } } }, { text: "删除对象", icon: "fa fa-trash-o", show: (event) => { const graphic = event.graphic if (!graphic || graphic.isDestroy) { return false } else { return true } }, callback: function (e) { const graphic = e.graphic if (!graphic) { return } const parent = graphic._parent // 右击是编辑点时 graphicLayer.removeGraphic(graphic) if (parent) { graphicLayer.removeGraphic(parent) } } } ]) } export function updateLayerHasEdit(val) { graphicLayer.hasEdit = val } // 按钮事件 export function startDrawGraphic() { // 开始绘制 graphicLayer.startDraw({ type: "billboard", style: { image: "img/marker/mark1.png", horizontalOrigin: Cesium.HorizontalOrigin.CENTER, verticalOrigin: Cesium.VerticalOrigin.BOTTOM, label: { // 不需要文字时,去掉label配置即可 text: "可以同时支持文字", font_size: 30, color: "#ffffff", outline: true, outlineColor: "#000000", pixelOffsetY: -50 } } }) } export function btnStartBounce() { graphicLayer.eachGraphic((graphic) => { if (graphic.startBounce) { graphic.startBounce() } }) } export function btnStartBounce2() { graphicLayer.eachGraphic((graphic) => { if (graphic.startBounce) { graphic.startBounce({ autoStop: true, step: 2, maxHeight: 90 }) } }) } export function btnStopBounce() { graphicLayer.eachGraphic((graphic) => { if (graphic.stopBounce) { graphic.stopBounce() } }) } // 也可以在单个Graphic上做个性化管理及绑定操作 function initGraphicManager(graphic) { // 3.在graphic上绑定监听事件 /* graphic.on(mars3d.EventType.click, function (event) { console.log("监听graphic,单击了矢量对象", event) }) graphic.on(mars3d.EventType.mouseOver, function (event) { console.log("监听graphic,鼠标移入了矢量对象", event) }) graphic.on(mars3d.EventType.mouseOut, function (event) { console.log("监听graphic,鼠标移出了矢量对象", event) }) */ // 绑定Tooltip // graphic.bindTooltip('我是graphic上绑定的Tooltip') //.openTooltip() // 绑定Popup const inthtml = `
| 我是graphic上绑定的Popup | |
|---|---|
| 提示: | 这只是测试信息,可以任意html |