Shihui dev (#812)

* feat: add performance demo

* style: lint style

* style: lint style

* feat: add getModelMatrix into viewport

* feat: 新增地球模式 (初步构建)

* feat: 完善地球交互

* style: lint style

* feat: 调整地球图层缩放的方向

* style: lint style

* feat: 增加地球模式的 pointLayer/fill 图层

* style: lint style

* feat: 增加地球、太阳的简单运动系统,优化部分代码结构

* fix: 修复时间点击出错

* style: lint style

* fix: 修复地图 panBy 方法参数错误

* style: lint style

* feat: pointLayer/cylinder 圆柱兼容地球模式

* style: lint style

* feat: 修复 pointLayer/fill 在拾取是破面严重的情况

* style: lint style

* feat: 增加 arc 弧度调节

* feat: 增加 lineLayer/arc3d 兼容地球模式

* style: lint style

* feat: 增加地球图层 - 大气层

* style: lint style

* feat: 增加设置可视化层背景色的能力

* style: lint style

* feat: 增加地球外发光效果

* style: lint style

* feat: 允许用户不使用 layer 的 source 方法 - 地球模式下光晕图层不需要传数据

* style: lint style

* feat: 调整光晕的 shader 计算

* feat: 调整地球大气层的渲染层级

* style: lint style

* feat: 调整案例

* style: lint style

* feat: 增加地球图层的默认参数、调整部分代码

* style: lint style

* feat: imageTile developinging

* style: lint style

* feat: 新增图片瓦片地图

* fix: 修复 amap2 新增样式导致的 marker 失效

* feat: 修复 amap2 的 amap-maps 新增 z-index=0; 引发的marker 显示层级失效

* feat: amap2 的 amap-maps 新增 z-index=0; 样式,让 marker 中 zIndex 失效

* style: lint style

* feat: 补全瓦片地图中的类型引用

* style: lint style

* feat: 增加 demo

* style: lint style

* feat: 修复 varying 传递 float 总数在部分终端设备 ios13 上突破限制的问题

* feat: add stoty demo

* style: lint style

* feat: 调整 aspace demo

* feat: 调整 aspace demo

* style: lint style

* feat: 调整 demo

* feat: 补充依赖

* chore: update version 2.5.39 -> 2.5.40

* feat: 新增 arcmini layer,增加拖拽时的拾取优化(地图拖拽时取消拾取)

* feat: 增加注释

* chore: update version 2.5.40 -> 2.5.41

* feat: 剔除地图拖拽时多余的 shader 计算

* style: lint style
This commit is contained in:
YiQianYao 2021-10-27 14:00:13 +08:00 committed by GitHub
parent 07364c10c3
commit 7c6116470f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
16 changed files with 48 additions and 43 deletions

View File

@ -14,7 +14,7 @@
"message": "chore: publish"
}
},
"version": "2.5.40",
"version": "2.5.41",
"npmClient": "yarn",
"useWorkspaces": true,
"publishConfig": {

View File

@ -1,6 +1,6 @@
{
"name": "@antv/l7-component",
"version": "2.5.40",
"version": "2.5.41",
"description": "",
"main": "lib/index.js",
"module": "es/index.js",
@ -25,8 +25,8 @@
"author": "lzxue",
"license": "ISC",
"dependencies": {
"@antv/l7-core": "^2.5.40",
"@antv/l7-utils": "^2.5.40",
"@antv/l7-core": "^2.5.41",
"@antv/l7-utils": "^2.5.41",
"@babel/runtime": "^7.7.7",
"eventemitter3": "^4.0.0",
"inversify": "^5.0.1",

View File

@ -1,6 +1,6 @@
{
"name": "@antv/l7-core",
"version": "2.5.40",
"version": "2.5.41",
"description": "",
"main": "lib/index.js",
"module": "es/index.js",
@ -24,7 +24,7 @@
"license": "ISC",
"dependencies": {
"@antv/async-hook": "^2.1.0",
"@antv/l7-utils": "^2.5.40",
"@antv/l7-utils": "^2.5.41",
"@babel/runtime": "^7.7.7",
"@mapbox/tiny-sdf": "^1.1.1",
"ajv": "^6.10.2",

View File

@ -1,6 +1,7 @@
varying vec4 v_PickingResult;
uniform vec4 u_HighlightColor : [0, 0, 0, 0];
uniform float u_PickingStage : 0.0;
uniform float u_Dragging;
#define PICKING_NONE 0.0
#define PICKING_ENCODE 1.0
@ -42,5 +43,7 @@ vec4 filterPickingColor(vec4 color) {
* highlight color if this item is selected, otherwise unmodified argument.
*/
vec4 filterColor(vec4 color) {
// TODO: 过滤多余的 shader 计算
if(u_Dragging > 0.0) return color;
return filterPickingColor(filterHighlightColor(color));
}

View File

@ -1,6 +1,6 @@
{
"name": "@antv/l7",
"version": "2.5.40",
"version": "2.5.41",
"description": "A Large-scale WebGL-powered Geospatial Data Visualization",
"main": "lib/index.js",
"module": "es/index.js",
@ -25,12 +25,12 @@
"author": "antv",
"license": "MIT",
"dependencies": {
"@antv/l7-component": "^2.5.40",
"@antv/l7-core": "^2.5.40",
"@antv/l7-layers": "^2.5.40",
"@antv/l7-maps": "^2.5.40",
"@antv/l7-scene": "^2.5.40",
"@antv/l7-utils": "^2.5.40",
"@antv/l7-component": "^2.5.41",
"@antv/l7-core": "^2.5.41",
"@antv/l7-layers": "^2.5.41",
"@antv/l7-maps": "^2.5.41",
"@antv/l7-scene": "^2.5.41",
"@antv/l7-utils": "^2.5.41",
"@babel/runtime": "^7.7.7"
},
"gitHead": "684ba4eb806a798713496d3fc0b4d1e17517dc31",

View File

@ -1,2 +1,2 @@
const version = '2.5.40';
const version = '2.5.41';
export { version };

View File

@ -1,6 +1,6 @@
{
"name": "@antv/l7-layers",
"version": "2.5.40",
"version": "2.5.41",
"description": "L7's collection of built-in layers",
"main": "lib/index.js",
"module": "es/index.js",
@ -26,9 +26,9 @@
"@antv/geo-coord": "^1.0.8",
"@antv/async-hook": "^2.1.0",
"@antv/geo-coord": "^1.0.8",
"@antv/l7-core": "^2.5.40",
"@antv/l7-source": "^2.5.40",
"@antv/l7-utils": "^2.5.40",
"@antv/l7-core": "^2.5.41",
"@antv/l7-source": "^2.5.41",
"@antv/l7-utils": "^2.5.41",
"@babel/runtime": "^7.7.7",
"@mapbox/martini": "^0.2.0",
"@turf/meta": "^6.0.2",

View File

@ -78,6 +78,8 @@ export default class ShaderUniformPlugin implements ILayerPlugin {
// u_ModelMatrix: [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1],
u_ModelMatrix: this.cameraService.getModelMatrix(),
u_PickingBuffer: layer.getLayerConfig().pickingBuffer || 0,
// TODO: 当前地图是否在拖动
u_Dragging: Number(this.mapService.dragging),
});
});

View File

@ -1,6 +1,6 @@
{
"name": "@antv/l7-map",
"version": "2.5.40",
"version": "2.5.41",
"description": "l7 map",
"keywords": [],
"author": "thinkinggis <lzx199065@gmail.com>",
@ -37,7 +37,7 @@
},
"homepage": "https://github.com/antvis/L7#readme",
"dependencies": {
"@antv/l7-utils": "^2.5.40",
"@antv/l7-utils": "^2.5.41",
"@babel/runtime": "^7.7.7",
"@mapbox/point-geometry": "^0.1.0",
"@mapbox/unitbezier": "^0.0.0",

View File

@ -1,6 +1,6 @@
{
"name": "@antv/l7-maps",
"version": "2.5.40",
"version": "2.5.41",
"description": "",
"main": "lib/index.js",
"module": "es/index.js",
@ -27,9 +27,9 @@
"license": "ISC",
"dependencies": {
"@amap/amap-jsapi-loader": "^0.0.3",
"@antv/l7-core": "^2.5.40",
"@antv/l7-map": "^2.5.40",
"@antv/l7-utils": "^2.5.40",
"@antv/l7-core": "^2.5.41",
"@antv/l7-map": "^2.5.41",
"@antv/l7-utils": "^2.5.41",
"@babel/runtime": "^7.7.7",
"@types/amap-js-api": "^1.4.6",
"@types/mapbox-gl": "^1.11.2",

View File

@ -1,6 +1,6 @@
{
"name": "@antv/l7-renderer",
"version": "2.5.40",
"version": "2.5.41",
"description": "",
"main": "lib/index.js",
"module": "es/index.js",
@ -26,7 +26,7 @@
"gl": "^4.4.0"
},
"dependencies": {
"@antv/l7-core": "^2.5.40",
"@antv/l7-core": "^2.5.41",
"@babel/runtime": "^7.7.7",
"inversify": "^5.0.1",
"l7regl": "^0.0.14",

View File

@ -1,6 +1,6 @@
{
"name": "@antv/l7-scene",
"version": "2.5.40",
"version": "2.5.41",
"description": "",
"main": "lib/index.js",
"module": "es/index.js",
@ -23,12 +23,12 @@
"author": "xiaoiver",
"license": "ISC",
"dependencies": {
"@antv/l7-component": "^2.5.40",
"@antv/l7-core": "^2.5.40",
"@antv/l7-layers": "^2.5.40",
"@antv/l7-maps": "^2.5.40",
"@antv/l7-renderer": "^2.5.40",
"@antv/l7-utils": "^2.5.40",
"@antv/l7-component": "^2.5.41",
"@antv/l7-core": "^2.5.41",
"@antv/l7-layers": "^2.5.41",
"@antv/l7-maps": "^2.5.41",
"@antv/l7-renderer": "^2.5.41",
"@antv/l7-utils": "^2.5.41",
"@babel/runtime": "^7.7.7",
"inversify": "^5.0.1",
"mapbox-gl": "^1.2.1",

View File

@ -1,6 +1,6 @@
{
"name": "@antv/l7-source",
"version": "2.5.40",
"version": "2.5.41",
"description": "",
"main": "lib/index.js",
"module": "es/index.js",
@ -26,8 +26,8 @@
"license": "ISC",
"dependencies": {
"@antv/async-hook": "^2.1.0",
"@antv/l7-core": "^2.5.40",
"@antv/l7-utils": "^2.5.40",
"@antv/l7-core": "^2.5.41",
"@antv/l7-utils": "^2.5.41",
"@babel/runtime": "^7.7.7",
"@mapbox/geojson-rewind": "^0.4.0",
"@turf/helpers": "^6.1.4",

View File

@ -1,6 +1,6 @@
{
"name": "@antv/l7-three",
"version": "2.5.40",
"version": "2.5.41",
"description": "three for L7 ",
"keywords": [
"3D",
@ -44,9 +44,9 @@
},
"homepage": "https://github.com/antvis/L7#readme",
"dependencies": {
"@antv/l7-core": "^2.5.40",
"@antv/l7-layers": "^2.5.40",
"@antv/l7-scene": "^2.5.40",
"@antv/l7-core": "^2.5.41",
"@antv/l7-layers": "^2.5.41",
"@antv/l7-scene": "^2.5.41",
"@babel/runtime": "^7.7.7",
"inversify": "^5.0.1",
"reflect-metadata": "^0.1.13",

View File

@ -1,6 +1,6 @@
{
"name": "@antv/l7-utils",
"version": "2.5.40",
"version": "2.5.41",
"description": "",
"main": "lib/index.js",
"module": "es/index.js",

View File

@ -18,7 +18,7 @@ export default class PointTest extends React.Component {
map: new GaodeMap({
center: [110.19382669582967, 30.258134],
pitch: 0,
zoom: 4,
zoom: 5,
}),
});
@ -28,7 +28,7 @@ export default class PointTest extends React.Component {
.then((res) => res.text())
.then((data) => {
const lineLayer = new LineLayer({
autoFit: true,
// autoFit: true,
blend: 'normal',
})
.source(data, {