location.vue 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219
  1. <template>
  2. <view class="">
  3. <!-- #ifndef APP -->
  4. <map @touchmove="hiddenNav" @markertap="showNav" style="width: 100%; height: calc(100vh - 506rpx);"
  5. :latitude="latitude" :longitude="longitude" :markers="markers" show-location>
  6. </map>
  7. <!-- #endif -->
  8. <!-- #ifdef APP-PLUS -->
  9. <googleMap width="100%" height="600rpx" :mapData="{type:3,markers,zoom:13}" :myLocations='myLocation'>
  10. </googleMap>
  11. <!-- #endif -->
  12. </view>
  13. </view>
  14. </template>
  15. <script>
  16. import dayjs from "dayjs";
  17. import googleMap from "@/component/googleMap/googleMap";
  18. const http = require('../../common/request.js');
  19. const config = require('../../common/config.js');
  20. const common = require('../../common/common.js');
  21. import controlMixin from '@/mixin/index';
  22. export default {
  23. mixins: [controlMixin],
  24. components: {
  25. googleMap
  26. },
  27. props: {
  28. latlng: {
  29. type: Object,
  30. default: () => {
  31. }
  32. }
  33. },
  34. watch: {
  35. latlng: {
  36. handler: function(newVal) {
  37. if (newVal) {
  38. this.init()
  39. }
  40. },
  41. immediate: true
  42. }
  43. },
  44. data() {
  45. return {
  46. id: 0, // 使用 marker点击事件 需要填写id
  47. address: '',
  48. city_name: '',
  49. is_show_nav: true,
  50. myLocation: {
  51. // latitude:39.909,
  52. // longitude: 116.39742,
  53. },
  54. markers: [], // 标记点
  55. plate_number: '',
  56. carLocationTimer: null, // 定时器变量,用于清除定时器
  57. }
  58. },
  59. /**
  60. * 生命周期函数--监听页面加载
  61. */
  62. mounted() {},
  63. /**
  64. * 生命周期函数--监听页面显示
  65. */
  66. onShow: function() {},
  67. /**
  68. * 生命周期函数--监听页面卸载
  69. */
  70. onUnload() {
  71. },
  72. methods: {
  73. init() {
  74. this.myLocation.latitude = this.latlng.latitude || 28.909
  75. this.myLocation.longitude = this.latlng.longitude || 115.39742
  76. // this.getAddressName(this.myLocation.latitude, this.myLocation.longitude)
  77. let _this = this
  78. uni.getLocation({
  79. success(res) {
  80. _this.myLocation.latitude = res.latitude
  81. _this.myLocation.longitude = res.longitude
  82. _this.markers = [{
  83. width: 80 / 2,
  84. height: 108 / 2,
  85. longitude: _this.myLocation.longitude,
  86. latitude: _this.myLocation.latitude,
  87. iconPath: 'https://qiniu.bms16.com/Fim2CWvIaWVoqPwQsJbNn-fcS-Ku',
  88. iconPathActive: 'https://qiniu.bms16.com/Fim2CWvIaWVoqPwQsJbNn-fcS-Ku',
  89. content: ''
  90. },
  91. {
  92. width: 22,
  93. height: 40,
  94. id: 50000,
  95. iconPath: "https://zxappfile.bms16.com/zx_client/location_n.png",
  96. longitude: res.longitude,
  97. latitude: res.latitude,
  98. }
  99. ]
  100. }
  101. })
  102. },
  103. navAddress() {
  104. const that = this;
  105. uni.openLocation({
  106. latitude: that.latitude - 0,
  107. longitude: that.longitude - 0,
  108. scale: 15,
  109. name: that.city_name,
  110. address: that.address_name,
  111. success: function(res) {}
  112. });
  113. },
  114. async loadCarAddress() {
  115. const that = this
  116. http.postApi(config.API_DAYHIRE_CAR_LOCATION, {
  117. plate_number: this.plate_number
  118. }, (resp) => {
  119. if (resp.data.code === 200) {
  120. this.latitude = resp.data.data.latitude
  121. this.longitude = resp.data.data.longitude
  122. this.markers[0].latitude = resp.data.data.latitude
  123. this.markers[0].longitude = resp.data.data.longitude
  124. } else {
  125. // 默认返回上一个页面再提示报错
  126. uni.navigateBack({
  127. delta: 1
  128. })
  129. common.simpleToast(resp.data.msg)
  130. }
  131. })
  132. },
  133. async getAddressName(latitude, longitude) {
  134. const that = this
  135. //#ifdef MP-ALIPAY
  136. var _pi = "ali_index"
  137. //#endif
  138. //#ifdef MP-WEIXIN
  139. var _pi = "wx_index"
  140. //#endif
  141. //#ifdef APP
  142. var _pi = "APP"
  143. //#endif
  144. const location = {
  145. lat: that.latitude,
  146. lng: that.longitude,
  147. pi: _pi
  148. }
  149. let {
  150. data
  151. } = await http.postApi(config.API_MAP_REGEO, location)
  152. console.log(data.data.data)
  153. if (data.code == 200) {
  154. this.address = data.data.data.address
  155. }
  156. },
  157. hiddenNav() {
  158. this.is_show_nav = false
  159. },
  160. showNav() {
  161. this.is_show_nav = true
  162. },
  163. findCar() {
  164. const me = this
  165. uni.showModal({
  166. title: '提示',
  167. content: '您确认开启闪灯鸣笛吗',
  168. showCancel: true,
  169. cancelText: '取消',
  170. confirmText: '确定',
  171. success: function(res) {
  172. if (res.confirm) {
  173. me.setData({
  174. popText: '闪灯鸣笛',
  175. cmdType: 'findCar',
  176. })
  177. me.tapBlueToothCmd('', true)
  178. }
  179. },
  180. fail: function(res) {},
  181. complete: function(res) {},
  182. })
  183. },
  184. navAddress() {
  185. const {
  186. latitude,
  187. longitude,
  188. cityname,
  189. address,
  190. model_name
  191. } = this.car_info
  192. uni.openLocation({
  193. latitude: latitude - 0,
  194. longitude: longitude - 0,
  195. scale: 15,
  196. name: model_name,
  197. address: address,
  198. success: function(res) {}
  199. });
  200. }
  201. }
  202. };
  203. </script>
  204. <style>
  205. @import './carLocation.css';
  206. </style>