On Nov 14, 10:23 pm, sondhy <philip.son...@mediamotive.com.au> wrote:
> Hi All,
>
> We run a Real Estate portal in Australia, and we use Google Maps
> static API

You are not using the static maps API, you are using the Google Maps
API V2.

> to indicate the location of our properties which has been
> working fine up until now!
>
> It now defaults to (0,0) just off the coast of Africa.
>
> Here's an example

http://www.farmbuy.com/Listing_Display.aspx?ListingID=9706

That has nothing to do with the maps API, your code in your page is
doing that:

function GoogleMapsload() {
  map = new GMap2(document.getElementById("GoogleMap"),G_NORMAL_MAP);
  map.addControl(new GLargeMapControl());
  map.addControl(new GMapTypeControl());
  map.setCenter(new GLatLng(0, 0), 13);
  map.setMapType(G_NORMAL_MAP);
  var icon = new GIcon(G_DEFAULT_ICON);
  map.addOverlay(createMarker(0, 0, icon, ""));
}

Change your code to put meaningful latitude and longitude coordinates
there.

  -- Larry

>
> Any ideas or help is much appreciated.

-- 
You received this message because you are subscribed to the Google Groups 
"Google Maps API V2" group.
To post to this group, send email to google-maps-api@googlegroups.com.
To unsubscribe from this group, send email to 
google-maps-api+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-api?hl=en.

Reply via email to