location.js 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. // #ifdef H5
  2. import { jsonp } from 'vue-jsonp'
  3. // #endif
  4. // 导航去某地
  5. export const navigationAddress = (destination) => {
  6. const locationData = destination.split(',')
  7. uni.openLocation({
  8. latitude: locationData[1] * 1,
  9. longitude: locationData[0] * 1,
  10. success() {
  11. console.log('success')
  12. },
  13. fail(err) {
  14. console.log(err)
  15. }
  16. })
  17. // APP在搞吧
  18. // window.open(
  19. // `//uri.amap.com/navigation?from=118.115948,24.470662&to=${destination}&mode=car&policy=1&src=com.mzwu.www&callnative=1`
  20. // )
  21. }
  22. /**
  23. * 根据经纬度逆解析地址
  24. */
  25. export const getAdressDetailByLngLat = (lat, lng) => new Promise((resolve, reject) => {
  26. // #ifdef H5
  27. jsonp('https://restapi.amap.com/v3/geocode/regeo', {
  28. key: '5773f02930998e41b0de1d4e1bdbcaa9',
  29. location: `${lng},${lat}`
  30. })
  31. .then((res) => {
  32. console.log(res)
  33. resolve(res)
  34. })
  35. .catch((err) => {
  36. reject(err)
  37. })
  38. // #endif
  39. // #ifdef APP || MP-WEIXIN || MP-ALIPAY
  40. uni.request({
  41. url: 'https://restapi.amap.com/v3/geocode/regeo',
  42. data: {
  43. key: '5773f02930998e41b0de1d4e1bdbcaa9',
  44. location: `${lng},${lat}`
  45. },
  46. header: {},
  47. success: (res) => {
  48. resolve(res.data)
  49. },
  50. fail() {
  51. reject()
  52. }
  53. })
  54. // #endif
  55. })
  56. // 根据地址获取
  57. export const getLngLatByAddress = (address) => new Promise((resolve, reject) => {
  58. // #ifdef H5
  59. jsonp('https://restapi.amap.com/v3/geocode/geo', {
  60. key: '5773f02930998e41b0de1d4e1bdbcaa9',
  61. address
  62. })
  63. .then((res) => {
  64. resolve(res)
  65. })
  66. .catch((err) => {
  67. reject(err)
  68. })
  69. // #endif
  70. // #ifdef APP || MP-WEIXIN || MP-ALIPAY
  71. uni.request({
  72. url: 'https://restapi.amap.com/v3/geocode/geo',
  73. data: {
  74. key: '5773f02930998e41b0de1d4e1bdbcaa9',
  75. address
  76. },
  77. header: {},
  78. success: (res) => {
  79. resolve(res.data)
  80. },
  81. fail() {
  82. reject()
  83. }
  84. })
  85. // #endif
  86. })
  87. // 高德
  88. export function MapLoader(onSuccess, onFail) {
  89. const aMapScript = document.createElement('script')
  90. aMapScript.setAttribute(
  91. 'src',
  92. 'https://webapi.amap.com/maps?v=1.4.11&key=262e1be2edfaf66333664f33a915ccf3&plugin=AMap.CitySearch'
  93. )
  94. document.head.appendChild(aMapScript)
  95. return (aMapScript.onload = function () {
  96. AMap.plugin('AMap.Geolocation', function () {
  97. var geolocation = new AMap.Geolocation({
  98. enableHighAccuracy: true,
  99. timeout: 10000,
  100. buttonOffset: new AMap.Pixel(10, 20),
  101. zoomToAccuracy: true,
  102. buttonPosition: 'RB'
  103. })
  104. geolocation.getCurrentPosition()
  105. AMap.event.addListener(geolocation, 'complete', onComplete)
  106. AMap.event.addListener(geolocation, 'error', onError)
  107. function onComplete(data) {
  108. // data是具体的定位信息
  109. const position = data.position
  110. onSuccess &&
  111. typeof onSuccess === 'function' &&
  112. onSuccess({
  113. latitude: position.lat,
  114. longitude: position.lng
  115. })
  116. }
  117. function onError(data) {
  118. onFail && typeof onFail === 'function' && onFail(data)
  119. }
  120. })
  121. })
  122. }