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