OpenLayers.Format.WFST.v1_0_0

A format for creating WFS v1.0.0 transactions.  Create a new instance with the OpenLayers.Format.WFST.v1_0_0 constructor.

Inherits from

Summary
OpenLayers.Format.WFST.v1_0_0A format for creating WFS v1.0.0 transactions.
Properties
version{String} WFS version number.
srsNameInQuery{Boolean} If true the reference system is passed in Query requests via the “srsName” attribute to the “wfs:Query” element, this property defaults to false as it isn’t WFS 1.0.0 compliant.
schemaLocations{Object} Properties are namespace aliases, values are schema locations.
Constructor
OpenLayers.Format.WFST.v1_0_0A class for parsing and generating WFS v1.0.0 transactions.
Functions
readNodeShorthand for applying one of the named readers given the node namespace and local name.
Properties
readersContains public functions, grouped by namespace prefix, that will be applied when a namespaced node is found matching the function name.
writersAs a compliment to the readers property, this structure contains public writing functions grouped by namespace alias and named like the node names they produce.

Properties

version

{String} WFS version number.

srsNameInQuery

{Boolean} If true the reference system is passed in Query requests via the “srsName” attribute to the “wfs:Query” element, this property defaults to false as it isn’t WFS 1.0.0 compliant.

schemaLocations

{Object} Properties are namespace aliases, values are schema locations.

Constructor

OpenLayers.Format.WFST.v1_0_0

A class for parsing and generating WFS v1.0.0 transactions.

Parameters

options{Object} Optional object whose properties will be set on the instance.

Valid options properties

featureType{String} Local (without prefix) feature typeName (required).
featureNS{String} Feature namespace (optional).
featurePrefix{String} Feature namespace alias (optional - only used if featureNS is provided).  Default is ‘feature’.
geometryName{String} Name of geometry attribute.  Default is ‘the_geom’.

Functions

readNode

readNode: function(node,
obj,
first)

Shorthand for applying one of the named readers given the node namespace and local name.  Readers take two args (node, obj) and generally extend or modify the second.

Parameters

node{DOMElement} The node to be read (required).
obj{Object} The object to be modified (optional).
first{Boolean} Should be set to true for the first node read.  This is usually the readNode call in the read method.  Without this being set, auto-configured properties will stick on subsequent reads.

Returns

{Object} The input object, modified (or a new one if none was provided).

Properties

readers

Contains public functions, grouped by namespace prefix, that will be applied when a namespaced node is found matching the function name.  The function will be applied in the scope of this parser with two arguments: the node being read and a context object passed from the parent.

writers

As a compliment to the readers property, this structure contains public writing functions grouped by namespace alias and named like the node names they produce.

readNode: function(node,
obj,
first)
Shorthand for applying one of the named readers given the node namespace and local name.
A class for parsing and generating WFS v1.0.0 transactions.
Write ogc:Filter version 1.0.0.
Superclass for WFST parsers.
Close