我正在使用 google map api 制作一些东西,包括 markclusterer js 库。
我没有在代码中输入空行,但它出现在<body>
. 截图:
它出现在每个浏览器中,不仅仅是屏幕截图中的 Chrome。
这是我的代码。它是用 php 编写的:
<?
/*
Template Name: map
*/
require_once("map/util.php");
require_once("map/config.php");
?>
<!DOCTYPE html>
<html>
<head lang="ko">
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
<style type="text/css">
html { height: 100% }
body { height: 100%; margin: 0; padding: 0 }
#map-canvas { height: 100% }
</style>
<link href="../wp-content/themes/att-lefty/map/style.css" rel="stylesheet" />
<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?sensor=true"></script>
<script type="text/javascript" src="http://google-maps-utility-library-v3.googlecode.com/svn/trunk/infobox/src/infobox.js"></script>
<script type="text/javascript" src="http://google-maps-utility-library-v3.googlecode.com/svn/trunk/markerclusterer/src/markerclusterer.js"></script>
<script type="text/javascript">
//SOME FUNCTIONS ARE DEFINED IN THIS AREA WITH JS + PHP.
</script>
</head>
<body>
<div id="wrap" style="height:100%;">
<div id="map-canvas"/></div>
</div>
</body>
</html>
请给我一个建议。谢谢。