-
按照demo写了一个点聚合,在点击时会输出{dataIndex: -1, dataItem: undefined}。
-
有@types/react-bmap这个包吗?
在ts项目中报错叫我执行npm install @types/react-bmap操作,执行这个操作结果报错,这怎么搞?
-
当地图拖拽或者缩放到beforRender拿到空数据的时候,beforeRender会被循环调用,导致浏览器爆栈。
[官方demo](https://mapv.baidu.com/gl/examples/editor.html#point-cluster-custom.html)即可复现问题。
-
增加配置项用于切换BMapGL与BMap版本
fssgh updated
3 years ago
-
## 问题描述
想要实现地图的折线效果,但是根据文档发现react-bmapgl包里并没有BMapGL.Point相关方法:
文档地址:http://lbsyun.baidu.com/solutions/reactBmapDoc
截图:
![1](https://user-images.githubusercontent.com/49123717/104158715-e148c…
ghost updated
3 years ago
-
```
const geolocation = new BMapGL.Geolocation()
geolocation.getCurrentPosition(result => {
console.log(result) // null
})
```
之前项目用JavaScript API v2.0有获取值,但是在BMapGL API中就无效了。
-
```
Type 'Point' is not assignable to type 'Point & string'.
Type 'Point' is not assignable to type 'string'. TS2322
95 | return (
96 | 97 | center={new BM…
-
代码如下,callback无效。
```js
map.setZoom(14, {
zoomCenter: new BMapGL.Point(116.414, 39.915),
noAnimation: false,
callback() {
console.log(3);
},
});
```
[文档地址](http://lbsyun.baidu.c…
-
### 示例
[空白地图画楼块](https://mapv.baidu.com/gl/examples/editor.html#blank-shape-texture.html)
### 问题
空白地图时,如何响应鼠标的缩放之类的操作?
尝试过以下配置无效:
```
enableDragging: true,
enableDoubleClickZoom: true,
enabl…
-
react-bmapgl中要设置类似marker.setAnimation(BMAP_ANIMATION_BOUNCE);的效果,请问这个怎么设置