內谷歌地圖API的JavaScript我使用谷歌地圖的JavaScript API顯示的地圖 - https://developers.google.com/maps/documentation/javascript/jQuery的對話窗口
有一些API中的某些功能,我需要的是靜態的地圖所沒有的。
所以這個頁面正常工作作爲一個獨立的頁面:
<!DOCTYPE html>
<html>
<head>
<title>Map</title>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no">
<meta charset="utf-8">
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false"></script>
<script>
function initialize() {
// Set map coordinates with lat and lng
var cord = new google.maps.LatLng(28.545078,-81.377196);
// Set map options
var mapOptions = {
zoom: 15,
center: cord,
mapTypeId: google.maps.MapTypeId.ROADMAP
};
// Set map
var map = new google.maps.Map(document.getElementById('map-canvas'),mapOptions);
// Set map marker
var marker = new google.maps.Marker({
position: cord,
map: map,
title: 'Test'
});
}
// Load Map
google.maps.event.addDomListener(window, 'load', initialize);
</script>
</head>
<body>
<div id="map-canvas"style="width:600px; height:500px"></div>
</body>
</html>
我需要得到該頁面jQuery的對話窗口內工作。
我所說的對話框和加載外部頁面這樣的:那麼
<script type="text/javascript">
$(document).ready(function() {
$("#cc").click(function(){
$("#detailWin").dialog({
autoOpen: false,
modal: true,
width:700,
height:600,
show: "fade",
close: "fade",
open: function()
{
$(this).load('p2.php');
}
});
$('#detailWin').dialog("open");
});
});
</script>
當我包括第一套代碼放到頁面maps.php這是行不通的。我意識到我不想在包含的頁面中包含所有和標籤。我一直在嘗試很多不同的方式,我無法讓地圖加載到對話窗口中。
我試過用jQuery加載地圖API URL $.getScript()
但它沒有幫助。
如果任何人都可以幫助我找出最佳方法來獲得這項工作,將不勝感激,因爲我卡住了。
謝謝!
UPDATE:
我最終得到像這樣的工作(這第二頁maps.php):
<script type="text/javascript">
$(document).ready(function() {
function initialize() {
// Set map coordinates with lat and lng
var cord = new google.maps.LatLng(28.545078,-81.377196);
// Set map options
var mapOptions = {
zoom: 15,
center: cord,
mapTypeId: google.maps.MapTypeId.ROADMAP
};
// Set map
var map = new google.maps.Map(document.getElementById('map-canvas'),mapOptions);
// Set map marker
var marker = new google.maps.Marker({
position: cord,
map: map,
title: 'Test'
});
}
// Load Map
google.maps.event.addDomListener(window, 'load', initialize);
initialize();
});
</script>
<div>
<div id="map-canvas"style="width:600px; height:500px"></div>
</div>
您選擇的瀏覽器調試器中的任何錯誤消息? – BLSully 2013-05-14 16:07:03
不,幾乎所有我嘗試的方式我只是得到一個空白頁面,Firebug顯示沒有錯誤。謝謝 – Sequenzia 2013-05-14 16:24:17