mapCard.vue 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  1. <template>
  2. <view class="container-view-car" @tap="navCarLocation">
  3. <!-- #ifdef APP -->
  4. <view :style="{width:'100%',height: height?'258rpx':'140rpx'}" class="map">
  5. <cover-view v-if="!isShowReturnCar" class="top-car-location">
  6. <cover-image class='img' style="width: 36rpx;height: 36rpx;" src="https://qiniu.bms16.com/FrKY7Ex5za22plr39ddIsJcjFVpi" ></cover-image>
  7. <cover-view class="text">{{ $t('车辆位置') }}</cover-view>
  8. </cover-view>
  9. <googleMap keyId="1" width='100%' :height="height?'258rpx':'140rpx'" v-if="car_info.latitude" :mapData="{type:3}" :myLocations='{
  10. longitude:car_info.longitude,
  11. latitude:car_info.latitude
  12. }'></googleMap>
  13. </view>
  14. <!-- #endif -->
  15. <!-- #ifndef APP -->
  16. <map class="map" :longitude="car_info.longitude"
  17. :latitude="car_info.latitude" scale="16" show-location :style="{width:'100%',height: height?'258rpx':'140rpx'}" :markers="carLocation">
  18. <view class="top-car-location flex-row">
  19. <img style="width: 36rpx;height: 36rpx;" src="https://qiniu.bms16.com/FrKY7Ex5za22plr39ddIsJcjFVpi" alt="">
  20. <text>{{ $t('车辆位置') }}</text>
  21. </view>
  22. </map>
  23. <!-- #endif -->
  24. <view class="car-address">{{carAddress}}</view>
  25. </view>
  26. </template>
  27. <script>
  28. const http = require('@/common/request.js');
  29. const config = require('@/common/config.js');
  30. import googleMap from "@/component/googleMap/googleMap";
  31. // component/nomore/nomore.js
  32. export default {
  33. components: {
  34. googleMap,
  35. },
  36. data() {
  37. return {
  38. carAddress:this.$t('未知'),
  39. carLocation:[]
  40. };
  41. },
  42. /**
  43. * 组件的属性列表
  44. */
  45. props: {
  46. car_info: {
  47. type: Object,
  48. default: {}
  49. },
  50. height: {
  51. type: Boolean,
  52. default: true
  53. },
  54. isShowReturnCar: {
  55. type: Boolean,
  56. default: true
  57. },
  58. },
  59. mounted() {
  60. this.carLocation = [
  61. {
  62. id: 1345,
  63. latitude: this.car_info.latitude,
  64. longitude: this.car_info.longitude,
  65. iconPath: 'https://qiniu.bms16.com/FjzP68_NSPJbde_JraN5dJRnyqqJ',
  66. width: 60,
  67. height: 60,
  68. }
  69. ],
  70. this.getAddressName(this.car_info.latitude,this.car_info.longitude)
  71. },
  72. /**
  73. * 组件的方法列表
  74. */
  75. methods: {
  76. navCarLocation(){
  77. const me=this
  78. uni.navigateTo({
  79. url: '/pages/carLocation/carLocation?longitude=' + me.car_info.longitude +'&latitude=' + me.car_info.latitude,
  80. });
  81. },
  82. async getAddressName(latitude, longitude) {
  83. const that = this
  84. //#ifdef MP-ALIPAY
  85. var _pi = "ali_index"
  86. //#endif
  87. //#ifdef MP-WEIXIN
  88. var _pi = "wx_index"
  89. //#endif
  90. //#ifdef APP
  91. var _pi = "APP"
  92. //#endif
  93. const location = {
  94. lat: that.car_info.latitude,
  95. lng: that.car_info.longitude,
  96. pi: _pi
  97. }
  98. let {data} = await http.postApi(config.API_MAP_REGEO, location)
  99. if(data.code == 200){
  100. this.carAddress = data.data.data.address
  101. }
  102. },
  103. }
  104. };
  105. </script>
  106. <style scoped>
  107. .container-view-car{
  108. background-color: #FFF;
  109. border-radius: 40rpx;
  110. width: 100%;
  111. padding: 8rpx;
  112. }
  113. .map{
  114. border-top-left-radius: 40rpx;
  115. border-top-right-radius: 40rpx;
  116. overflow: hidden;
  117. position: relative;
  118. box-sizing: border-box;
  119. }
  120. .top-car-location{
  121. box-sizing: border-box;
  122. position: absolute;
  123. left: 0;
  124. top: 0;
  125. margin: 15rpx 0 0 15rpx;
  126. display: flex;
  127. align-items: center;
  128. }
  129. .top-car-location .text{
  130. line-height: 1;
  131. color: #060809;
  132. font-weight: 500;
  133. font-size: 28rpx;
  134. height: 36rpx;
  135. margin-left: 10rpx;
  136. }
  137. .top-car-location .img{
  138. display: block;
  139. }
  140. .car-address{
  141. font-weight: 400;
  142. font-size: 28rpx;
  143. color: #060809;
  144. height: 80rpx;
  145. line-height: 80rpx;
  146. text-align: center;
  147. width: 324rpx;
  148. white-space: nowrap;
  149. overflow: hidden;
  150. text-overflow: ellipsis;
  151. background-color: #F4F5F6;
  152. border-bottom-left-radius: 40rpx;
  153. border-bottom-right-radius: 40rpx;
  154. margin-top: 8rpx;
  155. padding-left: 8rpx;
  156. }
  157. </style>