UNPKG

rc-bmap

Version:

<p align="center"> <img src="https://bmap.jser-club.com/home.png" width="200px"> </p> <p align="center">基于 React 的百度地图组件</p>

20 lines (16 loc) 514 B
import BMapUtil from '../utils/map'; import BaseControl from './BaseControl'; const getNavigationControlOptions = config => ({ anchor: config.anchor, offset: config.offset, type: global[config.type] || config.type, showZoomInfo: config.showZoomInfo, }); class Navigation extends BaseControl { init(config = {}) { const options = getNavigationControlOptions(config); this.instance = BMapUtil.BNavigationControl(options); this.map.addControl(this.instance); } } export default Navigation;