navigation.js 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. (function () {
  2. var page = {
  3. init: function ($page, param) {
  4. renlian.layer.loading(true, "加载数据中");
  5. //地图初始化
  6. var map = new AMap.Map("navigation-map", {
  7. resizeEnable: true,
  8. center: [113.955439, 22.542956],//地图中心点
  9. zoom: 12 //地图显示的缩放级别
  10. });
  11. map.on('complete', function(){
  12. renlian.layer.loading(false);
  13. });
  14. var riding = null;
  15. var userMarker = new AMap.Marker({icon: "./images/location.png", offset:new AMap.Pixel(-16, -16)});
  16. //骑行导航
  17. if(!riding){
  18. var riding = new AMap.Riding({
  19. map: map,
  20. autoFitView: true
  21. });
  22. }
  23. //根据起终点坐标规划骑行路线
  24. riding.search(param.start, param.end, function(status, result) {
  25. // result即是对应的骑行路线数据信息,相关数据结构文档请参考 https://lbs.amap.com/api/javascript-api/reference/route-search#m_RidingResult
  26. if (status === 'complete') {
  27. // renlian.layer.toast('绘制骑行路线完成:');
  28. } else {
  29. renlian.layer.toast('骑行路线数据查询失败:' + result);
  30. }
  31. });
  32. var presentLnglat = null;
  33. function get_mobile_gps_location(onSuccess,onError){
  34. var onSuccess = function(position) {
  35. // alert('Latitude: ' + position.coords.latitude + '\n' +
  36. // 'Longitude: ' + position.coords.longitude + '\n' +
  37. // 'Altitude: ' + position.coords.altitude + '\n' +
  38. // 'Accuracy: ' + position.coords.accuracy + '\n' +
  39. // 'Altitude Accuracy: ' + position.coords.altitudeAccuracy + '\n' +
  40. // 'Heading: ' + position.coords.heading + '\n' +
  41. // 'Speed: ' + position.coords.speed + '\n' +
  42. // 'Timestamp: ' + position.timestamp + '\n');
  43. presentLnglat = new AMap.LngLat(position.coords.longitude, position.coords.latitude);
  44. userMarker.setPosition(presentLnglat);
  45. userMarker.setMap(map);
  46. };
  47. // onError Callback receives a PositionError object
  48. //
  49. function onError(error) {
  50. console.log('code: ' + error.code + '\n' +
  51. 'message: ' + error.message + '\n');
  52. }
  53. navigator.geolocation.getCurrentPosition(onSuccess, onError);
  54. }
  55. var geocoder = null;
  56. var locationAuto = setInterval(function(){
  57. if($('.f-page').length < 2){
  58. clearTimeout(locationAuto);
  59. }
  60. if(!window.lrmui.isreal){
  61. get_mobile_gps_location();
  62. var lnglat = presentLnglat;
  63. // var lnglat = [113.951104,22.542902];
  64. if(!geocoder){
  65. geocoder = new AMap.Geocoder({
  66. radius: 50
  67. });
  68. }
  69. console.log('dd');
  70. geocoder.getAddress(lnglat, function(status, result) {
  71. if (status === 'complete' && result.regeocode) {
  72. address = result.regeocode.formattedAddress;
  73. $('#navg-address').text(address);
  74. }else{console.log(JSON.stringify(result))}
  75. });
  76. }
  77. }, 10000);
  78. },
  79. reload:function(pageinfo){
  80. console.log('testsfadfasd')
  81. }
  82. };
  83. return page;
  84. })();