esri loader + Arcgis api 4.x加载 arcgis server 地图服务

默认是加载4.x的api在线连接。
1. template部分
<template>
  <div></div>
</template>
2. 导包部分 js和css自动导入最新版,所以不用再导入loadScriptloadCss
import { loadModules } from 'esri-loader'
3. export接口部分
export default {
  name: 'web-map',
  mounted() {
    loadModules(['esri/map', 'esri/views/MapView', 'esri/layers/MapImageLayer', 'esri/geometry/Extent', 'esri/geometry/SpatialReference'], { css: true })
      .then(([ArcGISMap, MapView, MapImageLayer, Extent, SpatialReference]) => {

        const map = new ArcGISMap({
          // basemap: 'osm',
          logo: false
        })
        var dongURL = 'http://localhost:6080/arcgis/rest/services/shopping/payMon_zenzhag/MapServer'

        var donglayer = new MapImageLayer(dongURL)

        map.add(donglayer)
        this.view = new MapView({
          container: this.$el,
          map: map,
          // center: [-118, 34],
          zoom: 8
        })
      })
  },
  beforeDestroy() {
    if (this.view) {
      // destroy the map view
      this.view.container = null
    }
  }
}
  • 2
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值