Sha256: 69b0b7c3c0ea5d4d1d55dba9931933d0cde1b326dcb68fac8e2c4f96f74441a5
Contents?: true
Size: 1.27 KB
Versions: 5
Compression:
Stored size: 1.27 KB
Contents
/* Copyright (c) 2006-2011 by OpenLayers Contributors (see authors.txt for * full list of contributors). Published under the Clear BSD license. * See http://svn.openlayers.org/trunk/openlayers/license.txt for the * full text of the license. */ /** * @requires OpenLayers/Format/WFSCapabilities/v1.js */ /** * Class: OpenLayers.Format.WFSCapabilities/v1_1_0 * Read WFS Capabilities version 1.1.0. * * Inherits from: * - <OpenLayers.Format.WFSCapabilities> */ OpenLayers.Format.WFSCapabilities.v1_1_0 = OpenLayers.Class( OpenLayers.Format.WFSCapabilities.v1, { /** * Constructor: OpenLayers.Format.WFSCapabilities.v1_1_0 * Create a new parser for WFS capabilities version 1.1.0. * * Parameters: * options - {Object} An optional object whose properties will be set on * this instance. */ initialize: function(options) { OpenLayers.Format.WFSCapabilities.v1.prototype.initialize.apply( this, [options] ); }, /** * Method: read_cap_DefaultSRS */ read_cap_DefaultSRS: function(obj, node) { var defaultSRS = this.getChildValue(node); if (defaultSRS) { obj.srs = defaultSRS; } }, CLASS_NAME: "OpenLayers.Format.WFSCapabilities.v1_1_0" });
Version data entries
5 entries across 5 versions & 1 rubygems