diff --git a/.gitignore b/.gitignore
index bb2eaa557b..d4daf4beb3 100755
--- a/.gitignore
+++ b/.gitignore
@@ -66,7 +66,6 @@ temp
.DS_Store
.idea
lib
-
*.sw*
*.un~
demos/gd.html
@@ -75,4 +74,7 @@ demos/image
.vscode
demos/hexagon.html
demos/model
-testdemo
\ No newline at end of file
+testdemo
+webpack-dev.config.js
+webpack.config.js
+.si.yml
\ No newline at end of file
diff --git a/.npmignore b/.npmignore
index fd527239c4..08c8e71761 100755
--- a/.npmignore
+++ b/.npmignore
@@ -73,8 +73,10 @@ bin
bundler
demos
docs
-lib
src
temp
webpack-dev.config.js
webpack.config.js
+testdemo
+rollup
+.si.yml
diff --git a/README.md b/README.md
index ffd1a6a230..c06e9576fb 100755
--- a/README.md
+++ b/README.md
@@ -10,12 +10,11 @@ $ npm install
$ npm run test-live
# build watching file changes and run demos
-$ npm run dev
+$ npm run start
# run demos
$ npm run demos
```
-visit online demo
-https://antv.alipay.com/zh-cn/l7/1.x/demo/index.html
+
## How to Contribute
diff --git a/demos/01_animatePoint.html b/demos/01_animatePoint.html
index 65c681a953..f1f7e61013 100644
--- a/demos/01_animatePoint.html
+++ b/demos/01_animatePoint.html
@@ -43,7 +43,6 @@ return {
]
}
}
-console.log(pointOnCircle(10))
const scene = new L7.Scene({
id: 'map',
mapStyle: 'light', // 样式URL
@@ -76,7 +75,7 @@ scene.on('loaded', () => {
circleLayer.setData(pointOnCircle(timestamp / 1000));
requestAnimationFrame(animateMarker);
}
- //animateMarker(0);
+ animateMarker(0);
/**
const layerText = scene.PointLayer({
diff --git a/demos/01_circle.html b/demos/01_circle.html
new file mode 100644
index 0000000000..a8fa80d791
--- /dev/null
+++ b/demos/01_circle.html
@@ -0,0 +1,61 @@
+
+
+
+
+
+ 气泡图
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/demos/01_point_distribute.html b/demos/01_point_distribute.html
index a3d1bd8f73..2d5267344c 100644
--- a/demos/01_point_distribute.html
+++ b/demos/01_point_distribute.html
@@ -45,7 +45,8 @@ scene.on('loaded', () => {
.style({
stroke: 'rgb(255,255,255)',
strokeWidth: 0,
- opacity: 1.0
+ opacity: 1.0,
+ bending:'additive'
})
.render();
});
diff --git a/demos/03_1_extrude_polygon.html b/demos/03_1_extrude_polygon.html
index f8b80004ae..42b3d5f250 100644
--- a/demos/03_1_extrude_polygon.html
+++ b/demos/03_1_extrude_polygon.html
@@ -31,6 +31,7 @@ const scene = new L7.Scene({
});
window.scene = scene;
+
scene.on('loaded', () => {
$.getJSON('https://gw.alipayobjects.com/os/rmsportal/xxvoBnsYNEPiAXGRmlPD.json', city => {
citylayer = scene.PolygonLayer()
@@ -39,7 +40,7 @@ scene.on('loaded', () => {
.shape('extrude')
.size('max',(value)=>{
- if(value<0)value =0;
+ if(value<0)value =1;
return value * 1000;
})
.active(true)
@@ -48,7 +49,6 @@ scene.on('loaded', () => {
})
.render();
-
const citylayer2 = scene.PolygonLayer()
.source(city)
.shape('line')
@@ -56,7 +56,7 @@ scene.on('loaded', () => {
.style({
opacity: 1
})
- .render();
+ .render();
});
});
diff --git a/demos/03_choropleths_polygon.html b/demos/03_choropleths_polygon.html
index 0700fcf2b9..e1d7994bce 100644
--- a/demos/03_choropleths_polygon.html
+++ b/demos/03_choropleths_polygon.html
@@ -64,7 +64,6 @@ scene.on('loaded', () => {
$.getJSON('https://gw.alipayobjects.com/os/rmsportal/JToMOWvicvJOISZFCkEI.json', city => {
const citylayer = scene.PolygonLayer()
.source(city)
- //.color('pm2_5_24h',["#FFF5B8","#FFDC7D","#FFAB5C","#F27049","#D42F31","#730D1C"])
.color('pm2_5_24h',(p)=>{
if(p>120){
return colors[5];
@@ -81,7 +80,6 @@ scene.on('loaded', () => {
}
})
.shape('fill')
- .pattern('id1')
.active(true)
.style({
opacity: 1
@@ -95,9 +93,11 @@ scene.on('loaded', () => {
.style({
opacity: 1.0
})
- //.render();
-
- console.log(citylayer);
+ .render();
+
+ citylayer.on('mouseleave',(e)=>{
+ console.log(e);
+ })
citylayer.on('click',(e)=>{
$("#info").css({'left': e.pixel.x,'top':e.pixel.y, display:'block'});
$("#info").html(`${e.feature.properties.area || e.feature.properties.name }${e.feature.properties.pm2_5_24h || 0}
`);
diff --git a/demos/08_arc_line.html b/demos/08_arc_line.html
index 8a130d82e9..ff6eb262c0 100644
--- a/demos/08_arc_line.html
+++ b/demos/08_arc_line.html
@@ -31,47 +31,26 @@ const scene = new L7.Scene({
});
scene.on('loaded', () => {
$.get('https://gw.alipayobjects.com/os/rmsportal/UEXQMifxtkQlYfChpPwT.txt', data => {
- const rows = data.split('\n');
- var features =[];
- for(var i =1;i
diff --git a/demos/gaode.html b/demos/gaode.html
new file mode 100644
index 0000000000..e8588096ed
--- /dev/null
+++ b/demos/gaode.html
@@ -0,0 +1,81 @@
+
+
+
+
+
+
+
+
+ 简易行政区图-世界
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/demos/08_point_shape.html b/demos/great_circle.html
similarity index 58%
rename from demos/08_point_shape.html
rename to demos/great_circle.html
index 5629d0ccc5..ba61152db6 100644
--- a/demos/08_point_shape.html
+++ b/demos/great_circle.html
@@ -6,7 +6,7 @@
- point_circle
+ hexagon demo
@@ -15,48 +15,45 @@
+