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); } });