|
@@ -67,14 +67,19 @@
|
|
|
//获取手机GPS位置
|
|
|
function get_mobile_gps_location(onSuccess,onError){
|
|
|
var onSuccess = function(position) {
|
|
|
- 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');
|
|
|
+ // 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');
|
|
|
+ var lnglat = new AMap.LngLat(position.coords.longitude, position.coords.latitude);
|
|
|
+ userMarker.setPosition(lnglat);
|
|
|
+ userMarker.setMap(learun.map);
|
|
|
+ learun.map.setFitView();
|
|
|
+ console.log(lnglat);
|
|
|
};
|
|
|
|
|
|
// onError Callback receives a PositionError object
|
|
@@ -202,10 +207,7 @@
|
|
|
$page.find('#user-location').on('tap', function(){
|
|
|
get_mobile_gps_location(function(position){
|
|
|
// position.coords.latitude
|
|
|
- var lnglat = new AMap.LngLat(position.coords.longitude, position.coords.latitude);
|
|
|
- userMarker.setPosition(lnglat);
|
|
|
- userMarker.setMap(learun.map);
|
|
|
- learun.map.setFitView();
|
|
|
+
|
|
|
});
|
|
|
});
|
|
|
|