@abi-software/mapintegratedvuer 1.2.0-beta.2 → 1.2.0-beta.3
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/{ContentMixin-B6Dt-gIO.js → ContentMixin-BF1AsL73.js} +51 -50
- package/dist/{Flatmap-BXFp07NV.js → Flatmap-B7E6CJXk.js} +4 -4
- package/dist/{Iframe-V17rWVEo.js → Iframe-CuAgkNdL.js} +2 -2
- package/dist/{MultiFlatmap-IPV-kW9S.js → MultiFlatmap-DBSNZ825.js} +4 -4
- package/dist/{Plot-gbrHVZqT.js → Plot-BZRoihTL.js} +2 -2
- package/dist/{Scaffold-iZP8Wbdq.js → Scaffold-DI8TuMaq.js} +6338 -6343
- package/dist/{Simulation-nCrQs5q-.js → Simulation-BwirbTjC.js} +2 -2
- package/dist/{flatmapvuer-DR46R-h5.js → flatmapvuer-CWBQT6qg.js} +7 -5
- package/dist/{index-B4DnOYh7.js → index-BVYbfsK6.js} +1 -1
- package/dist/mapintegratedvuer.js +1 -1
- package/dist/mapintegratedvuer.umd.cjs +193 -193
- package/dist/{style-DirL9q7N.js → style-D3tYXMtJ.js} +1 -1
- package/dist/style.css +1 -1
- package/package.json +3 -3
- package/src/components/viewers/Scaffold.vue +4 -0
- package/src/mixins/ContentMixin.js +3 -0
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@abi-software/mapintegratedvuer",
|
3
|
-
"version": "1.2.0-beta.
|
3
|
+
"version": "1.2.0-beta.3",
|
4
4
|
"license": "Apache-2.0",
|
5
5
|
"scripts": {
|
6
6
|
"serve": "vite --host --force",
|
@@ -48,10 +48,10 @@
|
|
48
48
|
"*.js"
|
49
49
|
],
|
50
50
|
"dependencies": {
|
51
|
-
"@abi-software/flatmapvuer": "^1.1.2-alpha-
|
51
|
+
"@abi-software/flatmapvuer": "^1.1.2-alpha-5",
|
52
52
|
"@abi-software/map-side-bar": "^2.2.1-alpha-3",
|
53
53
|
"@abi-software/plotvuer": "1.0.0",
|
54
|
-
"@abi-software/scaffoldvuer": "^1.
|
54
|
+
"@abi-software/scaffoldvuer": "^1.2.0-beta.0",
|
55
55
|
"@abi-software/simulationvuer": "1.0.0",
|
56
56
|
"@abi-software/svg-sprite": "1.0.0",
|
57
57
|
"@element-plus/icons-vue": "^2.3.1",
|
@@ -25,6 +25,7 @@
|
|
25
25
|
:display-markers="false"
|
26
26
|
:enableOpenMapUI="true"
|
27
27
|
:view-u-r-l="entry.viewUrl"
|
28
|
+
:markerCluster="true"
|
28
29
|
:markerLabels="markerLabels"
|
29
30
|
:flatmapAPI="flatmapAPI"
|
30
31
|
/>
|
@@ -155,6 +156,9 @@ export default {
|
|
155
156
|
internalName: undefined,
|
156
157
|
};
|
157
158
|
if (resource && resource[0]) {
|
159
|
+
if (resource[0].data?.id === undefined || resource[0].data?.id === "") {
|
160
|
+
resource[0].data.id = resource[0].data?.group;
|
161
|
+
}
|
158
162
|
result.internalName = resource[0].data.id;
|
159
163
|
result.eventType = "highlighted";
|
160
164
|
}
|
@@ -175,6 +175,9 @@ export default {
|
|
175
175
|
}
|
176
176
|
} else if (type == "Scaffold") {
|
177
177
|
if (resource && resource[0]) {
|
178
|
+
if (resource[0].data?.id === undefined || resource[0].data?.id === "") {
|
179
|
+
resource[0].data.id = resource[0].data?.group;
|
180
|
+
}
|
178
181
|
result.internalName = resource[0].data.id;
|
179
182
|
// Facet search if marker is clicked
|
180
183
|
if (resource[0].data.lastActionOnMarker === true) {
|