@abi-software/flatmapvuer 1.9.0 → 1.9.1-beta.0
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 +614 -597
- package/dist/flatmapvuer.umd.cjs +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/src/components/FlatmapVuer.vue +10 -2
- package/src/components/MultiFlatmapVuer.vue +9 -0
package/package.json
CHANGED
|
@@ -558,7 +558,7 @@ Please use `const` to assign meaningful names to them...
|
|
|
558
558
|
</template>
|
|
559
559
|
</el-popover>
|
|
560
560
|
</el-row>
|
|
561
|
-
<el-row>
|
|
561
|
+
<el-row v-if="showLocalSettings">
|
|
562
562
|
<el-popover
|
|
563
563
|
content="Change settings"
|
|
564
564
|
placement="right"
|
|
@@ -1277,7 +1277,7 @@ export default {
|
|
|
1277
1277
|
},
|
|
1278
1278
|
/**
|
|
1279
1279
|
* Function to highlight paths and features
|
|
1280
|
-
* @param data
|
|
1280
|
+
* @param data
|
|
1281
1281
|
*/
|
|
1282
1282
|
zoomToFeatures: function (data) {
|
|
1283
1283
|
if (this.mapImp) {
|
|
@@ -2972,6 +2972,14 @@ export default {
|
|
|
2972
2972
|
type: Boolean,
|
|
2973
2973
|
default: false,
|
|
2974
2974
|
},
|
|
2975
|
+
/**
|
|
2976
|
+
* The option to show local settings UI
|
|
2977
|
+
* (background colour, flight path, viewing mode, etc.)
|
|
2978
|
+
*/
|
|
2979
|
+
showLocalSettings: {
|
|
2980
|
+
type: Boolean,
|
|
2981
|
+
default: true,
|
|
2982
|
+
},
|
|
2975
2983
|
},
|
|
2976
2984
|
provide() {
|
|
2977
2985
|
return {
|
|
@@ -86,6 +86,7 @@
|
|
|
86
86
|
:mapManager="mapManagerRef"
|
|
87
87
|
:flatmapAPI="flatmapAPI"
|
|
88
88
|
:sparcAPI="sparcAPI"
|
|
89
|
+
:showLocalSettings="showLocalSettings"
|
|
89
90
|
/>
|
|
90
91
|
</div>
|
|
91
92
|
</template>
|
|
@@ -762,6 +763,14 @@ export default {
|
|
|
762
763
|
type: Boolean,
|
|
763
764
|
default: false,
|
|
764
765
|
},
|
|
766
|
+
/**
|
|
767
|
+
* The option to show local settings UI
|
|
768
|
+
* (background colour, flight path, viewing mode, etc.)
|
|
769
|
+
*/
|
|
770
|
+
showLocalSettings: {
|
|
771
|
+
type: Boolean,
|
|
772
|
+
default: true,
|
|
773
|
+
},
|
|
765
774
|
},
|
|
766
775
|
data: function () {
|
|
767
776
|
return {
|