针对不是图片的图层 我们制作DataSourceLayer

```javavscript
import {Layer} from "./Layer";
export abstract class DataSourceLayer extends Layer{
type: String = "DataSourceLayer";
protected _addToMap(map: CPC) {
map.dataSources.add(this.cesiumLayer);
}
protected _removeByMap(destroy:boolean=true) {
更多参考 https://xiaozhuanlan.com/topic/8732190645
网友评论