* (Closes #2360) make Layer.addOptions call initResolutions if necessary * (Closes #2656) no way to pass read options from protocol to format * (Closes #2751) Changes in languages: "es" and "ca". * (Closes #2814) SLDSelect control tests failing * (Closes #2815) Cluster Strategy should not destroy all features Also: * Change examples to use OSGeo, rather than MetaCarta, servers. * Change copyright statements to correctly state joint copyright in the project, rather than MetaCarta copyright. git-svn-id: http://svn.openlayers.org/branches/openlayers/2.10@10715 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
58 lines
2.2 KiB
HTML
58 lines
2.2 KiB
HTML
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<title>OpenLayers Mousewheel Interval Example</title>
|
|
<link rel="stylesheet" href="../theme/default/style.css" type="text/css" />
|
|
<link rel="stylesheet" href="style.css" type="text/css" />
|
|
<script src="../lib/OpenLayers.js"></script>
|
|
<script type="text/javascript">
|
|
var map, layer;
|
|
|
|
function setCumulative() {
|
|
var nav = map.getControlsByClass("OpenLayers.Control.Navigation")[0];
|
|
var cumulative = document.getElementById("cumulative");
|
|
nav.handlers.wheel.cumulative = cumulative.checked;
|
|
}
|
|
|
|
function init(){
|
|
map = new OpenLayers.Map( 'map', {controls: [
|
|
new OpenLayers.Control.Navigation(
|
|
{mouseWheelOptions: {interval: 100}}
|
|
),
|
|
new OpenLayers.Control.PanZoom(),
|
|
new OpenLayers.Control.ArgParser(),
|
|
new OpenLayers.Control.Attribution()
|
|
]} );
|
|
layer = new OpenLayers.Layer.WMS( "OpenLayers WMS",
|
|
"http://vmap0.tiles.osgeo.org/wms/vmap0",
|
|
{layers: 'basic'} );
|
|
map.addLayer(layer);
|
|
map.zoomToMaxExtent();
|
|
}
|
|
</script>
|
|
</head>
|
|
<body onload="init()">
|
|
<h1 id="title">OpenLayers Mousewheel Interval Example</h1>
|
|
|
|
<div id="tags"></div>
|
|
|
|
<div id="shortdesc">Let OpenLayers send less tile requests to the server when wheel-zooming.</div>
|
|
|
|
<div id="map" class="smallmap"></div>
|
|
|
|
<div id="docs">
|
|
<p>This example shows how to configure the Navigation control to use
|
|
the mousewheel in a less server resource consuming way: as long as you
|
|
spin the mousewheel, no request will be sent to the server. Instead,
|
|
the zoomlevel delta will be recorded. After a delay (in this example
|
|
100ms), a zoom action with the cumulated delta will be performed.</p>
|
|
<div>
|
|
<input id="cumulative" type="checkbox" checked="checked"
|
|
onchange="setCumulative()"/>
|
|
<label for="cumulative">Cumulative mode. If this mode is deactivated,
|
|
only one zoom event will be performed after the delay.</label>
|
|
</div>
|
|
|
|
</div>
|
|
</body>
|
|
</html>
|