locate abstract method

Future<LatLng?> locate({
  1. bool automove = false,
  2. double toZoom = 17.0,
})

Find current LatLng user location

automove is the map need to move automatically to current user location. Default false toZoom target zoom level when automove is set to true

Implementation

Future<LatLng?> locate({bool automove = false, double toZoom = 17.0});