DefinitelyTyped/types/amap-js-api/array-bounds.d.ts
2019-02-23 21:39:43 +08:00

11 lines
255 B
TypeScript

declare namespace AMap {
class ArrayBounds {
constructor(bounds: LocationValue[]);
bounds: LngLat[];
contains(point: LocationValue): boolean;
// internal
toBounds(): Bounds;
getCenter(): LngLat;
}
}