@artstesh/maps 9.2.0 → 9.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.
@@ -1176,7 +1176,7 @@ class MapStateService {
1176
1176
  if (!this.map)
1177
1177
  return null;
1178
1178
  let [longitude, latitude] = this.map.getView().getCenter();
1179
- const zoom = Math.floor(this.map.getView().getZoom());
1179
+ const zoom = this.map.getView().getZoom();
1180
1180
  const extent = this.map.getView().calculateExtent();
1181
1181
  return { longitude, latitude, zoom, extent };
1182
1182
  }