我正在嘗試構建JQuery Mobile應用程序。我希望這個應用程序包含一個Google地圖。我是基於jquery-ui-map插件實現的。他們的示例代碼可在http://jquery-ui-map.googlecode.com/svn/trunk/demos/jquery-google-maps-mobile.html#basic_map。在JQuery Mobile中顯示Google地圖
即使有這樣的例子,我仍然無法得到一個地圖出現。我覺得我正在使用最基本的代碼。有人可以告訴我我做錯了什麼嗎?我的代碼如下所示:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=true"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js" type="text/javascript"></script>
<script type="text/javascript" src="/resources/scripts/jquery.ui.map.full.min.js" />
</head>
<body>
<div id="result" data-role="page">
<div data-role="header"><h1>My App</h1></div>
<div data-role="content">
<div id="resultMap" style="height:200px; width:200px; background-color:Lime;">
</div>
</div>
</div>
<br /><br />
<script type="text/javascript">
$("#result").live("pageshow", function() {
$("#resultMap").gmap();
});
</script>
</body>
</html>
map()而不是gmap()? – 2012-02-05 19:16:41
:(不幸的是沒有, – 2012-02-05 20:08:13