From 4df4e91eff82a28eded373656698cda94083f720 Mon Sep 17 00:00:00 2001 From: Cyrus Hiatt Date: Sun, 24 Nov 2024 06:21:58 -0800 Subject: [PATCH] rm log statements --- .../afrc/Search/components/InteractiveMap/InteractiveMap.vue | 1 - .../components/InteractiveMap/components/MapComponent.vue | 4 ---- 2 files changed, 5 deletions(-) diff --git a/afrc/src/afrc/Search/components/InteractiveMap/InteractiveMap.vue b/afrc/src/afrc/Search/components/InteractiveMap/InteractiveMap.vue index e85fe90..d2f515c 100644 --- a/afrc/src/afrc/Search/components/InteractiveMap/InteractiveMap.vue +++ b/afrc/src/afrc/Search/components/InteractiveMap/InteractiveMap.vue @@ -90,7 +90,6 @@ onMounted(async () => { async function fetchSystemSettings() { try { - console.log("Fetching settings"); settings.value = await fetchSettings(); } catch (error) { toast.add({ diff --git a/afrc/src/afrc/Search/components/InteractiveMap/components/MapComponent.vue b/afrc/src/afrc/Search/components/InteractiveMap/components/MapComponent.vue index 59bd1b3..333dd94 100644 --- a/afrc/src/afrc/Search/components/InteractiveMap/components/MapComponent.vue +++ b/afrc/src/afrc/Search/components/InteractiveMap/components/MapComponent.vue @@ -257,8 +257,6 @@ function createMap() { } function updateBasemap(basemap: Basemap) { - console.log(basemap); - console.log(overlays); map.value!.setStyle( basemap.url, ); @@ -334,9 +332,7 @@ function addOverlayToMap(overlay: MapLayer) { ); } } - console.log('adding layer object'); if (!map.value!.getLayer(layerDefinition.id)) { - console.log('adding layer object2'); map.value!.addLayer(layerDefinition as AddLayerObject); } });