@vcmap/ui 6.0.0-rc.3 → 6.0.0-rc.6
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/build/buildHelpers.js +60 -11
- package/build/buildTypes.js +9 -5
- package/build/bundle.js +1 -1
- package/build/info/publish.js +25 -31
- package/build/lintTypes.js +5 -0
- package/config/base.config.json +2 -7
- package/config/dev.config.json +11 -1
- package/config/projects.config.json +2 -1
- package/config/theming.config.json +68 -0
- package/config/www.config.json +27 -23
- package/dist/assets/@mdi/font/css/{materialdesignicons.min-7a4f6be0.css → materialdesignicons.min-680621ca.css} +1 -1
- package/dist/assets/{cesium-cb4dbfba.js → cesium-ccb4cc30.js} +272 -385
- package/dist/assets/cesium.js +1 -1
- package/dist/assets/{core-72f21835.js → core-e06aa7a6.js} +2313 -2321
- package/dist/assets/core.js +1 -1
- package/dist/assets/{ol-2d33bc8b.js → ol-e7981d5c.js} +233 -329
- package/dist/assets/ol.js +1 -1
- package/dist/assets/ui-5dda32d2.css +1 -0
- package/dist/assets/{ui-2ab43a16.js → ui-5dda32d2.js} +11344 -11078
- package/dist/assets/ui.js +1 -1
- package/dist/assets/vue-87bc6efe.js +6083 -0
- package/dist/assets/vue.js +1 -1
- package/dist/assets/{vuetify-760ced3b.css → vuetify-4c4e4217.css} +2 -2
- package/dist/assets/{vuetify-760ced3b.js → vuetify-4c4e4217.js} +8063 -8262
- package/dist/assets/vuetify.js +1 -1
- package/index.d.ts +27 -17
- package/index.js +16 -8
- package/package.json +17 -17
- package/plugins/@vcmap-show-case/custom-icons-example/README.md +3 -0
- package/plugins/@vcmap-show-case/custom-icons-example/assets/imageExample.png +0 -0
- package/plugins/@vcmap-show-case/custom-icons-example/assets/svgExample.svg +1 -0
- package/plugins/@vcmap-show-case/custom-icons-example/package.json +5 -0
- package/plugins/@vcmap-show-case/custom-icons-example/src/CustomIconsExample.vue +90 -0
- package/plugins/@vcmap-show-case/custom-icons-example/src/index.js +45 -0
- package/plugins/@vcmap-show-case/form-inputs-example/src/FormInputsExample.vue +2 -3
- package/plugins/@vcmap-show-case/plugin-editors/src/PluginEditors.vue +11 -7
- package/plugins/@vcmap-show-case/project-selector/src/ModulesListComponent.vue +18 -11
- package/plugins/@vcmap-show-case/search-example/src/index.js +1 -0
- package/plugins/@vcmap-show-case/search-example/src/searchImpl.js +35 -5
- package/plugins/@vcmap-show-case/theming-example/README.md +3 -0
- package/plugins/@vcmap-show-case/theming-example/package.json +5 -0
- package/plugins/@vcmap-show-case/theming-example/src/ThemingExample.vue +116 -0
- package/plugins/@vcmap-show-case/theming-example/src/index.js +53 -0
- package/plugins/@vcmap-show-case/toolbox-example/src/index.js +2 -1
- package/plugins/package.json +7 -23
- package/public/assets/@mdi/font/css/materialdesignicons.min.css +1 -1
- package/src/actions/StyleSelector.vue +1 -1
- package/src/actions/actionHelper.d.ts +4 -11
- package/src/actions/actionHelper.js +15 -7
- package/src/actions/listActions.d.ts +5 -5
- package/src/actions/listActions.js +2 -2
- package/src/application/VcsApp.vue +113 -50
- package/src/application/VcsApp.vue.d.ts +301 -4
- package/src/application/VcsAttributionsFooter.vue.d.ts +1 -1
- package/src/application/VcsContainer.vue +27 -10
- package/src/application/VcsContainer.vue.d.ts +241 -0
- package/src/application/VcsMainMap.vue +7 -7
- package/src/application/VcsMainMap.vue.d.ts +2 -2
- package/src/application/VcsNavbar.vue +14 -2
- package/src/application/VcsNavbar.vue.d.ts +1 -0
- package/src/application/VcsSplashScreen.vue +33 -26
- package/src/application/VcsTextPageFooter.vue +2 -1
- package/src/application/attributionsHelper.d.ts +20 -22
- package/src/application/attributionsHelper.js +4 -4
- package/src/callback/vcsCallback.d.ts +2 -2
- package/src/callback/vcsCallback.js +1 -1
- package/src/components/buttons/VcsActionButtonList.vue +61 -6
- package/src/components/buttons/VcsActionButtonList.vue.d.ts +28 -0
- package/src/components/buttons/VcsButton.vue +2 -4
- package/src/components/buttons/VcsButton.vue.d.ts +1 -1
- package/src/components/buttons/VcsFormButton.vue +4 -4
- package/src/components/buttons/VcsToolButton.vue +4 -2
- package/src/components/buttons/VcsToolButton.vue.d.ts +2 -2
- package/src/components/composables.d.ts +5 -0
- package/src/components/composables.js +79 -9
- package/src/components/extent/VcsExtent.vue +10 -6
- package/src/components/extent/VcsExtent.vue.d.ts +1 -0
- package/src/components/flight/VcsFlightComponent.vue +13 -13
- package/src/components/flight/VcsFlightComponent.vue.d.ts +1 -0
- package/src/components/form-inputs-controls/VcsCheckbox.vue +8 -3
- package/src/components/form-inputs-controls/VcsChipArrayInput.vue +13 -16
- package/src/components/form-inputs-controls/VcsChipArrayInput.vue.d.ts +2 -4
- package/src/components/form-inputs-controls/VcsCoordinate.vue +4 -4
- package/src/components/form-inputs-controls/VcsFileInput.vue +1 -1
- package/src/components/form-inputs-controls/VcsLabel.vue +1 -1
- package/src/components/form-inputs-controls/VcsRadio.vue +8 -6
- package/src/components/form-inputs-controls/VcsRadio.vue.d.ts +1 -0
- package/src/components/form-inputs-controls/VcsSelect.vue +2 -5
- package/src/components/form-inputs-controls/VcsSlider.vue +5 -6
- package/src/components/form-inputs-controls/VcsSlider.vue.d.ts +2 -4
- package/src/components/form-inputs-controls/VcsTextArea.vue +2 -5
- package/src/components/form-inputs-controls/VcsTextField.vue +24 -1
- package/src/components/form-inputs-controls/VcsTextField.vue.d.ts +11 -1
- package/src/components/form-inputs-controls/VcsWizard.vue +3 -3
- package/src/components/form-inputs-controls/VcsWizardStep.vue +6 -5
- package/src/components/form-inputs-controls/vcsTextField.scss +8 -5
- package/src/components/form-output/VcsFormattedNumber.vue +7 -5
- package/src/components/form-output/VcsMarkdown.vue +15 -12
- package/src/components/form-output/VcsMarkdown.vue.d.ts +1 -0
- package/src/components/form-output/markdownHelper.d.ts +30 -0
- package/src/components/form-output/markdownHelper.js +398 -0
- package/src/components/import/VcsFileDrop.vue +8 -5
- package/src/components/import/VcsImportComponent.vue +8 -4
- package/src/components/import/VcsImportComponent.vue.d.ts +1 -2
- package/src/components/lists/VcsActionList.vue +6 -6
- package/src/components/lists/VcsList.vue +22 -37
- package/src/components/lists/VcsList.vue.d.ts +14 -55
- package/src/components/lists/{VcsListItem.vue → VcsListItemComponent.vue} +37 -11
- package/src/components/lists/VcsListItemComponent.vue.d.ts +79 -0
- package/src/components/lists/VcsTreeview.vue +95 -26
- package/src/components/lists/VcsTreeview.vue.d.ts +16 -3
- package/src/components/lists/VcsTreeviewSearchbar.vue +16 -5
- package/src/components/lists/VcsTreeviewSearchbar.vue.d.ts +3 -1
- package/src/components/lists/VcsTreeviewTitle.vue +36 -0
- package/src/components/modelHelper.d.ts +10 -8
- package/src/components/modelHelper.js +8 -6
- package/src/components/notification/VcsHelp.vue +6 -7
- package/src/components/notification/VcsHelp.vue.d.ts +0 -8
- package/src/components/plugins/AbstractConfigEditor.vue +1 -22
- package/src/components/plugins/AbstractConfigEditor.vue.d.ts +6 -29
- package/src/components/section/VcsExpansionPanel.vue +9 -3
- package/src/components/section/VcsExpansionPanel.vue.d.ts +2 -2
- package/src/components/section/VcsFormSection.vue +13 -7
- package/src/components/section/VcsFormSection.vue.d.ts +2 -3
- package/src/components/style/VcsImageSelector.vue +14 -6
- package/src/components/style/VcsImageSelector.vue.d.ts +1 -0
- package/src/components/style/VcsStrokeSelector.vue +5 -2
- package/src/components/style/VcsStrokeSelector.vue.d.ts +1 -0
- package/src/components/style/VcsTextMenu.vue +3 -3
- package/src/components/style/VcsVectorStyleComponent.vue +1 -1
- package/src/components/tables/VcsDataTable.vue +42 -32
- package/src/components/tables/VcsDataTable.vue.d.ts +1 -0
- package/src/components/tables/VcsTable.vue +45 -62
- package/src/components/tables/VcsTable.vue.d.ts +30 -17
- package/src/components/tables/VcsTableCell.vue +72 -0
- package/src/components/tables/VcsTableCell.vue.d.ts +13 -0
- package/src/components/vector-properties/VcsFeatureEditingWindow.vue +6 -5
- package/src/components/vector-properties/VcsFeatureTransforms.vue +5 -0
- package/src/components/vector-properties/VcsVectorPropertiesComponent.vue +42 -31
- package/src/components/vector-properties/VcsVectorPropertiesComponent.vue.d.ts +1 -0
- package/src/components/viewpoint/VcsViewpointComponent.vue +14 -11
- package/src/components/viewpoint/VcsViewpointComponent.vue.d.ts +1 -0
- package/src/components/viewpoint/VcsViewpointEditor.vue +2 -2
- package/src/contentTree/LayerTree.vue +9 -27
- package/src/contentTree/LayerTree.vue.d.ts +1 -1
- package/src/contentTree/contentTreeCollection.d.ts +1 -0
- package/src/contentTree/contentTreeCollection.js +45 -11
- package/src/contentTree/contentTreeItem.d.ts +2 -2
- package/src/contentTree/contentTreeItem.js +1 -1
- package/src/featureInfo/BalloonComponent.vue +32 -25
- package/src/featureInfo/BalloonComponent.vue.d.ts +1 -0
- package/src/featureInfo/MarkdownBalloonComponent.vue +4 -2
- package/src/featureInfo/MarkdownBalloonComponent.vue.d.ts +2 -2
- package/src/featureInfo/abstractFeatureInfoView.d.ts +10 -4
- package/src/featureInfo/abstractFeatureInfoView.js +19 -11
- package/src/featureInfo/featureInfo.d.ts +7 -7
- package/src/featureInfo/featureInfo.js +51 -31
- package/src/featureInfo/iframeFeatureInfoView.d.ts +8 -2
- package/src/featureInfo/iframeFeatureInfoView.js +15 -5
- package/src/featureInfo/markdownBalloonFeatureInfoView.d.ts +1 -1
- package/src/featureInfo/markdownBalloonFeatureInfoView.js +5 -5
- package/src/featureInfo/markdownFeatureInfoView.d.ts +1 -1
- package/src/featureInfo/markdownFeatureInfoView.js +9 -11
- package/src/featureInfo/tableFeatureInfoView.js +13 -4
- package/src/i18n/i18nCollection.d.ts +9 -15
- package/src/i18n/i18nCollection.js +3 -3
- package/src/legend/VcsLegend.vue +6 -2
- package/src/legend/VcsLegend.vue.d.ts +1 -0
- package/src/manager/collectionManager/CollectionComponentList.vue +2 -2
- package/src/manager/collectionManager/CollectionComponentList.vue.d.ts +2 -2
- package/src/manager/collectionManager/categoryManager.d.ts +1 -1
- package/src/manager/collectionManager/collectionComponentClass.d.ts +3 -3
- package/src/manager/collectionManager/collectionComponentClass.js +6 -6
- package/src/manager/collectionManager/collectionManager.d.ts +1 -1
- package/src/manager/collectionManager/editorCollectionComponentClass.js +2 -1
- package/src/manager/panel/PanelComponent.vue +2 -9
- package/src/manager/panel/PanelManagerComponent.vue +7 -3
- package/src/manager/panel/panelHelper.js +3 -3
- package/src/manager/panel/panelManager.d.ts +9 -1
- package/src/manager/panel/panelManager.js +15 -3
- package/src/manager/toolbox/GroupToolboxComponent.vue +11 -5
- package/src/manager/toolbox/GroupToolboxComponent.vue.d.ts +1 -0
- package/src/manager/toolbox/SelectToolboxComponent.vue +11 -6
- package/src/manager/toolbox/SelectToolboxComponent.vue.d.ts +1 -0
- package/src/manager/toolbox/{ToolboxManager.vue → ToolboxManagerComponent.vue} +13 -7
- package/src/manager/toolbox/{ToolboxManager.vue.d.ts → ToolboxManagerComponent.vue.d.ts} +1 -0
- package/src/manager/window/WindowComponent.vue +12 -8
- package/src/manager/window/WindowComponentHeader.vue +33 -9
- package/src/manager/window/WindowComponentHeader.vue.d.ts +3 -0
- package/src/manager/window/WindowManager.vue +2 -2
- package/src/manager/window/windowManager.d.ts +6 -6
- package/src/manager/window/windowManager.js +3 -3
- package/src/navigation/MapNavigation.vue +20 -0
- package/src/navigation/OrientationToolsButton.vue +2 -4
- package/src/navigation/TiltSlider.vue +3 -5
- package/src/navigation/locatorHelper.js +1 -1
- package/src/navigation/overviewMap.js +1 -1
- package/src/notifier/NotifierComponent.vue +18 -15
- package/src/search/ResultItem.vue +18 -6
- package/src/search/ResultsComponent.vue +31 -20
- package/src/search/ResultsComponent.vue.d.ts +2 -1
- package/src/search/SearchComponent.vue +11 -15
- package/src/search/SearchComponent.vue.d.ts +1 -0
- package/src/siteConfig.js +8 -8
- package/src/styles/_typography.scss +0 -2
- package/src/styles/main.scss +0 -4
- package/src/styles/vcsList.scss +1 -1
- package/src/uiConfig.d.ts +311 -7
- package/src/uiConfig.js +30 -17
- package/src/vcsUiApp.d.ts +48 -63
- package/src/vcsUiApp.js +44 -37
- package/src/vuePlugins/vuetify.d.ts +88 -62
- package/src/vuePlugins/vuetify.js +119 -20
- package/dist/assets/ui-2ab43a16.css +0 -1
- package/dist/assets/vue-03b265aa.js +0 -6096
- package/plugins/@vcmap-show-case/theme-changer/README.md +0 -23
- package/plugins/@vcmap-show-case/theme-changer/config.json +0 -69
- package/plugins/@vcmap-show-case/theme-changer/package.json +0 -11
- package/plugins/@vcmap-show-case/theme-changer/src/ThemeChangerComponent.vue +0 -120
- package/plugins/@vcmap-show-case/theme-changer/src/index.js +0 -108
- package/src/application/markdownHelper.d.ts +0 -12
- package/src/application/markdownHelper.js +0 -70
- package/src/components/lists/VcsListItem.vue.d.ts +0 -27
- package/src/components/lists/VcsTreeviewLeaf.vue +0 -83
- package/src/components/notification/VcsTooltip.vue +0 -156
- package/src/components/notification/VcsTooltip.vue.d.ts +0 -27
- package/src/featureInfo/MarkdownComponent.vue +0 -16
- package/src/featureInfo/MarkdownComponent.vue.d.ts +0 -7
- package/src/styles/_theming.scss +0 -73
- package/src/styles/settings.scss +0 -6
- package/src/styles/shades.scss +0 -4
- package/src/styles/variables.scss +0 -140
- package/src/styles/vcsFont.scss +0 -2
- package/src/styles/vcsGrid.scss +0 -3
- /package/src/components/lists/{VcsTreeviewLeaf.vue.d.ts → VcsTreeviewTitle.vue.d.ts} +0 -0
@@ -0,0 +1,116 @@
|
|
1
|
+
<template>
|
2
|
+
<VCard>
|
3
|
+
<VcsFormSection heading="Colors" expandable start-open>
|
4
|
+
<v-container class="px-1 py-0">
|
5
|
+
<v-row
|
6
|
+
v-for="key in Object.keys(currentTheme.colors)"
|
7
|
+
:key="key"
|
8
|
+
no-gutters
|
9
|
+
>
|
10
|
+
<v-col>
|
11
|
+
<VcsLabel>{{ key }}</VcsLabel>
|
12
|
+
</v-col>
|
13
|
+
<v-col>
|
14
|
+
<VcsTextField
|
15
|
+
v-model="currentTheme.colors[key]"
|
16
|
+
:bg-color="currentTheme.colors[key]"
|
17
|
+
></VcsTextField>
|
18
|
+
</v-col>
|
19
|
+
</v-row>
|
20
|
+
</v-container>
|
21
|
+
</VcsFormSection>
|
22
|
+
<VcsFormSection heading="Variables" expandable start-open>
|
23
|
+
<v-container class="px-1 py-0">
|
24
|
+
<v-row
|
25
|
+
no-gutters
|
26
|
+
v-for="key in Object.keys(currentTheme.variables)"
|
27
|
+
:key="key"
|
28
|
+
>
|
29
|
+
<v-col>
|
30
|
+
<VcsLabel>{{ key }}</VcsLabel>
|
31
|
+
</v-col>
|
32
|
+
<v-col>
|
33
|
+
<VcsTextField v-model="currentTheme.variables[key]"></VcsTextField>
|
34
|
+
</v-col>
|
35
|
+
</v-row>
|
36
|
+
</v-container>
|
37
|
+
</VcsFormSection>
|
38
|
+
<v-container class="px-1 py-0">
|
39
|
+
<VcsFormButton @click="reset"> Reset default </VcsFormButton>
|
40
|
+
</v-container>
|
41
|
+
</VCard>
|
42
|
+
</template>
|
43
|
+
|
44
|
+
<script>
|
45
|
+
import {
|
46
|
+
createVcsThemes,
|
47
|
+
VcsTextField,
|
48
|
+
VcsLabel,
|
49
|
+
VcsFormSection,
|
50
|
+
VcsFormButton,
|
51
|
+
isDark,
|
52
|
+
} from '@vcmap/ui';
|
53
|
+
import {
|
54
|
+
watch,
|
55
|
+
inject,
|
56
|
+
ref,
|
57
|
+
computed,
|
58
|
+
toRaw,
|
59
|
+
onMounted,
|
60
|
+
onUnmounted,
|
61
|
+
} from 'vue';
|
62
|
+
import { VCard, VCol, VRow, VContainer } from 'vuetify/components';
|
63
|
+
|
64
|
+
export default {
|
65
|
+
name: 'ThemingExample',
|
66
|
+
components: {
|
67
|
+
VcsLabel,
|
68
|
+
VcsFormSection,
|
69
|
+
VcsFormButton,
|
70
|
+
VcsTextField,
|
71
|
+
VContainer,
|
72
|
+
VCard,
|
73
|
+
VRow,
|
74
|
+
VCol,
|
75
|
+
},
|
76
|
+
setup() {
|
77
|
+
const app = inject('vcsApp');
|
78
|
+
const theming = ref(createVcsThemes());
|
79
|
+
const currentTheme = computed(() => {
|
80
|
+
if (isDark(app)) {
|
81
|
+
return theming.value.dark;
|
82
|
+
} else {
|
83
|
+
return theming.value.light;
|
84
|
+
}
|
85
|
+
});
|
86
|
+
onMounted(() => {
|
87
|
+
app.uiConfig.override({
|
88
|
+
name: 'vuetifyTheme',
|
89
|
+
value: toRaw(theming.value),
|
90
|
+
});
|
91
|
+
});
|
92
|
+
onUnmounted(() => {
|
93
|
+
app.uiConfig.remove(app.uiConfig.getByKey('vuetifyTheme'));
|
94
|
+
});
|
95
|
+
watch(
|
96
|
+
() => theming.value,
|
97
|
+
() => {
|
98
|
+
app.uiConfig.replace({
|
99
|
+
name: 'vuetifyTheme',
|
100
|
+
value: toRaw(theming.value),
|
101
|
+
});
|
102
|
+
},
|
103
|
+
{ deep: true },
|
104
|
+
);
|
105
|
+
return {
|
106
|
+
reset: () => {
|
107
|
+
theming.value = createVcsThemes();
|
108
|
+
},
|
109
|
+
theming,
|
110
|
+
currentTheme,
|
111
|
+
};
|
112
|
+
},
|
113
|
+
};
|
114
|
+
</script>
|
115
|
+
|
116
|
+
<style scoped></style>
|
@@ -0,0 +1,53 @@
|
|
1
|
+
import { createToggleAction, ButtonLocation, WindowSlot } from '@vcmap/ui';
|
2
|
+
import packageJSON from '../package.json';
|
3
|
+
import ThemingExample from './ThemingExample.vue';
|
4
|
+
|
5
|
+
/**
|
6
|
+
* @returns {VcsPlugin}
|
7
|
+
*/
|
8
|
+
export default async () => {
|
9
|
+
return {
|
10
|
+
get name() {
|
11
|
+
return packageJSON.name;
|
12
|
+
},
|
13
|
+
get version() {
|
14
|
+
return packageJSON.version;
|
15
|
+
},
|
16
|
+
get mapVersion() {
|
17
|
+
return packageJSON.mapVersion;
|
18
|
+
},
|
19
|
+
onVcsAppMounted(app) {
|
20
|
+
const { action, destroy } = createToggleAction(
|
21
|
+
{
|
22
|
+
name: 'Theming Example',
|
23
|
+
icon: '$vcsWand',
|
24
|
+
title: 'Theming Example Plugin',
|
25
|
+
},
|
26
|
+
{
|
27
|
+
id: 'theming-example',
|
28
|
+
component: ThemingExample,
|
29
|
+
slot: WindowSlot.DYNAMIC_LEFT,
|
30
|
+
state: {
|
31
|
+
headerTitle: 'Theming Example',
|
32
|
+
headerIcon: '$vcsWand',
|
33
|
+
styles: { width: '350px', height: 'auto' },
|
34
|
+
},
|
35
|
+
},
|
36
|
+
app.windowManager,
|
37
|
+
packageJSON.name,
|
38
|
+
);
|
39
|
+
app.navbarManager.add(
|
40
|
+
{ id: 'theming-example', action },
|
41
|
+
packageJSON.name,
|
42
|
+
ButtonLocation.MENU,
|
43
|
+
);
|
44
|
+
this._destroyAction = destroy;
|
45
|
+
},
|
46
|
+
destroy() {
|
47
|
+
if (this._destroyAction) {
|
48
|
+
this._destroyAction();
|
49
|
+
this._destroyAction = null;
|
50
|
+
}
|
51
|
+
},
|
52
|
+
};
|
53
|
+
};
|
@@ -227,7 +227,8 @@ export default async function toolboxExample() {
|
|
227
227
|
this._stopWatching = watch(
|
228
228
|
() => disabled.value,
|
229
229
|
() => {
|
230
|
-
|
230
|
+
app.toolboxManager.get(selectToolboxComponent.id).action.disabled =
|
231
|
+
disabled.value;
|
231
232
|
app.toolboxManager.get(
|
232
233
|
groupToolboxComponentExampleOptions.id,
|
233
234
|
).disabled = disabled.value;
|
package/plugins/package.json
CHANGED
@@ -1,27 +1,11 @@
|
|
1
1
|
{
|
2
2
|
"dependencies": {
|
3
|
-
"@vcmap/print": "
|
4
|
-
"@vcmap/
|
5
|
-
"@vcmap/
|
6
|
-
"@vcmap/
|
7
|
-
"@vcmap/
|
8
|
-
"@vcmap/
|
9
|
-
"@vcmap/
|
10
|
-
"@vcmap/multi-view": "^1.1.0",
|
11
|
-
"@vcmap/cesium-filters": "^1.0.1",
|
12
|
-
"@vcmap/viewshed": "^2.0.1",
|
13
|
-
"@vcmap/measurement": "^1.0.2",
|
14
|
-
"@vcmap/flight": "^1.1.0",
|
15
|
-
"@vcmap/transparent-terrain": "^1.0.1",
|
16
|
-
"@vcmap/search-coordinate": "^1.0.0",
|
17
|
-
"@vcmap/clipping-tool": "^1.0.0",
|
18
|
-
"@vcmap/height-profile": "^1.0.0",
|
19
|
-
"@vcmap/search-wfs": "^1.0.0",
|
20
|
-
"@vcmap/search-esri": "^1.0.0",
|
21
|
-
"@vcmap/link-button": "^1.0.0",
|
22
|
-
"@vcmap/walk": "^1.0.2"
|
23
|
-
},
|
24
|
-
"optionalDependencies": {
|
25
|
-
"@vcmap/planning": "^5.2.0"
|
3
|
+
"@vcmap/print": "https://github.com/virtualcitySYSTEMS/map-print.git#main",
|
4
|
+
"@vcmap/multi-view": "https://github.com/virtualcitySYSTEMS/map-multi-view.git",
|
5
|
+
"@vcmap/transparent-terrain": "https://github.com/virtualcitySYSTEMS/map-transparent-terrain.git",
|
6
|
+
"@vcmap/walk": "https://github.com/virtualcitySYSTEMS/map-walk.git#main",
|
7
|
+
"@vcmap/clipping-tool": "https://github.com/virtualcitySYSTEMS/map-clipping-tool.git#main",
|
8
|
+
"@vcmap/viewshed": "https://github.com/virtualcitySYSTEMS/map-viewshed.git#main",
|
9
|
+
"@vcmap/link-button": "https://github.com/virtualcitySYSTEMS/map-link-button.git#main"
|
26
10
|
}
|
27
11
|
}
|