91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何在Html5中獲取高德地圖定位天氣

發布時間:2021-05-08 17:34:13 來源:億速云 閱讀:233 作者:Leah 欄目:web開發

本篇文章給大家分享的是有關如何在Html5中獲取高德地圖定位天氣,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

創建一個AMap.js文件

// AMap.js

// 高德map   https://webapi.amap.com/maps?v=1.4.11&key=你的高德地圖的key
export default function MapLoader () {
return new Promise((resolve, reject) => {
if (window.AMap) {
  resolve(window.AMap)
} else {
  var script = document.createElement('script')
  script.type = 'text/javascript'
  script.async = true
  //這里引入的是全部模塊,或者按需要模塊引入,加參數plugin=“模塊名”
  script.src =
    'http://webapi.amap.com/maps?v=1.4.11&callback=initAMap&key=6747cb97****************7e774b4b62' //你的高德應用AK (申請參考官方文檔)
  script.onerror = reject
  document.head.appendChild(script)''
}
window.initAMap = () => {
  resolve(window.AMap)
}
})
}

使用

vue 示例

import MapLoader from '@/common/SDK/AMap.js'

MapLoader().then(AMap => {
                //加載定位插件
                AMap.plugin(['AMap.Geolocation', 'AMap.Weather'], function() {
                    var geolocation = new AMap.Geolocation({
                        // 是否使用高精度定位,默認:true
                        enableHighAccuracy: true,
                        // 設置定位超時時間,默認:無窮大
                        timeout: 10000,
                        // 定位按鈕的停靠位置的偏移量,默認:Pixel(10, 20)
                        buttonOffset: new AMap.Pixel(10, 20),
                        //  定位成功后調整地圖視野范圍使定位位置及精度范圍視野內可見,默認:false
                        zoomToAccuracy: true,
                        //  定位按鈕的排放位置,  RB表示右下
                        buttonPosition: 'RB'
                    })
            
                    geolocation.getCurrentPosition()
                    AMap.event.addListener(geolocation, 'complete', onComplete)
                    AMap.event.addListener(geolocation, 'error', onError)
                    var weather = new AMap.Weather();
            
                    function onComplete(data) {
                        // data是具體的定位信息
                        that.$store.dispatch('UPDATE_ADDRESS', data.formattedAddress)
                        // weather.getForecast(data.addressComponent.adcode, function(err, data) {
                        //     console.log(err, data);
                        // });
                        weather.getLive(data.addressComponent.adcode, function(err, data) {
                            // console.log(err, data);
                            let obj = {
                                adcode: "330100", //區域編碼
                                city: "杭州市", //城市
                                humidity: "92", //空氣濕度(百分比)
                                info: "OK", //狀態
                                province: "浙江", //省份
                                reportTime: "2019-12-24 19:55:48",
                                temperature: 10, //實時氣溫,單位:攝氏度
                                weather: "陰", //天氣預報
                                windDirection: "東", // 風向,風向編碼對應描述
                                windPower: "≤3", //風力,風力編碼對應風力級別,單位:級
                            }
                            let weatherObj = {
                                date: `${that.$moment().format('MM月DD日')}`,
                                week: `${that.$moment().format('d')}`,
                                temperature: data.temperature,
                                currentCity: data.city,
                                weatherDesc: data.weather
                            }
                            that.$store.dispatch("UPDATE_Weather", weatherObj)
                        });
            
                    }
            
                    function onError(data) {
                        // 定位出錯
                        if (data.info == 'NOT_SUPPORTED') {
                            uni.showModal({
                                title: '提示',
                                content: '當前瀏覽器不支持定位功能' || '定位失敗'
                            })
                        } else if (data.info == 'FAILED') {
                            uni.showModal({
                                title: '提示',
                                content: data.message || '定位失敗'
                            })
                        }
            
                    }
                })
            }, e => {
                console.log('地圖加載失敗', e)
            })
        }

以上就是如何在Html5中獲取高德地圖定位天氣,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

石柱| 曲靖市| 新营市| 尉氏县| 高阳县| 贵阳市| 昌平区| 安丘市| 盖州市| 新泰市| 田林县| 祥云县| 叶城县| 游戏| 屏东市| 玉屏| 赫章县| 阳东县| 九龙坡区| 临潭县| 盐津县| 晴隆县| 社旗县| 蒙阴县| 玛曲县| 合山市| 昌平区| 阳原县| 潮州市| 收藏| 商河县| 木里| 方城县| 贵州省| 大名县| 宁陵县| 金湖县| 建始县| 安阳市| 广汉市| 苗栗县|