NTPeliasOnlineGeocodingService
@interface NTPeliasOnlineGeocodingService : NTGeocodingService
An online geocoding service that uses Mapzen Pelias geocoder. As the class connects to an external (non-CARTO) service, this class is provided “as-is”, future changes from the service provider may not be compatible with the implementation. Geocoding and reverse geocoding perform network requests and must be executed in non-UI background thread. Be sure to read the Terms and Conditions of your Pelias service provider to see if the service is available for your application. Note: this class is experimental and may change or even be removed in future SDK versions.
-
Constructs a new instance of the PeliasOnlineGeocodingService given API key.
Declaration
Objective-C
- (id)initWithApiKey:(NSString *)apiKey;Parameters
apiKeyThe API key to use (registered with Mapzen).
-
Returns the custom backend service URL.
Declaration
Objective-C
- (NSString *)getCustomServiceURL;Return Value
The custom backend service URL. If this is not defined, an empty string is returned.
-
Sets the custom backend service URL. The custom URL may contain tag “{api_key}” which will be substituted with the set API key. The custom URL should contain tag “{mode}” which will be set either to “autocomplete” or “search” based on the autocomplete state.
Declaration
Objective-C
- (void)setCustomServiceURL:(NSString *)serviceURL;Parameters
serviceURLThe custom backend service URL to use. If this is empty, then the default service is used.
-
Undocumented
Declaration
Objective-C
- (BOOL)isAutocomplete; -
Undocumented
Declaration
Objective-C
-(BOOL)isAutocompleteSwigExplicitNTPeliasOnlineGeocodingService; -
Undocumented
Declaration
Objective-C
- (void)setAutocomplete:(BOOL)autocomplete; -
Undocumented
Declaration
Objective-C
-(void)setAutocompleteSwigExplicitNTPeliasOnlineGeocodingService: (BOOL)autocomplete; -
Undocumented
Declaration
Objective-C
- (NSString *)getLanguage; -
Undocumented
Declaration
Objective-C
-(NSString*)getLanguageSwigExplicitNTPeliasOnlineGeocodingService; -
Undocumented
Declaration
Objective-C
- (void)setLanguage:(NSString *)lang; -
Undocumented
Declaration
Objective-C
-(void)setLanguageSwigExplicitNTPeliasOnlineGeocodingService: (NSString*)lang; -
Undocumented
Declaration
Objective-C
- (int)getMaxResults; -
Undocumented
Declaration
Objective-C
-(int)getMaxResultsSwigExplicitNTPeliasOnlineGeocodingService; -
Undocumented
Declaration
Objective-C
- (void)setMaxResults:(int)maxResults; -
Undocumented
Declaration
Objective-C
-(void)setMaxResultsSwigExplicitNTPeliasOnlineGeocodingService: (int)maxResults; -
Undocumented
Declaration
Objective-C
- (NTGeocodingResultVector *)calculateAddresses:(NTGeocodingRequest *)request; -
Undocumented
Declaration
Objective-C
-(NTGeocodingResultVector*)calculateAddressesSwigExplicitNTPeliasOnlineGeocodingService: (NTGeocodingRequest*)request; -
Undocumented
Declaration
Objective-C
-(void)dealloc;
View on GitHub
NTPeliasOnlineGeocodingService Class Reference