Putting the script tag at the end of the body (for demonstration purposes).

git-svn-id: http://svn.openlayers.org/trunk/openlayers@10725 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
Tim Schaub
2010-09-10 13:14:06 +00:00
parent d879ca8d00
commit 3aeab46132
2 changed files with 50 additions and 55 deletions

View File

@@ -7,7 +7,6 @@
<link rel="stylesheet" href="style.css" type="text/css">
<script src="../lib/OpenLayers.js"></script>
<script>OpenLayers.ImgPath = "../img/";</script>
<script src="filter-strategy.js"></script>
<style>
.olControlAttribution {
font-size: 9px;
@@ -15,7 +14,7 @@
}
</style>
</head>
<body onload="init()">
<body>
<h1 id="title">Filter Strategy</h1>
<p id="shortdesc">
Demonstrates the filter strategy for limiting features passed to the layer.
@@ -44,5 +43,6 @@
source to see how this is done
</p>
</div>
<script src="filter-strategy.js"></script>
</body>
</html>