mapCard.vue 3.5 KB

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