coder and technology lover
Posts tagged prototype
Playing with Google maps API – part three: Geocoding and custom overlay
Nov 26th
Posted by Davide Zanotti in javascript
The main feature provided by the Google maps API, is the ability to convert an human readable location, such “Milan, Italy” to a geographic location represented by latitude and longitude, this process is called geocoding. The GClientGeocoder is the class which provide this service, through the method getLatLng() which accepts two arguments: a string representing an address and a callback function that will be called once the coordinates are retrieved. If the address will be successful located, the callback function will be invoked by passing a GLatLng object as argument, otherwise the function will receive a null. GLatLng is an object which represents a geographic location (latitude and longitude).
To request a geolocation for a given address we use a similar code:
Recent comments