BicMap机器人应用地图引擎
基于 MapLibre GL JS,室内外一体化 · 高性能 · 可扩展的开源地图渲染与交互解决方案
融合室内室外,驱动智能移动机器人、具身智能应用的地图可视化需求
同一套 API 覆盖 SLAM 室内地图、高精地图、瓦片地图,无缝切换室内外场景。
基于 MapLibre GL JS + WebGL,百万级点云、实时轨迹流畅渲染,帧率无忧。
内置机器人 Marker、实时位置跟随、重定位、单点导航等面向机器人的核心 API。
NPM 包一行安装,CDN 脚本直接引用,支持 Vue3 / 原生 JS 两种集成方式。
多边形、矩形、折线、圆形绘制,支持顶点拖拽编辑与实时坐标回调。
酒店配送、博物馆导览、机场引导、清洁巡检……30+ 场景示例随时运行体验。
/indoor/slam
/indoor/buildMap
/indoor/robotFollow
/indoor/relocate
/indoor/location
/indoor/singleNavigation
/indoor/load3D
/indoor/load3dControl
/indoor/pointCloud
/indoor/semanticMap
/indoor/load3dMarker
/outdoor/buildings
/outdoor/pointCloud
/outdoor/mapTiles
/outdoor/hdMap
/base/mapTools
/base/POIMarkers
/base/PolylineDrawing
/base/RectangleDraw
/base/PolygonDraw
/base/CircleDraw
/base/PathReplay
/base/PathPlanning
/base/passableArea
/base/editPassableArea
/expand/POIadvancedLabel
/expand/MapEditor
/expand/GraphicDrawing
/scene/robotGuideTour
/scene/hotelDelivery
/scene/mallRobotMonitor
/scene/indoorCleaning
/scene/communityInspect
/scene/transportHub
/scene/publicClean
/scene/securityPatrol
pnpm add @x-humanoid-cloud/bic-mapimport bicMap from '@x-humanoid-cloud/bic-map'
await bicMap.init()
const map = bicMap.createMap({
container: 'myMap',
center: [116.3912, 39.9073],
zoom: 13
})
map.on('load', () => {
bicMap.addZoomControl(map, 'bottom-right')
})