zoom In
Creates a new bounding box with adjusted dimensions based on the provided zoomFactor.
Return
A new BoundingBox with added zoomFactor. Example:
// Setting the zoom level directly using setZoom()
map.setZoom(14.0)
val boundingBoxZoom14 = map.boundingBox
// Using zoomIn() results the equivalent BoundingBox with setZoom(15.0)
val boundingBoxZoom15 = boundingBoxZoom14.zoomIn(1.0)
Content copied to clipboard