@abi-software/flatmapvuer 1.9.2 → 1.9.3-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/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"
|
|
@@ -3013,6 +3013,14 @@ export default {
|
|
|
3013
3013
|
type: Boolean,
|
|
3014
3014
|
default: false,
|
|
3015
3015
|
},
|
|
3016
|
+
/**
|
|
3017
|
+
* The option to show local settings UI
|
|
3018
|
+
* (background colour, flight path, viewing mode, etc.)
|
|
3019
|
+
*/
|
|
3020
|
+
showLocalSettings: {
|
|
3021
|
+
type: Boolean,
|
|
3022
|
+
default: true,
|
|
3023
|
+
},
|
|
3016
3024
|
},
|
|
3017
3025
|
provide() {
|
|
3018
3026
|
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 {
|