欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

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

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

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()
				});
			}
		},
// 點擊獲取地圖
	kilometer(e) {
		uni.openLocation({
			longitude: Number(e.lng),
			latitude: Number(e.lat),
			name: e.name,
			address: e.address
		})
	},

map.js頁面對地理位置進行封裝

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    表示 初始化進入該頁面
                // res.authSetting['scope.userLocation'] == false    表示 非初始化進入該頁面,且未授權(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)當前位置',
                        content: '需要獲取您的地理位置,請確認授權(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) => {})
}
//坐標獲取城市
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) => {})
}
// 坐標轉(zhuǎn)換地址
function getLocal() {
    let vm = this;
    return new Promise(function (resolve, reject) {
        qqmapsdk = new QQMapWX ({
            key: 'asdfghjklqwertyuiop' //這里自己的key秘鑰進行填充
        });
        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秘鑰進行填充
        });
        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),不需要我們主動彈窗,微信會提供彈窗
                    resolve(true)
                } else if (!auth['scope.userLocation']) {
                    // 沒有授權(quán)過,需要用戶重新授權(quán)
                    // 這個彈窗是為了實現(xiàn)點擊,不然openSetting會失敗
                    uni.showModal({
                        title: '是否授權(quán)當前位置?',
                        content: '需要獲取您的地理位置,請確認授權(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) {
                                        // 需要點擊,有時候沒有點擊,是無法觸發(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)文章

  • bootstrap Table的使用方法總結(jié)

    bootstrap Table的使用方法總結(jié)

    這篇文章主要為大家詳細介紹了bootstrap Table的使用方法,文中示例代碼介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2021-05-05
  • js設(shè)置文本框中焦點位置在最后的示例代碼(簡單實用)

    js設(shè)置文本框中焦點位置在最后的示例代碼(簡單實用)

    本篇文章主要是對js設(shè)置文本框中焦點位置在最后的示例代碼進行了介紹,需要的朋友可以過來參考下,希望對大家有所幫助
    2014-03-03
  • JS實現(xiàn)Date日期格式的本地化的方法小結(jié)

    JS實現(xiàn)Date日期格式的本地化的方法小結(jié)

    為了更好的更新多語言日期的顯示,所以希望實現(xiàn)日期的本地化格式顯示要求,常規(guī)的特殊字符型格式化無法滿足顯示要求,這里整理了幾種我思考實現(xiàn)的本地化實現(xiàn)功能
    2024-06-06
  • JS實現(xiàn)瀑布流效果

    JS實現(xiàn)瀑布流效果

    這篇文章主要為大家詳細介紹了JS實現(xiàn)瀑布流效果,文中示例代碼介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2020-03-03
  • fireworks菜單生成器mm_menu.js在 IE 7.0 顯示問題的解決方法

    fireworks菜單生成器mm_menu.js在 IE 7.0 顯示問題的解決方法

    由于公司官網(wǎng)采用的是dreamwaver / fireworks 內(nèi)建的彈出式菜單的JS,在IE7下發(fā)現(xiàn)菜單項文字顯示都變成一排,無法正確瀏覽.
    2009-10-10
  • package.json與package-lock.json的區(qū)別及詳細解釋

    package.json與package-lock.json的區(qū)別及詳細解釋

    不知道大家平時在開發(fā)中有沒有注意到,你的項目中有兩個文件:package.json,package-lock.json,應(yīng)該很多人平時都不會去關(guān)注這兩個文件有啥關(guān)系吧,這篇文章主要給大家介紹了關(guān)于package.json與package-lock.json的區(qū)別及詳細解釋,需要的朋友可以參考下
    2022-08-08
  • JS如何將UTC格式時間轉(zhuǎn)本地格式

    JS如何將UTC格式時間轉(zhuǎn)本地格式

    UTC格式時間想必大家并不陌生,那么怎么可以將其轉(zhuǎn)換為本地格式呢?其實很簡單,下面的方法會幫助大家實現(xiàn)這一想法
    2013-09-09
  • JavaScript設(shè)計模式之單例模式

    JavaScript設(shè)計模式之單例模式

    單例模式的定義是:保證一個類僅有一個實例,并提供一個訪問它的全局訪問點。文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友們下面隨著小編來一起學習學習吧
    2022-08-08
  • Fuse.js模糊查詢算法學習指南

    Fuse.js模糊查詢算法學習指南

    這篇文章主要為大家介紹了Fuse.js模糊查詢算法學習指南,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進步,早日升職加薪
    2023-03-03
  • JavaScript塊級作用域綁定以及狀態(tài)提升詳解

    JavaScript塊級作用域綁定以及狀態(tài)提升詳解

    這篇文章主要給大家介紹了關(guān)于JavaScript塊級作用域綁定以及狀態(tài)提升的相關(guān)資料,文中通過實例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友可以參考下
    2022-03-03

最新評論