@geospatial-sdk/maplibre 0.0.5-dev.50 → 0.0.5-dev.52

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.
@@ -56,7 +56,7 @@ export function contextStyleToMaplibreLayers(
56
56
  layers.push({
57
57
  type: "circle",
58
58
  paint: {
59
- "circle-radius": style["circle-radius"],
59
+ "circle-radius": style["circle-radius"] as number,
60
60
  "circle-stroke-color": style["circle-stroke-color"] as string,
61
61
  "circle-color": style["circle-fill-color"] as string,
62
62
  "circle-stroke-width": style["circle-stroke-width"] as number,
@@ -207,7 +207,7 @@ describe("MapContextService", () => {
207
207
  describe("with remote file url", () => {
208
208
  beforeEach(async () => {
209
209
  layerModel = MAP_CTX_LAYER_GEOJSON_REMOTE_FIXTURE;
210
- global.fetch = vi.fn(() =>
210
+ globalThis.fetch = vi.fn(() =>
211
211
  Promise.resolve({
212
212
  ok: true,
213
213
  json: () =>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@geospatial-sdk/maplibre",
3
- "version": "0.0.5-dev.50+c8ee5e3",
3
+ "version": "0.0.5-dev.52+73ea489",
4
4
  "description": "Maplibre-related utilities",
5
5
  "keywords": [
6
6
  "maplibre",
@@ -33,7 +33,7 @@
33
33
  "maplibre-gl": "^5.7.3"
34
34
  },
35
35
  "dependencies": {
36
- "@geospatial-sdk/core": "^0.0.5-dev.50+c8ee5e3"
36
+ "@geospatial-sdk/core": "^0.0.5-dev.52+73ea489"
37
37
  },
38
- "gitHead": "c8ee5e32059a06e056a5723987baf5e2574bf784"
38
+ "gitHead": "73ea4890e493aae5379e23af6b7679bab253db92"
39
39
  }