summaryrefslogtreecommitdiff
path: root/misc/openlayers/examples/canvas-inspector.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/examples/canvas-inspector.html
parente763ceb183f389fcd314a4a6a712d87c9d4cdb32 (diff)
downloadpostrunner-e30f267181d990947e67909de4809fa941698c85.zip
Upgrading openlayers to 3.x
Diffstat (limited to 'misc/openlayers/examples/canvas-inspector.html')
-rw-r--r--misc/openlayers/examples/canvas-inspector.html53
1 files changed, 0 insertions, 53 deletions
diff --git a/misc/openlayers/examples/canvas-inspector.html b/misc/openlayers/examples/canvas-inspector.html
deleted file mode 100644
index 8f2d8bc..0000000
--- a/misc/openlayers/examples/canvas-inspector.html
+++ /dev/null
@@ -1,53 +0,0 @@
-<!DOCTYPE html>
-<html>
- <head>
- <title>OpenLayers Canvas Inspector</title>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
- <link rel="stylesheet" href="../theme/default/style.css" type="text/css">
- <link rel="stylesheet" href="../theme/default/google.css" type="text/css">
- <link rel="stylesheet" href="style.css" type="text/css">
- <script src="../lib/OpenLayers.js"></script>
- <script src="Jugl.js"></script>
- <style>
- #template {
- display: none;
- }
- #inspector table {
- border-right: 1px solid #666;
- border-bottom: 1px solid #666;
- }
- #inspector table td {
- font-size: 9px;
- text-align: center;
- width: 60px;
- height: 60px;
- border-top: 1px solid #666;
- border-left: 1px solid #666;
- }
- </style>
- </head>
- <body>
- <h1 id="title">Canvas Inspector</h1>
- <p id="shortdesc">
- Displays pixel values for canvas context.
- </p>
- <div id="map" class="smallmap"></div>
- <div id="docs">
- <p>
- View the <a href="canvas-inspector.js" target="_blank">canvas-inspector.js</a>
- source to see how this is done.
- </p>
- </div>
- <div id="inspector">
- </div>
- <table id="template">
- <tr jugl:repeat="row new Array(rows)">
- <td jugl:repeat="col new Array(cols)"
- jugl:attributes="id 'c' + repeat.col.index + 'r' + repeat.row.index">
- &nbsp;
- </td>
- </tr>
- </table>
- <script src="canvas-inspector.js"></script>
- </body>
-</html>