时空路由器

Results 8 comments of 时空路由器

Map组件添加 features 属性之后,每次更新 zoom 或 center 属性,地图会重新渲染

I had the same problem when I open the draw mode again. ``` TypeError: Cannot read property 'getAll' of null t.exports.t.getAll node_modules/@urbica/react-map-gl-draw/dist/react-map-gl-draw.esm.js:2436 }, t.getAll = function () { return {...

Please paste you full code, and the versions of vue and mapvue you using.

any content in `` components are just string nodes. They can not interactive with outer components. You can check it by mapbox-gl official site [popup](https://docs.mapbox.com/mapbox-gl-js/api/markers/#popup)

有个临时解决方法 ``` const control = new MapboxLanguageControl({ defaultLanguage: 'zh-Hans', }); map.addControl(control); const style = map.getStyle(); map.setStyle(""); map.setStyle(style); ```

底图用的mapbox的卫星瓦片,叠加了海岸线,能匹配上,应该没问题

图片预处理流程如下: 1. 读取二维矩阵数据,设置 transform = -180.0, -85.051129, 180.0, 85.051129,crs = 4326 2. 重投影到 crs = 3857 3. 获取最大最小值和归一化处理 4. 将数据写到 r、g 通道

> > 图片预处理流程如下: > > > > 1. 读取二维矩阵数据,设置 transform = -180.0, -85.051129, 180.0, 85.051129,crs = 4326 > > 2. 重投影到 crs = 3857 > > 3. 获取最大最小值和归一化处理 > >...