diff options
Diffstat (limited to 'misc/openlayers/examples/feature-events.html')
-rw-r--r-- | misc/openlayers/examples/feature-events.html | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/misc/openlayers/examples/feature-events.html b/misc/openlayers/examples/feature-events.html new file mode 100644 index 0000000..923e554 --- /dev/null +++ b/misc/openlayers/examples/feature-events.html @@ -0,0 +1,46 @@ +<!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> |