antv-l7/demos/great_circle.html

67 lines
1.6 KiB
HTML
Raw Normal View History

2019-07-15 11:35:07 +08:00
<!DOCTYPE html>
<html lang="en">
<head>
2019-07-23 21:43:52 +08:00
<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>hexagon demo</title>
<style>
#map { position:absolute; top:0; bottom:0; width:100%; }
</style>
2019-07-15 11:35:07 +08:00
</head>
2019-07-23 21:43:52 +08:00
2019-07-15 11:35:07 +08:00
<body>
<div id="map"></div>
<script src="https://webapi.amap.com/maps?v=1.4.8&key=15cd8a57710d40c9b7c0e3cc120f1200&plugin=Map3D"></script>
2019-07-23 21:43:52 +08:00
<script src='https://npmcdn.com/@turf/turf/turf.min.js'></script>
<script src="./assets/jquery-3.2.1.min.js"></script>
<script src="./assets/dat.gui.min.js"></script>
2019-07-15 11:35:07 +08:00
<script src="../build/L7.js"></script>
<script>
2019-07-23 21:43:52 +08:00
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: 'dark', // 样式URL
center: [ 116.2825, 39.9 ],
pitch: 0,
zoom: 3
});
scene.on('loaded', () => {
$.get('https://gw.alipayobjects.com/os/rmsportal/UEXQMifxtkQlYfChpPwT.txt', data => {
2019-07-15 11:35:07 +08:00
2019-07-23 21:43:52 +08:00
scene.LineLayer({
zIndex: 2
})
.source(data, {
parser:{
type: 'csv',
2019-07-15 11:35:07 +08:00
x: 'lng1',
y: 'lat1',
x1: 'lng2',
y1: 'lat2'
2019-07-23 21:43:52 +08:00
}
})
.shape('greatCircle')
.size(0.5)
2019-07-23 21:43:52 +08:00
.color('rgb(13,64,140)')
.style({
opacity:1.,
2019-07-23 21:43:52 +08:00
})
.animate({
enable: true,
interval: 0.05,
duration: 1,
trailLength: 0.01
})
2019-07-23 21:43:52 +08:00
.render();
2019-07-15 11:35:07 +08:00
});
2019-07-23 21:43:52 +08:00
});
2019-07-15 11:35:07 +08:00
</script>
</body>
</html>
2019-07-23 21:43:52 +08:00