Interface GeolocListenerService
- All Known Implementing Classes:
GeolocListenerServiceImpl
public interface GeolocListenerService
This service runs the geocoding service for the given address query to retrive geographical location
intformation. It sets the received latitude and longitude and the search result status on the given target entity.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
clearGeolocation
(Entity entity) Clear the location information.void
runGeoLocationService
(Entity entity, String geoLocQuery) Runs the geocoding service to retrive geographical location information for the given address query and sets the received position (latitude/longitude) and the search result status on the given target entity.
-
Method Details
-
runGeoLocationService
Runs the geocoding service to retrive geographical location information for the given address query and sets the received position (latitude/longitude) and the search result status on the given target entity.- Parameters:
entity
- the source entity where the location informations will be setgeoLocQuery
- the specified address query
-
clearGeolocation
Clear the location information.- Parameters:
entity
- the source entity where the location information will be cleared
-