【mars3d】批量关闭矢量数据的startFlicker()闪烁或者全部关闭startFlicker()

问题

1.graphic/entity/billboard怎么能够批量关闭startFlicker()闪烁或者 全部关闭startFlicker()呢?

相关链接

1.http://mars3d.cn/editor-vue.html?id=graphic/entity/billboard

2.http://mars3d.cn/apidoc.html#FlickerEntity

期望效果

1.graphic.stopFlicker()这个矢量数据在不知道id的情况下,怎么能够全部关闭或者批量关闭呢?

import * as mars3d from "mars3d"

export { 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({

allowDrillPick: true // 如果存在坐标完全相同的图标点,可以打开该属性,click事件通过graphics判断

})

map.addLayer(graphicLayer)

// 在layer上绑定监听事件

graphicLayer.on(mars3d.EventType.click, function (event) {

console.log("监听layer,单击了矢量对象", event)

})

// 加一些演示数据

addDemoGraphic1(graphicLayer)

addDemoGraphic2(graphicLayer)

addDemoGraphic3(graphicLayer)

//在此处怎么批量关闭三个闪烁

}

/**

* 释放当前地图业务的生命周期函数

* @returns {void} 无

*/

export function onUnmounted() {

map = null

graphicLayer.remove()

graphicLayer = null

}

//

function addDemoGraphic1(graphicLayer) {

const graphic = new mars3d.graphic.BillboardEntity({

position: [116.1, 31.0, 1000],

style: {

image: "img/marker/lace-blue.png",

horizontalOrigin: Cesium.HorizontalOrigin.CENTER,

verticalOrigin: Cesium.VerticalOrigin.BOTTOM

},

attr: { remark: "示例1" }

})

graphicLayer.addGraphic(graphic) // 还可以另外一种写法: graphic.addTo(graphicLayer)

// 演示个性化处理graphic

initGraphicManager(graphic)

}

// 也可以在单个Graphic上做个性化管理及绑定操作

function initGraphicManager(graphic) {

// 测试 颜色闪烁

if (graphic.startFlicker) {

graphic.startFlicker({

maxAlpha: 0.5,

color: Cesium.Color.YELLOW,

onEnd: function () {

// 结束后回调

}

})

}

}

//

function addDemoGraphic2(graphicLayer) {

const graphic = new mars3d.graphic.BillboardEntity({

position: new mars3d.LngLatPoint(116.2, 31.0, 1000),

style: {

image: "img/marker/lace-red.png",

scale: 1.0,

horizontalOrigin: Cesium.HorizontalOrigin.CENTER,

verticalOrigin: Cesium.VerticalOrigin.BOTTOM,

clampToGround: true,

label: { text: "鼠标移入会放大", pixelOffsetY: -50 },

// 高亮时的样式(默认为鼠标移入,也可以指定type:'click'单击高亮),构造后也可以openHighlight、closeHighlight方法来手动调用

highlight: {

scale: 1.5

}

},

attr: { remark: "示例2" }

})

graphicLayer.addGraphic(graphic) // 还可以另外一种写法: graphic.addTo(graphicLayer)

initGraphicManager(graphic)

}

function addDemoGraphic3(graphicLayer) {

const graphic = new mars3d.graphic.BillboardEntity({

position: new mars3d.LngLatPoint(116.3, 31.0, 1000),

style: {

image: "img/marker/lace-red.png",

scale: 1.0,

horizontalOrigin: Cesium.HorizontalOrigin.CENTER,

verticalOrigin: Cesium.VerticalOrigin.BOTTOM,

clampToGround: true,

label: { text: "鼠标移入会放大", pixelOffsetY: -50 },

// 高亮时的样式(默认为鼠标移入,也可以指定type:'click'单击高亮),构造后也可以openHighlight、closeHighlight方法来手动调用

highlight: {

scale: 1.5

}

},

attr: { remark: "示例2" }

})

graphicLayer.addGraphic(graphic) // 还可以另外一种写法: graphic.addTo(graphicLayer)

initGraphicManager(graphic)

}

// 开始绘制

export function startDrawGraphic() {

graphicLayer.startDraw({

type: "billboard",

style: {

image: "img/marker/mark-red.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()

}

})

}

// 在图层绑定Popup弹窗

export function bindLayerPopup() {

graphicLayer.bindPopup(function (event) {

if (event.graphics?.length > 1) {

return `您单击了重叠图标,该区域有${event.graphics.length}个对象` // 如果存在坐标完全相同的图标点时

}

const attr = event.graphic.attr || {}

attr["类型"] = event.graphic.type

attr["来源"] = "我是layer上绑定的Popup"

attr["备注"] = "我支持鼠标交互"

return mars3d.Util.getTemplateHtml({ title: "矢量图层", template: "all", attr })

})

}

// 绑定右键菜单

export function bindLayerContextMenu() {

graphicLayer.bindContextMenu([

{

text: "开始编辑对象",

icon: "fa fa-edit",

show: function (e) {

const graphic = e.graphic

if (!graphic || !graphic.hasEdit) {

return false

}

return !graphic.isEditing

},

callback: (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 || !graphic.hasEdit) {

return false

}

return graphic.isEditing

},

callback: (e) => {

const graphic = e.graphic

if (!graphic) {

return false

}

if (graphic) {

graphic.stopEditing()

}

}

},

{

text: "删除对象",

icon: "fa fa-trash-o",

show: (event) => {

const graphic = event.graphic

if (!graphic || graphic.isDestroy) {

return false

} else {

return true

}

},

callback: (e) => {

const graphic = e.graphic

if (!graphic) {

return

}

const parent = graphic.parent // 右击是编辑点时

graphicLayer.removeGraphic(graphic)

if (parent) {

graphicLayer.removeGraphic(parent)

}

}

}

])

}

解决方案:

复制代码
 graphicLayer.eachGraphic((graphic) => {
    if (graphic.stopFlicker) {
      graphic.stopFlicker()
    }
  })
相关推荐
老前端的功夫2 小时前
Vue 3 性能深度解析:从架构革新到运行时的全面优化
javascript·vue.js·架构
天天扭码2 小时前
如何实现流式输出?一篇文章手把手教你!
前端·aigc·ai编程
前端 贾公子2 小时前
vue移动端适配方案 === postcss-px-to-viewport
前端·javascript·html
GISer_Jing3 小时前
AI营销增长:4大核心能力+前端落地指南
前端·javascript·人工智能
明远湖之鱼4 小时前
一种基于 Service Worker 的渐进式渲染方案的基本原理
前端
前端小端长4 小时前
Vue 中 keep-alive 组件的原理与实践详解
前端·vue.js·spring
FeelTouch Labs4 小时前
Nginx核心架构设计
运维·前端·nginx
雪球工程师团队5 小时前
别再“苦力”写后台,Spec Coding “跑” 起来
前端·ai编程
m0_471199635 小时前
【场景】前端怎么解决离线收银、数据同步异常等场景问题
前端·javascript