我正在处理cordova app
,我必须locate the user
纬度和经度。
使用geolocation插件,它可以在Android设备上正常工作,但它会在iOS
中显示要求用户许可的警报。当我使用模拟器时,我收到此警告消息:
Users/user/Library/Developer/CoreSimulator/Devices/783A2EFD-2976-448C-8E4E-841C985D337D/data/Containers/Bundle/Application/EFC846BB-4BA3-465C-BD44-575582E649FC/app_name.app/www/index.html would like to use your current location.
我看过有关此问题的主题,如:this和this,但所提供的解决方案都不适用于我。
这是cordova示例页面:
<!DOCTYPE html>
<html>
<head>
<title>Device Properties Example</title>
<script type="text/javascript" charset="utf-8" src="cordova.js"></script>
<script type="text/javascript" charset="utf-8">
document.addEventListener("deviceready", onDeviceReady, false);
function onDeviceReady() {
navigator.geolocation.getCurrentPosition(onSuccess, onError);
}
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 />';
}
function onError(error) {
alert('code: ' + error.code + '\n' +
'message: ' + error.message + '\n');
}
</script>
</head>
<body>
<p id="geolocation">Finding geolocation...</p>
</body>
有没有办法更改警报文本或禁用此警报?
-edit ---
我找到了问题的根源。我删除了geolocation插件并添加了几次,因为当我添加插件时,我没有像其他插件一样找到名称为geolocation plugin
的文件夹。即使cordova_plugin.js
文件也不包含任何有关地理定位插件的数据。现在我再次安装了插件,它可以工作。
答案 0 :(得分:4)
与&#34;编辑&#34;相同在原始问题中,我不得不删除旧版本的geolocation插件并添加新版本。然后我不得不删除/添加Cordova iOS平台。只有这样才能将NSLocationWhenInUseUsageDescription
添加到.plist文件中,DaveAlden在答案中提及成功。
首先,删除/添加地理位置插件:
cordova plugin rm org.apache.cordova.geolocation
cordova plugin add org.apache.cordova.geolocation
其次,删除/添加iOS平台:
cordova platform rm ios
cordova platform add ios
最后,将NSLocationWhenInUseUsageDescription
添加到.plist。打开/platforms/ios/{project}/{project}-Info.plist
并添加以下内容:
<key>NSLocationWhenInUseUsageDescription</key>
<string>[App Name] would like to access your location when running and displayed.</string>
有关NSLocationWhenInUseUsageDescription
与NSLocationAlwaysUsageDescription
与NSLocationUsageDescription
的详细信息,请参阅此iOS Developer Library link。
答案 1 :(得分:1)
您无法在模拟器或设备上禁用请求消息,但您可以通过向项目的.plist添加属性来自定义它。
对于iOS 8,如果您的应用请求在后台使用位置的权限,您需要以下密钥(将字符串值设置为您喜欢的任何内容):
<key>NSLocationAlwaysUsageDescription</key>
<string>My app requires constant access to your location, even when the screen is off.</string>
如果您的应用仅在前台使用位置,请添加以下密钥:
<key>NSLocationWhenInUseUsageDescription</key>
<string>My app requires access to your location when the screen is on and the app is displayed.</string>
对于旧版本的iOS(&lt; = 7),您需要使用NSLocationUsageDescription
答案 2 :(得分:1)