1. 程式人生 > >百度地圖API的地圖展示

百度地圖API的地圖展示

4.0 all 坐標 tco 中心 and mil img ntc

<!DOCTYPE html>
<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%;overflow: hidden;margin:0;font-family:"微軟雅黑";}
	</style>
	<script type="text/javascript" src="http://api.map.baidu.com/api?v=2.0&ak=7hp49bGh7sixCuhecF2C2y15Ry9W43Wz"></script>
	<title>地圖展示</title>
</head>
<body>
	<div id="allmap"></div>
</body>
</html>
<script type="text/javascript">
	// 百度地圖API功能
	var map = new BMap.Map("allmap");    // 創建Map實例
	map.centerAndZoom(new BMap.Point(104.06792346,30.67994285), 11);  // 初始化地圖,設置中心點坐標和地圖級別
	//添加地圖類型控件
	map.addControl(new BMap.MapTypeControl({
		mapTypes:[
            BMAP_NORMAL_MAP,
            BMAP_HYBRID_MAP
        ]}));
        var mapStyle={  style : "midnight" }
      map.setMapStyle(mapStyle);
	map.setCurrentCity("成都");          // 設置地圖顯示的城市 此項是必須設置的
	map.enableScrollWheelZoom(true);     //開啟鼠標滾輪縮放
  // 百度地圖API功能
var sContent ="Chengdu,a magic city.";
var point = new BMap.Point(104.06792346,30.67994285);
map.centerAndZoom(point, 11);
var infoWindow = new BMap.InfoWindow(sContent);  // 創建信息窗口對象
map.openInfoWindow(infoWindow,point); //開啟信息窗口
document.getElementById("r-result").innerHTML = "信息窗口的內容是:<br />" + infoWindow.getContent();
</script>

  技術分享圖片

百度地圖API的地圖展示