import { type SpatialReferenceType } from './SpatialReference'; export type ArcgisConfig = { tileInfo: { cols: number; rows: number; origin: { x: number; y: number; }; lods: Array<{ resolution: number; }>; }; fullExtent: SpatialReferenceType['fullExtent']; }; /** * 加载Arcgis空间参考配置文件 * @param url arcgis spatialreference json file url * @param cb * @param options * @returns */ declare const loadArcgis: (url: string, cb: (_, spatialRef?) => void, options?: any) => void; export default loadArcgis; //# sourceMappingURL=SpatialReference.Arc.d.ts.map