這是我的javaScript代碼。Google地圖更改不會在瀏覽器中呈現
(function() {
window.onload = function() {
// Creating a reference to the mapDiv
var mapDiv = document.getElementById('map');
// Creating a latLng for the center of the map
var latlng = new google.maps.LatLng(37.09, -95.71);
// Creating an object literal containing the properties
// we want to pass to the map
var options = {
center: latlng,
zoom: 2,
mapTypeId: google.maps.MapTypeId.ROADMAP
};
// Creating the map
var map = new google.maps.Map(mapDiv, options);
}
})();
當我加入disableDefaultUI:真實變量的選擇和測試它在我的瀏覽器(歌劇,火狐,Chrome Canary版)它不會禁用UI。我目前在我的Mac OSX 10.6.8版本上使用Eclipse Indigo。我的瀏覽器緩存有問題嗎?我的代碼似乎沒問題。我不明白爲什麼它不會在瀏覽器上呈現。
var options = {
zoom: 3,
center: new google.maps.LatLng(37.09, -95.71),
mapTypeId: google.maps.MapTypeId.ROADMAP,
disableDefaultUI: true
};
我在我的html文檔中引用javascript文件時犯了一個錯誤。愚蠢的錯誤。 –