<!DOCTYPE html>
<html>
<head>
<meta http-equiv=
"Content-Type"
content=
"text/html; charset=utf-8"
/>
<style type=
"text/css"
>
body, html,#allmap {width: 100%;height: 100%;overflow: hidden;margin:0;}
#l-map{height:100%;width:78%;float:left;border-right:2px solid #bcbcbc;}
#r-result{height:100%;width:20%;float:left;}
</style>
<script type=
"text/javascript"
src=
"http://api.map.baidu.com/api?v=1.5&ak=您的密钥"
></script>
<title>百度地图的Hello, World</title>
</head>
<body>
<div id=
"allmap"
></div>
</body>
</html>
<script type=
"text/javascript"
>
var
map =
new
BMap.Map(
"allmap"
);
var
point =
new
BMap.Point(116.404, 39.915);
map.centerAndZoom(point,15);
map.enableScrollWheelZoom();
</script>