I'm stuck with a problem in my code that uses geocoder to map the address, and then sets the marker:
geocoder.geocode
(
{ 'address': address},
function( results, status )
{
if ( status == google.maps.GeocoderStatus.OK )
{
// alert( results[0].geometry.location.lat().toString() );
// alert( results[0].geometry.location.lng().toString() );
var marker = new google.maps.Marker( { map: map, position: results[0].geometry.location } );
// map.setCenter( results[0].geometry.location );
// map.setCenter( new google.maps.LatLng( 38.62722, -90.19778 ) );
// var location = new google.maps.LatLng( results[0].geometry.location.lat(), results[0].geometry.location.lng() );
// var marker = new google.maps.Marker( { map: map, position: location } );
// var marker = new google.maps.Marker( { map: map, position: new google.maps.LatLng( 38.60722, -90.19778 ) } );
}
else { alert("Geocode was not successful for the following reason: " + status); }
}
);
My problem is that when it comes to setting the marker it doesn't work unless I run map.setCenter( results[0].geometry.location ); before or after it, and the map is jerking around if I center it every time. The alerts are showing the lat and lng fine, and if I set the marker to some constants it also works without having to center the map, but no luck with the lat and lng that come from the geocoder. How can I avoid having to run map.setCenter ?
Thank you so much for your help!
Sergey