@geode/opengeodeweb-front 10.25.0-rc.4 → 10.25.0-rc.5
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.
|
@@ -21,8 +21,7 @@ const { showDialog, width } = defineProps({
|
|
|
21
21
|
variant="panel"
|
|
22
22
|
padding="pa-0"
|
|
23
23
|
class="position-absolute elevation-24"
|
|
24
|
-
style="top: 90px; right: 55px"
|
|
25
|
-
z-index="1"
|
|
24
|
+
style="top: 90px; right: 55px; z-index: 1"
|
|
26
25
|
>
|
|
27
26
|
<v-card-text class="pa-0">
|
|
28
27
|
<Saver />
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
<script setup>
|
|
2
|
-
import ActionButton from "@ogw_front/components/ActionButton
|
|
2
|
+
import ActionButton from "@ogw_front/components/ActionButton";
|
|
3
3
|
import CameraBookmarkIcon from "@ogw_front/assets/viewer_svgs/camera-bookmark.svg";
|
|
4
4
|
import CameraManager from "@ogw_front/components/CameraManager";
|
|
5
|
-
import CameraOrientation from "@ogw_front/components/CameraOrientation
|
|
5
|
+
import CameraOrientation from "@ogw_front/components/CameraOrientation";
|
|
6
6
|
import Screenshot from "@ogw_front/components/Screenshot";
|
|
7
7
|
import ZScaling from "@ogw_front/components/ZScaling";
|
|
8
8
|
import schemas from "@geode/opengeodeweb-viewer/opengeodeweb_viewer_schemas.json";
|
|
@@ -203,7 +203,7 @@ const camera_options = computed(() => [
|
|
|
203
203
|
@select="hybridViewerStore.setCameraOrientation"
|
|
204
204
|
/>
|
|
205
205
|
<Screenshot v-model="take_screenshot" />
|
|
206
|
-
<CameraManager :
|
|
206
|
+
<CameraManager :showDialog="show_camera_manager" @close="show_camera_manager = false" />
|
|
207
207
|
<ZScaling
|
|
208
208
|
v-model:show="showZScaling"
|
|
209
209
|
v-model="zScale"
|
package/package.json
CHANGED