지도 구체적 위치 표시

<!-- -->
<!--LBS API-->
<script type="text/javascript" src="http://webapi.amap.com/maps?v=1.3&key=e3df1dd8965c37c3d19b218cb441277d"></script>

<div class="text-center aboutCon" id="myAddressOne"></div>
<script type="text/javascript"> 
$(function(){
    var map = new AMap.Map('myAddressOne',{
        zoom: 17,
        center: [87.564114,43.818243],
        resizeEnable : true,
    });
    // 
    map.plugin(["AMap.ToolBar"], function() {
        map.addControl(new AMap.ToolBar());
    });

    // 
    function openInfo() {
        // 
        var info = [];
        info.push("<div><div style=\"\"><img style=\"float:left;width:20px;margin-right:10px;\" src=\" images/logo.png \"/> - </div> ");
        info.push("<div style=\"padding:0px 0px 0px 4px;\"><b> </b>");
        info.push("  : 0991-8793003 <br/>    : 830000");
        info.push("  :  712 A 1002 </div></div>");
        infoWindow = new AMap.InfoWindow({
            content: info.join("<br/>")  // , 
        });
        infoWindow.open(map, map.getCenter());
    }
   // 
    openInfo();

});
</script>

좋은 웹페이지 즐겨찾기