forked from MapComplete/MapComplete
Fix duplicate building upload in GRB theme (hopefully), remove type from method name, improve typing and error messages
This commit is contained in:
parent
fc483ed547
commit
b8a631f368
11 changed files with 49 additions and 26 deletions
|
@ -264,7 +264,8 @@ class ClosestNObjectFunc implements ExtraFunction {
|
|||
const bbox = GeoOperations.bbox(
|
||||
GeoOperations.buffer(GeoOperations.bbox(feature), maxDistance)
|
||||
)
|
||||
allFeatures = params.getFeaturesWithin(name, new BBox(bbox.geometry.coordinates))
|
||||
const coors = <[number, number][]>bbox.geometry.coordinates
|
||||
allFeatures = params.getFeaturesWithin(name, new BBox(coors))
|
||||
} else {
|
||||
allFeatures = [features]
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue