]> dev.renevier.net Git - syp.git/blob - openlayers/lib/OpenLayers/Format/SLD/v1_0_0.js
initial commit
[syp.git] / openlayers / lib / OpenLayers / Format / SLD / v1_0_0.js
1 /* Copyright (c) 2006-2008 MetaCarta, Inc., published under the Clear BSD
2  * license.  See http://svn.openlayers.org/trunk/openlayers/license.txt for the
3  * full text of the license. */
4
5 /**
6  * @requires OpenLayers/Format/SLD/v1.js
7  * @requires OpenLayers/Format/Filter/v1_0_0.js
8  */
9
10 /**
11  * Class: OpenLayers.Format.SLD.v1_0_0
12  * Write SLD version 1.0.0.
13  * 
14  * Inherits from:
15  *  - <OpenLayers.Format.SLD.v1>
16  */
17 OpenLayers.Format.SLD.v1_0_0 = OpenLayers.Class(
18     OpenLayers.Format.SLD.v1, {
19     
20     /**
21      * Constant: VERSION
22      * {String} 1.0.0
23      */
24     VERSION: "1.0.0",
25     
26     /**
27      * Property: schemaLocation
28      * {String} http://www.opengis.net/sld
29      *   http://schemas.opengis.net/sld/1.0.0/StyledLayerDescriptor.xsd
30      */
31     schemaLocation: "http://www.opengis.net/sld http://schemas.opengis.net/sld/1.0.0/StyledLayerDescriptor.xsd",
32
33     /**
34      * Constructor: OpenLayers.Format.SLD.v1_0_0
35      * Instances of this class are not created directly.  Use the
36      *     <OpenLayers.Format.SLD> constructor instead.
37      *
38      * Parameters:
39      * options - {Object} An optional object whose properties will be set on
40      *     this instance.
41      */
42     initialize: function(options) {
43         OpenLayers.Format.SLD.v1.prototype.initialize.apply(
44             this, [options]
45         );
46     },
47
48     CLASS_NAME: "OpenLayers.Format.SLD.v1_0_0" 
49
50 });