limitAreaMap method

Future<void> limitAreaMap(
  1. BoundingBox boundingBox
)

limitAreaMap

this method is to set area camera limit of the map

boundingBox : (BoundingBox) bounding that map cannot exceed from it

Implementation

Future<void> limitAreaMap(BoundingBox boundingBox) async {
  await osmBaseController.limitArea(boundingBox);
}