@artstesh/maps 5.2.15 → 5.3.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.
@@ -1148,7 +1148,7 @@ class MapStateService {
1148
1148
  if (!this.map)
1149
1149
  return null;
1150
1150
  let [longitude, latitude] = this.map.getView().getCenter();
1151
- const zoom = Math.floor(this.map.getView().getZoom());
1151
+ const zoom = this.map.getView().getZoom();
1152
1152
  const extent = this.map.getView().calculateExtent();
1153
1153
  return { longitude, latitude, zoom, extent };
1154
1154
  }