|
|
@ -18,7 +18,7 @@ |
|
|
|
<script src="../js/subpage.js"></script> |
|
|
|
<script src="../js/subpage.js"></script> |
|
|
|
<script src="../js/common.js"></script> |
|
|
|
<script src="../js/common.js"></script> |
|
|
|
<script src="../js/bootstrap.js"></script> |
|
|
|
<script src="../js/bootstrap.js"></script> |
|
|
|
|
|
|
|
<script type="text/javascript" src="//api.map.baidu.com/api?type=webgl&v=1.0&ak=4YYbejd44F4yTmUfyIr2LwKXYr7k57Z5"></script> |
|
|
|
<!--[if lt IE 9]> |
|
|
|
<!--[if lt IE 9]> |
|
|
|
|
|
|
|
|
|
|
|
<script src="/Templates/skin_cn/js/html5shiv.min.js"></script> |
|
|
|
<script src="/Templates/skin_cn/js/html5shiv.min.js"></script> |
|
|
@ -26,6 +26,15 @@ |
|
|
|
<script src="/Templates/skin_cn/js/respond.min.js"></script> |
|
|
|
<script src="/Templates/skin_cn/js/respond.min.js"></script> |
|
|
|
|
|
|
|
|
|
|
|
<![endif]--> |
|
|
|
<![endif]--> |
|
|
|
|
|
|
|
<style type="text/css"> |
|
|
|
|
|
|
|
#map{ |
|
|
|
|
|
|
|
width: 600px; |
|
|
|
|
|
|
|
height: 320px; |
|
|
|
|
|
|
|
overflow: hidden; |
|
|
|
|
|
|
|
margin: 0; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
</style> |
|
|
|
</head> |
|
|
|
</head> |
|
|
|
|
|
|
|
|
|
|
|
<body> |
|
|
|
<body> |
|
|
@ -121,8 +130,8 @@ |
|
|
|
<li>邮编: <span>215000</span></li> |
|
|
|
<li>邮编: <span>215000</span></li> |
|
|
|
</ul> |
|
|
|
</ul> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<div class="col-xs-12 col-sm-12 col-md-7 right wow lightSpeedIn"> |
|
|
|
<div id="map" class="col-xs-12 col-sm-12 col-md-7 right wow lightSpeedIn"> |
|
|
|
<img src="../images/map.png"> |
|
|
|
|
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
@ -160,6 +169,22 @@ |
|
|
|
$(function(){ |
|
|
|
$(function(){ |
|
|
|
$("#footer").load("../public/footer.html"); |
|
|
|
$("#footer").load("../public/footer.html"); |
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 地图 |
|
|
|
|
|
|
|
var map = new BMapGL.Map("map"); |
|
|
|
|
|
|
|
map.centerAndZoom(new BMapGL.Point(116.280190, 40.049191), 19); |
|
|
|
|
|
|
|
map.enableScrollWheelZoom(true); |
|
|
|
|
|
|
|
// map.setHeading(0); |
|
|
|
|
|
|
|
// map.setTilt(0); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
var myGeo = new BMapGL.Geocoder(); |
|
|
|
|
|
|
|
// 将地址解析结果显示在地图上,并调整地图视野 |
|
|
|
|
|
|
|
myGeo.getPoint('苏州市姑苏区人民路3118号国发大厦', function(point){ |
|
|
|
|
|
|
|
map.centerAndZoom(point, 16); |
|
|
|
|
|
|
|
map.addOverlay(new BMapGL.Marker(point, {title: '苏州市姑苏区人民路3118号国发大厦'})) |
|
|
|
|
|
|
|
}, '苏州市') |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</script> |
|
|
|
</script> |
|
|
|
|
|
|
|
|
|
|
|
</body> |
|
|
|
</body> |
|
|
|