mirror of
https://github.com/Luzifer/gpxhydrant.git
synced 2024-11-09 16:00:03 +00:00
Fix: Add a bit more space around bbox
This is required if for example only one hydrant is queried
This commit is contained in:
parent
cba51a2052
commit
ae02981234
1 changed files with 2 additions and 1 deletions
3
main.go
3
main.go
|
@ -239,7 +239,8 @@ func main() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
mapData, err := osmClient.RetrieveMapObjects(minLon, minLat, maxLon, maxLat)
|
border := 0.00009 // Equals ~10m using haversine formula
|
||||||
|
mapData, err := osmClient.RetrieveMapObjects(minLon-border, minLat-border, maxLon+border, maxLat+border)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatalf("Unable to get map data: %s", err)
|
log.Fatalf("Unable to get map data: %s", err)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue