mirror of https://gitee.com/antv-l7/antv-l7
Merge branch 'master' into feat-layer-repaint
This commit is contained in:
commit
ed36b8444b
|
@ -16,6 +16,6 @@ $ npm run dev
|
||||||
$ npm run demos
|
$ npm run demos
|
||||||
```
|
```
|
||||||
visit online demo
|
visit online demo
|
||||||
http://site.alipay.net/datavis/L7/demos/index.html
|
https://antv.alipay.com/zh-cn/l7/1.x/demo/index.html
|
||||||
|
|
||||||
## How to Contribute
|
## How to Contribute
|
||||||
|
|
10
package.json
10
package.json
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@antv/l7",
|
"name": "@antv/l7",
|
||||||
"version": "1.1.8",
|
"version": "1.1.9",
|
||||||
"description": "Large-scale WebGL-powered Geospatial Data Visualization",
|
"description": "Large-scale WebGL-powered Geospatial Data Visualization",
|
||||||
"main": "build/l7.js",
|
"main": "build/l7.js",
|
||||||
"browser": "build/l7.js",
|
"browser": "build/l7.js",
|
||||||
|
@ -21,9 +21,9 @@
|
||||||
"author": "https://github.com/orgs/antvis/people",
|
"author": "https://github.com/orgs/antvis/people",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@babel/cli": "~7.0.0",
|
"@babel/cli": "^7.4.3",
|
||||||
"@babel/core": "~7.0.0",
|
"@babel/core": "~7.4.3",
|
||||||
"@babel/preset-env": "~7.1.0",
|
"@babel/preset-env": "~7.4.3",
|
||||||
"babel-eslint": "~8.0.3",
|
"babel-eslint": "~8.0.3",
|
||||||
"babel-loader": "~8.0.0",
|
"babel-loader": "~8.0.0",
|
||||||
"babel-plugin-transform-remove-strict-mode": "~0.0.2",
|
"babel-plugin-transform-remove-strict-mode": "~0.0.2",
|
||||||
|
@ -96,7 +96,7 @@
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@antv/g": "^3.1.3",
|
"@antv/g": "^3.1.3",
|
||||||
"@antv/util": "~1.2.5",
|
"@antv/util": "~2.0.1",
|
||||||
"@mapbox/tiny-sdf": "^1.1.0",
|
"@mapbox/tiny-sdf": "^1.1.0",
|
||||||
"@turf/bbox": "^6.0.1",
|
"@turf/bbox": "^6.0.1",
|
||||||
"@turf/clean-coords": "^6.0.1",
|
"@turf/clean-coords": "^6.0.1",
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import Utils from '@antv/util';
|
import * as Utils from '@antv/util';
|
||||||
|
|
||||||
const Util = Utils.mix({}, Utils, {
|
const Util = Utils.mix({}, Utils, {
|
||||||
assign: Utils.mix, // simple mix
|
assign: Utils.mix, // simple mix
|
||||||
|
|
Loading…
Reference in New Issue