@telicent-oss/ds 0.18.2 → 0.18.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/dist/ds.js +5 -4
- package/dist/ds.umd.cjs +5 -4
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/ds.js
CHANGED
|
@@ -79497,6 +79497,10 @@ const W_H_100 = {
|
|
|
79497
79497
|
height: "100%",
|
|
79498
79498
|
width: "100%"
|
|
79499
79499
|
};
|
|
79500
|
+
const initialFeatureCollection = {
|
|
79501
|
+
type: "FeatureCollection",
|
|
79502
|
+
features: []
|
|
79503
|
+
};
|
|
79500
79504
|
const initialView = {
|
|
79501
79505
|
latitude: 53.42148743839479,
|
|
79502
79506
|
longitude: -3.863068679356047,
|
|
@@ -79509,10 +79513,7 @@ const FeatureMap = ({
|
|
|
79509
79513
|
markers = [],
|
|
79510
79514
|
selected,
|
|
79511
79515
|
theme = "DocumentPink",
|
|
79512
|
-
geoPolygons =
|
|
79513
|
-
type: "FeatureCollection",
|
|
79514
|
-
features: []
|
|
79515
|
-
},
|
|
79516
|
+
geoPolygons = initialFeatureCollection,
|
|
79516
79517
|
initialViewState = initialView,
|
|
79517
79518
|
defaultStyle,
|
|
79518
79519
|
onClickMarker,
|
package/dist/ds.umd.cjs
CHANGED
|
@@ -79515,6 +79515,10 @@ uniform ${i3} ${s4} u_${a3};
|
|
|
79515
79515
|
height: "100%",
|
|
79516
79516
|
width: "100%"
|
|
79517
79517
|
};
|
|
79518
|
+
const initialFeatureCollection = {
|
|
79519
|
+
type: "FeatureCollection",
|
|
79520
|
+
features: []
|
|
79521
|
+
};
|
|
79518
79522
|
const initialView = {
|
|
79519
79523
|
latitude: 53.42148743839479,
|
|
79520
79524
|
longitude: -3.863068679356047,
|
|
@@ -79527,10 +79531,7 @@ uniform ${i3} ${s4} u_${a3};
|
|
|
79527
79531
|
markers = [],
|
|
79528
79532
|
selected,
|
|
79529
79533
|
theme = "DocumentPink",
|
|
79530
|
-
geoPolygons =
|
|
79531
|
-
type: "FeatureCollection",
|
|
79532
|
-
features: []
|
|
79533
|
-
},
|
|
79534
|
+
geoPolygons = initialFeatureCollection,
|
|
79534
79535
|
initialViewState = initialView,
|
|
79535
79536
|
defaultStyle,
|
|
79536
79537
|
onClickMarker,
|