20 lines
461 B
JavaScript
20 lines
461 B
JavaScript
|
|
/**
|
||
|
|
* STS 분석 레이어 전역 레지스트리
|
||
|
|
* 참조: src/areaSearch/utils/areaSearchLayerRegistry.js
|
||
|
|
*
|
||
|
|
* useStsLayer 훅이 레이어를 등록하면
|
||
|
|
* useShipLayer의 handleBatchRender에서 가져와 deck.gl에 병합
|
||
|
|
*/
|
||
|
|
|
||
|
|
export function registerStsLayers(layers) {
|
||
|
|
window.__stsLayers__ = layers;
|
||
|
|
}
|
||
|
|
|
||
|
|
export function getStsLayers() {
|
||
|
|
return window.__stsLayers__ || [];
|
||
|
|
}
|
||
|
|
|
||
|
|
export function unregisterStsLayers() {
|
||
|
|
window.__stsLayers__ = [];
|
||
|
|
}
|