# cesc-arcgis-plugin

## 开发，打包，发布

``` bash
# install dependencies
npm install

# serve with hot reload at localhost:8080
npm run dev

# build for production with minification
npm run build

# release the production and publish to NPM
npm run release
```
## 引入
发布包名为 cesc-arcgis-plugin
**注意：发布的包为公有包，可供其他人下载使用，但是只允许作者修改。**
**而且包名必须未在npm上存在。**
**后续使用者请更改为新的包名**
``` bash
//命令行中npm cache clean --force
npm install test-sam-first-plugin;
//代码中
import myPlugin from 'test-sam-first-plugin'
Vue.use(myPlugin);
```

## 更新说明

### 2024-08-26 v0.3.55

1. 增加加载WMS地图服务的功能

![1](./docs/assets/images/0.3.55-增加加载wms服务的支持.png)
