I'm using the Javascript API v3 as follows:
(function() {
window.onload = function(){
var latlng = new google.maps.LatLng(57.8, 14.0);
var options = {
zoom: 6,
center: latlng,
mapTypeId: google.maps.MapTypeId.ROADMAP
};
var map = new google.maps.Map(document.getElementById('map'), options);
}
})();
to load a google maps view - taken from example http://www.svennerberg.com/2009/06/google-maps-api-3-the-basics/. Now I'm keen to pull in long/lat details from the datastore and view these as markers. However I'm not sure of the smartest way to do this, there seem to be some confusing examples that don't help. I'm working on the Google App Engine in Python. Does anyone have any pointers for the simple way of adding markers.
Thanks