百度地图API的应用(关键字搜索、获取经纬度)

最近想写一个关于老家的地图网站,网站中需要将我想标记的地方标记并在地图上加大显示,既然用到了地图,百度地图API是首选。

写之前我找到了一个带搜索的,一个可以获取经纬度的,然后将他们合并了一下为我所用,在此分享一下。

我写的例子效果图如下:
百度地图API的应用(关键字搜索、获取经纬度)_第1张图片
………………….图片分割…………………..


百度地图API的应用(关键字搜索、获取经纬度)_第2张图片

下面贴出源码:


<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 {
                width: 100%;
                height: 100%;
                margin: 0;
                font-family: "微软雅黑";
                font-size: 14px;
            }

            #l-map {
                height: 300px;
                width: 100%;
            }

            #r-result {
                width: 100%;
            }
        style>
        <script type="text/javascript" src="http://api.map.baidu.com/api?v=2.0&ak=KyKYGhKT1DYisflH6Lk8OeGxEUYrFKRS">script>
        <title>关键字输入提示词条title>
    head>

    <body>
        <div id="l-map">div>
        <div id="r-result">请输入:<input type="text" id="suggestId" size="20" value="百度" style="width:150px;" /><button id="search-btn">搜索button>div>
        <div id="searchResultPanel" style="border:1px solid #C0C0C0;width:150px;height:auto; display:none;">div>
        <input type="text" id="lng" />
        <input type="text" id="lat" />
    body>

html>
<script type="text/javascript">
    (function(){
        // 百度地图API功能
        function G(id) {
            return document.getElementById(id);
        }
        var map = new BMap.Map("l-map");
        var lng=G('lng');
        var lat=G('lat');
        var searchBtn = G('search-btn');
        var myValue;
        var local=null;
        var ac=null;
        var geolocation = new BMap.Geolocation();
        ac = new BMap.Autocomplete({
            "input": "suggestId",
            "location": map
        });
        geolocation.getCurrentPosition(function(r){
            if(this.getStatus() == BMAP_STATUS_SUCCESS){
                point = new BMap.Point(r.point.lng, +r.point.lat);
                map.centerAndZoom(point, 15);
            }
        })
        map.enableScrollWheelZoom();//开启鼠标滚轮缩放
        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; }); function myFun() { var pp = local.getResults().getPoi(0).point; //获取第一个智能搜索的结果 map.centerAndZoom(pp, 18); map.addOverlay(new BMap.Marker(pp)); //添加标注 } function setPlace() { map.clearOverlays(); //清除地图上所有覆盖物 local = new BMap.LocalSearch(map, { //智能搜索 onSearchComplete: myFun }); local.search(myValue); } function showInfo(e){ lng.value=e.point.lng; lat.value=e.point.lat; } 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(); }); searchBtn.addEventListener("click", function() {//点击搜索 map.clearOverlays(); //清除地图上所有覆盖物 local = new BMap.LocalSearch(map, { //智能搜索 onSearchComplete: myFun }); local.search(document.getElementById("suggestId").value); }); map.addEventListener("click", showInfo);//搜索事件 })()
script>

将这段代码全部复制到HTML文档中即可使用。

你可能感兴趣的:(Js学习之路)