增加自定义提示

This commit is contained in:
zh
2025-08-25 10:43:50 +08:00
parent 6c84baa3c2
commit 24a0078eea
9 changed files with 101 additions and 21 deletions

View File

@ -181,7 +181,7 @@ class CircleDiffuse extends Base {
}
that.sdk._entityZIndex++
if (that.sdk.viewer._element.className === 'cesium-viewer 2d') {
that.entity.ellipse.height = 1000000
that.entity.ellipse.height = 1
}
CircleDiffuse.createLabel(that)
syncData(that.sdk, that.options.id)

View File

@ -1384,10 +1384,10 @@ class CurvelineObject extends Base {
that.options.lengthByMeter = res
that.lengthUnit = that.options['length-unit']
syncData(that.sdk, that.options.id)
if (that.options.show) {
setSplitDirection(0, that.options.id)
}
})
if (that.options.show) {
setSplitDirection(0, that.options.id)
}
// if (this.options['nose-to-tail']) {
// let array = []

View File

@ -162,6 +162,7 @@ class FlyRoam extends Base {
pitch: viewer.camera.pitch,
roll: viewer.camera.roll
}
this.message({text: '操作成功'})
})
let totalTimeElm = contentElm.querySelector("input[name='totalTime']")

View File

@ -1411,10 +1411,10 @@ class PolylineObject extends Base {
that.options.lengthByMeter = res
that.lengthUnit = that.options['length-unit']
syncData(that.sdk, that.options.id)
if (that.options.show) {
setSplitDirection(0, that.options.id)
}
})
if (that.options.show) {
setSplitDirection(0, that.options.id)
}
// if (this.options['nose-to-tail']) {

View File

@ -138,7 +138,7 @@ class RadarScan extends Base {
})
that.sdk._entityZIndex++
if (that.sdk.viewer._element.className === 'cesium-viewer 2d') {
that.entity.ellipse.height = 1000000
that.entity.ellipse.height = 1
}
RadarScan.createLabel(that)
syncData(that.sdk, that.options.id)

View File

@ -50,7 +50,8 @@ export default class CircleDiffuseMaterialProperty {
let color = this.colors[ratio[i]]
_sourceColor = _sourceColor + `
if(dis < float(${Number(ratio[i]) / 2})) {
material.diffuse = 1.5 * vec4(${color.red},${color.green},${color.blue},${color.alpha}).rgb;
material.diffuse = vec4(0.0,0.0,0.0,0.0).rgb;
material.emission = 1.0 * vec4(${color.red},${color.green},${color.blue},${color.alpha}).rgb;
}
`
}