|
@@ -26,7 +26,10 @@ class ShipTrack {
|
|
zoom: () => {}
|
|
zoom: () => {}
|
|
}
|
|
}
|
|
private zIndex
|
|
private zIndex
|
|
-
|
|
|
|
|
|
+ private showTrackPoint = true
|
|
|
|
+ private showTrackDirection = true
|
|
|
|
+ private trackRadio = 30
|
|
|
|
+
|
|
constructor({map, keys = {
|
|
constructor({map, keys = {
|
|
lon: 'targetLongitude',
|
|
lon: 'targetLongitude',
|
|
lat: 'targetLatitude',
|
|
lat: 'targetLatitude',
|
|
@@ -85,7 +88,7 @@ class ShipTrack {
|
|
}
|
|
}
|
|
getSimplifyData() {
|
|
getSimplifyData() {
|
|
const resolution = this.map.getView().getResolution()
|
|
const resolution = this.map.getView().getResolution()
|
|
- let radio = (30 * resolution);
|
|
|
|
|
|
+ let radio = (this.trackRadio * resolution);
|
|
if (this.map.getView().getZoom() == this.map.getView().getMaxZoom()) {
|
|
if (this.map.getView().getZoom() == this.map.getView().getMaxZoom()) {
|
|
radio = 0
|
|
radio = 0
|
|
}
|
|
}
|
|
@@ -137,6 +140,7 @@ class ShipTrack {
|
|
},
|
|
},
|
|
})
|
|
})
|
|
this.pointLayer.set('layerName', this.uuid + '_point')
|
|
this.pointLayer.set('layerName', this.uuid + '_point')
|
|
|
|
+ this.pointLayer.setVisible(this.showTrackPoint)
|
|
this.map.addLayer(this.pointLayer)
|
|
this.map.addLayer(this.pointLayer)
|
|
this.directionLayer = new layer.WebGLPoints({
|
|
this.directionLayer = new layer.WebGLPoints({
|
|
zIndex: this.zIndex + 1,
|
|
zIndex: this.zIndex + 1,
|
|
@@ -164,6 +168,7 @@ class ShipTrack {
|
|
},
|
|
},
|
|
})
|
|
})
|
|
this.directionLayer.set('layerName', this.uuid + '_direction')
|
|
this.directionLayer.set('layerName', this.uuid + '_direction')
|
|
|
|
+ this.directionLayer.setVisible(this.showTrackDirection)
|
|
this.map.addLayer(this.directionLayer)
|
|
this.map.addLayer(this.directionLayer)
|
|
}
|
|
}
|
|
refreshData() {
|
|
refreshData() {
|