@abi-software/mapintegratedvuer 1.8.0-isan.1 → 1.8.0-isan.2
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-CthZZNjI.js → ContentMixin-EFP5brsx.js} +7 -7
- package/dist/{Flatmap-Bi9esI2v.js → Flatmap-pz7hsrjo.js} +3 -3
- package/dist/{Iframe-bsYxppii.js → Iframe-CJ_SIovr.js} +2 -2
- package/dist/{MultiFlatmap-BWFsdMgS.js → MultiFlatmap-jpkWW4Qi.js} +3 -3
- package/dist/{Plot-gX8radCI.js → Plot-Ua4prIQw.js} +2 -2
- package/dist/{Scaffold-Dn3GeNi0.js → Scaffold-BQg2FztI.js} +2 -2
- package/dist/{Simulation-Zgs0MXh1.js → Simulation-CL_BXWNM.js} +2 -2
- package/dist/{index-DFkMrKek.js → index-CL-1I7C9.js} +2 -2
- package/dist/mapintegratedvuer.js +1 -1
- package/dist/mapintegratedvuer.umd.cjs +466 -466
- package/dist/{style-DlUxkFU-.js → style-g0koDyqm.js} +16494 -16338
- package/package.json +2 -2
- package/src/components/scripts/utilities.js +1 -1
- package/src/mixins/ContentMixin.js +14 -12
- package/src/mixins/DynamicMarkerMixin.js +1 -1
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@abi-software/mapintegratedvuer",
|
3
|
-
"version": "1.8.0-isan.
|
3
|
+
"version": "1.8.0-isan.2",
|
4
4
|
"license": "Apache-2.0",
|
5
5
|
"scripts": {
|
6
6
|
"serve": "vite --host --force",
|
@@ -50,7 +50,7 @@
|
|
50
50
|
"*.js"
|
51
51
|
],
|
52
52
|
"dependencies": {
|
53
|
-
"@abi-software/flatmapvuer": "^1.8.2-isan.
|
53
|
+
"@abi-software/flatmapvuer": "^1.8.2-isan.7",
|
54
54
|
"@abi-software/map-side-bar": "^2.7.2-isan.7",
|
55
55
|
"@abi-software/map-utilities": "^1.4.3-isan.1",
|
56
56
|
"@abi-software/plotvuer": "^1.0.3",
|
@@ -152,21 +152,23 @@ export default {
|
|
152
152
|
};
|
153
153
|
let labels = new Set();
|
154
154
|
if (resource?.feature['marker-terms']) {
|
155
|
-
resource.feature['marker-terms'].
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
155
|
+
if(resource.feature['marker-terms'].length > 0) {
|
156
|
+
resource.feature['marker-terms'].forEach((term) => {
|
157
|
+
labels.add(term.label)
|
158
|
+
});
|
159
|
+
labels.add(label)
|
160
|
+
if (labels.size > 0) {
|
161
|
+
returnedAction = {
|
162
|
+
type: "Facets",
|
163
|
+
labels: [...labels],
|
164
|
+
};
|
165
|
+
}
|
166
|
+
} else if (resource?.feature?.models) {
|
160
167
|
returnedAction = {
|
161
|
-
type: "
|
162
|
-
|
168
|
+
type: "PMRSearch",
|
169
|
+
term: resource.feature.models,
|
163
170
|
};
|
164
171
|
}
|
165
|
-
} else if (resource?.feature?.models) {
|
166
|
-
returnedAction = {
|
167
|
-
type: "PMRSearch",
|
168
|
-
term: resource.feature.models,
|
169
|
-
};
|
170
172
|
}
|
171
173
|
}
|
172
174
|
fireResourceSelected = true;
|
@@ -55,7 +55,7 @@ export default {
|
|
55
55
|
} else {
|
56
56
|
flatmapImp.addDatasetMarkers(fmMarkers);
|
57
57
|
}
|
58
|
-
flatmapImp.addMarkers(multiMarkers);
|
58
|
+
flatmapImp.addMarkers(multiMarkers,{ className: "standard-marker" } );
|
59
59
|
|
60
60
|
// Set the featured markers
|
61
61
|
if (this.entry.type === "MultiFlatmap") {
|