2018-10-23 19:32:42 +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>hexagon demo</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>
|
|
|
|
<script src="./assets/jquery-3.2.1.min.js"></script>
|
|
|
|
<script src="./assets/dat.gui.min.js"></script>
|
2018-11-16 16:52:25 +08:00
|
|
|
<script src="./assets/geotiff.browserify.min.js"></script>
|
2018-10-23 19:32:42 +08:00
|
|
|
<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',
|
2018-10-30 11:22:18 +08:00
|
|
|
mapStyle: 'dark', // 样式URL
|
2018-11-20 20:07:22 +08:00
|
|
|
center: [ 102.602992, 23.107329],
|
2018-11-16 16:52:25 +08:00
|
|
|
pitch: 15,
|
2018-11-20 20:07:22 +08:00
|
|
|
zoom: 14.82,
|
2018-10-23 19:32:42 +08:00
|
|
|
});
|
2018-11-03 16:39:22 +08:00
|
|
|
scene.on('loaded', () => {
|
2019-05-27 20:42:17 +08:00
|
|
|
$.get('https://gw.alipayobjects.com/os/rmsportal/ZVfOvhVCzwBkISNsuKCc.json', data => {
|
2018-10-23 19:32:42 +08:00
|
|
|
scene.LineLayer({
|
|
|
|
zIndex: 2
|
|
|
|
})
|
2018-11-16 16:52:25 +08:00
|
|
|
.source(data)
|
|
|
|
.size('ELEV',(value)=>{
|
|
|
|
return [1,(value-1000)*7];
|
|
|
|
})
|
2018-11-19 10:45:40 +08:00
|
|
|
.active(true)
|
|
|
|
.shape('line')
|
2018-11-16 16:52:25 +08:00
|
|
|
.color('ELEV',["#E8FCFF", "#CFF6FF", "#A1E9ff", "#65CEF7", "#3CB1F0", "#2894E0", "#1772c2", "#105CB3", "#0D408C", "#002466"].reverse())
|
2018-10-23 19:32:42 +08:00
|
|
|
.render();
|
|
|
|
});
|
2018-11-16 16:52:25 +08:00
|
|
|
|
2018-10-23 19:32:42 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
|