Interface GeolocationDirectionsUrlBuilder
-
- All Known Implementing Classes:
DefaultGeolocationDirectionsUrlBuilder
public interface GeolocationDirectionsUrlBuilderDecides how the directions url will be created.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetWebServiceUrl(java.lang.String baseUrl, AddressData startAddress, AddressData destinationAddress, java.util.Map params)Builds url for web service serving directions from start address to destination address.java.lang.StringgetWebServiceUrl(java.lang.String baseUrl, GPS start, GPS destination, java.util.Map params)Builds url for web service serving directions from start coordinates to destination coordinates.
-
-
-
Method Detail
-
getWebServiceUrl
java.lang.String getWebServiceUrl(java.lang.String baseUrl, GPS start, GPS destination, java.util.Map params)Builds url for web service serving directions from start coordinates to destination coordinates.- Parameters:
baseUrl- - base address of the web servicestart-destination-params- additional parameters.
-
getWebServiceUrl
java.lang.String getWebServiceUrl(java.lang.String baseUrl, AddressData startAddress, AddressData destinationAddress, java.util.Map params)Builds url for web service serving directions from start address to destination address.- Parameters:
baseUrl- - base address of the web servicestartAddress-destinationAddress-params- additional parameters.
-
-