BoundingBox

data class BoundingBox(var westLongitude: Double = 0.0, var southLatitude: Double = 0.0, var eastLongitude: Double = 0.0, var northLatitude: Double = 0.0)

Bounding box usually follow the standard format of:

bbox = left,bottom,right,top bbox = min Longitude , min Latitude , max Longitude , max Latitude https://wiki.openstreetmap.org/wiki/Bounding_box

Constructors

Link copied to clipboard
constructor(geometry: List<Double>)
constructor(westLongitude: Double = 0.0, southLatitude: Double = 0.0, eastLongitude: Double = 0.0, northLatitude: Double = 0.0)

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard