這是我第一次使用jQuery和Google地圖。因此,我真的複製和粘貼谷歌地圖hello世界頁面,幷包括jQuery Mobile,我只是得到一個空的頁面,說「加載」。我不知道爲什麼?Google地圖和Jquery Mobile不能一起工作
HTML和JS:
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
<link rel="stylesheet" type="text/css" href="css/mystyles.css">
<link rel="stylesheet" href="css/jquery.mobile.css"/>
<link rel="stylesheet" href="css/jquery.mobile.structure.css"/>
<script type="text/javascript"
src="https://maps.googleapis.com/maps/api/js?key=[key]&sensor=true">
</script>
<script type="text/javascript" src="js/myscript.js"></script>
<script type="text/javascript" src="js/cordova-2.3.0.js"></script>
<script type="text/javascript">
function initialize()
{
var mapOptions = {
center: new google.maps.LatLng(-34.397, 150.644),
zoom: 8
};
var map = new google.maps.Map(document.getElementById("map-canvas"),
mapOptions);
}
</script>
</head>
<body onload="initialize()">
<div id="map-canvas"></div>
</body>
</html>
凡說MYAPIKEY我把我的鑰匙在那裏。我不知道這些如何分崩離析?
UPDATE
改變的代碼到上方。當我刪除了鏈接到我的jQuery Mobile的文件都加載罰款...
給帆布固定的高度 – alkis