moveToCurrentLocationActionWithSearchPOI method
void
moveToCurrentLocationActionWithSearchPOI({
- required void moveMapCenter(
- TIMCoordinate coordinate
- void onGetReverseGeoCodeSearchResult()?,
Implementation
void moveToCurrentLocationActionWithSearchPOI({
required void Function(TIMCoordinate coordinate) moveMapCenter,
void Function(TIMReverseGeoCodeSearchResult, bool)?
onGetReverseGeoCodeSearchResult,
}) {
service.moveToCurrentLocationActionWithSearchPOIByMapSDK(
moveMapCenter: moveMapCenter,
onGetReverseGeoCodeSearchResult: onGetReverseGeoCodeSearchResult);
}