|
@@ -7,7 +7,10 @@
|
|
|
</map>
|
|
|
<!-- #endif -->
|
|
|
<!-- #ifdef APP -->
|
|
|
- <googleMap keyId="1" width='100%' height='calc(100vh - 506rpx)' v-if="myLocation.latitude" :mapData="{type:3,markers,zoom:13}" :myLocations='myLocation'></googleMap>
|
|
|
+ <googleMap keyId="1" width='100%' height='calc(100vh - 506rpx)' v-if="car_info.latitude" :mapData="{type:3,markers,zoom:13}" :myLocations='{
|
|
|
+ latitude:car_info.latitude,
|
|
|
+ longitude:car_info.longitude,
|
|
|
+ }'></googleMap>
|
|
|
<!-- #endif -->
|
|
|
<!-- 由于cover-view一些样式及点击事件不支持 -->
|
|
|
<!-- 气泡内容 -->
|
|
@@ -58,7 +61,10 @@ import googleMap from "@/component/googleMap/googleMap";
|
|
|
*/
|
|
|
onLoad: function(options) {
|
|
|
|
|
|
- this.car_info = uni.getStorageSync('car_info') || {}
|
|
|
+ let car_info = uni.getStorageSync('car_info') || {}
|
|
|
+ car_info.latitude = `${car_info.latitude}`
|
|
|
+ car_info.longitude = `${car_info.longitude}`
|
|
|
+ this.car_info = car_info
|
|
|
this.car_info.heart_time = this.car_info.heart_time ? dayjs(this.car_info.heart_time*1000).format('YYYY-MM-DD hh:mm:ss') : '未知时间'
|
|
|
this.init()
|
|
|
// this.longitude = {
|
|
@@ -91,36 +97,30 @@ import googleMap from "@/component/googleMap/googleMap";
|
|
|
},
|
|
|
methods: {
|
|
|
init(){
|
|
|
- this.latitude = this.car_info.latitude || 39.909
|
|
|
- this.longitude = this.car_info.longitude || 116.39742
|
|
|
+ this.latitude = this.car_info.latitude
|
|
|
+ this.longitude = this.car_info.longitude
|
|
|
this.getAddressName(this.latitude,this.longitude)
|
|
|
let _this = this
|
|
|
- uni.getLocation({
|
|
|
- success(res) {
|
|
|
- _this.myLocation.latitude = res.latitude
|
|
|
- _this.myLocation.longitude = res.longitude
|
|
|
- _this.markers = [
|
|
|
- {
|
|
|
- width: 80 / 2,
|
|
|
- height: 108 / 2,
|
|
|
- id: _this.car_info.car_sn,
|
|
|
- longitude: _this.longitude,
|
|
|
- latitude: _this.latitude,
|
|
|
- iconPath: 'https://qiniu.bms16.com/Fim2CWvIaWVoqPwQsJbNn-fcS-Ku',
|
|
|
- iconPathActive: 'https://qiniu.bms16.com/Fim2CWvIaWVoqPwQsJbNn-fcS-Ku',
|
|
|
- content:''
|
|
|
- },
|
|
|
- {
|
|
|
- width: 22,
|
|
|
- height: 40,
|
|
|
- id: 50000,
|
|
|
- iconPath: "https://zxappfile.bms16.com/zx_client/location_n.png",
|
|
|
- longitude: res.longitude,
|
|
|
- latitude: res.latitude,
|
|
|
- }
|
|
|
- ]
|
|
|
+ _this.markers = [
|
|
|
+ {
|
|
|
+ width: 80 / 2,
|
|
|
+ height: 108 / 2,
|
|
|
+ id: _this.car_info.car_sn,
|
|
|
+ longitude: `${_this.longitude}`,
|
|
|
+ latitude: `${_this.latitude}`,
|
|
|
+ iconPath: 'https://qiniu.bms16.com/Fim2CWvIaWVoqPwQsJbNn-fcS-Ku',
|
|
|
+ iconPathActive: 'https://qiniu.bms16.com/Fim2CWvIaWVoqPwQsJbNn-fcS-Ku',
|
|
|
+ content:''
|
|
|
+ },
|
|
|
+ {
|
|
|
+ width: 22,
|
|
|
+ height: 40,
|
|
|
+ id: 50000,
|
|
|
+ iconPath: "https://zxappfile.bms16.com/zx_client/location_n.png",
|
|
|
+ longitude: _this.myLocation.longitude,
|
|
|
+ latitude: _this.myLocation.latitude,
|
|
|
}
|
|
|
- })
|
|
|
+ ]
|
|
|
},
|
|
|
navAddress() {
|
|
|
const that = this;
|