Hello,
I am seeking help for why the marker is not showing up on the google map. This site is for a client, and I can't see what is going wrong.
Here is the link to the html page...
http://sandyandsons.com/locations.html
Here is the link to the js page...
http://sandyandsons.com/code/javascript.js
Here is the code that is important...
Code:
function initialize() {
if (GBrowserIsCompatible()) {
var map = new GMap2(document.getElementById("map_canvas"));
map.setCenter(new GLatLng(33.452204,-111.769772), 15);
var point = new GPoint(33.452204,-111.769772);
var marker = new GMarker(point);
map.addOverlay(marker);
map.setMapType(G_TERRAIN_MAP);
map.setUIToDefault();
}
}
Thank you.