interface IOverlayLayerOption {
    data?: IFeature | IGeoJson | IFeature[];
    floorId?: string;
    paint: Partial<IHeatmapPaintOption> & Partial<IPolygonPaintOption>;
    source: string;
    type: OVERLAY_TYPE;
}

Properties

data 를 바로 주입할 때. geojson 형태여야 함

floorId?: string

overlay 를 그릴 때 goreferencing의 기준이 되는 floor id이며 그려지지 않은 층에는 Overlay를 그릴 수 없음

또한, enableGeorefencing 속성이 true인 지도일 경우, default는 outdoor에 georeferencing 됨

paint: Partial<IHeatmapPaintOption> & Partial<IPolygonPaintOption>

overlay 렌더링 옵션

source: string

가져오려는 SourceData 의 별칭

overlay 타입. 'heatmap' | 'model' | 'polygon' 값 중 하나 입력