|
@@ -84,20 +84,8 @@
|
|
|
</button>
|
|
|
</view>
|
|
|
</u-popup>
|
|
|
- <u-popup :show="showMap" mode="center" @close="showMap = false" @open="open">
|
|
|
- <view class="popup flex-col justify-center ">
|
|
|
|
|
|
- <view class="map1_box flex-row justify-center">
|
|
|
- <map id="map1" class="map" :latitude="markers[0].latitude" :longitude="markers[0].longitude" :markers="markers"
|
|
|
- @regionchange="regionChange">
|
|
|
- </map>
|
|
|
- </view>
|
|
|
- <view class="btn_box flex-row justify-center">
|
|
|
- <u-button @click="closePopup">取消</u-button>
|
|
|
- <u-button @click="closePopup">确定</u-button>
|
|
|
- </view>
|
|
|
- </view>
|
|
|
- </u-popup>
|
|
|
+
|
|
|
</view>
|
|
|
</template>
|
|
|
|
|
@@ -198,7 +186,9 @@ export default {
|
|
|
|
|
|
},
|
|
|
onShow () {
|
|
|
-
|
|
|
+ let sysInfo=uni.getSystemInfoSync();
|
|
|
+ console.log("设备信息")
|
|
|
+ console.log(sysInfo)
|
|
|
},
|
|
|
updated () {
|
|
|
|
|
@@ -213,46 +203,21 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
methods: {
|
|
|
- /**
|
|
|
- * 地图点击事件 定位不正确,原因未知,先不用
|
|
|
- * @param e
|
|
|
- */
|
|
|
- // tap(e){
|
|
|
- // console.log(e)
|
|
|
- // this.markers[0].latitude= e.detail.latitude;
|
|
|
- // this.markers[0].latitude= e.detail.latitude;
|
|
|
- //
|
|
|
- // },
|
|
|
- /**
|
|
|
- * 地图拖动事件
|
|
|
- * @param e
|
|
|
- */
|
|
|
- regionChange (e) {
|
|
|
- this.mapContext = uni.createMapContext("map1", this);
|
|
|
- this.mapContext.getCenterLocation({
|
|
|
- type: 'gcj02',
|
|
|
+
|
|
|
+ changeAddress () {
|
|
|
+ uni.chooseLocation({
|
|
|
+ latitude: this.markers[0].latitude || '', /* 纬度 */
|
|
|
+ longitude: this.markers[0].longitude || '', /* 经度 */
|
|
|
success: (res) => {
|
|
|
- this.markers[0].longitude = res.longitude;
|
|
|
+ console.log(res)
|
|
|
this.markers[0].latitude = res.latitude;
|
|
|
- getAddress(this.markers[0].longitude, this.markers[0].latitude).then(res => {
|
|
|
- uni.setStorageSync('user_longitude', this.markers[0].longitude);
|
|
|
- uni.setStorageSync('user_latitude', this.markers[0].latitude);
|
|
|
- console.log(res)
|
|
|
- this.markers[0].label.content = res.result.address_reference.landmark_l2.title
|
|
|
- });
|
|
|
+ this.markers[0].longitude =res.longitude;
|
|
|
+ this.markers[0].label.content = res.name;
|
|
|
+ },
|
|
|
+ fail: function (err) {
|
|
|
+ console.log(err)
|
|
|
}
|
|
|
- });
|
|
|
-
|
|
|
-
|
|
|
- },
|
|
|
-
|
|
|
-
|
|
|
- closePopup () {
|
|
|
- this.showMap = false
|
|
|
- },
|
|
|
-
|
|
|
- changeAddress () {
|
|
|
- this.showMap = true
|
|
|
+ })
|
|
|
},
|
|
|
// 通过自带的方法获取到当前的经纬度,调用方法获取到地址获取到地址的中文信息
|
|
|
getCurrentLocation () {
|