高德地图搜索提示框

在这里插入图片描述

<!doctype html>
<html lang="zh-CN">

<head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>蜂窝热力图</title>
	<link rel="stylesheet" href="https://a.amap.com/jsapi_demos/static/demo-center/css/demo-center.css" />
	<script src="https://cache.amap.com/lbs/static/es5.min.js"></script>
    <style>
        html,
        body,
        #container {
          width: 100%;
          height: 100%;
        }
        
        label {
            width: 55px;
            height: 26px;
            line-height: 26px;
            margin-bottom: 0;
        }
        button.btn {
            width: 80px;
        }
		.amap-info-window{
            width: 150px;
            background: #fff;
            border-radius: 3px;
            padding: 3px 7px;
            box-shadow: 0 2px 6px 0 rgba(114, 124, 245, .5);
            position: relative;
        }
        .amap-info-sharp{
            position: absolute;
            top: 21px;
            bottom: 0;
            left: 50%;
            margin-left: -8px;
            border-left: 8px solid transparent;
            border-right: 8px solid transparent;
            border-top: 8px solid #fff;
        }
		
		        #panel {
            position: absolute;
            background-color: white;
            max-height: 90%;
            overflow-y: auto;
            top: 10px;
            right: 10px;
            width: 280px;
        }
		
    </style>
	<script>
		// 车主的位置数据
	    var heatmapData_owner = `
113.399037	23.50067	100
113.361742	23.486032	300
`
	// 非车主的位置数据
	var heatmapData_not_owner = `
113.399037	20.50067	1
113.461742	20.486032	1
113.450026	21.838679	1
`
	</script>
</head>

<body>
    <div id="container" class="container"></div>
	<div id="panel"></div>
	<div class="input-card" style="width:29rem;">
		<div class="input-item">
		  <label>选择数据</label>
		  <button class="btn" id="data-all" style="margin-right:0.5rem;">全部</button>
		  <button class="btn" id="data-owner" style="margin-right:0.5rem;">车主</button>
		  <button class="btn" id="data-not-owner">非车主</button>
		</div>
		<div class="input-item">
		  <label>站点:</label>
			  <button class="btn" id="add-station" style="margin-right:1rem;">添加站点</button>
			  <button class="btn" id="del-station" style="margin-right:1rem;">删除站点</button>
		</div>
	<div class="info">
    <div class="input-item">
      <div class="input-item-prepend">
        <span class="input-item-text" style="width:8rem;">请输入关键字</span>
      </div>
      <input id='tipinput' type="text">
    </div>
	</div>
	<script type="text/javascript">
        window._AMapSecurityConfig = {
            securityJsCode:'您的密匙',
        }
	</script>
	<script type="text/javascript" src="https://webapi.amap.com/maps?v=1.4.15&key=您的key值&plugin=AMap.Autocomplete"></script>
    <!--<script src="https://webapi.amap.com/maps?v=1.4.15&key=您的key值"></script>-->
    <script src="https://webapi.amap.com/loca?v=1.3.2&key=您的key值"></script>
    <script src="https://a.amap.com/Loca/static/dist/jquery.min.js"></script>
    <script>
		
        var map = new AMap.Map('container', {
            viewMode: '2D',
            resizeEnable: true,
            pitch: 0,
            mapStyle: 'amap://styles/normal',
            // features: ['bg', 'road'], // 打开这个参数,只显示路名,不显示地名
                  maxPitch: 40,
        zoom: 5,
        center: [107.21, 33.1],
        zooms: [1, 16], // zooms[1]:最小展开
		resizeEnable: true,
        });
		    map.on("complete", function(){
        log.success("地图加载完成!");
    });
	
	console.log(heatmapData_owner)
	
	
	// 关键词输入提示
	/*
    var auto = new AMap.Autocomplete({
        input: "tipinput"
    });
	*/
	
	AMap.service(["AMap.PlaceSearch","'AMap.AutoComplete'"], function() {
	var auto = new AMap.Autocomplete({ input: "tipinput"});
	//构造地点查询类
	var placeSearch = new AMap.PlaceSearch({ 
		pageSize: 5, // 单页显示结果条数
		pageIndex: 1, // 页码
		city: "010", // 兴趣点城市
		citylimit: false,  //是否强制限制在设置的城市内搜索
		map: map, // 展现结果的地图实例
		panel: "panel", // 结果列表将在此容器中进行展示。
		autoFitView: true // 是否自动调整地图视野使绘制的 Marker点都处于视口的可见范围
	});
	
	//关键字查询
	// placeSearch.search('西湖');
	auto.on("select", select);//注册监听,当选中某条记录时会触发
	function select(e) {
		placeSearch.setCity(e.poi.adcode);
		placeSearch.search(e.poi.name);  //关键字查询查询
	}
	
	
	});
	
		var layer = new Loca.HexagonLayer({
			map: map,
			fitView: false		// 每次渲染不要刷新视图
		});

            layer.setOptions({
                mode: 'count',
                // unit: 'px',
				unit: 'meter',
                style: {
                    color: ['#c5d8e7', '#a9c9da', '#89b5ce', '#6ba0c2', '#508cb4', '#3975a6', '#265f95', '#19497e'],
                    radius: 3000,
                    opacity: 0.8,
                    gap: 10,
                    height: [0, 100000],
                text: {
                    content: function(v){
                        return v.value.count;
                    },
                    direction: 'center',  // 文字方位 
                    //offset: [2, -5],  // 偏移大小
                    fontSize: 9,  // 文字大小
                    fillColor: '#03101F',
                    strokeColor: 'rgba(255,255,255,0)',  // 文字描边颜色
                    strokeWidth: 0,  // 文字描边宽度
                }
            }
        });
		
