@artstesh/maps 6.2.0 → 6.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +7 -0
- package/dist/esm2022/map/messages/executors/calculate-area.executor.mjs +1 -1
- package/dist/esm2022/map/services/map-state.service.mjs +2 -2
- package/dist/esm2022/src/map/messages/executors/calculate-area.executor.mjs +1 -1
- package/dist/esm2022/src/map/services/map-state.service.mjs +2 -2
- package/dist/fesm2022/maps-components-src-map.mjs +1 -1
- package/dist/fesm2022/maps-components-src-map.mjs.map +1 -1
- package/dist/fesm2022/maps-components.mjs +1 -1
- package/dist/fesm2022/maps-components.mjs.map +1 -1
- package/dist/map/messages/executors/calculate-area.executor.d.ts +1 -3
- package/dist/src/map/messages/executors/calculate-area.executor.d.ts +1 -3
- package/package.json +1 -1
|
@@ -1150,7 +1150,7 @@ class MapStateService {
|
|
|
1150
1150
|
if (!this.map)
|
|
1151
1151
|
return null;
|
|
1152
1152
|
let [longitude, latitude] = this.map.getView().getCenter();
|
|
1153
|
-
const zoom =
|
|
1153
|
+
const zoom = this.map.getView().getZoom();
|
|
1154
1154
|
const extent = this.map.getView().calculateExtent();
|
|
1155
1155
|
return { longitude, latitude, zoom, extent };
|
|
1156
1156
|
}
|