On Jun 9, 6:50 am, Kieran <[email protected]> wrote: > hi guys, I'm a little new to all Google Aps and all. > I have used the example given that allows you to Reverse Geolocate by > clicking on a map, this returns a pointer with the deails of that > position. Perfect, only one thing. When I for example click on Certain > areas ini Ireland (where I'm From), it Jumps to Cork City, 60 odd > miles away. Heres the Code I am using for it. Any input would be > greatly Appreciated >
> geocoder.getLocations(latlng, showAddress); You are centering on the first result. You might want to look at the others. There is the possibility that there are no "localities" defined in that area. > place = response.Placemark[0]; > point = new GLatLng(place.Point.coordinates[1], > place.Point.coordinates[0]); > marker = new GMarker(point); > map.addOverlay(marker); > marker.openInfoWindowHtml( > > '<b>orig latlng:</b>' + response.name + '<br/>' + > '<b>Reverse Geocoded latlng:</b>' + place.Point.coordinates > [1] + "," + place.Point.coordinates[0] + '<br>' + > '<b>Status Code:</b>' + response.Status.code + '<br>' + > '<b>Status Request:</b>' + response.Status.request + '<br>' > + > '<b>Address:</b>' + place.address + '<br>' + > '<b>Accuracy:</b>' + place.AddressDetails.Accuracy + '<br>' > + > '<b>Country code:</b> ' + > place.AddressDetails.Country.CountryNameCode); -- Larry --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Maps API" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/Google-Maps-API?hl=en -~----------~----~----~----~------~----~------~--~---
