movePoi method

  1. @override
Future<void> movePoi(
  1. String poiId,
  2. LatLng position, [
  3. double? millis
])
override

Implementation

@override
Future<void> movePoi(String poiId, LatLng position, [double? millis]) async {
  _webPoi[poiId]?.setPosition(WebLatLng.fromLatLng(position));
}