File: point-grid.html

package info (click to toggle)
openlayers 2.13.1%2Bds2-6
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 67,180 kB
  • sloc: xml: 7,435; python: 891; sh: 44; makefile: 19
file content (75 lines) | stat: -rw-r--r-- 2,317 bytes parent folder | download | duplicates (5)
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html>
  <head>
    <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 Point Grid Example</title>
    <link rel="stylesheet" href="openlayers/theme/default/style.css" type="text/css">
    <link rel="stylesheet" href="style.css" type="text/css">
    <style type="text/css">
        .olControlAttribution {
            left: 5px;
            bottom: 5px; 
        }
    </style>
  </head>
  <body>
    <h1 id="title">Point Grid Example</h1>

    <div id="tags">
        point grid
    </div>

    <div id="shortdesc">Use a PointGrid layer to display a grid of regularly spaced points</div>

    <div id="map" class="smallmap"></div>
    
    Grid rotation:
    <select name="rotation" id="rotation">
        <option value="-45">-45</option>
        <option value="-30">-30</option>
        <option value="-15">-15</option>
        <option value="0">0</option>
        <option value="15">15</option>
        <option value="30">30</option>
        <option value="45">45</option>
    </select>

    &nbsp;
    Grid spacing:
    <select name="dx" id="dx">
        <option value="10">10</option>
        <option value="15">15</option>
        <option value="20">20</option>
        <option value="25">25</option>
        <option value="30">30</option>
    </select> x
    <select name="dy" id="dy">
        <option value="10">10</option>
        <option value="15">15</option>
        <option value="20">20</option>
        <option value="25">25</option>
        <option value="30">30</option>
    </select>

    &nbsp;
    Max points:
    <select name="max" id="max">
        <option value="150">150</option>
        <option value="250">250</option>
        <option value="350">350</option>
    </select>

    <div class="docs">
        <p>
            This example demonstrates a <code>OpenLayers.Layer.PointGrid</code>
            layer to render a regularly spaced grid of point features.
        </p><p>
            See the <a href="point-grid.js" target="_blank">
            point-grid.js source</a> to see how this is done.
        </p>
    </div>
    <script src="openlayers/OpenLayers.js"></script>
    <script src="point-grid.js"></script>
  </body>
</html>