Load a MapData instance from a backup bundle (zip file or parsed MVF).
This function automatically detects whether the data is from a Maker or CMS/Enterprise
source by checking for the presence of the enterprise field in the MVF data. Use
mapData.isEnterpriseMode after loading to determine which data types to access.
Example: Loading from a zip file with auto-detection
// Check which data source was detected constlocations = mapData.isEnterpriseMode ? mapData.getByType('enterprise-location') : mapData.getByType('location-profile');
Load a MapData instance from a backup bundle (zip file or parsed MVF).
This function automatically detects whether the data is from a Maker or CMS/Enterprise source by checking for the presence of the
enterprisefield in the MVF data. UsemapData.isEnterpriseModeafter loading to determine which data types to access.Example: Loading from a zip file with auto-detection