cesium 图层构建的那些事 (九)

2022-07-25  本文已影响0人  haibalai

我们来构建 cesium 单图片图层和arcgis图层

```javascript

import {ImageryLayer} from "./ImageryLayer";

//arcgis珊格服务

export class ArcGisImageryLayer extends ImageryLayer{

public imageryProvider:any;//影像提供者

constructor(option:any={}){

super(option.name);

//如果是字符串(定是url),直接变成对象

if(typeof option !== "object"){

option = {url:option};

}

option = {

enablePickFeatures: false,

...option

}

this.type = "ArcGisImageryLayer";//重写类型

this.imageryProvider = new Cesium.ArcGisMapServerImageryProvider(option);

 更多参考 https://xiaozhuanlan.com/topic/8314925706

上一篇 下一篇

猜你喜欢

热点阅读