@maplibre/maplibre-react-native 10.0.0-beta.6 → 10.0.0-beta.8

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.
@@ -1,261 +0,0 @@
1
- "use strict";
2
-
3
- import { useMemo, useState, useEffect } from "react";
4
- import BackgroundLayer from "./BackgroundLayer.js";
5
- import CircleLayer from "./CircleLayer.js";
6
- import FillExtrusionLayer from "./FillExtrusionLayer.js";
7
- import FillLayer from "./FillLayer.js";
8
- import HeatmapLayer from "./HeatmapLayer.js";
9
- import ImageSource from "./ImageSource.js";
10
- import LineLayer from "./LineLayer.js";
11
- import RasterLayer from "./RasterLayer.js";
12
- import RasterSource from "./RasterSource.js";
13
- import ShapeSource from "./ShapeSource.js";
14
- import SymbolLayer from "./SymbolLayer.js";
15
- import VectorSource from "./VectorSource.js";
16
- import { jsx as _jsx, Fragment as _Fragment, jsxs as _jsxs } from "react/jsx-runtime";
17
- function toCamelCase(s) {
18
- return s.replace(/([-_][a-z])/gi, $1 => {
19
- return $1.toUpperCase().replace("-", "").replace("_", "");
20
- });
21
- }
22
-
23
- // Patches the Mapbox Style Specification keys into the style props attributes:
24
- // icon-allow-overlap -> iconAllowOverlap
25
- function toCamelCaseKeys(oldObj) {
26
- if (!oldObj) {
27
- return {};
28
- }
29
- const newObj = {};
30
- Object.keys(oldObj).forEach(key => {
31
- const value = oldObj[key];
32
- if (key.includes("-")) {
33
- newObj[toCamelCase(key)] = value;
34
- } else {
35
- newObj[key] = value;
36
- }
37
- });
38
- return newObj;
39
- }
40
- function getLayerComponentType(layer) {
41
- const {
42
- type
43
- } = layer;
44
- switch (type) {
45
- case "circle":
46
- return CircleLayer;
47
- case "symbol":
48
- return SymbolLayer;
49
- case "raster":
50
- return RasterLayer;
51
- case "line":
52
- return LineLayer;
53
- case "fill":
54
- return FillLayer;
55
- case "fill-extrusion":
56
- return FillExtrusionLayer;
57
- case "background":
58
- return BackgroundLayer;
59
- case "heatmap":
60
- return HeatmapLayer;
61
- }
62
- console.warn(`Mapbox layer type '${type}' is not supported/`);
63
- return null;
64
- }
65
- function asLayerComponent(layer) {
66
- const LayerComponent = getLayerComponentType(layer);
67
- if (!LayerComponent) {
68
- return null;
69
- }
70
- const style = {
71
- ...toCamelCaseKeys(layer.paint),
72
- ...toCamelCaseKeys(layer.layout)
73
- };
74
- const layerProps = {};
75
- if (layer.source) {
76
- layerProps.sourceID = layer.source;
77
- }
78
- if (layer["source-layer"]) {
79
- layerProps.sourceLayerID = layer["source-layer"];
80
- }
81
- if (layer.minzoom) {
82
- layerProps.minZoomLevel = layer.minzoom;
83
- }
84
- if (layer.maxzoom) {
85
- layerProps.maxZoomLevel = layer.maxzoom;
86
- }
87
- if (layer.filter) {
88
- layerProps.filter = layer.filter;
89
- }
90
- if (Object.keys(style).length) {
91
- layerProps.style = style;
92
- }
93
- return /*#__PURE__*/_jsx(LayerComponent, {
94
- id: layer.id,
95
- ...layerProps
96
- }, layer.id);
97
- }
98
- function getTileSourceProps(source) {
99
- const sourceProps = {};
100
- if (source.url) {
101
- sourceProps.url = source.url;
102
- }
103
- if (source.tiles) {
104
- sourceProps.tileUrlTemplates = source.tiles;
105
- }
106
- if (source.minzoom !== undefined) {
107
- sourceProps.minZoomLevel = source.minzoom;
108
- }
109
- if (source.maxzoom !== undefined) {
110
- sourceProps.maxZoomLevel = source.maxzoom;
111
- }
112
- if (source.attribution) {
113
- sourceProps.attribution = source.attribution;
114
- }
115
- if (source.scheme && source.scheme === "tms") {
116
- sourceProps.tms = true;
117
- }
118
- return sourceProps;
119
- }
120
- function getVectorSource(id, source) {
121
- const sourceProps = {
122
- ...getTileSourceProps(source)
123
- };
124
- return /*#__PURE__*/_jsx(VectorSource, {
125
- id: id,
126
- ...sourceProps
127
- }, id);
128
- }
129
- function getRasterSource(id, source) {
130
- const sourceProps = {
131
- ...getTileSourceProps(source)
132
- };
133
- if (source.tileSize) {
134
- sourceProps.tileSize = source.tileSize;
135
- }
136
- return /*#__PURE__*/_jsx(RasterSource, {
137
- id: id,
138
- ...sourceProps
139
- }, id);
140
- }
141
- function getImageSource(id, source) {
142
- const sourceProps = {
143
- url: source.url,
144
- coordinates: source.coordinates
145
- };
146
- return /*#__PURE__*/_jsx(ImageSource, {
147
- id: id,
148
- ...sourceProps
149
- }, id);
150
- }
151
- function getShapeSource(id, source) {
152
- const sourceProps = {};
153
- if (source.data && typeof source.data === "string") {
154
- sourceProps.url = source.data;
155
- } else if (source.data && typeof source.data === "object") {
156
- sourceProps.shape = source.data;
157
- }
158
- if (source.cluster !== undefined) {
159
- sourceProps.cluster = source.cluster;
160
- }
161
- if (source.clusterRadius !== undefined) {
162
- sourceProps.clusterRadius = source.clusterRadius;
163
- }
164
- if (source.maxzoom !== undefined) {
165
- sourceProps.maxZoomLevel = source.maxzoom;
166
- }
167
- if (source.clusterMaxZoom !== undefined) {
168
- sourceProps.clusterMaxZoomLevel = source.clusterMaxZoom;
169
- }
170
- if (source.clusterProperties !== undefined) {
171
- sourceProps.clusterProperties = source.clusterProperties;
172
- }
173
- if (source.buffer !== undefined) {
174
- sourceProps.buffer = source.buffer;
175
- }
176
- if (source.tolerance !== undefined) {
177
- sourceProps.tolerance = source.tolerance;
178
- }
179
- if (source.lineMetrics !== undefined) {
180
- sourceProps.lineMetrics = source.lineMetrics;
181
- }
182
- return /*#__PURE__*/_jsx(ShapeSource, {
183
- id: id,
184
- ...sourceProps
185
- }, id);
186
- }
187
- function asSourceComponent(id, source) {
188
- switch (source.type) {
189
- case "vector":
190
- return getVectorSource(id, source);
191
- case "raster":
192
- return getRasterSource(id, source);
193
- case "image":
194
- return getImageSource(id, source);
195
- case "geojson":
196
- return getShapeSource(id, source);
197
- }
198
- console.warn(`MapLibre source type '${source.type}' is not supported`);
199
- return null;
200
- }
201
- /**
202
- * Style is a component that automatically adds sources / layers to the map using MapLibre Style Spec.
203
- * Only [`sources`](https://maplibre.org/maplibre-gl-js-docs/style-spec/sources/) & [`layers`](https://maplibre.org/maplibre-gl-js-docs/style-spec/layers/) are supported.
204
- * Other fields such as `sprites`, `glyphs` etc. will be ignored. Not all layer / source attributes from the style spec are supported, in general the supported attributes will be mentioned under https://github.com/maplibre/maplibre-react-native/tree/main/docs.
205
- *
206
- * TODO: Maintainer forking this project does not understand the above comment regarding what is supported.
207
- */
208
- const Style = props => {
209
- const [fetchedJson, setFetchedJson] = useState({});
210
- const json = typeof props.json === "object" ? props.json : fetchedJson;
211
-
212
- // Fetch style when props.json is a URL
213
- useEffect(() => {
214
- const abortController = new AbortController();
215
- const fetchStyleJson = async url => {
216
- try {
217
- const response = await fetch(url, {
218
- signal: abortController.signal
219
- });
220
- const responseJson = await response.json();
221
- setFetchedJson(responseJson);
222
- } catch (error) {
223
- const e = error;
224
- if (e.name === "AbortError") {
225
- return;
226
- }
227
- throw e;
228
- }
229
- };
230
- if (typeof props.json === "string") {
231
- fetchStyleJson(props.json);
232
- }
233
- return function cleanup() {
234
- abortController.abort();
235
- };
236
- }, [props.json]);
237
-
238
- // Extract layer components from json
239
- const layerComponents = useMemo(() => {
240
- if (!json.layers) {
241
- return [];
242
- }
243
- return json.layers.map(asLayerComponent).filter(x => !!x);
244
- }, [json.layers]);
245
-
246
- // Extract source components from json
247
- const sourceComponents = useMemo(() => {
248
- const {
249
- sources
250
- } = json;
251
- if (!sources || !Object.keys(sources)) {
252
- return [];
253
- }
254
- return Object.entries(sources).map(([id, source]) => asSourceComponent(id, source)).filter(x => !!x);
255
- }, [json]);
256
- return /*#__PURE__*/_jsxs(_Fragment, {
257
- children: [sourceComponents, layerComponents]
258
- });
259
- };
260
- export default Style;
261
- //# sourceMappingURL=Style.js.map
@@ -1 +0,0 @@
1
- {"version":3,"names":["useMemo","useState","useEffect","BackgroundLayer","CircleLayer","FillExtrusionLayer","FillLayer","HeatmapLayer","ImageSource","LineLayer","RasterLayer","RasterSource","ShapeSource","SymbolLayer","VectorSource","jsx","_jsx","Fragment","_Fragment","jsxs","_jsxs","toCamelCase","s","replace","$1","toUpperCase","toCamelCaseKeys","oldObj","newObj","Object","keys","forEach","key","value","includes","getLayerComponentType","layer","type","console","warn","asLayerComponent","LayerComponent","style","paint","layout","layerProps","source","sourceID","sourceLayerID","minzoom","minZoomLevel","maxzoom","maxZoomLevel","filter","length","id","getTileSourceProps","sourceProps","url","tiles","tileUrlTemplates","undefined","attribution","scheme","tms","getVectorSource","getRasterSource","tileSize","getImageSource","coordinates","getShapeSource","data","shape","cluster","clusterRadius","clusterMaxZoom","clusterMaxZoomLevel","clusterProperties","buffer","tolerance","lineMetrics","asSourceComponent","Style","props","fetchedJson","setFetchedJson","json","abortController","AbortController","fetchStyleJson","response","fetch","signal","responseJson","error","e","name","cleanup","abort","layerComponents","layers","map","x","sourceComponents","sources","entries","children"],"sourceRoot":"../../../src","sources":["components/Style.tsx"],"mappings":"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","ignoreList":[]}
@@ -1,81 +0,0 @@
1
- import { type ReactElement } from "react";
2
- import { type ExpressionField, type FilterExpression } from "../utils/MapLibreRNStyles";
3
- interface MapLibreJSONLayer {
4
- type: string;
5
- paint: {
6
- [k: string]: unknown;
7
- };
8
- layout: {
9
- [k: string]: unknown;
10
- };
11
- source?: string;
12
- "source-layer"?: string;
13
- minzoom?: number;
14
- maxzoom?: number;
15
- filter?: FilterExpression;
16
- id: string;
17
- }
18
- interface MapLibreJSONSource {
19
- type: string;
20
- url?: string;
21
- tiles?: string[];
22
- minzoom?: number;
23
- maxzoom?: number;
24
- attribution?: string;
25
- scheme?: "xyz" | "tms";
26
- bounds?: number[];
27
- buffer?: number;
28
- tileSize?: number;
29
- coordinates?: [
30
- [
31
- number,
32
- number
33
- ],
34
- [
35
- number,
36
- number
37
- ],
38
- [
39
- number,
40
- number
41
- ],
42
- [
43
- number,
44
- number
45
- ]
46
- ];
47
- cluster?: boolean;
48
- clusterMaxZoom?: number;
49
- clusterMinPoints?: number;
50
- clusterRadius?: number;
51
- clusterProperties?: {
52
- [propertyName: string]: ExpressionField;
53
- };
54
- data?: string | object;
55
- filter?: FilterExpression;
56
- generateId?: boolean;
57
- lineMetrics?: boolean;
58
- tolerance?: number;
59
- }
60
- interface MapLibreJSON {
61
- layers?: MapLibreJSONLayer[];
62
- sources?: {
63
- [key: string]: MapLibreJSONSource;
64
- };
65
- }
66
- interface StyleProps {
67
- /**
68
- * A JSON object conforming to the schema described in the MapLibre Style Specification, or a URL to such JSON.
69
- */
70
- json?: MapLibreJSON | URL;
71
- }
72
- /**
73
- * Style is a component that automatically adds sources / layers to the map using MapLibre Style Spec.
74
- * Only [`sources`](https://maplibre.org/maplibre-gl-js-docs/style-spec/sources/) & [`layers`](https://maplibre.org/maplibre-gl-js-docs/style-spec/layers/) are supported.
75
- * Other fields such as `sprites`, `glyphs` etc. will be ignored. Not all layer / source attributes from the style spec are supported, in general the supported attributes will be mentioned under https://github.com/maplibre/maplibre-react-native/tree/main/docs.
76
- *
77
- * TODO: Maintainer forking this project does not understand the above comment regarding what is supported.
78
- */
79
- declare const Style: (props: StyleProps) => ReactElement;
80
- export default Style;
81
- //# sourceMappingURL=Style.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"Style.d.ts","sourceRoot":"","sources":["../../../../../src/components/Style.tsx"],"names":[],"mappings":"AAAA,OAAO,EAIL,KAAK,YAAY,EAElB,MAAM,OAAO,CAAC;AAgBf,OAAO,EACL,KAAK,eAAe,EACpB,KAAK,gBAAgB,EACtB,MAAM,2BAA2B,CAAC;AAmEnC,UAAU,iBAAiB;IACzB,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE;QAAE,CAAC,CAAC,EAAE,MAAM,GAAG,OAAO,CAAA;KAAE,CAAC;IAChC,MAAM,EAAE;QAAE,CAAC,CAAC,EAAE,MAAM,GAAG,OAAO,CAAA;KAAE,CAAC;IACjC,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,MAAM,CAAC,EAAE,gBAAgB,CAAC;IAC1B,EAAE,EAAE,MAAM,CAAC;CACZ;AAwCD,UAAU,kBAAkB;IAC1B,IAAI,EAAE,MAAM,CAAC;IACb,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,KAAK,CAAC,EAAE,MAAM,EAAE,CAAC;IACjB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,MAAM,CAAC,EAAE,KAAK,GAAG,KAAK,CAAC;IACvB,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,WAAW,CAAC,EAAE;QACZ;YAAC,MAAM;YAAE,MAAM;SAAC;QAChB;YAAC,MAAM;YAAE,MAAM;SAAC;QAChB;YAAC,MAAM;YAAE,MAAM;SAAC;QAChB;YAAC,MAAM;YAAE,MAAM;SAAC;KACjB,CAAC;IACF,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,iBAAiB,CAAC,EAAE;QAAE,CAAC,YAAY,EAAE,MAAM,GAAG,eAAe,CAAA;KAAE,CAAC;IAChE,IAAI,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IACvB,MAAM,CAAC,EAAE,gBAAgB,CAAC;IAC1B,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AA0HD,UAAU,YAAY;IACpB,MAAM,CAAC,EAAE,iBAAiB,EAAE,CAAC;IAC7B,OAAO,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,kBAAkB,CAAA;KAAE,CAAC;CACjD;AAED,UAAU,UAAU;IAClB;;OAEG;IACH,IAAI,CAAC,EAAE,YAAY,GAAG,GAAG,CAAC;CAC3B;AAED;;;;;;GAMG;AACH,QAAA,MAAM,KAAK,UAAW,UAAU,KAAG,YA0DlC,CAAC;AAEF,eAAe,KAAK,CAAC"}
@@ -1,81 +0,0 @@
1
- import { type ReactElement } from "react";
2
- import { type ExpressionField, type FilterExpression } from "../utils/MapLibreRNStyles";
3
- interface MapLibreJSONLayer {
4
- type: string;
5
- paint: {
6
- [k: string]: unknown;
7
- };
8
- layout: {
9
- [k: string]: unknown;
10
- };
11
- source?: string;
12
- "source-layer"?: string;
13
- minzoom?: number;
14
- maxzoom?: number;
15
- filter?: FilterExpression;
16
- id: string;
17
- }
18
- interface MapLibreJSONSource {
19
- type: string;
20
- url?: string;
21
- tiles?: string[];
22
- minzoom?: number;
23
- maxzoom?: number;
24
- attribution?: string;
25
- scheme?: "xyz" | "tms";
26
- bounds?: number[];
27
- buffer?: number;
28
- tileSize?: number;
29
- coordinates?: [
30
- [
31
- number,
32
- number
33
- ],
34
- [
35
- number,
36
- number
37
- ],
38
- [
39
- number,
40
- number
41
- ],
42
- [
43
- number,
44
- number
45
- ]
46
- ];
47
- cluster?: boolean;
48
- clusterMaxZoom?: number;
49
- clusterMinPoints?: number;
50
- clusterRadius?: number;
51
- clusterProperties?: {
52
- [propertyName: string]: ExpressionField;
53
- };
54
- data?: string | object;
55
- filter?: FilterExpression;
56
- generateId?: boolean;
57
- lineMetrics?: boolean;
58
- tolerance?: number;
59
- }
60
- interface MapLibreJSON {
61
- layers?: MapLibreJSONLayer[];
62
- sources?: {
63
- [key: string]: MapLibreJSONSource;
64
- };
65
- }
66
- interface StyleProps {
67
- /**
68
- * A JSON object conforming to the schema described in the MapLibre Style Specification, or a URL to such JSON.
69
- */
70
- json?: MapLibreJSON | URL;
71
- }
72
- /**
73
- * Style is a component that automatically adds sources / layers to the map using MapLibre Style Spec.
74
- * Only [`sources`](https://maplibre.org/maplibre-gl-js-docs/style-spec/sources/) & [`layers`](https://maplibre.org/maplibre-gl-js-docs/style-spec/layers/) are supported.
75
- * Other fields such as `sprites`, `glyphs` etc. will be ignored. Not all layer / source attributes from the style spec are supported, in general the supported attributes will be mentioned under https://github.com/maplibre/maplibre-react-native/tree/main/docs.
76
- *
77
- * TODO: Maintainer forking this project does not understand the above comment regarding what is supported.
78
- */
79
- declare const Style: (props: StyleProps) => ReactElement;
80
- export default Style;
81
- //# sourceMappingURL=Style.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"Style.d.ts","sourceRoot":"","sources":["../../../../../src/components/Style.tsx"],"names":[],"mappings":"AAAA,OAAO,EAIL,KAAK,YAAY,EAElB,MAAM,OAAO,CAAC;AAgBf,OAAO,EACL,KAAK,eAAe,EACpB,KAAK,gBAAgB,EACtB,MAAM,2BAA2B,CAAC;AAmEnC,UAAU,iBAAiB;IACzB,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE;QAAE,CAAC,CAAC,EAAE,MAAM,GAAG,OAAO,CAAA;KAAE,CAAC;IAChC,MAAM,EAAE;QAAE,CAAC,CAAC,EAAE,MAAM,GAAG,OAAO,CAAA;KAAE,CAAC;IACjC,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,MAAM,CAAC,EAAE,gBAAgB,CAAC;IAC1B,EAAE,EAAE,MAAM,CAAC;CACZ;AAwCD,UAAU,kBAAkB;IAC1B,IAAI,EAAE,MAAM,CAAC;IACb,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,KAAK,CAAC,EAAE,MAAM,EAAE,CAAC;IACjB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,MAAM,CAAC,EAAE,KAAK,GAAG,KAAK,CAAC;IACvB,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,WAAW,CAAC,EAAE;QACZ;YAAC,MAAM;YAAE,MAAM;SAAC;QAChB;YAAC,MAAM;YAAE,MAAM;SAAC;QAChB;YAAC,MAAM;YAAE,MAAM;SAAC;QAChB;YAAC,MAAM;YAAE,MAAM;SAAC;KACjB,CAAC;IACF,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,iBAAiB,CAAC,EAAE;QAAE,CAAC,YAAY,EAAE,MAAM,GAAG,eAAe,CAAA;KAAE,CAAC;IAChE,IAAI,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IACvB,MAAM,CAAC,EAAE,gBAAgB,CAAC;IAC1B,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AA0HD,UAAU,YAAY;IACpB,MAAM,CAAC,EAAE,iBAAiB,EAAE,CAAC;IAC7B,OAAO,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,kBAAkB,CAAA;KAAE,CAAC;CACjD;AAED,UAAU,UAAU;IAClB;;OAEG;IACH,IAAI,CAAC,EAAE,YAAY,GAAG,GAAG,CAAC;CAC3B;AAED;;;;;;GAMG;AACH,QAAA,MAAM,KAAK,UAAW,UAAU,KAAG,YA0DlC,CAAC;AAEF,eAAe,KAAK,CAAC"}