zoukankan      html  css  js  c++  java
  • 百度地图-简单集成

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
        <title>支行地图查询 - 农商银行</title>
        <style type="text/css">
            *
            {
                margin: 0;
                padding: 0;
            }
            body
            {
                color: #2B2B2B;
                font: 12px/20px tahoma,宋体,sans-serif;
                min-width: 1000px;
            }
            input
            {
                background: none repeat scroll 0 0 #FFFFFF;
                border: 1px none;
                color: #666666;
            }
            textarea
            {
                font-size: 12px;
                resize: none;
            }
            img
            {
                border: medium none;
            }
            a
            {
                color: #2B2B2B;
                text-decoration: none;
            }
            a:hover
            {
                text-decoration: underline;
            }
            a:focus
            {
                outline: thin dotted;
            }
            span, em, i, address
            {
                font-style: normal;
            }
            span, em, i, strong, b, a
            {
                display: inline-block;
            }
            table
            {
                border-collapse: collapse;
                border-spacing: 0;
            }
            li
            {
                list-style: none outside none;
            }
            .top
            {
                width: 100%;
                height: 100px;
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
            }
            .top img
            {
                margin-top: 30px;
                margin-left: 40px;
            }
            .lefttop
            {
                width: 300px;
                position: absolute;
                left: 0;
                top: 100px;
                height: 28px;
                line-height: 28px;
                background-image: url(Widgets/Themes/theme/images/mapinfo_4awatk.png);
                background-position: right -68px;
            }
            .lefttop span
            {
                padding-left: 15px;
            }
            .lefttop b
            {
                width: 8px;
                height: 8px;
                background-color: #A5BEEF;
                border-radius: 4px;
            }
            .lefttop a
            {
                padding-left: 8px;
                color: #4C73C2;
            }
            .righttop
            {
                position: absolute;
                left: 300px;
                top: 100px;
                right: 0px;
                height: 28px;
                background-image: url(Widgets/Themes/theme/images/nav_bj_24a15l.gif);
            }
            .left
            {
                width: 300px;
                position: absolute;
                left: 0;
                top: 128px;
                bottom: 0;
                border-top: 1px solid #E7E7E7;
                padding: 10px;
            }
            .left .con
            {
                background-color: #F7F3F7;
                min-height: 400px;
                width: 260px;
                padding: 10px;
            }
            .left .con span
            {
                background-image: url(Widgets/Themes/theme/images/markers_new_hdbsij.png);
                background-repeat: no-repeat;
                background-position: 0 -71px;
                width: 24px;
                height: 40px;
                float: left;
            }
            .left .con p
            {
                margin-left: 30px;
                line-height: 30px;
                padding-top: 8px;
            }
            .right
            {
                position: absolute;
                top: 128px;
                bottom: 0;
                left: 300px;
                right: 0;
                border-top: 1px solid #E7E7E7;
            }
        </style>
    </head>
    <body>
        <div class="top">
            <img src="Widgets/Themes/theme/images/logo.png" />
            支行地图查询
        </div>
        <div class="lefttop">
            <span><b></b><a href="/">首页</a></span>
        </div>
        <div class="righttop">
        </div>
        <div class="left">
            <div class="con">
                <span></span>
                <p>
                    <b id="name">农村商业银行</b><br />
                    <em id="add">地址:广东省农商行大厦 </em>
                    <br />
                    电话:<em id="tel">020-2858028 &nbsp; 2853308</em>
                    <br />
                    传真:<em id="cz">2853308</em>
                    <br />
                    日常营业时间:<em id="rc">9:00-17:00</em><br />
                    节假日营业时间:<em id="jj">9:30-16:30</em>
                </p>
            </div>
        </div>
        <div class="right" id="dituContent">
        </div>
        <script type="text/javascript" src="http://api.map.baidu.com/api?key=&v=1.1&services=true"></script>
        <script type="text/javascript">
    
            function getUrlParam(name) {
                var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)"); //构造一个含有目标参数的正则表达式对象
                var r = window.location.search.substr(1).match(reg);  //匹配目标参数
                if (r != null) return unescape(r[2]); return null; //返回参数值
            }
    
            var mx = getUrlParam("x");
            var my = getUrlParam("y");
            var mn = getUrlParam("n");
            document.getElementById("name").innerHTML = getUrlParam("n");
            document.getElementById("add").innerHTML = "地址:" + getUrlParam("add");
            document.getElementById("tel").innerHTML = getUrlParam("tel");
            document.getElementById("cz").innerHTML = getUrlParam("tel");
    
    
            //创建和初始化地图函数:
            function initMap() {
                createMap(); //创建地图
                setMapEvent(); //设置地图事件
                addMapControl(); //向地图添加控件
                addMarker(); //向地图中添加marker
            }
    
            //创建地图函数:
            function createMap() {
                var map = new BMap.Map("dituContent"); //在百度地图容器中创建一个地图
                var point = new BMap.Point(parseFloat(mx), parseFloat(my)); //定义一个中心点坐标
                map.centerAndZoom(point, 15); //设定地图的中心点和坐标并将地图显示在地图容器中
                window.map = map; //将map变量存储在全局
            }
    
            //地图事件设置函数:
            function setMapEvent() {
                map.enableDragging(); //启用地图拖拽事件,默认启用(可不写)
                map.enableScrollWheelZoom(); //启用地图滚轮放大缩小
                map.enableDoubleClickZoom(); //启用鼠标双击放大,默认启用(可不写)
                map.enableKeyboard(); //启用键盘上下左右键移动地图
            }
    
            //地图控件添加函数:
            function addMapControl() {
                //向地图中添加缩放控件
                var ctrl_nav = new BMap.NavigationControl({ anchor: BMAP_ANCHOR_TOP_LEFT, type: BMAP_NAVIGATION_CONTROL_LARGE });
                map.addControl(ctrl_nav);
                //向地图中添加缩略图控件
                var ctrl_ove = new BMap.OverviewMapControl({ anchor: BMAP_ANCHOR_BOTTOM_RIGHT, isOpen: 1 });
                map.addControl(ctrl_ove);
                //向地图中添加比例尺控件
                var ctrl_sca = new BMap.ScaleControl({ anchor: BMAP_ANCHOR_BOTTOM_LEFT });
                map.addControl(ctrl_sca);
            }
    
            //标注点数组
            var pointxy = mx + "|" + my;
            var markerArr = [{ title: mn, content: "", point: pointxy, isOpen: 0, icon: { w: 21, h: 21, l: 0, t: 0, x: 6, lb: 5} }
             ];
            //创建marker
            function addMarker() {
                for (var i = 0; i < markerArr.length; i++) {
                    var json = markerArr[i];
                    var p0 = json.point.split("|")[0];
                    var p1 = json.point.split("|")[1];
                    var point = new BMap.Point(p0, p1);
                    var iconImg = createIcon(json.icon);
                    var marker = new BMap.Marker(point, { icon: iconImg });
                    var iw = createInfoWindow(i);
                    var label = new BMap.Label(json.title, { "offset": new BMap.Size(json.icon.lb - json.icon.x + 10, -20) });
                    marker.setLabel(label);
                    map.addOverlay(marker);
                    label.setStyle({
                        borderColor: "#808080",
                        color: "#333",
                        cursor: "pointer"
                    });
    
                    (function () {
                        var index = i;
                        var _iw = createInfoWindow(i);
                        var _marker = marker;
                        _marker.addEventListener("click", function () {
                            this.openInfoWindow(_iw);
                        });
                        _iw.addEventListener("open", function () {
                            _marker.getLabel().hide();
                        })
                        _iw.addEventListener("close", function () {
                            _marker.getLabel().show();
                        })
                        label.addEventListener("click", function () {
                            _marker.openInfoWindow(_iw);
                        })
                        if (!!json.isOpen) {
                            label.hide();
                            _marker.openInfoWindow(_iw);
                        }
                    })()
                }
            }
            //创建InfoWindow
            function createInfoWindow(i) {
                var json = markerArr[i];
                var iw = new BMap.InfoWindow("<b class='iw_poi_title' title='" + json.title + "'>" + json.title + "</b><div class='iw_poi_content'>" + json.content + "</div>");
                return iw;
            }
            //创建一个Icon
            function createIcon(json) {
                var icon = new BMap.Icon("http://app.baidu.com/map/images/us_mk_icon.png", new BMap.Size(json.w, json.h), { imageOffset: new BMap.Size(-json.l, -json.t), infoWindowOffset: new BMap.Size(json.lb + 5, 1), offset: new BMap.Size(json.x, json.h) })
                return icon;
            }
    
            initMap(); //创建和初始化地图
        </script>
    </body>
    </html>
  • 相关阅读:
    webmagic的使用学习
    redis在macOS上的安装及与springboot的整合使用
    Swagger-UI
    个人作业——软件工程实践总结&个人技术博客
    祝贺大野鸡喜提小黄衫一件
    软件评测(个人作业)
    结对第二次作业
    Springboot项目创建文件中相对路径问题
    二进制翻转
    欧拉降幂及广义欧拉降幂证明
  • 原文地址:https://www.cnblogs.com/eedc/p/6060409.html
Copyright © 2011-2022 走看看