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="../build/L7.js"></script>
|
|
|
|
<script>
|
|
|
|
|
|
|
|
const scene = new L7.Scene({
|
|
|
|
id: 'map',
|
2018-10-30 11:22:18 +08:00
|
|
|
mapStyle: 'dark', // 样式URL
|
2018-11-16 16:52:25 +08:00
|
|
|
center: [ 121.2680, 30.3628 ],
|
2018-11-06 11:27:16 +08:00
|
|
|
pitch: 0,
|
2018-11-16 16:52:25 +08:00
|
|
|
zoom: 15,
|
2018-10-30 11:22:18 +08:00
|
|
|
minZoom: 4,
|
2018-11-16 16:52:25 +08:00
|
|
|
maxZoom: 18
|
2018-10-23 19:32:42 +08:00
|
|
|
});
|
|
|
|
|
2018-11-03 16:39:22 +08:00
|
|
|
scene.on('loaded', () => {
|
2018-10-23 19:32:42 +08:00
|
|
|
const imageLayer = scene.ImageLayer().
|
2018-11-20 20:07:22 +08:00
|
|
|
source('https://gw.alipayobjects.com/zos/rmsportal/FnHFeFklTzKDdUESRNDv.jpg',{
|
2019-02-25 23:56:37 +08:00
|
|
|
parser:{
|
|
|
|
type:'image',
|
|
|
|
extent: [ 121.1680, 30.2828, 121.3840, 30.4219 ]
|
|
|
|
}
|
|
|
|
|
2018-11-06 11:27:16 +08:00
|
|
|
})
|
|
|
|
.style({
|
2018-11-16 16:52:25 +08:00
|
|
|
opacity:1.0,
|
2018-10-23 19:32:42 +08:00
|
|
|
})
|
|
|
|
.render();
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
|