@abi-software/flatmapvuer 1.9.1 → 1.9.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/flatmapvuer.js +3 -3
- package/dist/flatmapvuer.umd.cjs +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/src/components/FlatmapVuer.vue +11 -9
package/package.json
CHANGED
|
@@ -1934,16 +1934,18 @@ export default {
|
|
|
1934
1934
|
return false
|
|
1935
1935
|
},
|
|
1936
1936
|
changeConnectivitySource: async function (payload) {
|
|
1937
|
-
const {
|
|
1938
|
-
|
|
1939
|
-
|
|
1940
|
-
|
|
1941
|
-
|
|
1937
|
+
const { entry, connectivitySource } = payload;
|
|
1938
|
+
if (entry.mapId === this.mapImp.id) {
|
|
1939
|
+
await this.flatmapQueries.queryForConnectivityNew(this.mapImp, entry.featureId[0], connectivitySource);
|
|
1940
|
+
this.tooltipEntry = this.tooltipEntry.map((tooltip) => {
|
|
1941
|
+
if (tooltip.featureId[0] === entry.featureId[0]) {
|
|
1942
|
+
return this.flatmapQueries.updateTooltipData(tooltip);
|
|
1943
|
+
}
|
|
1944
|
+
return tooltip;
|
|
1945
|
+
})
|
|
1946
|
+
if (this.checkConnectivityTooltipEntry(this.tooltipEntry)) {
|
|
1947
|
+
this.$emit('connectivity-info-open', this.tooltipEntry);
|
|
1942
1948
|
}
|
|
1943
|
-
return tooltip;
|
|
1944
|
-
})
|
|
1945
|
-
if (this.checkConnectivityTooltipEntry(this.tooltipEntry)) {
|
|
1946
|
-
this.$emit('connectivity-info-open', this.tooltipEntry);
|
|
1947
1949
|
}
|
|
1948
1950
|
},
|
|
1949
1951
|
/**
|