@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abi-software/mapintegratedvuer",
3
- "version": "1.2.0-beta.2",
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-3",
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.1.0",
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) {