You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

19 lines
651 B

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5. <meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
  6. <style type="text/css">
  7. body, html,#l-map {width: 100%;height: 100%;overflow: hidden;margin:0;}
  8. </style>
  9. <script type="text/javascript" src="http://api.map.baidu.com/api?type=quick&ak=KPzUxj1rbhAudQtEXzpcUBtOMAMgyCiS&v=1.0"></script>
  10. <title>显示地图</title>
  11. </head>
  12. <body>
  13. <div id="l-map"></div>
  14. </body>
  15. </html>
  16. <script type="text/javascript">
  17. var map = new BMap.Map("l-map");
  18. map.centerAndZoom(new BMap.Point(116.404, 39.915), 14);
  19. </script>