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/WFSCapabilities/v1_1_0.js @ 76

Revision 76, 1.0 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/WFSCapabilities/v1.js
8 */
9
10/**
11 * Class: OpenLayers.Format.WFSCapabilities/v1_1_0
12 * Read WFS Capabilities version 1.1.0.
13 *
14 * Inherits from:
15 *  - <OpenLayers.Format.WFSCapabilities>
16 */
17OpenLayers.Format.WFSCapabilities.v1_1_0 = OpenLayers.Class(
18    OpenLayers.Format.WFSCapabilities.v1, {
19   
20    /**
21     * Constructor: OpenLayers.Format.WFSCapabilities.v1_1_0
22     * Create a new parser for WFS capabilities version 1.1.0.
23     *
24     * Parameters:
25     * options - {Object} An optional object whose properties will be set on
26     *     this instance.
27     */
28    initialize: function(options) {
29        OpenLayers.Format.WFSCapabilities.v1.prototype.initialize.apply(
30            this, [options]
31        );
32    },
33
34    CLASS_NAME: "OpenLayers.Format.WFSCapabilities.v1_1_0" 
35
36});
Note: See TracBrowser for help on using the repository browser.