interface LayerArgs<D, S> {
    clientConfig?: D;
    created?: string | Date;
    features?: FeatureCollection<Geometry, GeoJsonProperties>;
    id?: number;
    modified?: string | Date;
    name: string;
    sourceConfig: S;
    type: LayerType;
}

Type Parameters

Hierarchy (view full)

Properties

clientConfig?: D
created?: string | Date
features?: FeatureCollection<Geometry, GeoJsonProperties>
id?: number
modified?: string | Date
name: string
sourceConfig: S
type: LayerType