Bienvenue sur PostGIS.fr

Bienvenue sur PostGIS.fr , le site de la communauté des utilisateurs francophones de PostGIS.

PostGIS ajoute le support d'objets géographique à la base de données PostgreSQL. En effet, PostGIS "spatialise" le serverur PostgreSQL, ce qui permet de l'utiliser comme une base de données SIG.

Maintenu à jour, en fonction de nos disponibilités et des diverses sorties des outils que nous testons, nous vous proposons l'ensemble de nos travaux publiés en langue française.

source: trunk/workshop-routing-foss4g/web/OpenLayers/lib/OpenLayers/Format/SLD/v1_0_0.js @ 76

Revision 76, 1.4 KB checked in by djay, 12 years ago (diff)

Ajout du répertoire web

  • Property svn:executable set to *
Line 
1/* Copyright (c) 2006-2010 by OpenLayers Contributors (see authors.txt for
2 * full list of contributors). Published under the Clear BSD license. 
3 * See http://svn.openlayers.org/trunk/openlayers/license.txt 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 */
18OpenLayers.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    initialize: function(options) {
44        OpenLayers.Format.SLD.v1.prototype.initialize.apply(
45            this, [options]
46        );
47    },
48
49    CLASS_NAME: "OpenLayers.Format.SLD.v1_0_0" 
50
51});
Note: See TracBrowser for help on using the repository browser.