您好,登錄后才能下訂單哦!
本文代碼僅針對(duì) Vue CLI 3.x 生成的項(xiàng)目有效,但是在第二步配置的時(shí)候,可以直接配置 webpack.externals,所以本引入思路是通用的,并不局限于該項(xiàng)目
資源
AMap 準(zhǔn)備-入門教程
引入 AMap
在 public/index.html 文件 </body> 前引入
<script type="text/javascript" src="https://webapi.amap.com/maps?v=1.4.14&key=您申請(qǐng)的key值"></script>
配置 Webpack
項(xiàng)目根目錄新建配置文件 vue.config.js,填入內(nèi)容:
module.exports = { configureWebpack: { externals: { AMap: "window.AMap" } } };
在項(xiàng)目中使用
新建 Index.vue 文件,填入內(nèi)容:
<template> <div> <div id="container"></div> </div> </template> <script> // eslint-disable-next-line import AMap from "AMap"; export default { name: "Index", data() { return {}; }, mounted() { new AMap.Map("container", { resizeEnable: true, zoom: 11 }); } }; </script>
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。