1.安装依赖包
npm install esri-loader
2.在入口函数中 main.js 配置加载 js 和css 文件
3.地图展示页面 ,map.vue
4.完整代码
<template>
<div>
<div id="viewDiv">
</div>
</div>
</template>
<script>
import { loadModules } from 'esri-loader'
export default {
name: 'mymap',
data() {
return {}
},
methods: {
createMap: function () {
loadModules(['esri/views/MapView', 'esri/WebMap','esri/Map'])
.then(([MapView, WebMap,Map]) => {
var map = new