goToLocation method

Future<void> goToLocation(
  1. GeoPoint p
)

animate to specific position with out add marker into the map

p : (GeoPoint) position that will be go to map

Implementation

Future<void> goToLocation(GeoPoint p) async {
  await osmBaseController.goToPosition(p);
}