我试试这个(在页面加载时获取当前用户位置)
angular.module('ionicApp', ['ionic'])
.controller('MyCtrl', function($scope){
if (navigator.geolocation) {
navigator.geolocation.getCurrentPosition(function(position){
$scope.$apply(function(){
$scope.position = position;
});
});
}
});
然后打印:
{{position.coords.latitude}}
它只是打印:position.coords.latitude
我正在使用离子框架。为什么我的代码不起作用?
答案 0 :(得分:3)
你好我的工作==========
if (navigator.geolocation) {
navigator.geolocation.getCurrentPosition(showPosition, showError);
} else {
console.log("Geolocation is not supported by this browser.");
}
var latLng = {};
function showPosition(position) {
latLng = {
'lat': position.coords.latitude,
'lng': position.coords.longitude
};
$scope.location_address = latLng;
}
通过打印{{location_address}} 在 HTML方面中
离子问题中的上述代码在没有声明的情况下无法访问直接值。