vue+arcgis api开发,加载地图的一个实例

本文介绍如何在Vue项目中使用esriLoader来引入ArcGIS API,并创建地图组件。在IE浏览器下,由于Promise不被支持,需要引入polyfill.min.js或使用bluebird.js进行处理。同时,针对在Chrome和IE11下运行esri-load可能出现的问题提供了解决方案链接。
摘要由CSDN通过智能技术生成

1. 首先和传统的开发一样,需要引入js文件和css文件,但是因为是用vue来开发,所以传统的通过标签的方式来引入的方法不适用了,arcgis官网给我们提供了一个工具"esriLoader",这是他的npm地址esri-loader。(命令:npm install --save esri-loader

2. 在项目中新建一个arcgis的配置文件,名称叫mapConfig.js(这个名字可以自定义)

内容:

/*
arcgis初始化配置
*/

window._base_path = "http://localhost:8860";
window._base_kuangjia = "http://localhost:8860";
window._arcgis_js_apiUrl = "http://localhost:8860/arcgis_js_api/library/4.12/";
window._base_landServer = "";

export function arcgisConfig () {
  window.arcgis = {
    co
你可以使用 Vue 3 和 ArcGIS API for JavaScript 4 来打印地图。下面是一个简单的示例代码,展示了如何在 Vue 3 中使用 ArcGIS API for JavaScript 4 来打印地图: 首先,在你的 Vue 3 项目中安装 ArcGIS API for JavaScript 4 的依赖: ```bash npm install --save @arcgis/core ``` 然后,在你的 Vue 组件中引入 ArcGIS API for JavaScript 4 的模块: ```javascript import { loadModules } from '@esri/arcgis-rest-loader'; export default { name: 'MapPrint', data() { return { map: null }; }, mounted() { this.initMap(); }, methods: { async initMap() { // 加载 ArcGIS API for JavaScript 4 的模块 const [Map, MapView] = await loadModules(['esri/Map', 'esri/views/MapView']); // 创建地图实例 this.map = new Map({ basemap: 'streets' }); // 创建地图视图 const mapView = new MapView({ container: this.$refs.mapViewContainer, map: this.map, zoom: 12, center: [-118.2437, 34.0522] // 设置初始地图中心点坐标 }); }, printMap() { // 打印地图 this.$refs.mapViewContainer.print(); } } }; ``` 在上面的代码中,我们创建了一个名为 `MapPrint` 的 Vue 组件,并通过 `loadModules` 方法加载了 `esri/Map` 和 `esri/views/MapView` 模块。然后,我们在 `mounted` 钩子函数中初始化地图,并在 `printMap` 方法调用了 `print` 方法来实现地图的打印功能。 最后,在你的 Vue 组件模板中添加一个地图容器和一个按钮来触发打印地图的操作: ```html <template> <div> <div ref="mapViewContainer" style="width: 100%; height: 400px;"></div> <button @click="printMap">Print Map</button> </div> </template> ``` 这样,当你在浏览器中打开该 Vue 组件页面时,你将看到一个包含地图的容器和一个打印地图的按钮。点击按钮后,地图将被打印出来。 希望这个示例能对你有所帮助!如果你还有其他问题,请随时提问。
评论 8
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值