antv-l7/demos/hz.html

155 lines
3.3 KiB
HTML
Raw Normal View History

2019-07-02 20:27:23 +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>city demo</title>
<style>
#map { position:absolute; top:0; bottom:0; width:100%; }
</style>
</head>
<body>
<div id = 'gui' style="position:absolute;top:0px;right:0px;z-index:2;"></div>
<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>
2019-08-12 10:35:50 +08:00
<script src="../build/l7.js"></script>
2019-07-02 20:27:23 +08:00
<script>
var buildLayer =null;
const scene = new L7.Scene({
id: 'map',
mapStyle: 'dark', // 样式URL
2019-08-12 10:35:50 +08:00
center: [
120.15935897827148,
30.261736090037477
],
pitch:0,
zoom: 5,
minZoom: 0,
maxZoom: 18
2019-07-02 20:27:23 +08:00
});
2019-08-12 10:35:50 +08:00
const lineData = {
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"properties": {},
"geometry": {
"type": "LineString",
"coordinates": [
[
117.02636718749999,
37.79676317682161
],
[
117.20214843749999,
37.23032838760387
],
[
117.31201171875001,
36.756490329505176
],
[
117.43286132812499,
36.38591277287651
],
[
117.586669921875,
35.871246850027966
],
[
117.76245117187499,
35.25459097465022
],
[
117.90527343750001,
34.732584206123626
],
[
117.99316406249999,
33.8339199536547
],
[
117.97119140625,
33.119150226768866
],
[
117.48779296875,
32.80574473290688
],
[
116.773681640625,
32.713355353177555
],
[
115.67504882812501,
32.704111144407406
],
[
114.510498046875,
32.85190345738802
],
[
113.818359375,
33.61461929233378
],
[
113.70849609375,
33.970697997361626
]
]
}
}
]
}
2019-07-02 20:27:23 +08:00
scene.on('loaded', () => {
$.get('https://gw.alipayobjects.com/os/basement_prod/40ef2173-df66-4154-a8c0-785e93a5f18e.json', data => {
scene.LineLayer({
zIndex: 2
})
.source(data)
2019-08-09 10:16:40 +08:00
.size(1)
2019-08-12 10:35:50 +08:00
.shape('line')
2019-07-02 20:27:23 +08:00
.color('#ff893a')
.animate({
2019-08-09 10:16:40 +08:00
enable:true,
2019-08-12 10:35:50 +08:00
interval:0.4,
duration:1,
trailLength:0.8
2019-07-02 20:27:23 +08:00
})
.render();
});
2019-08-12 10:35:50 +08:00
2019-07-02 20:27:23 +08:00
$.get('https://gw.alipayobjects.com/os/rmsportal/ggFwDClGjjvpSMBIrcEx.json', data => {
buildLayer = scene.PolygonLayer({
zIndex: 2
})
.source(data)
.shape('extrude')
.size('floor',[0,2000])
.color('rgba(242,246,250,1.0)')
.animate({enable:true})
.style({
opacity:1.0,
baseColor:'rgb(16,16,16)',
windowColor:'rgb(30,60,89)',
brightColor:'rgb(255,176,38)',
})
.render();
});
2019-08-12 10:35:50 +08:00
2019-07-02 20:27:23 +08:00
});
</script>
</body>
</html>