百度地图demo

<!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,#l-map {width: 100%;height: 100%;overflow: hidden;hidden;margin:0;}  


</style>  


<script type="text/javascript" src="http://api.map.baidu.com/api?v=1.3"></script>  


<title>显示地图</title>  


</head>  


<body>  


<div id="l-map"></div>  


</body>


</html>  


<script type="text/javascript">  


var map = new BMap.Map("l-map");  
map.centerAndZoom(new BMap.Point(116.404, 39.915), 14);      
map.addControl(new BMap.NavigationControl());


</script>

猜你喜欢

转载自lncdzh.iteye.com/blog/2299706