You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
408 B
30 lines
408 B
4 years ago
|
//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 {
|
||
|
|
||
|
}
|