Blame view

components/vue-baidu-map/types/navigation.d.ts 404 Bytes
290144e9   易尊强   第一次
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
  import { NavigationControlType } from './base/common'
  import { BaseControl } from './base/base-control'
  
  export declare class Navigation extends BaseControl {
    /**
     * 平移缩放控件的类型
     */
    type: NavigationControlType
    /**
     * 是否显示级别提示信息
     */
    showZoomInfo: boolean
    /**
     * 控件是否集成定位功能
     * @default false
     */
    enableGeolocation: boolean
  }