summaryrefslogtreecommitdiff
path: root/misc/openlayers/examples/kinetic.html
blob: 19919ae22ea1d9e00b0ef96d318b13e69c4ff54b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!DOCTYPE html>
<html>
  <head>
    <title>OpenLayers Kinetic Dragging Example</title>
    <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">
    <link rel="stylesheet" href="../theme/default/style.css" type="text/css">
    <link rel="stylesheet" href="style.css" type="text/css">
  </head>
  <body>
      <h1 id="title">Kinetic Dragging Example</h1>

      <div id="tags">
          kinetic, dragging
      </div>

      <p id="shortdesc">
        Demonstrates Kinetic Dragging.
      </p>

    <div id="map" class="smallmap"></div>

    <div id="docs">
        <p>
            OpenLayers Kinetic Dragging inspired from <a href="http://www.tile5.org">Tile5</a>, and
            <a href="http://code.google.com/p/kineticscrolling/">kineticscrolling</a> for Google Maps API V3.
        </p><p>
            As shown in this example Kinetic Dragging is enabled by setting
            <code>enableKinetic</code> to true in the config object provided to the
            <code>Control.DragPan</code> constructor. When using
            <code>Control.Navigation</code> or <code>Control.TouchNavigation</code>
            providing options to the underlying <code>Control.DragPan</code>
            instance is done through the <code>dragPanOptions</code> config
            property.
        </p><p>
            View the <a href="kinetic.js" target="_blank">kinetic.js source</a>
            to see how this is done.
        </p>
    </div>
    <script src="../lib/OpenLayers.js"></script>
    <script src="kinetic.js"></script>
  </body>
</html>