igniteui-react-core
Version:
Ignite UI React Core.
29 lines (28 loc) • 1.69 kB
JavaScript
/*
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
https://www.infragistics.com/legal/license/igultimate-la
https://www.infragistics.com/legal/license/igultimate-eula
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
*/
import { Base, markType } from "./type";
import { BingMapsMapImageryDescriptionModule } from "./BingMapsMapImageryDescriptionModule";
import { OpenStreetMapImageryDescriptionModule } from "./OpenStreetMapImageryDescriptionModule";
import { CustomMapImageryDescriptionModule } from "./CustomMapImageryDescriptionModule";
import { ArcGISOnlineMapImageryDescriptionModule } from "./ArcGISOnlineMapImageryDescriptionModule";
import { GeographicMapDescriptionMetadata } from "./GeographicMapDescriptionMetadata";
/**
* @hidden
*/
export let GeographicMapCoreDescriptionModule = /*@__PURE__*/ (() => {
class GeographicMapCoreDescriptionModule extends Base {
static register(a) {
BingMapsMapImageryDescriptionModule.register(a);
OpenStreetMapImageryDescriptionModule.register(a);
CustomMapImageryDescriptionModule.register(a);
ArcGISOnlineMapImageryDescriptionModule.register(a);
GeographicMapDescriptionMetadata.d(a);
}
}
GeographicMapCoreDescriptionModule.$t = /*@__PURE__*/ markType(GeographicMapCoreDescriptionModule, 'GeographicMapCoreDescriptionModule');
return GeographicMapCoreDescriptionModule;
})();