diff options
author | Chris Schlaeger <chris@linux.com> | 2014-08-12 21:56:44 +0200 |
---|---|---|
committer | Chris Schlaeger <chris@linux.com> | 2014-08-12 21:56:44 +0200 |
commit | ea346a785dc1b3f7c156f6fc33da634e1f1a627b (patch) | |
tree | af67530553d20b6e82ad60fd79593e9c4abf5565 /misc/openlayers/examples/canvas-inspector.html | |
parent | 59741cd535c47f25971bf8c32b25da25ceadc6d5 (diff) | |
download | postrunner-ea346a785dc1b3f7c156f6fc33da634e1f1a627b.zip |
Adding jquery, flot and openlayers to be included with the GEM.v0.0.4
Diffstat (limited to 'misc/openlayers/examples/canvas-inspector.html')
-rw-r--r-- | misc/openlayers/examples/canvas-inspector.html | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/misc/openlayers/examples/canvas-inspector.html b/misc/openlayers/examples/canvas-inspector.html new file mode 100644 index 0000000..8f2d8bc --- /dev/null +++ b/misc/openlayers/examples/canvas-inspector.html @@ -0,0 +1,53 @@ +<!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"> + + </td> + </tr> + </table> + <script src="canvas-inspector.js"></script> + </body> +</html> |