mapCard.vue 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  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 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">车辆位置</cover-view>
  8. </cover-view>
  9. <googleMap keyId="1" width='100%' :height="height?'258rpx':'140rpx'" v-if="car_info.latitude" :mapData="{type:3}" :myLocation='{
  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:'300rpx',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>车辆位置</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:'未知',
  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. },
  55. mounted() {
  56. this.carLocation = [
  57. {
  58. id: 1345,
  59. latitude: this.car_info.latitude,
  60. longitude: this.car_info.longitude,
  61. iconPath: 'https://qiniu.bms16.com/FjzP68_NSPJbde_JraN5dJRnyqqJ',
  62. width: 60,
  63. height: 60,
  64. }
  65. ],
  66. this.getAddressName(this.car_info.latitude,this.car_info.longitude)
  67. },
  68. /**
  69. * 组件的方法列表
  70. */
  71. methods: {
  72. navCarLocation(){
  73. const me=this
  74. uni.navigateTo({
  75. url: '/pages/carLocation/carLocation?longitude=' + me.car_info.longitude +'&latitude=' + me.car_info.latitude,
  76. });
  77. },
  78. async getAddressName(latitude, longitude) {
  79. const that = this
  80. //#ifdef MP-ALIPAY
  81. var _pi = "ali_index"
  82. //#endif
  83. //#ifdef MP-WEIXIN
  84. var _pi = "wx_index"
  85. //#endif
  86. //#ifdef APP
  87. var _pi = "APP"
  88. //#endif
  89. const location = {
  90. lat: that.car_info.latitude,
  91. lng: that.car_info.longitude,
  92. pi: _pi
  93. }
  94. let {data} = await http.postApi(config.API_MAP_REGEO, location)
  95. if(data.code == 200){
  96. this.carAddress = data.data.data.address
  97. }
  98. },
  99. }
  100. };
  101. </script>
  102. <style scoped>
  103. .container-view-car{
  104. background-color: #FFF;
  105. border-radius: 40rpx;
  106. width: 100%;
  107. padding: 8rpx;
  108. }
  109. .map{
  110. border-top-left-radius: 40rpx;
  111. border-top-right-radius: 40rpx;
  112. overflow: hidden;
  113. position: relative;
  114. box-sizing: border-box;
  115. }
  116. .top-car-location{
  117. box-sizing: border-box;
  118. position: absolute;
  119. left: 0;
  120. top: 0;
  121. margin: 15rpx 0 0 15rpx;
  122. display: flex;
  123. align-items: center;
  124. }
  125. .top-car-location .text{
  126. line-height: 1;
  127. color: #060809;
  128. font-weight: 500;
  129. font-size: 28rpx;
  130. height: 36rpx;
  131. margin-left: 10rpx;
  132. }
  133. .top-car-location .img{
  134. display: block;
  135. }
  136. .car-address{
  137. font-weight: 400;
  138. font-size: 28rpx;
  139. color: #060809;
  140. height: 80rpx;
  141. line-height: 80rpx;
  142. text-align: center;
  143. width: 300rpx;
  144. white-space: nowrap;
  145. overflow: hidden;
  146. text-overflow: ellipsis;
  147. background-color: #F4F5F6;
  148. border-bottom-left-radius: 40rpx;
  149. border-bottom-right-radius: 40rpx;
  150. margin-top: 8rpx;
  151. padding-left: 8rpx;
  152. }
  153. </style>