GeoCoder()
Provides defered/promise API service for Google Geocoder service
- Source:
Methods
-
(static) geocode(options) → {HttpPromise}
-
Parameters:
Name Type Description options
Hash https://developers.google.com/maps/documentation/geocoding/#geocoding
- Source:
Returns:
Future object
- Type
- HttpPromise
Example
``` GeoCoder.geocode({address: 'the cn tower'}).then(function(result) { //... do something with result }); ```