我正在使用 Phonegap (cordova-2.0.0),并且我已将 cordova-2.0.0.js 与其他文件一起放在 assets/www 目录中,我已将 cordova-2.0.0.jar 放在引用的库中。我在 Android 清单和 config.xml 中添加了所需的代码。我制作了一个名为“storelocation.html”的 html 文件,我希望该文件获取用户的当前坐标并将其传递到 Google 地图中,这将使这些坐标位于地图的中心。我不确定这个文件中的代码有什么问题,有人可以检查一下我是否只是愚蠢吗?
<!DOCTYPE html "-//W3C//DTD XHTML 1.0 Strict//EN"
"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>Device Properties Example</title>
<script type="text/javascript" charset="utf-8" src="cordova-2.0.0.js"></script>
<script src="http://maps.google.com/maps?file=api&v=2&key=AIzaSyBlNOgoh-8Xg9_OYqUUxReMJZk4syLFayM&sensor=true"type="text/javascript"></script>
<script type="text/javascript">
// Wait for Cordova to load
document.addEventListener("deviceready", onDeviceReady, false);
// Cordova is ready
//
function onDeviceReady() {
navigator.geolocation.getCurrentPosition(onSuccess, onError, {enableHighAccuracy:true });
}
// onSuccess Geolocation
//
/* function onSuccess(position) {
var element = document.getElementById('geolocation');
element.innerHTML = 'Latitude: ' + position.coords.latitude + '<br />' +
'Longitude: ' + position.coords.longitude + '<br />' +
'Altitude: ' + position.coords.altitude + '<br />' +
'Accuracy: ' + position.coords.accuracy + '<br />' +
'Altitude Accuracy: ' + position.coords.altitudeAccuracy + '<br />' +
'Heading: ' + position.coords.heading + '<br />' +
'Speed: ' + position.coords.speed + '<br />' +
'Timestamp: ' + position.timestamp + '<br />';
}
// onError Callback receives a PositionError object
//
function onError(error) {
alert('code: ' + error.code + '\n' +
'message: ' + error.message + '\n');
} */
var element = document.getElementById('geolocation');
function initialize() {
if (GBrowserIsCompatible()) {
var map = new GMap2(document.getElementById("map_canvas"));
map.setCenter(new GLatLng(position.coords.latitude, position.coords.longitude), 13);
map.setUIToDefault();
}
}
</script>
</head>
<body onload="initialize()" onunload="GUnload()">
<div id="map_canvas" style="width: 500px; height: 300px"></div>
</body>
</html>
提前非常感谢,如果你们中的一个天才可以帮助我,我真的很感激,我已经尝试了 2 天来看看出了什么问题。顺便说一句,找不到用户的坐标,找到它们的唯一方法(我发现)是使用 telnet 使用 geo fix,但我希望手机找到坐标而不是我。