diff --git a/webclient/src/components/DetailsInteractiveMap.vue b/webclient/src/components/DetailsInteractiveMap.vue index a9b422bd7..026b6be84 100644 --- a/webclient/src/components/DetailsInteractiveMap.vue +++ b/webclient/src/components/DetailsInteractiveMap.vue @@ -3,7 +3,6 @@ import type { BackgroundLayerSpecification, Coordinates, ImageSource } from "map import { Map, Marker } from "maplibre-gl"; import { AttributionControl, FullscreenControl, GeolocateControl, NavigationControl } from "maplibre-gl"; import { selectedMap, useDetailsStore } from "@/stores/details"; -import { useGlobalStore } from "@/stores/global"; import { nextTick, ref } from "vue"; import { FloorControl } from "@/modules/FloorControl"; import { webglSupport } from "@/composables/webglSupport"; @@ -12,7 +11,6 @@ const map = ref(undefined); const marker = ref(undefined); const floorControl = ref(new FloorControl()); const state = useDetailsStore(); -const global = useGlobalStore(); const initialLoaded = ref(false); diff --git a/webclient/src/pages/view/[id].vue b/webclient/src/pages/view/[id].vue index 1047b8a8b..071d7f656 100644 --- a/webclient/src/pages/view/[id].vue +++ b/webclient/src/pages/view/[id].vue @@ -9,7 +9,6 @@ import DetailsFeedbackButton from "@/components/DetailsFeedbackButton.vue"; import DetailsRoomfinderMap from "@/components/DetailsRoomfinderMap.vue"; //import DetailsFeaturedOverviewSection from "@/components/DetailsFeaturedOverviewSection.vue"; import { useI18n } from "vue-i18n"; -import { getLocalStorageWithExpiry, removeLocalStorage } from "@/composables/storage"; import { setDescription, setTitle } from "@/composables/common"; import { useClipboard } from "@vueuse/core"; import { selectedMap, useDetailsStore } from "@/stores/details"; @@ -19,7 +18,6 @@ import { useRoute } from "vue-router"; import router from "@/router"; import type { components } from "@/api_types"; type DetailsResponse = components["schemas"]["DetailsResponse"]; -import type { Coord } from "@/stores/global"; const { t } = useI18n({ inheritLocale: true, useScope: "global" }); @@ -241,7 +239,7 @@ onMounted(() => { - +