Pull up r2181:r2229 to 2.3 branch. Includes fixes for:
#429 fix panning for odd size viewport #478 Double clicking overview map expand/contract button zooms in Safari #484 conflict between _addButton of MouseToolbar and PanZoom #485 null pointer exception on CTRL+F5 in IE for WMS.Untiled #486 add a few sanity checks to overview map #489 requires tag incorrect in OverviewMap.js #498 overviewmap: rectangle has minimum height in IE git-svn-id: http://svn.openlayers.org/branches/openlayers/2.3@2230 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
32
tests/grid_inittiles.html
Normal file
32
tests/grid_inittiles.html
Normal file
@@ -0,0 +1,32 @@
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<style type="text/css">
|
||||
#map {
|
||||
width: 800px;
|
||||
height: 475px;
|
||||
border: 1px solid black;
|
||||
}
|
||||
</style>
|
||||
<script src="../lib/OpenLayers.js"></script>
|
||||
<script type="text/javascript">
|
||||
<!--
|
||||
function init(){
|
||||
map = new OpenLayers.Map('map', {'maxResolution': 1.40625/2, tileSize: new OpenLayers.Size(256,256)});
|
||||
ww = new OpenLayers.Layer.WMS( "Basic",
|
||||
"http://labs.metacarta.com/wms-c/Basic.py?",
|
||||
{layers:"basic"});
|
||||
map.addLayers([ww]);
|
||||
map.zoomToMaxExtent();
|
||||
map.zoomIn();
|
||||
map.zoomOut();
|
||||
map.zoomOut();
|
||||
}
|
||||
// -->
|
||||
</script>
|
||||
</head>
|
||||
<body onload="init()">
|
||||
<h1>Grid Test</h1>
|
||||
<p>Map should display with two centered tiles. If there appear to be a combination of two zoom levels, then this test is failed, and something is broken in OpenLayers.</p>
|
||||
<div id="map"></div>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user