react-tmap
react-tmap copied to clipboard
一个基于腾讯地图JavaScript API GL、TypeScript 封装适用于 react 的高性能地图组件库
Results
3
react-tmap issues
Sort by
recently updated
recently updated
newest added
在调用setMap的时候报错“所传入参数并非TMap.Map的实例”, 从gljs看应该是做了类型检查, 而react-tmap调用types的包替换了TMap导致类型检查不过. ``` { key: "setMap", value: function(t) { return null === t || t instanceof window.TMap.Map ? t === this.map ? this : (t ? this.map ? (this.setMap(null),...
https://github.com/didi/react-tmap/blob/main/src/Map/index.tsx#L140 不然会缺少地图原本属性 https://lbs.qq.com/webApi/javascriptGL/glDoc/docIndexMap#10 ```js ```