import { IPSChartCoordinateSystem } from './ipschart-coordinate-system'; import { IPSChartGeo } from './ipschart-geo'; /** * * 继承父接口类型值[MAP] * @export * @interface IPSChartCoordinateSystemGeo */ export interface IPSChartCoordinateSystemGeo extends IPSChartCoordinateSystem { /** * 地理坐标系组件 * * @type {IPSChartGeo} */ getPSChartGeo(): IPSChartGeo | null; /** * 地理坐标系组件 * * @type {IPSChartGeo} */ get psChartGeo(): IPSChartGeo | null; /** * 地理坐标系组件(必须存在) * * @type {IPSChartGeo} */ getPSChartGeoMust(): IPSChartGeo; }