summaryrefslogtreecommitdiff
path: root/misc/openlayers/tests/grid_inittiles.html
diff options
context:
space:
mode:
authorChris Schlaeger <chris@linux.com>2015-10-17 21:36:38 +0200
committerChris Schlaeger <chris@linux.com>2015-10-17 21:36:38 +0200
commite30f267181d990947e67909de4809fa941698c85 (patch)
tree46e9f94c2b3699ed378963b420b8a8d361286ea1 /misc/openlayers/tests/grid_inittiles.html
parente763ceb183f389fcd314a4a6a712d87c9d4cdb32 (diff)
downloadpostrunner-e30f267181d990947e67909de4809fa941698c85.zip
Upgrading openlayers to 3.x
Diffstat (limited to 'misc/openlayers/tests/grid_inittiles.html')
-rw-r--r--misc/openlayers/tests/grid_inittiles.html30
1 files changed, 0 insertions, 30 deletions
diff --git a/misc/openlayers/tests/grid_inittiles.html b/misc/openlayers/tests/grid_inittiles.html
deleted file mode 100644
index 40035a2..0000000
--- a/misc/openlayers/tests/grid_inittiles.html
+++ /dev/null
@@ -1,30 +0,0 @@
-<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(){
- var 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>