UNPKG

amap-jsapi-v2-types

Version:
17 lines (13 loc) 509 B
import type { Control, CommonControlConfig } from './Control'; export type ToolBarConfig = CommonControlConfig; /** * 地图操作工具条插件。可支持方向导航、位置定位、视野级别缩放、视野级别选择等操作。 * 继承自 AMap.Control * https://lbs.amap.com/api/javascript-api-v2/documentation#toolbar */ export declare class ToolBar extends Control { /** 以下为私有属性 */ _container: HTMLElement; constructor(opts?: ToolBarConfig); } export default ToolBar;