最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

uniapp打開地圖直接獲取位置的實(shí)現(xiàn)代碼

 更新時(shí)間:2024年08月03日 11:40:47   作者:愿?  
這篇文章主要介紹了uniapp打開地圖直接獲取位置的實(shí)現(xiàn),本文通過實(shí)例代碼給大家介紹的非常詳細(xì),對大家的學(xué)習(xí)或工作具有一定的參考借鑒價(jià)值,需要的朋友參考下吧

uniapp打開地圖直接獲取位置

uniapp官網(wǎng)文檔

https://en.uniapp.dcloud.io/api/location/open-location.html

<view class="map-content" @click.stop="kilometer(item)">
		<view class="km">
			{{item.distance||'0'}}km
		</view>
	</view>
import map from '../../utils/map.js'
		onLoad() {
			let that = this
			let addressInfo = getApp().globalData.addressInfo;
			if (addressInfo) {
				that.addressInfo = addressInfo
				that.getOilList()
			} else {
			//這里是獲取地理位置
				map.loadCity().then(res => {
					that.addressInfo = getApp().globalData.addressInfo
					that.getOilList()
				});
			}
		},
// 點(diǎn)擊獲取地圖
	kilometer(e) {
		uni.openLocation({
			longitude: Number(e.lng),
			latitude: Number(e.lat),
			name: e.name,
			address: e.address
		})
	},

map.js頁面對地理位置進(jìn)行封裝

