javascript を使用してブラックベリーの現在の位置情報を取得しようとしていますが、そのメソッドでは常にエラー ブロックを処理します。
これは私のjavascriptです:
function getCurrentPosition() {
if (navigator.geolocation)
{
navigator.geolocation.getCurrentPosition(
function( position ) {
alert(position.coords.latitude + ', ' +position.coords.longitude);
},
function( error ) {
alert( "Something went wrong: ", error );
},
{
timeout: (10 * 1000)
}
);
}
else {
alert("Geolocation is not supported by this browser.");
}
}
そのメソッドでは、「問題が発生しました:」というメッセージが常に警告されます。
注:WiFiのみでBlackberry 9780を使用しています
ありがとう