I'm using the following code to try and add a map to a div and place a marker at the user's current location. It's the first time I've tried anything like this and I've been playing around with it for the last few days, following different tutorials and the stuff on Google's website, but I just cant get it to work. The map will appear, but no matter what I try the marker(s) won't show up. I've tried adding static markers too, using co-ordinates, and nothing will show up on the map. It's starting to drive me a little mad. Any help would be greatly appreciated.
function initialize() {
var myOptions = {
center: new google.maps.LatLng(53.36652, -2.29855),
zoom: 14,
mapTypeId: google.maps.MapTypeId.ROADMAP
};
var map =
new google.maps.Map(document.getElementById("map_canvas"), myOptions);
var myLatlng = new google.maps.LatLng(53.36652,-2.29855);
var marker = new google.maps.Marker({
position: myLatlng,
map: map,
title:"Hello World!"
});
}
marker.setMap(map);