import QQMapWX from '@/utils/qqmap-wx-jssdk.min.js'
var qqmapsdk = {};
// 獲取位置授權(quán)
async function loadCity() {
    let that = this;
    return new Promise(function (resolve, reject) {
        uni.getSetting({
            success: (res) => {
                // res.authSetting['scope.userLocation'] == undefined    表示 初始化進(jìn)入該頁面
                // res.authSetting['scope.userLocation'] == false    表示 非初始化進(jìn)入該頁面,且未授權(quán)
                // res.authSetting['scope.userLocation'] == true    表示 地理位置授權(quán)
                if (res.authSetting['scope.userLocation'] != undefined && res.authSetting['scope.userLocation'] != true) {
                    uni.showModal({
                        title: '請求授權(quán)當(dāng)前位置',
                        content: '需要獲取您的地理位置,請確認(rèn)授權(quán)',
                        success: function (res) {
                            if (res.cancel) {
                                uni.showToast({
                                    title: '拒絕授權(quán)',
                                    icon: 'none',
                                    duration: 1000
                                })
                                reject(false);
                            } else if (res.confirm) {
                                uni.openSetting({
                                    success: function (dataAu) {
                                        if (dataAu.authSetting["scope.userLocation"] == true) {
                                            uni.showToast({
                                                title: '授權(quán)成功',
                                                icon: 'success',
                                                duration: 1000
                                            })
                                            that.getLocation().then(function (res) {
                                                if (res) {
                                                    resolve(true);
                                                } else {
                                                    reject(false);
                                                }
                                            });
                                        } else {
                                            uni.showToast({
                                                title: '授權(quán)失敗',
                                                icon: 'none',
                                                duration: 1000
                                            })
                                            reject(false);
                                        }
                                    }
                                })
                            }
                        }
                    })
                } else if (res.authSetting['scope.userLocation'] == undefined) {
                    that.getLocation().then(function (res) {
                        if (res) {
                            resolve(true);
                        } else {
                            reject(false);
                        }
                    });
                } else {
                    that.getLocation().then(function (res) {
                        if (res) {
                            resolve(true);
                        } else {
                            reject(false);
                        }
                    });
                }
            }
        })
    }).catch((e) => {})
}
//坐標(biāo)獲取城市
function getLocation() {
    let vm = this;
    return new Promise(function (resolve, reject) {
        uni.getLocation({
            type: 'wgs84',
            success: function (res) {
                getApp().globalData.latitude = res.latitude;
                getApp().globalData.longitude = res.longitude;
                uni.setStorageSync("longitude", res.longitude)
                uni.setStorageSync("latitude", res.latitude)
                vm.getLocal().then(function (res) {
                    if (res) {
                        resolve(true);
                    } else {
                        reject(false);
                    }
                });
            },
            fail: function (res) {
                reject(false);
            }
        })
    }).catch((e) => {})
}
// 坐標(biāo)轉(zhuǎn)換地址
function getLocal() {
    let vm = this;
    return new Promise(function (resolve, reject) {
        qqmapsdk = new QQMapWX ({
            key: 'asdfghjklqwertyuiop' //這里自己的key秘鑰進(jìn)行填充
        });
        qqmapsdk.reverseGeocoder({
            location: {
                latitude: getApp().globalData.latitude,
                longitude: getApp().globalData.longitude
            },
            success: function (res) {
                getApp().globalData.addressInfo = res.result.address_component;
                resolve(true);
            },
            fail: function (res) {
                reject(false);
            }
        });
    }).catch((e) => {})
}
function calculateDistance(latitude, longitude) {
    let vm = this;
    return new Promise(function (resolve, reject) {
        qqmapsdk = new QQMapWX ({
            key: 'asdfghjklqwertyuiop' //這里自己的key秘鑰進(jìn)行填充
        });
        qqmapsdk.calculateDistance({
            to: [{
                latitude: latitude, //商家的緯度
                longitude: longitude, //商家的經(jīng)度
            }],
            success: function (res) {
                resolve(res);
            },
            fail: function (res) {
                reject(res);
            }
        });
    }).catch((e) => {})
}
function selectLocation() {
    let that = this;
    return new Promise(function (resolve, reject) {
        uni.getSetting({
            success(res) {
                // 只返回用戶請求過的授權(quán)
                let auth = res.authSetting;
                if (auth['scope.userLocation']) {
                    // 已授權(quán),申請定位地址
                    resolve(true)
                } else if (auth['scope.userLocation'] === undefined) {
                    // 用戶沒有請求過的授權(quán),不需要我們主動(dòng)彈窗,微信會(huì)提供彈窗
                    resolve(true)
                } else if (!auth['scope.userLocation']) {
                    // 沒有授權(quán)過,需要用戶重新授權(quán)
                    // 這個(gè)彈窗是為了實(shí)現(xiàn)點(diǎn)擊,不然openSetting會(huì)失敗
                    uni.showModal({
                        title: '是否授權(quán)當(dāng)前位置?',
                        content: '需要獲取您的地理位置,請確認(rèn)授權(quán),否則定位功能將無法使用',
                        success: res => {
                            if (res.confirm) {
                                uni.openSetting({
                                    success(res) {
                                        let setting = res.authSetting;
                                        if (!setting['scope.userLocation']) {
                                            uni.showToast({
                                                title: '地址授權(quán)失敗,定位功能無法使用',
                                                icon: 'none',
                                            });
                                            reject(false)
                                        } else {
                                            // 地址授權(quán)成功,申請定位地址
                                            resolve(true)
                                        }
                                    },
                                    fail(err) {
                                        // 需要點(diǎn)擊,有時(shí)候沒有點(diǎn)擊,是無法觸發(fā)openSetting
                                        console.log('open-setting-fail', err);
                                        reject(false)
                                    }
                                });
                            }
                        }
                    });
                }
            }
        });
    }).catch((e) => {})
}
module.exports = {
    loadCity,
    getLocation,
    getLocal,
    getLocation,
    selectLocation,
    calculateDistance
}

到此這篇關(guān)于uniapp打開地圖直接獲取位置的文章就介紹到這了,更多相關(guān)uniapp獲取地圖位置內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!

相關(guān)文章

最新評論

睢宁县| 廊坊市| 泗洪县| 泸西县| 泸西县| 隆回县| 临邑县| 日照市| 特克斯县| 浑源县| 甘泉县| 孝感市| 泗水县| 西华县| 交城县| 庆安县| 苏州市| 吉水县| 阳信县| 浠水县| 张掖市| 昌江| 连平县| 洛南县| 嘉峪关市| 辉南县| 本溪| 雷山县| 鄱阳县| 安平县| 平南县| 湘阴县| 巨鹿县| 宽甸| 上栗县| 惠安县| 灵璧县| 钟山县| 景东| 宁河县| 安达市|