|
@@ -651,7 +651,7 @@ export default {
|
|
|
})
|
|
|
})
|
|
|
cesiumEntityUtils.addCustomPoints(viewer, dsId, targetPoints)
|
|
|
- dsId === 'rwjs' && cesiumEntityUtils.flyToTargetPoint(viewer, points[0].lng, points[0].lat, 8000000)
|
|
|
+ dsId === 'rwjs' && cesiumEntityUtils.flyToTargetPoint(viewer, points[0].lng, points[0].lat, 19000000)
|
|
|
}
|
|
|
if (type == 2) {
|
|
|
let polygon = [];
|
|
@@ -672,7 +672,7 @@ export default {
|
|
|
material: isStripe ? Cesium.Color.fromCssColorString('rgba(237,245,11,0.5)') : Cesium.Color.fromCssColorString('#f10808'),
|
|
|
})
|
|
|
cesiumEntityUtils.addCustomPolygons(viewer, dsId, targetPoylgons)
|
|
|
- dsId === 'rwjs' && cesiumEntityUtils.flyToTargetPolygon(viewer, polygon, 8000000)
|
|
|
+ dsId === 'rwjs' && cesiumEntityUtils.flyToTargetPolygon(viewer, polygon, 19000000)
|
|
|
}
|
|
|
if ([1, 3].includes(type)) {
|
|
|
let lpoints = [];
|
|
@@ -687,7 +687,7 @@ export default {
|
|
|
points: lpoints
|
|
|
})
|
|
|
cesiumEntityUtils.addCustomLines(viewer, dsId, targetPoints)
|
|
|
- dsId === 'rwjs' && cesiumEntityUtils.flyToTargetPoint(viewer, lpoints[0], lpoints[1], 8000000)
|
|
|
+ dsId === 'rwjs' && cesiumEntityUtils.flyToTargetPoint(viewer, lpoints[0], lpoints[1], 19000000)
|
|
|
}
|
|
|
})
|
|
|
|