// -------------------------------添加点标注------------------------------
        // 创建 AMap.LabelsLayer 图层
        var layer2 = new AMap.LabelsLayer({
            zooms: [3, 20],
            zIndex: 1000,
            collision: false
        });

        // 将图层添加到地图
        map.add(layer2);

        var markers = [];
		// 添加标记点
		var positions = [["116.441504","40.031386"],["116.466426","39.971294"],["116.443838","39.723097"],["116.470679","40.020576"],["116.522323","40.042006"],["116.395659","39.797351"],["116.118438","39.788421"],["116.306554","40.051124"],["116.410109","39.863089"],["116.237956","39.856638"],["116.414847","39.872101"],["116.378096","39.862151"],["116.374007","39.907619"],["116.264677","39.906542"],["116.374771","40.10086"],["116.689728","40.019175"],["116.374144","39.883654"],["116.365874","39.987327"],["116.58219","39.751092"],["116.684996","40.327258"],["116.477973","39.987746"],["116.451918","39.982646"],["116.40565","39.962105"],["116.348723","39.986815"],["116.447178","39.859231"],["116.3151","39.886732"],["116.181355","39.817032"],["116.353724","39.588081"],["116.256804","40.086322"],["116.322173","39.70021"],["116.554809","40.025499"],["116.598014","39.838229"],["116.573416","39.810885"],["116.69804","40.039724"],["116.384261","39.987597"],["116.435344","39.746919"],["116.812613","39.802763"],["116.093184","39.719226"],["116.727769","39.639731"],["116.345042","39.822802"],["116.634148","40.312279"],["116.624649","40.044904"],["116.351605","40.003057"],["116.542465","40.070977"],["116.265349","40.235543"],["116.335217","39.770789"],["116.264057","40.138553"],["116.369607","39.981576"],["116.527168","39.767207"],["116.257045","40.1723"],["116.57598","40.035914"],["116.470221","39.97098"],["116.205075","39.761149"],["116.449337","40.207716"],["116.478758","39.591689"],["116.220759","39.765049"],["116.529464","39.94152"],["116.48931","39.880713"],["116.269726","39.86512"],["116.230261","39.897086"],["116.46339","39.975531"],["116.92884","39.800036"]];
		
		
        var icon = {
            type: 'image',
            image: 'https://webapi.amap.com/theme/v1.3/markers/n/mark_b.png', // https://img-blog.csdnimg.cn/5bf208cecf924f258ce4caa0cce3b7fe.png
            size: [12, 18],
            anchor: 'bottom-center',
        };
		
		/*
		// 遍历标记点经纬度列表,一个个生成labelMarker对象后添加到markers列表,并绑定事件
        for (var i = 0; i < positions.length; i++) {
            var curPosition = positions[i];
            var curData = {
                position: curPosition,
                icon
            };

            var labelMarker = new AMap.LabelMarker(curData);

            markers.push(labelMarker);

            // 给marker绑定事件
            labelMarker.on('mouseover', function(e){
                var position = e.data.data && e.data.data.position;

                if(true){
                    normalMarker.setContent(
                        '<div class="amap-info-window">'
                            + position +
                            '<div class="amap-info-sharp"></div>' +
                        '</div>');
                    normalMarker.setPosition(position);
                    map.add(normalMarker);
                }
            });

            labelMarker.on('mouseout', function(){
                map.remove(normalMarker);
            });
        }

        // 普通点
        var normalMarker = new AMap.Marker({
            anchor: 'bottom-center',
            offset: [0, -15],
			title: null,
        });
		*/
		
		for (var i = 0; i < positions.length; i++) {
			var labelMarker = new AMap.LabelMarker({
				position: positions[i],
				opacity: 1,
				zIndex: 2,
				icon: {
					image: 'https://a.amap.com/jsapi_demos/static/images/poi-marker.png',
					anchor: 'bottom-center',
					size: [25, 34],
					clipOrigin: [459, 92],
					clipSize: [50, 68]
				},
				text: {
					content: '香猪坊',
					direction: 'right',
					style: {
						fontSize: 15,
						fillColor: '#fff',
						strokeColor: 'rgba(255,0,0,0.5)',
						strokeWidth: 2,
						padding: [3, 10],
						backgroundColor: 'yellow',
						borderColor: '#ccc',
						borderWidth: 3,
					}
				}
			});
		
		markers.push(labelMarker);
		}
	
