goToLocation method

Future<void> goToLocation(
  1. GeoPoint position
)

goToLocation

animate to specific position with out add marker into the map

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

Implementation

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