我已經嘗試了一切,以獲取地理位置在我的模擬器(目標2.2)上工作,我已經使用telnet併發布了「地理修復」,其次是經度和緯度。我編輯了我的Android清單給我的權限,但我不知道爲什麼它不會顯示以我的位置爲中心的谷歌地圖。如果我將任何座標放入地圖的setcentered函數中,但是當我放入座標時,它不會顯示出來。 這是我一直在研究了幾個小時的代碼:地理位置Phonegap Android不工作
<!DOCTYPE html "-//W3C//DTD XHTML 1.0 Strict//
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
<title>Google Maps JavaScript API Example</title>
<script src="http://maps.google.com/maps?file=api&v=2&key=AIzaSyBrnId8UIeAeDTMr2sVi-g86izgdb2KhVo&sensor=true"
type="text/javascript"></script>
<script type="text/javascript">
// Wait for PhoneGap to load
// PhoneGap is ready
document.addEventListener("deviceready", onDeviceReady, false);
navigator.geolocation.getCurrentPosition(geolocationSuccess, [maximumAge: 3000, timeout: 5000, enableHighAccuracy:
<!--position.coords.latitude-->
initialize()
(GBrowserIsCompatible())
map = new GMap2(document.getElementById("map_canvas"));
map.setCenter(new GLatLng(position.coords.latitude,position.coords.longitude), 13)
map.setUIToDefault();
// Add 10 markers to the map at random locations
var bounds = map.getBounds();
var southWest = bounds.getSouthWest();
var northEast = bounds.getNorthEast();
var lngSpan = northEast.lng() - southWest.lng();
var latSpan = northEast.lat() - southWest.lat();
}
}
</script>
</head>
<body onload="initialize()" onunload="GUnload()">
<div id="map_canvas" style="width: 500px; height: 300px"></div>
</body>
</html>
預先感謝您,我一直在試圖解決這個問題這麼多小時,我需要的是谷歌地圖出現和谷歌的中心地圖是我的位置。
而且,腳本的HTML標籤加載PhoneGap的JavaScript需要使用正確的JavaScript文件的名稱。該名稱取決於您使用的PhoneGap版本。 – HeatfanJohn 2012-07-25 18:30:04