summaryrefslogtreecommitdiff
path: root/misc/openlayers/examples/zoom.html
diff options
context:
space:
mode:
authorChris Schlaeger <chris@linux.com>2014-08-12 21:56:44 +0200
committerChris Schlaeger <chris@linux.com>2014-08-12 21:56:44 +0200
commitea346a785dc1b3f7c156f6fc33da634e1f1a627b (patch)
treeaf67530553d20b6e82ad60fd79593e9c4abf5565 /misc/openlayers/examples/zoom.html
parent59741cd535c47f25971bf8c32b25da25ceadc6d5 (diff)
downloadpostrunner-fb1989bda5d3e0a5472ba7644d57cae197733a8f.zip
Adding jquery, flot and openlayers to be included with the GEM.v0.0.4
Diffstat (limited to 'misc/openlayers/examples/zoom.html')
-rw-r--r--misc/openlayers/examples/zoom.html68
1 files changed, 68 insertions, 0 deletions
diff --git a/misc/openlayers/examples/zoom.html b/misc/openlayers/examples/zoom.html
new file mode 100644
index 0000000..8ca11bf
--- /dev/null
+++ b/misc/openlayers/examples/zoom.html
@@ -0,0 +1,68 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
+ <meta name="apple-mobile-web-app-capable" content="yes">
+ <title>OpenLayers Zoom Example</title>
+ <link rel="stylesheet" href="../theme/default/style.css" type="text/css">
+ <link rel="stylesheet" href="style.css" type="text/css">
+ <style>
+ .olControlAttribution {
+ bottom: 5px;
+ font-size: 9px;
+ }
+ #customZoom {
+ z-index: 1001;
+ position: relative;
+ top: 10px;
+ left: 10px;
+ }
+ #customZoom a {
+ text-decoration: none;
+ position: absolute;
+ display: block;
+ width: 50px;
+ text-align: center;
+ font-weight: bold;
+ color: #fff;
+ background: #369;
+ border: 1px solid #ccc;
+ border-radius: 3px;
+ }
+ #customZoom a:hover {
+ background: #036;
+ }
+ #customZoomOut {
+ top: 25px;
+ }
+
+ </style>
+ </head>
+ <body>
+ <h1 id="title">Zoom Control Example</h1>
+ <div id="tags">zoom control light</div>
+
+ <div id="shortdesc">Shows how to use a simple zoom control.</div>
+
+ <div id="map" class="smallmap"></div>
+ <p>The map above uses the default control configuration and style.</p>
+ <p>The map below uses the custom zoom elements and styling.</p>
+ <div id="map2" class="smallmap">
+ <div id="customZoom">
+ <a href="#customZoomIn" id="customZoomIn">in</a>
+ <a href="#customZoomOut" id="customZoomOut">out</a>
+ </div>
+ </div>
+
+ <div id="docs">
+ <p>This example demonstrates the use of a Zoom control.</p>
+ <p>
+ See the <a href="zoom.js" target="_blank">zoom.js</a> source
+ for details.
+ </p>
+ </div>
+ <script src="../lib/OpenLayers.js"></script>
+ <script src="zoom.js"></script>
+ </body>
+</html>