-
普通地图模式下正常,一旦切换成地球模式,各种点、线图层全乱了
-
![image](https://github.com/huiyan-fe/react-bmapgl/assets/41940545/2003350e-dd4a-41c1-895c-80c9fa9f2c42)
-
文字看不出来,图片很明显,一闪一闪的
### 代码
```
const [test, setTest] = React.useState(0);
React.useEffect(() => {
setInterval(() => {
setTest((state) => state + 1);
}, 500);
}, []);
…
-
我自己的项目三维地图请求失败500,
查看文档,文档中的切换为三维地图也挂了,报错500.
文档链接:[link](https://uiwjs.github.io/react-baidu-map/#/map-type-control)
lbs baidumap的三维地图可以正常显示的。[link](http://lbsyun.baidu.com/jsdemo.htm#webgl0_1)
…
-
MapVGL
html,
body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
#map_container {
width: 100%;…
-
function handleInitd({ map, BmapGL, instance }: any) {
pageMap.mapHandle = map
pageMap.bmapHandle = BmapGL
console.log('mapHandle------>', pageMap.bmapHandle)
console.log('BmapGL------>', …
-
方法1(引入整个):
import * as mapvgl from 'mapvgl';
new mapvgl.MarkerListLayer({})……
跟示例一样。
方法2(按需引入):
import { ClusterLayer } from 'mapvgl';
vue3中:
const clusterLayer = ref(null);
clusterLayer.v…
-
-
-