real.html 413 Bytes
<div id="mapContainer" style="width: 100%; margin-top: -15px;"></div>

<script>
	$(function() {
		//实例化地图
		var map = new BMap.Map("mapContainer");

		$('#mapContainer').height($(pjaxContainer).height() + 30);

		map.centerAndZoom("上海", 13);
		map.enableScrollWheelZoom();

		var ctrl = new BMapLib.TrafficControl();
		map.addControl(ctrl);
		ctrl.setAnchor(BMAP_ANCHOR_BOTTOM_RIGHT);
	});
</script>