echarts
Version:
Apache ECharts is a powerful, interactive charting and data visualization library for browser
14 lines (13 loc) • 419 B
TypeScript
import { GeoJSONMapRecord } from './mapDataStorage';
import BoundingRect from 'zrender/lib/core/BoundingRect';
import Region from './Region';
declare type MapRecordInner = {
parsed: {
regions: Region[];
boundingRect: BoundingRect;
};
};
declare const _default: {
load(mapName: string, mapRecord: GeoJSONMapRecord, nameProperty: string): MapRecordInner['parsed'];
};
export default _default;