summaryrefslogtreecommitdiff
path: root/misc/openlayers/examples/sld-parser.html
blob: 14f87eac11b5d7235f8c416716a6daf1fd53b9bd (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
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
<!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 SLD Parser</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>
        <style>
            #input {
                width: 90%;
                height: 300px;
            }
            #output {
                width: 90%;
                height: 300px;
            }
        </style>
    </head>
    <body>
        <h1 id="title">SLD Parser</h1>
        <div id="tags">
            sld, sldselect, styling, style, parser, cleanup
        </div>
        <div id="shortdesc">Parsing Styled Layer Descriptor (SLD) documents with the SLD format.</div>

        <textarea id="input">paste SLD here</textarea><br>
        <input type="checkbox" id="symbolizers" checked="checked"><label for="symbolizers">Maintain multiple symbolizers and FeatureTypeStyle elements</label><br>
        <input type="checkbox" id="array"><label for="array">Compile an array of named styles instead of an object.</label><br>
        <input type="button" id="button" value="Parse SLD">

        <div id="docs">
            This example uses the SLD format to parse SLD documents pasted into the textarea above.  
            A rough representation of the parsed style is shown in the textarea below.
        </div>
        
        <textarea id="output"></textarea>
        
        <script>
        
            var button = document.getElementById("button");
            var input = document.getElementById("input");
            var output = document.getElementById("output");
            var symbolizers = document.getElementById("symbolizers");
            var array = document.getElementById("array");
            
            var json = new OpenLayers.Format.JSON();

            var format, obj;
            
            button.onclick = function() {
                var str = input.value;
                format = new OpenLayers.Format.SLD({
                    multipleSymbolizers: !!symbolizers.checked,
                    namedLayersAsArray: !!array.checked
                });
                obj = format.read(str);
                try {
                    output.value = json.write(obj, true);
                } catch (err) {
                    output.value = "Trouble: " + err;
                }
            }
        
        </script>

    </body>
</html>