Files
openlayers/examples/single-tile.html
Tim Schaub 8e9087344d Updated single tile example.
git-svn-id: http://svn.openlayers.org/trunk/openlayers@10883 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
2010-11-10 18:23:58 +00:00

31 lines
1.2 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<title>OpenLayers: Single Tile</title>
<link rel="stylesheet" href="../theme/default/style.css" type="text/css">
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body>
<h1 id="title">Single Tile Example</h1>
<div id="tags">tile, ratio, singleTile, performance</div>
<p id="shortdesc">
Use the singleTile option on gridded layers to request a single tile.
</p>
<div id="mapDiv" class="smallmap"></div>
<div id="docs">
<p>
This map demonstrates the use of the singleTile property as an
alternative to the default tiled behavior of layers. The first
layer in the map is a WMS layer with the singleTile option set
true. The second layer is a WMS layer with the default options.
</p>
<p>
View the <a href="single-tile.js" target="_blank">single-tile.js</a>
source to see how this is done.
</p>
</div>
<script src="../lib/OpenLayers.js"></script>
<script src="single-tile.js"></script>
</body>
</html>