com.supermap.onlineservices
Interface Geocoding.GeocodingCallback
-
- Enclosing class:
- Geocoding
public static interface Geocoding.GeocodingCallback
geocoding callback.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method and Description void
geocodeFailed(java.lang.String errorMsg)
Callback when geocoding exception is abnormal.void
geocodeSuccess(java.util.List<GeocodingData> dataList)
Callback when the forward geocoding successful.void
reverseGeocodeSuccess(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.
-
-