Hello,
I'm using the Google API but I got a strange result.
I just wanted to search '114 Baker Street' in Australia but my result got only one street record in USA.
So I searched again with '114 Baker Street, Australia' and got a good result I want.
I've tested with
http://map.google.com.au and search '114 Baker St' and got a good record and marker is shown in Australia.
I'd like to search the location first in Australia. How can I do this?
Following is the code I'm using to initialize the map:
geocoder = new google.maps.Geocoder();
var latlng = new google.maps.LatLng(Somewhere in Australia);
var myOptions = {
zoom: 12,
center: latlng,
disableDoubleClickZoom:true,
mapTypeId: google.maps.MapTypeId.ROADMAP
}
Any hint would be very appreciated.
Thanks.