@36node/react-bus-map 中文文档教程
@36node/react-bus-map
React Map for Bus Platform
Install
yarn add @36node/react-bus-map
propTypes
- parks: PropTypes.array, // 停车场的数据信息
- vehicles: PropTypes.array, // 车辆的数据信息
- selectedVehicleId: PropTypes.string, // 用户选择的车辆
- onSelectVehicle: PropTypes.func, // 当用户点击 marker 时触发, 改变 selectedVehicleId
- onMapMoved: PropTypes.func, // 当用户拖动地图时触发,
- mapStyle: PropTypes.string, // 地图样式
- center: PropTypes.array, // 地图的起始 center
- zoom: PropTypes.number, // 地图的起始 zoom
- setIconFont: PropTypes.func, // 设置地区 icon,
example
import Map from "@36node/react-bus-map";
<Map
vehicles={
[
{
title: "name", /* 地图显示name */
offset: [-20, -20] /* 地图显示偏移 */
position: [119.866139, 29.357157] /* 地理位置坐标 */
}
]
}
center={[119.866139, 29.357157]}
zoom={11}
onMapMoved={this.handleMapMoved}
setIconFont={
(selected, data) => (
<IconFont
type={icon}
selected={selected}
data={data}
style={{ fontSize: "2rem", color: "#1890ff", }}
/>
)
}
/>
Contributing
- Fork it!
- Create your feature branch:
git checkout -b my-new-feature
- Commit your changes:
git commit -am 'Add some feature'
- Push to the branch:
git push origin my-new-feature
- Submit a pull request :D
更多
你可能也喜欢
- 1gendiff123456 中文文档教程
- @10stars/eslint-plugin-react-hooks 中文文档教程
- @42.nl/authentication 中文文档教程
- @acodez/alerts 中文文档教程
- @acopalyse/device 中文文档教程
- @adamdickinson/react-cosmos-esbuild 中文文档教程
- @adfinis-sygroup/semantic-release-config 中文文档教程
- @adobe/aem-spa-component-mapping 中文文档教程
- @adonisjs/cli 中文文档教程
- @adrianjost/report-viewer 中文文档教程