| @@ -87,7 +87,6 @@ class BaseLayerPicker { | |||
| this.selectedImageryLayer = this._imageryLayers[index] | |||
| return this | |||
| } | |||
| } | |||
| export default BaseLayerPicker | |||
| @@ -124,7 +124,9 @@ class HeatMapLayer extends Layer { | |||
| */ | |||
| _computeBounds() { | |||
| Cesium.Rectangle.fromCartographicArray( | |||
| this._points.map((item) => Cesium.Cartographic.fromDegrees(item.lng, item.lat)), | |||
| this._points.map((item) => | |||
| Cesium.Cartographic.fromDegrees(item.lng, item.lat) | |||
| ), | |||
| this._bounds | |||
| ) | |||
| } | |||