@terraware/web-components 3.5.12-rc.3 → 3.5.12-rc.4
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/components/Map/MapBox.d.ts.map +1 -1
- package/components/Map/MapBox.js +23 -15
- package/components/Map/MapLegend.d.ts +11 -15
- package/components/Map/MapLegend.d.ts.map +1 -1
- package/components/Map/MapLegend.js +2 -2
- package/components/Map/index.d.ts +8 -12
- package/components/Map/index.d.ts.map +1 -1
- package/components/Map/styles.scss +1 -1
- package/package.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"MapBox.d.ts","sourceRoot":"","sources":["../../../src/components/Map/MapBox.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA4D,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"MapBox.d.ts","sourceRoot":"","sources":["../../../src/components/Map/MapBox.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA4D,MAAM,OAAO,CAAC;AAMjF,OAAO,EAAuB,aAAa,EAAS,MAAM,WAAW,CAAC;AACtE,OAAO,8BAA8B,CAAC;AAKtC,OAAO,EACL,SAAS,EACT,iBAAiB,EACjB,QAAQ,EAER,cAAc,EAEd,YAAY,EAEb,MAAM,SAAS,CAAC;AAMjB,MAAM,MAAM,WAAW,GAAG;IACxB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,iBAAiB,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IACpC,eAAe,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAClC,cAAc,CAAC,EAAE,SAAS,CAAC;IAC3B,SAAS,CAAC,EAAE,SAAS,CAAC;IACtB,sBAAsB,CAAC,EAAE,OAAO,CAAC;IACjC,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,qBAAqB,CAAC,EAAE,OAAO,CAAC;IAChC,uBAAuB,CAAC,EAAE,OAAO,CAAC;IAClC,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B,eAAe,CAAC,EAAE,iBAAiB,EAAE,CAAC;IACtC,gBAAgB,CAAC,EAAE;QACjB,QAAQ,CAAC,EAAE,MAAM,CAAC;QAClB,SAAS,CAAC,EAAE,MAAM,CAAC;QACnB,IAAI,CAAC,EAAE,MAAM,CAAC;KACf,CAAC;IACF,MAAM,CAAC,EAAE,QAAQ,EAAE,CAAC;IACpB,KAAK,EAAE,MAAM,CAAC;IACd,YAAY,CAAC,EAAE,MAAM,EAAE,CAAC;IACxB,YAAY,EAAE,YAAY,CAAC;IAC3B,YAAY,CAAC,EAAE,cAAc,EAAE,CAAC;IAChC,aAAa,CAAC,EAAE,CAAC,KAAK,EAAE,aAAa,KAAK,IAAI,CAAC;IAC/C,eAAe,EAAE,CAAC,KAAK,EAAE,YAAY,KAAK,IAAI,CAAC;IAC/C,KAAK,EAAE,MAAM,CAAC;CACf,CAAC;AAEF,QAAA,MAAM,MAAM,UAAW,WAAW,KAAG,WA4jBpC,CAAC;AAEF,eAAe,MAAM,CAAC"}
|
package/components/Map/MapBox.js
CHANGED
|
@@ -7,7 +7,7 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
7
7
|
});
|
|
8
8
|
exports.default = void 0;
|
|
9
9
|
var _react = _interopRequireWildcard(require("react"));
|
|
10
|
-
var
|
|
10
|
+
var ReactMapGL = _interopRequireWildcard(require("react-map-gl/mapbox"));
|
|
11
11
|
var _material = require("@mui/material");
|
|
12
12
|
require("mapbox-gl/dist/mapbox-gl.css");
|
|
13
13
|
var _utils = require("../../utils");
|
|
@@ -15,6 +15,14 @@ var _Icon = _interopRequireDefault(require("../Icon/Icon"));
|
|
|
15
15
|
var _MapViewStyleControl = _interopRequireDefault(require("./MapViewStyleControl"));
|
|
16
16
|
var _types = require("./types");
|
|
17
17
|
var _useMaintainLayerOrder = require("./useMaintainLayerOrder");
|
|
18
|
+
const Map = ReactMapGL.default || ReactMapGL;
|
|
19
|
+
const {
|
|
20
|
+
FullscreenControl,
|
|
21
|
+
Layer,
|
|
22
|
+
Marker,
|
|
23
|
+
NavigationControl,
|
|
24
|
+
Source
|
|
25
|
+
} = ReactMapGL;
|
|
18
26
|
const MapBox = props => {
|
|
19
27
|
const {
|
|
20
28
|
clusterRadius,
|
|
@@ -141,7 +149,7 @@ const MapBox = props => {
|
|
|
141
149
|
textLayers
|
|
142
150
|
} = (0, _react.useMemo)(() => {
|
|
143
151
|
const _borderLayers = featureGroups === null || featureGroups === void 0 ? void 0 : featureGroups.map(group => {
|
|
144
|
-
return /*#__PURE__*/_react.default.createElement(
|
|
152
|
+
return /*#__PURE__*/_react.default.createElement(Layer, {
|
|
145
153
|
key: "".concat(group.layerId, "-border"),
|
|
146
154
|
id: "".concat(group.layerId, "-border"),
|
|
147
155
|
source: 'mapData',
|
|
@@ -165,7 +173,7 @@ const MapBox = props => {
|
|
|
165
173
|
const notSelectedFilter = ['==', ['get', 'selected'], false];
|
|
166
174
|
const hoverFilter = ['==', ['get', 'id'], hoverFeatureId !== null && hoverFeatureId !== void 0 ? hoverFeatureId : null];
|
|
167
175
|
const notHoverFilter = ['!=', ['get', 'id'], hoverFeatureId !== null && hoverFeatureId !== void 0 ? hoverFeatureId : null];
|
|
168
|
-
return /*#__PURE__*/_react.default.createElement(_react.default.Fragment, null, /*#__PURE__*/_react.default.createElement(
|
|
176
|
+
return /*#__PURE__*/_react.default.createElement(_react.default.Fragment, null, /*#__PURE__*/_react.default.createElement(Layer, {
|
|
169
177
|
key: group.layerId,
|
|
170
178
|
id: group.layerId,
|
|
171
179
|
source: 'mapData',
|
|
@@ -174,7 +182,7 @@ const MapBox = props => {
|
|
|
174
182
|
'fill-opacity': 0
|
|
175
183
|
},
|
|
176
184
|
filter: ['all', groupFilter, clickableFilter]
|
|
177
|
-
}), /*#__PURE__*/_react.default.createElement(
|
|
185
|
+
}), /*#__PURE__*/_react.default.createElement(Layer, {
|
|
178
186
|
key: "".concat(group.layerId, "-unselected"),
|
|
179
187
|
id: "".concat(group.layerId, "-unselected"),
|
|
180
188
|
source: 'mapData',
|
|
@@ -187,7 +195,7 @@ const MapBox = props => {
|
|
|
187
195
|
'fill-opacity': opacity
|
|
188
196
|
},
|
|
189
197
|
filter: ['all', groupFilter, notSelectedFilter, notHoverFilter]
|
|
190
|
-
}), /*#__PURE__*/_react.default.createElement(
|
|
198
|
+
}), /*#__PURE__*/_react.default.createElement(Layer, {
|
|
191
199
|
key: "".concat(group.layerId, "-selected"),
|
|
192
200
|
id: "".concat(group.layerId, "-selected"),
|
|
193
201
|
slot: 'bottom',
|
|
@@ -201,7 +209,7 @@ const MapBox = props => {
|
|
|
201
209
|
'fill-opacity': selectedOpacity
|
|
202
210
|
},
|
|
203
211
|
filter: ['all', groupFilter, selectedFilter, notHoverFilter]
|
|
204
|
-
}), /*#__PURE__*/_react.default.createElement(
|
|
212
|
+
}), /*#__PURE__*/_react.default.createElement(Layer, {
|
|
205
213
|
key: "".concat(group.layerId, "-hover"),
|
|
206
214
|
id: "".concat(group.layerId, "-hover"),
|
|
207
215
|
source: 'mapData',
|
|
@@ -214,7 +222,7 @@ const MapBox = props => {
|
|
|
214
222
|
'fill-opacity': hoverOpacity
|
|
215
223
|
},
|
|
216
224
|
filter: ['all', groupFilter, hoverFilter, notSelectedFilter]
|
|
217
|
-
}), /*#__PURE__*/_react.default.createElement(
|
|
225
|
+
}), /*#__PURE__*/_react.default.createElement(Layer, {
|
|
218
226
|
key: "".concat(group.layerId, "-selected-hover"),
|
|
219
227
|
id: "".concat(group.layerId, "-selected-hover"),
|
|
220
228
|
source: 'mapData',
|
|
@@ -232,7 +240,7 @@ const MapBox = props => {
|
|
|
232
240
|
const _textLayers = featureGroups === null || featureGroups === void 0 ? void 0 : featureGroups.map(group => {
|
|
233
241
|
const groupFilter = ['==', ['get', 'layerId'], group.layerId];
|
|
234
242
|
const labelFilter = ['has', 'label'];
|
|
235
|
-
return /*#__PURE__*/_react.default.createElement(
|
|
243
|
+
return /*#__PURE__*/_react.default.createElement(Layer, {
|
|
236
244
|
key: "".concat(group.layerId, "-label"),
|
|
237
245
|
id: "".concat(group.layerId, "-label"),
|
|
238
246
|
source: 'mapData',
|
|
@@ -269,7 +277,7 @@ const MapBox = props => {
|
|
|
269
277
|
} = _ref;
|
|
270
278
|
return "".concat(layerId, "/").concat(featureId);
|
|
271
279
|
});
|
|
272
|
-
return /*#__PURE__*/_react.default.createElement(
|
|
280
|
+
return /*#__PURE__*/_react.default.createElement(Layer, {
|
|
273
281
|
key: "highlight-".concat(group.highlightId, "-").concat(index),
|
|
274
282
|
id: "highlight-".concat(group.highlightId, "-").concat(index),
|
|
275
283
|
source: 'mapData',
|
|
@@ -293,7 +301,7 @@ const MapBox = props => {
|
|
|
293
301
|
return clusteredMarkers.map((markers, i) => {
|
|
294
302
|
if (markers.length === 1) {
|
|
295
303
|
const marker = markers[0];
|
|
296
|
-
return /*#__PURE__*/_react.default.createElement(
|
|
304
|
+
return /*#__PURE__*/_react.default.createElement(Marker, {
|
|
297
305
|
className: "map-marker",
|
|
298
306
|
key: "marker-".concat(i),
|
|
299
307
|
longitude: marker.longitude,
|
|
@@ -318,7 +326,7 @@ const MapBox = props => {
|
|
|
318
326
|
const latAvg = latSum / markers.length;
|
|
319
327
|
const lngAvg = lngSum / markers.length;
|
|
320
328
|
const selected = markers.some(marker => marker.selected);
|
|
321
|
-
return /*#__PURE__*/_react.default.createElement(
|
|
329
|
+
return /*#__PURE__*/_react.default.createElement(Marker, {
|
|
322
330
|
className: "map-marker map-marker--cluster",
|
|
323
331
|
key: "marker-".concat(i),
|
|
324
332
|
longitude: lngAvg,
|
|
@@ -414,7 +422,7 @@ const MapBox = props => {
|
|
|
414
422
|
return [...fillLayers.map(layer => layer.props.id), ...highlightLayers.map(layer => layer.props.id), ...borderLayers.map(layer => layer.props.id), ...textLayers.map(layer => layer.props.id)];
|
|
415
423
|
}, [borderLayers, fillLayers, highlightLayers, textLayers]);
|
|
416
424
|
(0, _useMaintainLayerOrder.useMaintainLayerOrder)(mapRef, orderedLayerIds);
|
|
417
|
-
return /*#__PURE__*/_react.default.createElement(
|
|
425
|
+
return /*#__PURE__*/_react.default.createElement(Map, {
|
|
418
426
|
key: mapId,
|
|
419
427
|
attributionControl: false,
|
|
420
428
|
cursor: cursor,
|
|
@@ -437,10 +445,10 @@ const MapBox = props => {
|
|
|
437
445
|
onMouseOver: onMouseOver,
|
|
438
446
|
onMouseOut: onMouseOut,
|
|
439
447
|
onMouseMove: onMouseMove
|
|
440
|
-
}, isDesktop && !hideFullScreenControl && /*#__PURE__*/_react.default.createElement(
|
|
448
|
+
}, isDesktop && !hideFullScreenControl && /*#__PURE__*/_react.default.createElement(FullscreenControl, {
|
|
441
449
|
position: "top-left",
|
|
442
450
|
containerId: containerId
|
|
443
|
-
}), !hideZoomControl && /*#__PURE__*/_react.default.createElement(
|
|
451
|
+
}), !hideZoomControl && /*#__PURE__*/_react.default.createElement(NavigationControl, {
|
|
444
452
|
showCompass: false,
|
|
445
453
|
style: {
|
|
446
454
|
marginRight: theme.spacing(2),
|
|
@@ -469,7 +477,7 @@ const MapBox = props => {
|
|
|
469
477
|
width: 'max-content',
|
|
470
478
|
zIndex: 1000
|
|
471
479
|
}
|
|
472
|
-
}, controlBottomLeft), geojson && /*#__PURE__*/_react.default.createElement(
|
|
480
|
+
}, controlBottomLeft), geojson && /*#__PURE__*/_react.default.createElement(Source, {
|
|
473
481
|
id: "mapData",
|
|
474
482
|
type: "geojson",
|
|
475
483
|
data: geojson
|
|
@@ -6,43 +6,39 @@ export type MapLayerLegendItem = {
|
|
|
6
6
|
label: string;
|
|
7
7
|
style: MapIconComponentStyle | MapFillComponentStyle;
|
|
8
8
|
};
|
|
9
|
-
|
|
9
|
+
type BaseMapLegendGroup = {
|
|
10
10
|
disabled?: boolean;
|
|
11
|
-
tooltip?: string;
|
|
12
11
|
title: string;
|
|
12
|
+
tooltip?: string;
|
|
13
|
+
};
|
|
14
|
+
export type MapLayerLegendGroup = {
|
|
13
15
|
type: 'layer';
|
|
14
16
|
items: MapLayerLegendItem[];
|
|
15
|
-
setSelectedLayer: (id: string | undefined) => void;
|
|
16
17
|
selectedLayer?: string;
|
|
17
|
-
|
|
18
|
+
setSelectedLayer: (id: string | undefined) => void;
|
|
19
|
+
} & BaseMapLegendGroup;
|
|
18
20
|
export type MapMarkerLegendItem = {
|
|
19
21
|
disabled?: boolean;
|
|
20
22
|
id: string;
|
|
21
23
|
label: string;
|
|
22
|
-
style: MapIconComponentStyle;
|
|
23
24
|
setVisible?: (visible: boolean) => void;
|
|
25
|
+
style: MapIconComponentStyle;
|
|
24
26
|
visible: boolean;
|
|
25
27
|
};
|
|
26
28
|
export type MapMarkerLegendGroup = {
|
|
27
|
-
disabled?: boolean;
|
|
28
|
-
tooltip?: string;
|
|
29
|
-
title: string;
|
|
30
|
-
type: 'marker';
|
|
31
29
|
items: MapMarkerLegendItem[];
|
|
32
|
-
|
|
30
|
+
type: 'marker';
|
|
31
|
+
} & BaseMapLegendGroup;
|
|
33
32
|
export type MapHighlightLegendItem = {
|
|
34
33
|
label: string;
|
|
35
34
|
style: MapFillComponentStyle;
|
|
36
35
|
};
|
|
37
36
|
export type MapHighlightLegendGroup = {
|
|
38
|
-
disabled?: boolean;
|
|
39
|
-
tooltip?: string;
|
|
40
|
-
title: string;
|
|
41
|
-
type: 'highlight';
|
|
42
37
|
items: MapHighlightLegendItem[];
|
|
43
38
|
setVisible?: (visible: boolean) => void;
|
|
39
|
+
type: 'highlight';
|
|
44
40
|
visible: boolean;
|
|
45
|
-
};
|
|
41
|
+
} & BaseMapLegendGroup;
|
|
46
42
|
export type MapLegendGroup = MapMarkerLegendGroup | MapLayerLegendGroup | MapHighlightLegendGroup;
|
|
47
43
|
export type MapLegendProps = {
|
|
48
44
|
legends: MapLegendGroup[];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"MapLegend.d.ts","sourceRoot":"","sources":["../../../src/components/Map/MapLegend.tsx"],"names":[],"mappings":";AAOA,OAAO,EAAE,qBAAqB,EAAE,qBAAqB,EAAE,MAAM,SAAS,CAAC;AAEvE,MAAM,MAAM,kBAAkB,GAAG;IAC/B,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,qBAAqB,GAAG,qBAAqB,CAAC;CACtD,CAAC;AAEF,
|
|
1
|
+
{"version":3,"file":"MapLegend.d.ts","sourceRoot":"","sources":["../../../src/components/Map/MapLegend.tsx"],"names":[],"mappings":";AAOA,OAAO,EAAE,qBAAqB,EAAE,qBAAqB,EAAE,MAAM,SAAS,CAAC;AAEvE,MAAM,MAAM,kBAAkB,GAAG;IAC/B,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,qBAAqB,GAAG,qBAAqB,CAAC;CACtD,CAAC;AAEF,KAAK,kBAAkB,GAAG;IACxB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,KAAK,EAAE,MAAM,CAAC;IACd,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB,CAAC;AAEF,MAAM,MAAM,mBAAmB,GAAG;IAChC,IAAI,EAAE,OAAO,CAAC;IACd,KAAK,EAAE,kBAAkB,EAAE,CAAC;IAC5B,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,gBAAgB,EAAE,CAAC,EAAE,EAAE,MAAM,GAAG,SAAS,KAAK,IAAI,CAAC;CACpD,GAAG,kBAAkB,CAAC;AAEvB,MAAM,MAAM,mBAAmB,GAAG;IAChC,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,EAAE,MAAM,CAAC;IACd,UAAU,CAAC,EAAE,CAAC,OAAO,EAAE,OAAO,KAAK,IAAI,CAAC;IACxC,KAAK,EAAE,qBAAqB,CAAC;IAC7B,OAAO,EAAE,OAAO,CAAC;CAClB,CAAC;AAEF,MAAM,MAAM,oBAAoB,GAAG;IACjC,KAAK,EAAE,mBAAmB,EAAE,CAAC;IAC7B,IAAI,EAAE,QAAQ,CAAC;CAChB,GAAG,kBAAkB,CAAC;AAEvB,MAAM,MAAM,sBAAsB,GAAG;IACnC,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,qBAAqB,CAAC;CAC9B,CAAC;AAEF,MAAM,MAAM,uBAAuB,GAAG;IACpC,KAAK,EAAE,sBAAsB,EAAE,CAAC;IAChC,UAAU,CAAC,EAAE,CAAC,OAAO,EAAE,OAAO,KAAK,IAAI,CAAC;IACxC,IAAI,EAAE,WAAW,CAAC;IAClB,OAAO,EAAE,OAAO,CAAC;CAClB,GAAG,kBAAkB,CAAC;AAEvB,MAAM,MAAM,cAAc,GAAG,oBAAoB,GAAG,mBAAmB,GAAG,uBAAuB,CAAC;AAElG,MAAM,MAAM,cAAc,GAAG;IAC3B,OAAO,EAAE,cAAc,EAAE,CAAC;CAC3B,CAAC;AAEF,QAAA,MAAM,SAAS,gBAAiB,cAAc,KAAG,WA0LhD,CAAC;AAEF,eAAe,SAAS,CAAC"}
|
|
@@ -162,9 +162,9 @@ const MapLegend = _ref => {
|
|
|
162
162
|
justifyItems: "flex-start",
|
|
163
163
|
padding: theme.spacing(2, 1),
|
|
164
164
|
flexDirection: 'column',
|
|
165
|
-
maxWidth: isDesktop ? '184px' : '
|
|
165
|
+
maxWidth: isDesktop ? '184px' : 'stretch',
|
|
166
166
|
minWidth: isDesktop ? '160px' : undefined,
|
|
167
|
-
width: isDesktop ? 'auto' : '
|
|
167
|
+
width: isDesktop ? 'auto' : 'stretch',
|
|
168
168
|
margin: 0,
|
|
169
169
|
overflow: 'scroll'
|
|
170
170
|
}, legendComponents);
|
|
@@ -3,28 +3,24 @@ import { MapMouseEvent } from 'mapbox-gl';
|
|
|
3
3
|
import { MapDrawerSize } from './MapDrawer';
|
|
4
4
|
import { MapHighlightLegendItem } from './MapLegend';
|
|
5
5
|
import { MapCursor, MapHighlightGroup, MapLayer, MapMarkerGroup, MapViewStyle } from './types';
|
|
6
|
-
|
|
7
|
-
highlight: MapHighlightGroup;
|
|
8
|
-
legendItems: MapHighlightLegendItem[];
|
|
6
|
+
type BaseMapFeatureSection = {
|
|
9
7
|
sectionDisabled?: boolean;
|
|
10
8
|
sectionTitle: string;
|
|
11
9
|
sectionTooltip?: string;
|
|
12
|
-
type: 'highlight';
|
|
13
10
|
};
|
|
11
|
+
export type MapHighlightFeatureSection = {
|
|
12
|
+
highlight: MapHighlightGroup;
|
|
13
|
+
legendItems: MapHighlightLegendItem[];
|
|
14
|
+
type: 'highlight';
|
|
15
|
+
} & BaseMapFeatureSection;
|
|
14
16
|
export type MapLayerFeatureSection = {
|
|
15
17
|
layers: MapLayer[];
|
|
16
|
-
sectionDisabled?: boolean;
|
|
17
|
-
sectionTitle: string;
|
|
18
|
-
sectionTooltip?: string;
|
|
19
18
|
type: 'layer';
|
|
20
|
-
};
|
|
19
|
+
} & BaseMapFeatureSection;
|
|
21
20
|
export type MapMarkerFeatureSection = {
|
|
22
21
|
groups: MapMarkerGroup[];
|
|
23
|
-
sectionDisabled?: boolean;
|
|
24
|
-
sectionTitle: string;
|
|
25
|
-
sectionTooltip?: string;
|
|
26
22
|
type: 'marker';
|
|
27
|
-
};
|
|
23
|
+
} & BaseMapFeatureSection;
|
|
28
24
|
export type MapFeatureSection = MapHighlightFeatureSection | MapLayerFeatureSection | MapMarkerFeatureSection;
|
|
29
25
|
export type MapComponentProps = {
|
|
30
26
|
clusterRadius?: number;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/Map/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,SAAS,EAAkC,MAAM,OAAO,CAAC;AAEzE,OAAO,EAAE,aAAa,EAAE,MAAM,WAAW,CAAC;AAI1C,OAAkB,EAAE,aAAa,EAAE,MAAM,aAAa,CAAC;AACvD,OAAkB,EAAE,sBAAsB,EAAkB,MAAM,aAAa,CAAC;AAChF,OAAO,EAAE,SAAS,EAAE,iBAAiB,EAAE,QAAQ,EAAE,cAAc,EAAE,YAAY,EAAE,MAAM,SAAS,CAAC;AAE/F,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/Map/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,SAAS,EAAkC,MAAM,OAAO,CAAC;AAEzE,OAAO,EAAE,aAAa,EAAE,MAAM,WAAW,CAAC;AAI1C,OAAkB,EAAE,aAAa,EAAE,MAAM,aAAa,CAAC;AACvD,OAAkB,EAAE,sBAAsB,EAAkB,MAAM,aAAa,CAAC;AAChF,OAAO,EAAE,SAAS,EAAE,iBAAiB,EAAE,QAAQ,EAAE,cAAc,EAAE,YAAY,EAAE,MAAM,SAAS,CAAC;AAE/F,KAAK,qBAAqB,GAAG;IAC3B,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B,YAAY,EAAE,MAAM,CAAC;IACrB,cAAc,CAAC,EAAE,MAAM,CAAC;CACzB,CAAC;AAEF,MAAM,MAAM,0BAA0B,GAAG;IACvC,SAAS,EAAE,iBAAiB,CAAC;IAC7B,WAAW,EAAE,sBAAsB,EAAE,CAAC;IACtC,IAAI,EAAE,WAAW,CAAC;CACnB,GAAG,qBAAqB,CAAC;AAE1B,MAAM,MAAM,sBAAsB,GAAG;IACnC,MAAM,EAAE,QAAQ,EAAE,CAAC;IACnB,IAAI,EAAE,OAAO,CAAC;CACf,GAAG,qBAAqB,CAAC;AAE1B,MAAM,MAAM,uBAAuB,GAAG;IACpC,MAAM,EAAE,cAAc,EAAE,CAAC;IACzB,IAAI,EAAE,QAAQ,CAAC;CAChB,GAAG,qBAAqB,CAAC;AAE1B,MAAM,MAAM,iBAAiB,GAAG,0BAA0B,GAAG,sBAAsB,GAAG,uBAAuB,CAAC;AAE9G,MAAM,MAAM,iBAAiB,GAAG;IAC9B,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,iBAAiB,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IACpC,eAAe,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAClC,cAAc,CAAC,EAAE,SAAS,CAAC;IAC3B,SAAS,CAAC,EAAE,SAAS,CAAC;IACtB,sBAAsB,CAAC,EAAE,OAAO,CAAC;IACjC,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,cAAc,CAAC,EAAE,SAAS,CAAC;IAC3B,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,UAAU,CAAC,EAAE,aAAa,CAAC;IAC3B,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,QAAQ,CAAC,EAAE,iBAAiB,EAAE,CAAC;IAC/B,qBAAqB,CAAC,EAAE,OAAO,CAAC;IAChC,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,uBAAuB,CAAC,EAAE,OAAO,CAAC;IAClC,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B,sBAAsB,CAAC,EAAE,MAAM,CAAC;IAChC,mBAAmB,CAAC,EAAE,YAAY,CAAC;IACnC,gBAAgB,CAAC,EAAE;QACjB,QAAQ,CAAC,EAAE,MAAM,CAAC;QAClB,SAAS,CAAC,EAAE,MAAM,CAAC;QACnB,IAAI,CAAC,EAAE,MAAM,CAAC;KACf,CAAC;IACF,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,aAAa,CAAC,EAAE,CAAC,KAAK,EAAE,aAAa,KAAK,IAAI,CAAC;IAC/C,aAAa,CAAC,EAAE,CAAC,IAAI,EAAE,OAAO,KAAK,IAAI,CAAC;IACxC,KAAK,EAAE,MAAM,CAAC;CACf,CAAC;AAEF,QAAA,MAAM,YAAY,UAAW,iBAAiB,4CAuO7C,CAAC;AAEF,eAAe,YAAY,CAAC"}
|