mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
30 lines
775 B
TypeScript
30 lines
775 B
TypeScript
declare namespace AMap {
|
|
namespace View2D {
|
|
interface Options {
|
|
/**
|
|
* 地图中心点坐标值
|
|
*/
|
|
center?: LocationValue;
|
|
/**
|
|
* 地图顺时针旋转角度
|
|
*/
|
|
rotation?: number;
|
|
/**
|
|
* 地图显示的缩放级别
|
|
*/
|
|
zoom?: number;
|
|
/**
|
|
* 地图显示的参考坐标系
|
|
*/
|
|
crs?: 'EPGS3857' | 'EPGS3395' | 'EPGS4326';
|
|
}
|
|
}
|
|
class View2D extends EventEmitter {
|
|
/**
|
|
* 二维地图显示视口,用于定义二维地图静态显示属性
|
|
* @param options 选项
|
|
*/
|
|
constructor(options?: View2D.Options);
|
|
}
|
|
}
|