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/Protocol/WFS/v1_1_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/Protocol/WFS/v1.js
8 * @requires OpenLayers/Format/WFST/v1_1_0.js
9 */
10
11/**
12 * Class: OpenLayers.Protocol.WFS.v1_1_0
13 * A WFS v1.1.0 protocol for vector layers.  Create a new instance with the
14 *     <OpenLayers.Protocol.WFS.v1_1_0> constructor.
15 *
16 * Differences from the v1.0.0 protocol:
17 *  - uses Filter Encoding 1.1.0 instead of 1.0.0
18 *  - uses GML 3 instead of 2 if no format is provided
19 * 
20 * Inherits from:
21 *  - <OpenLayers.Protocol.WFS.v1>
22 */
23OpenLayers.Protocol.WFS.v1_1_0 = OpenLayers.Class(OpenLayers.Protocol.WFS.v1, {
24   
25    /**
26     * Property: version
27     * {String} WFS version number.
28     */
29    version: "1.1.0",
30   
31    /**
32     * Constructor: OpenLayers.Protocol.WFS.v1_1_0
33     * A class for giving layers WFS v1.1.0 protocol.
34     *
35     * Parameters:
36     * options - {Object} Optional object whose properties will be set on the
37     *     instance.
38     *
39     * Valid options properties:
40     * featureType - {String} Local (without prefix) feature typeName (required).
41     * featureNS - {String} Feature namespace (optional).
42     * featurePrefix - {String} Feature namespace alias (optional - only used
43     *     if featureNS is provided).  Default is 'feature'.
44     * geometryName - {String} Name of geometry attribute.  Default is 'the_geom'.
45     */
46   
47    CLASS_NAME: "OpenLayers.Protocol.WFS.v1_1_0"
48});
Note: See TracBrowser for help on using the repository browser.