Пишу небольшое приложение. И там нужно использовать данные геолокации.
NodeJS, Git, Android SDK Cordova установлены.
Создал проект, добавил платформу, плагин для геолокации.
Код привел ниже и упростил. Фактически взят с примера офф. Тестирую на устройстве через PhoneGap Desctop. Вылетает ошибка:
Буду невероятно рад если кто поможет...
document.addEventListener("deviceready", onDeviceReady, false);
function onDeviceReady() {
options = {
maximumAge: 30000,
timeout: 5000,
enableHighAccuracy: true
};
var onSuccess = function(position) {
alert('!!!!');
alert('Latitude: ' + position.coords.latitude + '\n' +
'Longitude: ' + position.coords.longitude + '\n' +
'Altitude: ' + position.coords.altitude + '\n' +
'Accuracy: ' + position.coords.accuracy + '\n' +
'Altitude Accuracy: ' + position.coords.altitudeAccuracy + '\n' +
'Heading: ' + position.coords.heading + '\n' +
'Speed: ' + position.coords.speed + '\n' +
'Timestamp: ' + position.timestamp + '\n');
};
function onError(error) {
alert('????');
alert('code: ' + error.code + '\n' +
'message: ' + error.message + '\n');
}
navigator.geolocation.getCurrentPosition(onSuccess, onError, options);
}