@abi-software/flatmapvuer 1.9.3-beta.0 → 1.9.3-beta.1
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
|
@@ -533,7 +533,7 @@ Please use `const` to assign meaningful names to them...
|
|
|
533
533
|
:class="{ open: drawerOpen, close: !drawerOpen }"
|
|
534
534
|
v-show="!disableUI"
|
|
535
535
|
>
|
|
536
|
-
<el-row>
|
|
536
|
+
<el-row v-if="showOpenMapButton">
|
|
537
537
|
<el-popover
|
|
538
538
|
:visible="hoverVisibilities[4].value"
|
|
539
539
|
content="Open new map"
|
|
@@ -1935,7 +1935,7 @@ export default {
|
|
|
1935
1935
|
},
|
|
1936
1936
|
changeConnectivitySource: async function (payload) {
|
|
1937
1937
|
const { entry, connectivitySource } = payload;
|
|
1938
|
-
if (entry.mapId === this.mapImp.id) {
|
|
1938
|
+
if (entry.mapId === this.mapImp.id) {
|
|
1939
1939
|
await this.flatmapQueries.queryForConnectivityNew(this.mapImp, entry.featureId[0], connectivitySource);
|
|
1940
1940
|
this.tooltipEntry = this.tooltipEntry.map((tooltip) => {
|
|
1941
1941
|
if (tooltip.featureId[0] === entry.featureId[0]) {
|
|
@@ -3021,6 +3021,13 @@ export default {
|
|
|
3021
3021
|
type: Boolean,
|
|
3022
3022
|
default: true,
|
|
3023
3023
|
},
|
|
3024
|
+
/**
|
|
3025
|
+
* The option to show open new map button
|
|
3026
|
+
*/
|
|
3027
|
+
showOpenMapButton: {
|
|
3028
|
+
type: Boolean,
|
|
3029
|
+
default: true,
|
|
3030
|
+
},
|
|
3024
3031
|
},
|
|
3025
3032
|
provide() {
|
|
3026
3033
|
return {
|
|
@@ -87,6 +87,7 @@
|
|
|
87
87
|
:flatmapAPI="flatmapAPI"
|
|
88
88
|
:sparcAPI="sparcAPI"
|
|
89
89
|
:showLocalSettings="showLocalSettings"
|
|
90
|
+
:showOpenMapButton="showOpenMapButton"
|
|
90
91
|
/>
|
|
91
92
|
</div>
|
|
92
93
|
</template>
|
|
@@ -771,6 +772,13 @@ export default {
|
|
|
771
772
|
type: Boolean,
|
|
772
773
|
default: true,
|
|
773
774
|
},
|
|
775
|
+
/**
|
|
776
|
+
* The option to show open new map button
|
|
777
|
+
*/
|
|
778
|
+
showOpenMapButton: {
|
|
779
|
+
type: Boolean,
|
|
780
|
+
default: true,
|
|
781
|
+
},
|
|
774
782
|
},
|
|
775
783
|
data: function () {
|
|
776
784
|
return {
|