|
@@ -2,7 +2,7 @@
|
|
|
<view class="content">
|
|
|
<view id="container">
|
|
|
<view :style="{width:width,height:height}" :keyId='keyId' :change:keyId='keyId' :id="`mapModule` + keyId"
|
|
|
- :prop="mapData" :change:prop="mapModule.update" :lngLat="myLocation"
|
|
|
+ :prop="mapData" :change:prop="mapModule.update" :lngLat="myLocations"
|
|
|
:change:lngLat="mapModule.initAmap"></view>
|
|
|
|
|
|
</view>
|
|
@@ -227,7 +227,7 @@
|
|
|
size: new google.maps.Size(item.width, item.height),
|
|
|
scaledSize: new google.maps.Size(item.width, item.height)
|
|
|
});
|
|
|
- let distance = common.getFlatternDistance(this.myLocation.longitude, this.myLocation
|
|
|
+ let distance = common.getFlatternDistance(this.myLocations.longitude, this.myLocations
|
|
|
.latitude, item.longitude, item.latitude)
|
|
|
let time = Math.ceil(Number(((distance - 0) / 1000).toFixed(2)) * 25 / 10)
|
|
|
let content = `${common.formatDistance(Number(distance))} 骑行${time}分钟`
|
|
@@ -277,7 +277,7 @@
|
|
|
type: Object,
|
|
|
required: true //必填项
|
|
|
},
|
|
|
- myLocation: {
|
|
|
+ myLocations: {
|
|
|
type: Object,
|
|
|
required: true //必填项
|
|
|
},
|