Releases: maptalks/maptalks.js
Releases · maptalks/maptalks.js
maptalks V1.4.4 Released
maptalks-gl V0.113.2 Released
maptalks V1.4.3 Released
Fixes
- Fix LayerAbstractRenderer resize
maptalks-gl V0.113.1 Released
Fixes
- Fix compatiblity with ThreeLayer
maptalks V1.4.2 Released
maptalks-gl V0.113.0 Released
Features
- The VectorTileLayer has added a terrain-flat-mask rendering plugin, which allows setting a flat mask (FlatMask) for the terrain using vector tiles, Example
- The maptalks/gl-layers project is officially retired
- Testing for @maptalks/vt and @maptalks/layer-3dtiles has been migrated to CircleCI for automated execution
Fixes
- Fixed several bugs in the VectorTileLayer
Features
- VectorTileLayer图层增加了terrain-flat-mask渲染插件,可以通过矢量瓦片给地形设置挖平遮罩(FlatMask),示例
- maptalks/gl-layers 工程正式退休
- @maptalks/vt与@maptalks/layer-3dtiles测试迁移到CircleCI自动运行
Fixes
- 修改了VectorTileLayer上若干bug
maptalks V1.4.0 Released
Features
- Added the
map.lookAtmethod, which positions the camera at a specified distance and aligns it to a given 3D coordinate
map.lookAt({
coordinates: [110, 49],
pitch: 45,
bearing: 0,
// camera's distance to coordinates in meters
distance: 600
});- Added the
shadowDraggableoption to Geometry.edit
Fixes
- Fixed the issue where
GeometryCollection.getExtentreturned incorrect results - Improve of
Geometry.updateSymbol
新特性
- map上增加lookAt方法,用于将相机以指定距离对准指定三维坐标
map.lookAt({
coordinates: [110, 49],
pitch: 45,
bearing: 0,
// camera's distance to coordinates in meters
distance: 600
});- Gometry.edit增加 shadowDraggable 选项
Bug修改
- 解决GeometryCollection getExtent返回错误结果的问题
- 优化了Geometry.updateSymbol的逻辑
maptalks V1.3.0 released
Features
- symbol VectorMarker support roundrectangle type (#2587)
Improvements
- optimize Geometry.updateSymbol (#2585)
Fixes
- fix map.pointAtResToAltitude when point < 0 which caused jumping when moving map with terrain below sea level
- fix Path animateShow missing z (#2581)
新特性
- 矢量标记(symbol VectorMarker)新增支持圆角矩形类型(roundrectangle) (#2587)
优化改进
- 优化Geometry.updateSymbol方法的性能 (#2585)
问题修复
- 修复map.pointAtResToAltitude在坐标小于0时的问题,该问题导致海平面以下地形移动时出现跳跃现象
- 修复Path动画显示(animateShow)缺失z值的问题 (#2581)
maptalks V1.2.1 Released
Fixes
- fix missing terrain in map's event (#2578)
maptalks V1.2.0 Released
Features
- map support options.mousemoveThrottleEnable (#2573)
Bug Fixes
- getFitZoomForCamera z value null defense (#2558)
- fix map jump when moving map with terrain, 0 pitch and 0 bearing, set map.isTransforming() to true when map has terrain
- fix TileLayer draw error when fetch tile is error (#2570)
- fix MultiGeometry setProperties (#2566)
- TileLayer loadTileBitmap support abort (#2563)
Features
- 地图新增支持 options.mousemoveThrottleEnable 节流选项 (#2573)