@vcmap/ui 6.1.8 → 6.1.10
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/README.md +10 -30
- package/config/www.config.json +4 -0
- package/dist/assets/cesium.js +1 -1
- package/dist/assets/{core-773161cb.js → core-96fbb6c6.js} +16 -10
- package/dist/assets/core.js +1 -1
- package/dist/assets/ol.js +1 -1
- package/dist/assets/{ui-f02afadd.css → ui-4b036a26.css} +1 -1
- package/dist/assets/{ui-f02afadd.js → ui-4b036a26.js} +1269 -1269
- package/dist/assets/ui.js +1 -1
- package/dist/assets/vue.js +1 -1
- package/dist/assets/{vuetify-aae1edc7.js → vuetify-c23959eb.js} +1 -1
- package/dist/assets/vuetify.js +1 -1
- package/package.json +1 -1
- package/plugins/package.json +2 -1
- package/src/components/flight/VcsFlightAnchorsComponent.vue +6 -1
- package/src/featureInfo/balloonFeatureInfoView.js +7 -2
- /package/dist/assets/{cesium-2568bf9a.js → cesium-5bb6c9cc.js} +0 -0
- /package/dist/assets/{ol-73015f5e.js → ol-bdb109a6.js} +0 -0
- /package/dist/assets/{vue-e4af6ebb.js → vue-311cece7.js} +0 -0
- /package/dist/assets/{vuetify-aae1edc7.css → vuetify-c23959eb.css} +0 -0
package/dist/assets/ui.js
CHANGED
@@ -1 +1 @@
|
|
1
|
-
export * from "./ui-
|
1
|
+
export * from "./ui-4b036a26.js";
|
package/dist/assets/vue.js
CHANGED
@@ -1 +1 @@
|
|
1
|
-
export * from "./vue-
|
1
|
+
export * from "./vue-311cece7.js";
|
@@ -10,7 +10,7 @@ function loadCss(href) {
|
|
10
10
|
elem.onerror = reject;
|
11
11
|
document.head.appendChild(elem);
|
12
12
|
});
|
13
|
-
} await loadCss('./assets/vuetify-
|
13
|
+
} await loadCss('./assets/vuetify-c23959eb.css');import { watch as Q, onScopeDispose as Ze, effectScope as Zl, shallowRef as K, Fragment as ie, reactive as it, computed as b, watchEffect as Fe, toRefs as Yt, capitalize as Nn, isVNode as Rc, Comment as Nc, unref as ot, warn as ja, getCurrentInstance as Hc, ref as j, provide as De, inject as ye, defineComponent as zc, camelize as Ir, h as Gt, toRaw as Be, createVNode as r, mergeProps as O, onBeforeUnmount as Qe, readonly as Ql, onDeactivated as _r, onActivated as Wc, onMounted as Ye, nextTick as we, TransitionGroup as Jl, Transition as jt, isRef as Tn, toRef as $, onBeforeMount as ra, withDirectives as $e, resolveDirective as gt, vShow as Ct, onUpdated as jc, Text as Uc, resolveDynamicComponent as Yc, markRaw as Gc, Teleport as Kc, cloneVNode as qc, createTextVNode as Tt, onUnmounted as Tr, onBeforeUpdate as Xc, withModifiers as Tl, toDisplayString as Zc, vModelText as Qc, resolveComponent as Jc, render as Ar } from "./vue-311cece7.js";
|
14
14
|
function rt(e, n) {
|
15
15
|
let t;
|
16
16
|
function a() {
|
package/dist/assets/vuetify.js
CHANGED
@@ -1 +1 @@
|
|
1
|
-
export * from "./vuetify-
|
1
|
+
export * from "./vuetify-c23959eb.js";
|
package/package.json
CHANGED
package/plugins/package.json
CHANGED
@@ -27,7 +27,8 @@
|
|
27
27
|
"@vcmap/list-view": "^1.0.0",
|
28
28
|
"@vcmap/pointcloud-settings": "^1.0.0",
|
29
29
|
"@vcmap/gamepad": "^1.0.0",
|
30
|
-
"@vcmap/sensorthings": "^1.0.0"
|
30
|
+
"@vcmap/sensorthings": "^1.0.0",
|
31
|
+
"@vcmap/cesium-inspector": "^2.0.0"
|
31
32
|
},
|
32
33
|
"optionalDependencies": {
|
33
34
|
"@vcmap/planning": "^6.0.0"
|
@@ -26,7 +26,7 @@
|
|
26
26
|
>
|
27
27
|
<template #item.title="{ item, index }">
|
28
28
|
<div class="d-flex align-center">
|
29
|
-
<span>{{ $st(item.title) }}</span>
|
29
|
+
<span class="anchorTitle">{{ $st(item.title) }}</span>
|
30
30
|
<v-spacer />
|
31
31
|
<div class="duration-input">
|
32
32
|
<VcsTextField
|
@@ -350,6 +350,7 @@
|
|
350
350
|
overflow: visible;
|
351
351
|
}
|
352
352
|
.duration-input {
|
353
|
+
min-width: 60px;
|
353
354
|
width: 60px;
|
354
355
|
}
|
355
356
|
.z-index-99 {
|
@@ -359,4 +360,8 @@
|
|
359
360
|
min-height: 0 !important;
|
360
361
|
margin-top: -8px;
|
361
362
|
}
|
363
|
+
.anchorTitle {
|
364
|
+
overflow: hidden;
|
365
|
+
text-overflow: ellipsis;
|
366
|
+
}
|
362
367
|
</style>
|
@@ -13,6 +13,7 @@ import {
|
|
13
13
|
isAbsoluteHeightReference,
|
14
14
|
isRelativeHeightReference,
|
15
15
|
Projection,
|
16
|
+
VectorProperties,
|
16
17
|
} from '@vcmap/core';
|
17
18
|
import { check } from '@vcsuite/check';
|
18
19
|
import AbstractFeatureInfoView from './abstractFeatureInfoView.js';
|
@@ -77,10 +78,14 @@ function getPositionFromFeature(feature, layer, clickedPosition) {
|
|
77
78
|
let position = null;
|
78
79
|
if (feature instanceof Feature && feature.getGeometry() instanceof Point) {
|
79
80
|
const point = feature.getGeometry();
|
80
|
-
const
|
81
|
+
const vectorProperties =
|
82
|
+
layer.vectorProperties ??
|
83
|
+
layer.featureProvider?.vectorProperties ??
|
84
|
+
new VectorProperties();
|
85
|
+
const renderAs = vectorProperties.renderAs(feature);
|
81
86
|
if (renderAs === 'geometry') {
|
82
87
|
// special case where we do not want to use the clickedPosition but the exact Position of the Point
|
83
|
-
const heightInfo = getHeightInfo(feature, point,
|
88
|
+
const heightInfo = getHeightInfo(feature, point, vectorProperties);
|
84
89
|
({ heightReference } = heightInfo);
|
85
90
|
let height = clickedPosition?.[2] ?? 0;
|
86
91
|
position = point.getCoordinates();
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|