私は 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>
前もって感謝します。あなたの天才の1人が私を助けてくれれば本当に感謝しています。私は今から2日間ほど何が悪いのかを調べようとしています. ところで、ユーザーの座標が見つかりませんでした。(私が見つけた) それらを見つける唯一の方法は、telnet を使用して geo fix を使用することですが、私ではなく電話に座標を見つけてもらいたいです。