Installation
npm install --save @types/amap-js-api-control-bar
Summary
This package contains type definitions for amap-js-api-control-bar (https://lbs.amap.com/api/javascript-api/reference/map-control#control-bar).
Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/amap-js-api-control-bar.
index.d.ts
/// <reference types="amap-js-api" />
declare namespace AMap {
namespace ControlBar {
interface EventMap {
hide: Event<"hide">;
show: Event<"show">;
}
interface Position {
top?: string | undefined;
right?: string | undefined;
bottom?: string | undefined;
left?: string | undefined;
}
interface Options {
/**
* 显示位置
*/
position?: Position | undefined;
/**
* 是否显示缩放按钮
*/
showZoomBar?: boolean | undefined;
/**
* 是否显示倾斜、旋转按钮
*/
showControlButton?: boolean | undefined;
}
}
class ControlBar extends EventEmitter {
/**
* 组合了旋转、倾斜、复位、缩放在内的地图控件
* @param options 选项
*/
constructor(options?: ControlBar.Options);
// internal
show(): void;
hide(): void;
}
}
Additional Details
- Last updated: Mon, 06 Nov 2023 22:41:04 GMT
- Dependencies: @types/amap-js-api
Credits
These definitions were written by breeze9527.