首頁 >web前端 >Vue.js >vue.js怎麼引進地圖

vue.js怎麼引進地圖

王林
王林原創
2021-09-30 16:39:113925瀏覽

vue.js引進地圖的方法:1、進入天地圖官網拿到金鑰;2、在vue專案中的index.html中引入對應的src;3、新map.js文件,在vue頁面中引用即可。

vue.js怎麼引進地圖

本文操作環境:windows10系統、vue 2.5.2、thinkpad t480電腦。

要在vue專案中引入地圖其實有很多種方法,像是我們可以使用天地圖、vue-amap燈的功能,兩種方式各有優勢,大家可以依照自己的需求來進行選擇。這裡就介紹下天地圖方式。

具體方法步驟如下所示:

第一步是按照天地圖官網拿到自己的key(密鑰)

第二步是在在你的vue專案中的  index.html  中引入對應的src。

<script src="//api.tianditu.gov.cn/api?v=4.0&tk=396a532e3cc05a260931d1b308636316"></script>

 第三步就是建立一個js檔案 Map.js ,方便天地圖的引入,此檔案可以放在你方便引入的位置。 Map.js  中程式碼如下

// 初始化地图
export default {
  init() {
    return new Promise((resolve, reject) => {
      // 如果已加载直接返回
      if (window.T) {
        console.log(&#39;地图脚本初始化成功...&#39;)
        resolve(window.T)
        reject(&#39;error&#39;)
      }
    })
  }
}

第四步驟就可以在使用的vue頁中引用了。程式碼如下

<template>
    <div class="home">
        <div id="bdmap" class="map" style ="position:absolute;bottom:0px;top:0px;width:100%"></div>
    </div>
</template>
<script>
import MapInit from "@/components/Map.js"

export default {
    data(){
        return{
            map: null,
        }
    },
    created(){
        this.init()
    },
    methods:{
        init(){
            MapInit.init().then(
            T => {
                this.T = T;
                const imageURL = "http://t0.tianditu.gov.cn/img_c/wmts?tk=您的密钥";
                const lay = new T.TileLayer(imageURL, { minZoom: 1, maxZoom: 18 });
                const config = { layers: [lay], name: &#39;TMAP_SATELLITE_MAP&#39; };
                this.map = new T.Map(&#39;bdmap&#39;, config);
                const ctrl = new T.Control.MapType();
                this.map.addControl(ctrl);
                this.map.centerAndZoom(new T.LngLat(118.62, 28.75), 16)
                this.map.addEventListener("zoomend", () => {
                console.log(lay.Pe)
            });
            }).catch()
            // 监听缩放级别(缩放后的级别)
            
        }
    }
}
</script>
<style>
.map{
    width: 100vw;
    height: 100%;
    position: absolute;
}
</style>

推薦學習:php培訓

以上是vue.js怎麼引進地圖的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn