mirror of https://gitee.com/antv-l7/antv-l7
75 lines
1.8 KiB
HTML
75 lines
1.8 KiB
HTML
<!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">
|
|
<link rel="stylesheet" href="./assets/info.css">
|
|
|
|
<title>hexagon demo</title>
|
|
<style>
|
|
body {margin: 0;}
|
|
#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>
|
|
<script src="../build/L7.js"></script>
|
|
<script>
|
|
|
|
const scene = new L7.Scene({
|
|
id: 'map',
|
|
mapStyle: 'light', // 样式URL
|
|
center: [116.5909,39.9225 ],
|
|
pitch: 0,
|
|
hash:true,
|
|
zoom: 16,
|
|
|
|
});
|
|
window.scene = scene;
|
|
scene.on('loaded', () => {
|
|
const layer = scene.VectorTileLayer({
|
|
zIndex:0,
|
|
layerType:'point'
|
|
})
|
|
.source('http://alipay-rmsdeploy-image.cn-hangzhou.alipay.aliyun-inc.com/thinkgis/tile/china/all_point/{z}/{x}/{y}.pbf',{
|
|
parser:{
|
|
type: 'mvt',
|
|
sourceLayer:'layer',
|
|
maxZoom:14,
|
|
}
|
|
})
|
|
.scale({
|
|
bc_grade:{
|
|
type:'cat',
|
|
values:[1, 2 ,3, 4]
|
|
},
|
|
open_mode:{
|
|
type:'cat',
|
|
values:['线上','线下','自助']
|
|
}
|
|
})
|
|
.active(false)
|
|
// 'circle', 'triangle', 'square', 'pentagon', 'hexagon', 'octogon', 'hexagram', 'rhombus', 'vesica'
|
|
.shape('open_mode', ['circle','hexagon','hexagram'])
|
|
.size('bc_grade', [2,15])
|
|
.color('bc_grade', ['#ffffcc','#d9f0a3','#addd8e','#78c679','#31a354','#006837'])
|
|
.style({
|
|
stroke: '#fff',
|
|
strokeWidth: 1.0,
|
|
strokeOpacity:1.,
|
|
})
|
|
.render(
|
|
);
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|
|
|