ionic中获取坐标的方法
1.首相需要执行命令:
cordova plugin add cordova-plugin-geolocation
2.然后块级注入配置bower文件引入ngCordova
2.然后块级注入配置bower文件引入ngCordova
3.控制器中注入$cordovaGeolocation
4.获取坐标
$cordovaGeolocation.getCurrentPosition({
timeout: 10000,
enableHighAccuracy: false
}).then(function(position) {
scope.selectText = position;
}, function() { });