我知道地图正在加载,但无论出于何种原因,我都看不到它们。
JS
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!'
});
}
标记
<div id="map-canvas">
</div>
我知道这一定很简单,我有点困惑为什么我不能解决,但这里是链接:http ://stage.sexdiaries.co.uk/map