Skip to content

Commit

Permalink
rm log statements
Browse files Browse the repository at this point in the history
  • Loading branch information
chiatt committed Nov 24, 2024
1 parent 6df1ffb commit 4df4e91
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,6 @@ onMounted(async () => {
async function fetchSystemSettings() {
try {
console.log("Fetching settings");
settings.value = await fetchSettings();
} catch (error) {
toast.add({
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -257,8 +257,6 @@ function createMap() {
}
function updateBasemap(basemap: Basemap) {
console.log(basemap);
console.log(overlays);
map.value!.setStyle(
basemap.url,
);
Expand Down Expand Up @@ -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);
}
});
Expand Down

0 comments on commit 4df4e91

Please sign in to comment.