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/OWSCommon/v1_0_0.js @ 76

Revision 76, 1.6 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/OWSCommon/v1.js
8 */
9
10/**
11 * Class: OpenLayers.Format.OWSCommon.v1_0_0
12 * Parser for OWS Common version 1.0.0 which can be used by other parsers.
13 * It is not intended to be used on its own.
14 */
15OpenLayers.Format.OWSCommon.v1_0_0 = OpenLayers.Class(OpenLayers.Format.OWSCommon.v1, {
16   
17    /**
18     * Property: namespaces
19     * {Object} Mapping of namespace aliases to namespace URIs.
20     */
21    namespaces: {
22        ows: "http://www.opengis.net/ows/1.0",
23        xlink: "http://www.w3.org/1999/xlink"
24    },   
25   
26    /**
27     * Property: readers
28     * Contains public functions, grouped by namespace prefix, that will
29     *     be applied when a namespaced node is found matching the function
30     *     name.  The function will be applied in the scope of this parser
31     *     with two arguments: the node being read and a context object passed
32     *     from the parent.
33     */
34    readers: {
35        "ows": OpenLayers.Format.OWSCommon.v1.prototype.readers["ows"]
36    },
37
38    /**
39     * Property: writers
40     * As a compliment to the readers property, this structure contains public
41     *     writing functions grouped by namespace alias and named like the
42     *     node names they produce.
43     */
44    writers: {
45        "ows": OpenLayers.Format.OWSCommon.v1.prototype.writers["ows"]
46    },
47   
48    CLASS_NAME: "OpenLayers.Format.OWSCommon.v1_1_0"
49
50});
Note: See TracBrowser for help on using the repository browser.