2019-11-10 21:20:26 +08:00
|
|
|
import { Scene } from '@l7/scene';
|
2019-11-19 10:21:43 +08:00
|
|
|
import { PointLayer } from '@l7/layers'
|
2019-11-10 21:20:26 +08:00
|
|
|
const scene = new Scene({
|
|
|
|
id: 'map',
|
|
|
|
pitch: 0,
|
|
|
|
type: 'mapbox',
|
|
|
|
style: 'dark',
|
2019-11-14 11:50:12 +08:00
|
|
|
center: [ 96.99215001469588, 29.281597225674773],
|
|
|
|
zoom: 2.194613775109773,
|
2019-11-10 21:20:26 +08:00
|
|
|
maxZoom: 10
|
|
|
|
});
|
|
|
|
fetch('https://gw.alipayobjects.com/os/basement_prod/337ddbb7-aa3f-4679-ab60-d64359241955.json')
|
|
|
|
.then((res) => res.json())
|
|
|
|
.then((data) => {
|
2019-11-14 11:50:12 +08:00
|
|
|
data.features = data.features.filter(item=>{
|
|
|
|
return item.properties.capacity> 800;
|
|
|
|
})
|
2019-11-10 21:20:26 +08:00
|
|
|
const pointLayer =
|
|
|
|
new PointLayer({
|
|
|
|
})
|
|
|
|
.source(data).shape('circle')
|
2019-11-14 11:50:12 +08:00
|
|
|
.size('capacity', [0, 16])
|
|
|
|
.color('capacity',['#34B6B7', '#4AC5AF','#5FD3A6', '#7BE39E','#A1EDB8', '#CEF8D6'])
|
2019-11-10 21:20:26 +08:00
|
|
|
.style({
|
2019-11-14 11:50:12 +08:00
|
|
|
opacity: 0.5,
|
|
|
|
strokeWidth: 0
|
2019-11-10 21:20:26 +08:00
|
|
|
})
|
|
|
|
|
|
|
|
scene.addLayer(pointLayer);
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|