com.supermap.onlineservices
Interface Geocoding.GeocodingCallback
-
- Enclosing class:
- Geocoding
public static interface Geocoding.GeocodingCallbackgeocoding callback.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method and Description voidgeocodeFailed(java.lang.String errorMsg)Callback when geocoding exception is abnormal.voidgeocodeSuccess(java.util.List<GeocodingData> dataList)Callback when the forward geocoding successful.voidreverseGeocodeSuccess(GeocodingData data)Callback when the reverse geocoding successful.
-
-
-
Method Detail
-
geocodeSuccess
void geocodeSuccess(java.util.List<GeocodingData> dataList)
Callback when the forward geocoding successful.- Parameters:
dataList- Forward geocoding data.
-
reverseGeocodeSuccess
void reverseGeocodeSuccess(GeocodingData data)
Callback when the reverse geocoding successful.- Parameters:
data- reverse geocoding data.
-
geocodeFailed
void geocodeFailed(java.lang.String errorMsg)
Callback when geocoding exception is abnormal.- Parameters:
errorMsg- Error massage.
-
-