//AMap.Circle //AMap.Map //AMap.Icon //AMap.Pixel //AMap.LngLat export interface ISelf { self: any; } export interface IMap extends ISelf { on(eventName: string, callback: Function): void; getZoom(): any; getCenter(): any; } export interface IMapOptions { zoom?: number; zooms?: number[]; } export interface IMarker extends ISelf { } export interface IPixel extends ISelf { }