Project

General

Profile

Download (1.27 KB) Statistics
| Branch: | Tag: | Revision:
1
/* Copyright (c) 2006-2013 by OpenLayers Contributors (see authors.txt for
2
 * full list of contributors). Published under the 2-clause BSD license.
3
 * See license.txt in the OpenLayers distribution or repository for the
4
 * full text of the license. */
5

    
6
/**
7
 * @requires OpenLayers/Format/SLD/v1.js
8
 * @requires OpenLayers/Format/Filter/v1_0_0.js
9
 */
10

    
11
/**
12
 * Class: OpenLayers.Format.SLD.v1_0_0
13
 * Write SLD version 1.0.0.
14
 * 
15
 * Inherits from:
16
 *  - <OpenLayers.Format.SLD.v1>
17
 */
18
OpenLayers.Format.SLD.v1_0_0 = OpenLayers.Class(
19
    OpenLayers.Format.SLD.v1, {
20
    
21
    /**
22
     * Constant: VERSION
23
     * {String} 1.0.0
24
     */
25
    VERSION: "1.0.0",
26
    
27
    /**
28
     * Property: schemaLocation
29
     * {String} http://www.opengis.net/sld
30
     *   http://schemas.opengis.net/sld/1.0.0/StyledLayerDescriptor.xsd
31
     */
32
    schemaLocation: "http://www.opengis.net/sld http://schemas.opengis.net/sld/1.0.0/StyledLayerDescriptor.xsd",
33

    
34
    /**
35
     * Constructor: OpenLayers.Format.SLD.v1_0_0
36
     * Instances of this class are not created directly.  Use the
37
     *     <OpenLayers.Format.SLD> constructor instead.
38
     *
39
     * Parameters:
40
     * options - {Object} An optional object whose properties will be set on
41
     *     this instance.
42
     */
43

    
44
    CLASS_NAME: "OpenLayers.Format.SLD.v1_0_0" 
45

    
46
});
(2-2/3)