Type Alias THydrateMapDataBundle
THydrateMapDataBundle: | { languagePacks?: { language: { code: string; name: string }; localePack: Uint8Array; }[]; main: Uint8Array; options?: { enterprise?: boolean; version?: "2.0.0" | "3.0.0" }; type: "binary"; } | { languagePacks?: { language: { code: string; name: string }; localePack: ParsedMVFLocalePack; }[]; main: TMVF; options?: { enterprise?: boolean; mvf3?: MVFv2_STANDARD_MVFv3; version?: "2.0.0" | "3.0.0"; }; type: "json"; }
Pre-fetched MVF data passed to hydrateMapData so a map can be constructed without going to the network. Supports both binary (
Uint8Array) and JSON forms, optional language packs, and matches the shape produced by Mappedin's CDN.