Although the maps are supposed to be loading, I'm having trouble actually seeing them appear.
Troubleshooting
function initialize() {
var myLatlng = new google.maps.LatLng(-25.363882,131.044922);
var mapOptions = {
zoom: 4,
center: myLatlng,
mapTypeId: google.maps.MapTypeId.ROADMAP
}
var map = new google.maps.Map(document.getElementById('map-canvas'), mapOptions);
var marker = new google.maps.Marker({
position: myLatlng,
map: map,
title: 'Hello World!'
});
}
Solution
<div id="map-canvas"> </div>
I seem to be missing something simple here and it's puzzling me. If you want to take a look, here is the link: