antv-l7/demos/vectorheatMap.html

75 lines
1.8 KiB
HTML
Raw Normal View History

2019-05-28 11:35:31 +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">
<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',
2019-06-20 17:54:07 +08:00
mapStyle: 'light', // 样式URL
2019-05-28 11:35:31 +08:00
center: [116.5909,39.9225 ],
pitch: 0,
hash:true,
2019-06-20 17:54:07 +08:00
zoom: 16,
2019-05-28 11:35:31 +08:00
});
window.scene = scene;
scene.on('loaded', () => {
const layer = scene.VectorTileLayer({
zIndex:0,
2019-06-20 17:54:07 +08:00
layerType:'point'
2019-05-28 11:35:31 +08:00
})
2019-06-20 17:54:07 +08:00
.source('http://alipay-rmsdeploy-image.cn-hangzhou.alipay.aliyun-inc.com/thinkgis/tile/china/all_point/{z}/{x}/{y}.pbf',{
2019-05-28 11:35:31 +08:00
parser:{
type: 'mvt',
sourceLayer:'layer',
2019-06-20 17:54:07 +08:00
maxZoom:14,
2019-05-28 11:35:31 +08:00
}
})
.scale({
2019-06-20 17:54:07 +08:00
bc_grade:{
type:'cat',
values:[1, 2 ,3, 4]
},
open_mode:{
type:'cat',
values:['线上','线下','自助']
2019-05-28 11:35:31 +08:00
}
})
2019-06-20 17:54:07 +08:00
.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'])
2019-05-28 11:35:31 +08:00
.style({
2019-06-20 17:54:07 +08:00
stroke: '#fff',
strokeWidth: 1.0,
strokeOpacity:1.,
})
2019-05-28 11:35:31 +08:00
.render(
);
});
</script>
</body>
</html>