vue 裏面異步加載高德地圖

前言

關於Vue 裏面使用異步加載高德地圖javascript

  • 項目中其實只有幾處須要用到地圖,不須要全局引入
  • 在index文件中引入js會明顯拖慢首屏加載速度,雖然能夠使用異步加載script的方式解決,可是始終以爲不夠優雅。

解決方案

1.建立一個AMap.js,路徑'utils/AMap'
export default function MapLoader () {   // <-- 原做者這裏使用的是module.exports
  return new Promise((resolve, reject) => {
    if (window.AMap) {
      resolve(window.AMap)
    } else {
      var script = document.createElement('script')
      script.type = 'text/javascript'
      script.async = true
      script.src = 'http://webapi.amap.com/maps?v=1.3&callback=initAMap&key=yourkey'
      script.onerror = reject
      document.head.appendChild(script)
    }
    window.initAMap = () => {
      resolve(window.AMap)
    }
  })
}
2. 在任何.vue文件中使用
// test.vue
<template>
  <div class="test">
    <div id="container" class="h300 w300"></div>
  </div>
</template>
<script>
import MapLoader from '@/utils/AMap'
export default { name: 'test', data () { return { map: null } }, mounted () { let that = this MapLoader().then(AMap => { console.log('地圖加載成功') that.map = new AMap.Map('container', { center: [117.000923, 36.675807], zoom: 11 }) }, e => { console.log('地圖加載失敗' ,e) }) } } </script>

3.就解決了 vue

  一個異步加載的高德地圖插件,不須要在全局引入,也不用擔憂功能不齊全,其餘的東西,徹底參照高德地圖官方文檔來設置便可。java

如圖:web

相關文章
相關標籤/搜索