open class BoundingBox : Serializable
Represents bounding box for the map. Defined in WGS84 format.
| BoundingBox()Default constructor for JNI. BoundingBox(topLeft: LatLng!, bottomRight: LatLng!)Default constructor. | 
| open fun contains(coordinates: LatLng!): BooleanCheck whether provided coordinates are inside the analyzed bounding bounds. open fun contains(boundingBox: BoundingBox!): BooleanCheck whether provided bounding box are inside the analyzed bounding bounds. | |
| open fun equals(other: Any?): Boolean | |
| open static fun fromCoordinates(coordinates: MutableList<LatLng!>!): BoundingBox!Create new bounding box from list of  | |
| open fun getBottomRight(): LatLngBottom right corner of the defined bounding box. | |
| open fun getCenter(): LatLngCenter point of the defined bounding box. | |
| open fun getTopLeft(): LatLngTop left corner of the defined bounding box. | |
| open fun hashCode(): Int | |
| open fun roundUp(precision: Int): BoundingBoxCreate new bounding box - bigger then original with precision | |
| open fun toString(): String |