前言
openlayers4 官網(wǎng)的 api 文檔介紹地址 openlayers4 api壶运,里面詳細(xì)的介紹 openlayers4 各個(gè)類的介紹愈腾,還有就是在線例子:openlayers4 官網(wǎng)在線例子床估,這個(gè)也是學(xué)習(xí) openlayers4 的好素材遗契。
openlayers4 入門開發(fā)系列的地圖服務(wù)基于 Geoserver 發(fā)布的黍少,關(guān)于 Geoserver 方面操作的博客蛋欣,可以參考以下幾篇文章:
內(nèi)容概覽
1.基于 openlayers4 實(shí)現(xiàn)地圖熱力圖
2.源代碼 demo 下載
本篇的重點(diǎn)內(nèi)容是利用 openlayers4 實(shí)現(xiàn)熱力圖功能航徙,效果圖如下:
實(shí)現(xiàn)思路
- 熱力圖界面設(shè)計(jì)
//熱力圖
"<div style='height:25px;background:#30A4D5;margin-top:2px;width: 98%;margin-left: 3px;'>" +
"<span style='margin-left:5px;font-size: 13px;color:white;'>熱力圖</span>" +
"</div>" +
'<div id="heatmapFeatureLayer" style="padding:5px;">' +
'<div style="float:left;">' +
'<input type="checkbox" name="heatmapFeatureLayer" id="heatmap1" style="width: 15px;height: 15px;vertical-align: middle;margin: auto;"/>' +
'<label style="font-weight: normal;vertical-align: middle;margin: auto;">熱力圖</label>' +
'</div>' +
'</div>' +
- 熱力圖點(diǎn)擊事件
//加載熱力圖
$("#heatmapFeatureLayer input").bind("click", function () {
if (this.checked) {
if(!bxmap.olHeatMap.isLoad){
bxmap.olHeatMap.Init(bmap);
} else{
bxmap.olHeatMap.showHeatMapLayer();
}
//圖例面板顯示
$("#map_tl").css("display","block");
$("#map_tl>img").attr('src', getRootPath() +"js/main/olHeatMap/lend_dz.png");
$("#map_tl>img").css("width","165px");
$("#map_tl>img").css("height","165px");
}
else {
bxmap.olHeatMap.hideHeatMapLayer();
//圖例面板隱藏
$("#map_tl").hide();
}
})
- 熱力圖初始化以及核心代碼實(shí)現(xiàn)
Init:function(bmap){
//加載熱力圖
this.map = bmap.getMap();
this.isLoad = true;
this.initHeatMapLayer(dz);
},
/**
* 初始化加載-熱力圖
*/
initHeatMapLayer:function(data){
var num = data.features.length;
if (num > 0) {
var features = new Array(num);
for (var i = 0; i < num; i++) {
var geo = data.features[i].geometry;
var coordinate = [geo.x, geo.y];
features[i] = new ol.Feature({
geometry: new ol.geom.Point(coordinate),
weight: data.features[i].attributes[field_dz]
});
}
this.loadHeatLayer(features);
}
},
更多的詳情見:GIS之家小專欄
文章尾部提供源代碼下載,對本專欄感興趣的話陷虎,可以關(guān)注一波