goToLocation method

  1. @Deprecated("use moveTo")
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

@Deprecated("use moveTo")
Future<void> goToLocation(GeoPoint position) async {
  await osmBaseController.goToPosition(position);
}