Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
OSM Place Search Logger
Manage
Activity
Members
Labels
Plan
Issues
1
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ifs
OSM Place Search Logger
Commits
3fcc3f19
Commit
3fcc3f19
authored
1 year ago
by
Ciro Brodmann
Browse files
Options
Downloads
Patches
Plain Diff
removed now unnecessary console.log statements
parent
322b959a
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Pipeline
#282253
passed with stage
Stage:
in 2 minutes and 4 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
frontend/src/App.vue
+0
-2
0 additions, 2 deletions
frontend/src/App.vue
frontend/src/LeafletMap.vue
+0
-5
0 additions, 5 deletions
frontend/src/LeafletMap.vue
with
0 additions
and
7 deletions
frontend/src/App.vue
+
0
−
2
View file @
3fcc3f19
...
@@ -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
}
}
...
...
This diff is collapsed.
Click to expand it.
frontend/src/LeafletMap.vue
+
0
−
5
View file @
3fcc3f19
...
@@ -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) {
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment