summaryrefslogtreecommitdiff
path: root/misc/openlayers/examples/feature-events.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/feature-events.html
parente763ceb183f389fcd314a4a6a712d87c9d4cdb32 (diff)
downloadpostrunner-e30f267181d990947e67909de4809fa941698c85.zip
Upgrading openlayers to 3.x
Diffstat (limited to 'misc/openlayers/examples/feature-events.html')
-rw-r--r--misc/openlayers/examples/feature-events.html46
1 files changed, 0 insertions, 46 deletions
diff --git a/misc/openlayers/examples/feature-events.html b/misc/openlayers/examples/feature-events.html
deleted file mode 100644
index 923e554..0000000
--- a/misc/openlayers/examples/feature-events.html
+++ /dev/null
@@ -1,46 +0,0 @@
-<!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 Feature Events Example</title>
- <link rel="stylesheet" href="../theme/default/style.css" type="text/css">
- <link rel="stylesheet" href="style.css" type="text/css">
- <style type="text/css">
- #result {
- height: 60px;
- width: 514px;
- font-size: smaller;
- overflow: auto;
- margin-top: 5px;
- }
- </style>
- </head>
- <body>
- <h1 id="title">Feature Events Example</h1>
-
- <div id="tags">
- feature, select, hover
- </div>
-
- <div id="shortdesc">Feature hover and click events</div>
-
- <div id="map" class="smallmap"></div>
- <div id="docs">
- <p id="result">Hover over or click features on the map.</p>
-
- <p>This example shows how to use the 'featureclick', 'nofeatureclick',
- 'featureover' and 'featureout' events to make features interactive.
- Look at the <a href="feature-events.js">feature-events.js</a> source
- code to see how this is done.</p>
-
- <p>Note that these events can be registered both on the map and on
- individual layers. If many layers need to be observed, it is
- recommended to register listeners once on the map for performance
- reasons.</p>
- </div>
- <script src="../lib/OpenLayers.js"></script>
- <script src="feature-events.js"></script>
- </body>
-</html>