Skip to content

v1.10.0

Latest
Compare
Choose a tag to compare
@trasch trasch released this 10 Mar 09:46
· 4 commits to main since this release
cbbb513
  • Added a shortcut to Coordinate3D: func mapTile(atZoom zoom: Int) -> MapTile

  • Added methods to GeometryCollection, MultiLineString, MultiPoint and MultiPolygon for adding/removing objects (like they already existed in FeatureCollection)

  • Improved bounding box handling

This version now not only updates bounding boxes for the outermost container object, but also updates the bounding boxes for all contained objects.

So, when you did this before:

let multiPolygon = MultiPolygon([...many polygons...])
let featureCollection = FeatureCollection([multiPolygon])
featureCollection.updateBoundingBox()

... only the bounding box of the featureCollection was updated which was a problem if you had e.g. a country MultiPolygon with many non-overlapping polygons and did many featureCollection.contains(coordinate) checks.
So if the coordinate was inside the FeatureCollection, all the polygons where still checked separately.

Now, updateBoundingBox() will also update the bounding boxes for contained objects in GeometryCollection, FeatureCollection , MultiLineString, MultiPoint and MultiPolygon which will speed up certain checks considerably.