antv-l7/demos/01_point_image.html

109 lines
2.4 KiB
HTML
Raw Normal View History

2018-10-30 11:22:18 +08:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="geometry" content="diagram">
<link rel="stylesheet" href="./assets/common.css">
<title>point_distribute</title>
<style>
#map { position:absolute; top:0; bottom:0; width:100%; }
</style>
</head>
<body>
<div id="map"></div>
<script src="https://webapi.amap.com/maps?v=1.4.8&key=15cd8a57710d40c9b7c0e3cc120f1200&plugin=Map3D"></script>
2018-11-16 16:52:25 +08:00
<script src="https://unpkg.com/supercluster@4.1.1/dist/supercluster.min.js"></script>
2018-10-30 11:22:18 +08:00
<script src="./assets/jquery-3.2.1.min.js"></script>
<script src="../build/L7.js"></script>
<script>
const color1 = [ 'rgba(37, 140, 249, 0.8)', 'rgba(14, 241, 242, 0.8)', 'rgba(255, 255, 255, 0.8)' ];
const scene = new L7.Scene({
id: 'map',
mapStyle: 'light', // 样式URL
center: [ 120.1243238, 30.27331571 ],
pitch: 0,
2018-11-03 16:39:22 +08:00
zoom: 14,
2018-11-01 14:31:14 +08:00
minZoom: 9
2018-10-30 11:22:18 +08:00
});
window.scene = scene;
scene.image.addImage('bike', './image/Bike.png');
2018-11-16 16:52:25 +08:00
scene.image.addImage('marker', './image/marker.png');
2018-11-03 16:39:22 +08:00
scene.on('loaded', () => {
$.get('./data/pointbike.json', data => {
2018-11-16 16:52:25 +08:00
var extent = [ 110,29.2378,122.189,33.3173]
var dataindex = supercluster({radius:80});
dataindex.load(data.features);
var clusterData = dataindex.getClusters(extent,13);
console.log(clusterData);
2018-10-30 11:22:18 +08:00
scene.PointLayer({
2018-11-16 16:52:25 +08:00
zIndex: 4
2018-10-30 11:22:18 +08:00
})
2018-11-16 16:52:25 +08:00
.source({
"type": "FeatureCollection",
"features":clusterData
})
2018-11-19 10:45:40 +08:00
.color('#6492E9')
.active(true)
2018-11-16 16:52:25 +08:00
.size('point_count',[1,30])
.shape('2d:circle')
.style({
opacity:0.8
})
.render();
2018-11-01 14:31:14 +08:00
});
$.get('./data/fence.json', data => {
2018-11-16 16:52:25 +08:00
scene.LineLayer({
zIndex: 5
2018-10-30 11:22:18 +08:00
})
2018-11-06 11:27:16 +08:00
.source(data)
2018-11-19 10:45:40 +08:00
.shape('line')
2018-11-16 16:52:25 +08:00
.size([2,0])
.color('#2F54EB')
2018-11-01 14:31:14 +08:00
.style({
2018-11-16 16:52:25 +08:00
opacity:1.0,
2018-11-03 16:39:22 +08:00
})
.render();
2018-11-16 16:52:25 +08:00
scene.PolygonLayer({
zIndex: 0
})
.source(data)
.shape('fill')
.size([2,0])
.color('#2F54EB')
.style({
opacity:0.05,
})
.render();
2018-11-03 16:39:22 +08:00
});
2018-11-16 16:52:25 +08:00
2018-11-03 16:39:22 +08:00
$.getJSON('./data/pointZone.json', data => {
2018-11-16 16:52:25 +08:00
const fenceLayer = scene.LineLayer({
zIndex: 1,
minZoom:16,
2018-11-03 16:39:22 +08:00
})
2018-11-16 16:52:25 +08:00
.source(data)
.size([1.5,0])
.shape('meshLine')
.color("#2F54EB")
2018-11-03 16:39:22 +08:00
.style({
2018-11-16 16:52:25 +08:00
opacity:1.0,
'lineType':'solid'
2018-11-01 14:31:14 +08:00
})
2018-10-30 11:22:18 +08:00
.render();
2018-11-16 16:52:25 +08:00
2018-10-30 11:22:18 +08:00
});
2018-11-06 11:27:16 +08:00
2018-10-30 11:22:18 +08:00
});
2018-11-16 16:52:25 +08:00
2018-10-30 11:22:18 +08:00
</script>
</body>
</html>