//------------------------------------按钮事件绑定------------------------------
document.querySelector("#data-all").onclick = function() {
		layer.setData(`lng	lat	count`+heatmapData_owner+heatmapData_not_owner, { // 要加上列名 lng	lat	count
			lnglat: function (obj) {
				var val = obj.value;
				return [val['lng'], val['lat']]
			},
			value: 'count',
			type: 'tsv'
		});
		// 更改按钮颜色,按下这个,背景色为,蓝,且其他按钮恢复原来的样式
		document.getElementById("data-all").style.backgroundColor="#25a5f7";
		document.getElementById("data-all").style.color="white";
		document.getElementById("data-owner").style.background='white';
		document.getElementById("data-owner").style.color="#25a5f7";
		document.getElementById("data-not-owner").style.background='white';
		document.getElementById("data-not-owner").style.color="#25a5f7";
		
		
		layer.render();  // 渲染
}
document.querySelector("#data-owner").onclick = function() {
		layer.setData(`lng	lat	count`+heatmapData_owner, { // 要加上列名 lng	lat	count
			lnglat: function (obj) {
				var val = obj.value;
				return [val['lng'], val['lat']]
			},
			value: 'count',
			type: 'tsv'
		});
		document.getElementById("data-owner").style.backgroundColor="#25a5f7";
		document.getElementById("data-owner").style.color="white";
		document.getElementById("data-all").style.background='white';
		document.getElementById("data-all").style.color="#25a5f7";
		document.getElementById("data-not-owner").style.background='white';
		document.getElementById("data-not-owner").style.color="#25a5f7";
		
		layer.render();  // 渲染
}
document.querySelector("#data-not-owner").onclick = function() {
    	layer.setData(`lng	lat	count`+heatmapData_not_owner, { // 要加上列名 lng	lat	count
			lnglat: function (obj) {
				var val = obj.value;
				return [val['lng'], val['lat']]
			},
			value: 'count',
			type: 'tsv'
		});
		document.getElementById("data-not-owner").style.backgroundColor="#25a5f7";
		document.getElementById("data-not-owner").style.color="white";
		document.getElementById("data-all").style.background='white';
		document.getElementById("data-all").style.color="#25a5f7";
		document.getElementById("data-owner").style.background='white';
		document.getElementById("data-owner").style.color="#25a5f7";
		
		
		layer.render();  // 渲染
}
document.querySelector("#add-station").onclick = function() {
	    // 添加站点标记
        layer2.add(markers);
		
		
		
    	document.getElementById("add-station").style.backgroundColor="#25a5f7";
		document.getElementById("add-station").style.color="white";
		document.getElementById("del-station").style.background='white';
		document.getElementById("del-station").style.color="#25a5f7";
}
document.querySelector("#del-station").onclick = function() {
		// 删除站点标记
		layer2.remove(markers);
		
    	document.getElementById("del-station").style.backgroundColor="#25a5f7";
		document.getElementById("del-station").style.color="white";
		document.getElementById("add-station").style.background='white';
		document.getElementById("add-station").style.color="#25a5f7";
}


    </script>
</body>

</html>
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值