Skip to content
Snippets Groups Projects
Commit 3fcc3f19 authored by Ciro Brodmann's avatar Ciro Brodmann
Browse files

removed now unnecessary console.log statements

parent 322b959a
No related branches found
No related tags found
No related merge requests found
Pipeline #282253 passed with stage
in 2 minutes and 4 seconds
...@@ -100,8 +100,6 @@ function onSearchClick() { ...@@ -100,8 +100,6 @@ function onSearchClick() {
} }
function onBBoxChanged(bbox) { function onBBoxChanged(bbox) {
console.log(bbox)
console.log(bBoxWhenSearched)
boundingBox.value = bbox // this step might be unnecessary -> check if this is only a reference to the object from boundingBox.value = bbox // this step might be unnecessary -> check if this is only a reference to the object from
// LeafletMap.vue. if so, we don't need to constantly reassign this value // LeafletMap.vue. if so, we don't need to constantly reassign this value
} }
......
...@@ -61,7 +61,6 @@ const center = computed(() => { ...@@ -61,7 +61,6 @@ const center = computed(() => {
if (props.poi.features.length === 0) { if (props.poi.features.length === 0) {
return [0, 0] return [0, 0]
} }
console.log(`Latlong: ${props.poi.features[0].geometry.coordinates}`)
zoom = 20; zoom = 20;
...@@ -70,10 +69,6 @@ const center = computed(() => { ...@@ -70,10 +69,6 @@ const center = computed(() => {
return [coordinates[1], coordinates[0]]; return [coordinates[1], coordinates[0]];
}) })
watch(center, () => {
console.log(center.value)
})
// function updateProblemLink() { // function updateProblemLink() {
// const test = root.value // const test = root.value
// if (test === null) { // if (test === null) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment