On Apr 14, 3:20 pm, idmontague <idmonta...@gmail.com> wrote: > For more clarification, the GLog's show that the xml file is being > created but I can' t figure out why the markers aren't showing up.
latlng: (-33.415213, -111.94452) -33 latitude is in the southern hemisphere. This is wrong: var point = new GMarker(latlng); var marker = new GMarker(point, icons[category]); point needs to be a GLatLng(), you should be able to remove the line: var point = new GMarker(latlng); and change the other line to: var marker = new GMarker(latlng, icons[category]); -- 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 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 -~----------~----~----~----~------~----~------~--~---