Posted by AlcidesFonseca on Sat 11 Aug 00:18
report abuse | download | new post
- function showAddress(address) {
- if (geocoder) {
- geocoder.getLocations(address, function (result)
- {
- if (result.Status.code == G_GEO_SUCCESS) {
- var p = result.Placemark[0].Point.coordinates;
- map.setCenter(new GLatLng(p[1],p[0]),7+result.Placemark[0].AddressDetails.Accuracy);
- }
- }
- );
- }
- }
Submit a correction or amendment below (click here to make a fresh posting)
After submitting an amendment, you'll be able to view the differences between the old and new posts easily.