百度地图api初使用,行政区划及搜索

最近发现了百度地图api这个好东西,官网上细致的demo和讲解,所以写了以下html
里面包含这几个功能:地图调用,行政区边界,还有一个地图搜索的搜索框
行政区边界demo
搜索框demo
所以第一步是去申请一个ak
我之后又写了一个用单选按钮切换地图周边的html百度地图api周边搜索及切换
百度地图api初使用,行政区划及搜索_第1张图片


<html>
<head>
	<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
	<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
	<style type="text/css">
	body, html,#allmap {width: 100%;height: 100%;margin:0;font-family:"微软雅黑";}
	#r-result{width:100%;position:absolute;}
	
	.BMap_cpyCtrl {				
		display:none;
	}
	.anchorBL{
		display:none;
	}
	style>
	<script type="text/javascript" src="http://api.map.baidu.com/api?v=2.0&ak=1ALTaV0tWvwNHFeCa4qsQMyAd9UYalwj">script>
	<title>百度地图API功能title>
head>
<body>
	<div id="container">
	<div id="header" style="background-color:#FAEBD7 ;">
	<h1 style="margin-bottom:0;" align="center">地图展示h1>div>
	
	<div id="menu" style="background-color:#A8A8A8;height:810px;width:150px;float:left;">
	<b text-align="center">--搜索功能--b><br>
	<div id="r-result">请输入:<input type="text" id="suggestId" size="20" value="百度" style="width:142px;float:left;">div>
	<div id="searchResultPanel" style="border:1px solid #C0C0C0;width:150px;height:auto; display:none;">div>div>
	<div id="allmap" style="height:810px;width:auto;">div>
	
	<div id="footer" style="background-color:#FFFF00;clear:both;text-align:center;">apidiv>
	div>
body>
html>
<script type="text/javascript">

	// 百度地图API功能
	function G(id) {                        //搜索框
        return document.getElementById(id);
    } 
	
	var map = new BMap.Map("allmap");   // 创建Map实例
	map.centerAndZoom("天津", 11); // 初始化地图,设置中心点坐标和地图级别

	//添加地图类型控件
	map.addControl(new BMap.MapTypeControl({
		mapTypes:[
            BMAP_NORMAL_MAP,
            BMAP_HYBRID_MAP
        ]}));	  
	map.setCurrentCity("天津");          // 设置地图显示的城市 此项是必须设置的
	map.enableScrollWheelZoom(true);     //开启鼠标滚轮缩放
	
	//搜索功能
    var ac = new BMap.Autocomplete(    //建立一个自动完成的对象
		{"input" : "suggestId"
		,"location" : map
	});

	ac.addEventListener("onhighlight", function(e) {  //鼠标放在下拉列表上的事件
	var str = "";
		var _value = e.fromitem.value;
		var value = "";
		if (e.fromitem.index > -1) {
			value = _value.province +  _value.city +  _value.district +  _value.street +  _value.business;
		}    
		str = "FromItem
index = "
+ e.fromitem.index + "
value = "
+ value; value = ""; if (e.toitem.index > -1) { _value = e.toitem.value; value = _value.province + _value.city + _value.district + _value.street + _value.business; } str += "
ToItem
index = "
+ e.toitem.index + "
value = "
+ value; G("searchResultPanel").innerHTML = str; }); var myValue; ac.addEventListener("onconfirm", function(e) { //鼠标点击下拉列表后的事件 var _value = e.item.value; myValue = _value.province + _value.city + _value.district + _value.street + _value.business; G("searchResultPanel").innerHTML ="onconfirm
index = "
+ e.item.index + "
myValue = "
+ myValue; setPlace(); }); function setPlace(){ map.clearOverlays(); //清除地图上所有覆盖物 function myFun(){ var pp = local.getResults().getPoi(0).point; //获取第一个智能搜索的结果 map.centerAndZoom(pp, 12); map.addOverlay(new BMap.Marker(pp)); //添加标注 } var local = new BMap.LocalSearch(map, { //智能搜索 onSearchComplete: myFun }); local.search(myValue); } //津南区轮廓 function getBoundary(){ var bdary = new BMap.Boundary(); bdary.get("天津市津南区", function(rs){ //获取行政区域 map.clearOverlays(); //清除地图覆盖物 var count = rs.boundaries.length; //行政区域的点有多少个 if (count === 0) { alert('未能获取当前输入行政区域'); return ; } var pointArray = []; for (var i = 0; i < count; i++) { var ply = new BMap.Polygon(rs.boundaries[i], {strokeWeight: 4, strokeColor: "black",fillColor:"none"}); //建立多边形覆盖物 map.addOverlay(ply); //添加覆盖物 pointArray = pointArray.concat(ply.getPath()); } map.setViewport(pointArray); //调整视野 addlabel(); }); } setTimeout(function(){ getBoundary(); }, 2000);
script>

百度地图api上还有很多有用的功能,例如地铁线路,公交线路,还有LBS云,可以存储数据以及方便地调用。

你可能感兴趣的:(百度地图api)