forked from MapComplete/MapComplete
UX: increase search radius, see #2417
This commit is contained in:
parent
a3aba991c5
commit
9392da0dbb
1 changed files with 1 additions and 1 deletions
|
@ -225,7 +225,7 @@ class ImagesFromPanoramaxFetcher implements ImageFetcher {
|
|||
let prevRadius = 0
|
||||
|
||||
const nearby = this._panoramax.search({
|
||||
bbox: new BBox([[lon, lat]]).pad(0.001).toLngLatFlat()
|
||||
bbox: new BBox([[lon - 0.0001, lat - 0.0001], [lon + 0.0001, lat + 0.0001]]).toLngLatFlat()
|
||||
})
|
||||
promises.push(nearby) // We do a nearby search with bbox, see https://source.mapcomplete.org/MapComplete/MapComplete/issues/2384
|
||||
for (const radiusSetting of radiusSettings) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue