Chrome でのみ動作するハイブリッド アプリケーションを作成しています。私のアプリでは HTML5 ジオロケーションを使用しています。現在地の使用を許可するには、「許可」をクリックしましたが、その後応答がありません。実際の問題が見つかりませんでした。助けてください..
if (navigator.geolocation)
{
navigator.geolocation.getCurrentPosition(self.showPosition);
function showPosition(position)
{
var currentLatitude = position.coords.latitude;
var currentLongitude = position.coords.longitude;
localStorage.DeviceLocation=currentLatitude+","+currentLongitude;
$("#curr_loc_target").html("<b>Current location enabled as target </b> <BR> <b>Latitude :</b> "+currentLatitude.toFixed(5)+" <b>Longitude : </b>"+currentLongitude.toFixed(5));
$("#curr_loc_target").show();
}
}