feat(map): publish shared Cesium adapter

This commit is contained in:
Codex
2026-07-29 16:44:54 +03:00
parent c5a6a58948
commit c293d748f5
11 changed files with 923 additions and 2 deletions
+28
View File
@@ -0,0 +1,28 @@
export { CesiumMapRenderer } from "./CesiumMapRenderer.js";
export {
CESIUM_RENDERER_VERSION,
MAP_PAGE_VERSION,
MAP_RUNTIME_SCHEMA_VERSION,
} from "./contracts.js";
export type {
CesiumMapRendererProps,
MapCacheIntent,
MapCamera,
MapLayerVisibility,
MapProviderId,
MapProviderPhase,
MapProviderState,
MapRenderPhase,
MapRuntimeConfiguration,
MapRuntimeState,
MapVisualSettings,
} from "./contracts.js";
export {
MapRuntimeError,
applyCacheIntent,
assetEndpointPath,
fetchMapRuntimeConfiguration,
initialMapRuntimeState,
readSafeErrorCode,
withProviderState,
} from "./runtime.js";