最新文章专题视频专题问答1问答10问答100问答1000问答2000关键字专题1关键字专题50关键字专题500关键字专题1500TAG最新视频文章推荐1 推荐3 推荐5 推荐7 推荐9 推荐11 推荐13 推荐15 推荐17 推荐19 推荐21 推荐23 推荐25 推荐27 推荐29 推荐31 推荐33 推荐35 推荐37视频文章20视频文章30视频文章40视频文章50视频文章60 视频文章70视频文章80视频文章90视频文章100视频文章120视频文章140 视频2关键字专题关键字专题tag2tag3文章专题文章专题2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章专题3
当前位置: 首页 - 科技 - 知识百科 - 正文

vue.js高德地图实现热点图代码实例

来源:动视网 责编:小采 时间:2020-11-27 21:58:29
文档

vue.js高德地图实现热点图代码实例

vue.js高德地图实现热点图代码实例:1.在index.html引入高德地图JSAPI <script src=https://webapi.amap.com/maps?v=1.3&key=xxx></script> 2.地图dom <div class=map-container> <div id=container
推荐度:
导读vue.js高德地图实现热点图代码实例:1.在index.html引入高德地图JSAPI <script src=https://webapi.amap.com/maps?v=1.3&key=xxx></script> 2.地图dom <div class=map-container> <div id=container


1.在index.html引入高德地图JSAPI

 <script src="https://webapi.amap.com/maps?v=1.3&key=xxx"></script>

2.地图dom

<div class="map-container">
 <div id="container" style="width:100%;height:500px"></div>
</div>

3.js实现

export default {
	data() {},
 methods:{
 initMap(){
 let map = new AMap.Map('container', {
	features: ['bg', 'road'],
	resizeEnable: true,
	center: [116.397428, 39.90923],
	zoom: 11,
	viewMode: '2D',
	pitch: 50,
	showZoomBar:true,
	});
 if (!this.isSupportCanvas()) {
	this.$Message.info('热力图仅对支持canvas的浏览器适用,您所使用的浏览器不能使用热力图功能,请换个浏览器试试~')
	 }
 let heatmap;	
 let heatmapData=[];
 //从接口获取数据 
 //官网示例数据结构 http://a.amap.com/jsapi_demos/static/resource/heatmapData.js
	 this.$axios.get("/map/data").then(res => {
	if(res.success) {	
	if(res.data){
	res.data.forEach(item=>{
	let obj={
	lng:item.longitude,
	lat:item.latitude,
	count:item.count,
	}
	heatmapData.push(obj);
	})
	map.plugin(["AMap.Heatmap"], function() {
	//初始化heatmap对象
	 heatmap = new AMap.Heatmap(map, {
	      radius: 25, //给定半径
	      opacity: [0, 0.8],
	      gradient:{
	        0.5: 'blue',
	        0.65: 'rgb(117,211,248)',
	        0.7: 'rgb(0, 255, 0)',
	        0.9: '#ffea00',
	        1.0: 'red'
	     }
	});
	//设置数据集
	heatmap.setDataSet({
	data: heatmapData,
	max: 5
	});
	});
	}else{
	heatmapData =[];
	}
	} else {
	heatmapData =[];
	}
	});
 }
 },
 isSupportCanvas() {//判断浏览区是否支持canvas
	 var elem = document.createElement('canvas');
	 return !!(elem.getContext && elem.getContext('2d'));
 },
}

参考:https://lbs.amap.com/api/javascript-api/example/selflayer/heatmap

以上所述是小编给大家介绍的vue.js高德地图实现热点图详解整合,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对脚本之家网站的支持!

文档

vue.js高德地图实现热点图代码实例

vue.js高德地图实现热点图代码实例:1.在index.html引入高德地图JSAPI <script src=https://webapi.amap.com/maps?v=1.3&key=xxx></script> 2.地图dom <div class=map-container> <div id=container
推荐度:
标签: 高德地图 VUE 地图
  • 热门焦点

最新推荐

猜你喜欢

热门推荐

专题
Top