HereGisVue

基于Vue的ArcGis库

快速上手 →

<template>
  <div id="hellogis"></div>
</template>
<script >
import {ArcGis, esriModules} from 'heregisvue'
export default {
  methods:{
    async init() {
      await esriModules.loadModules();
      const arcgis = new ArcGis();
      arcgis.load()
    }
  },
  mounted(){
    this.init()
  }
}
</script>
<style>
#hellogis {
  width: 100vw;
  height: 100vh;
}
</style>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24