Sha256: 66167c96da5b9ef0c652f188a9598a1a905ebb32ee6286f06c483d0515e7fb04
Contents?: true
Size: 999 Bytes
Versions: 7
Compression:
Stored size: 999 Bytes
Contents
/* Copyright (c) 2006-2013 by OpenLayers Contributors (see authors.txt for * full list of contributors). Published under the 2-clause BSD license. * See license.txt in the OpenLayers distribution or repository for the * full text of the license. */ /** * @requires OpenLayers/Format.js */ /** * Class: OpenLayers.Format.CSWGetRecords * Default version is 2.0.2. * * Returns: * {<OpenLayers.Format>} A CSWGetRecords format of the given version. */ OpenLayers.Format.CSWGetRecords = function(options) { options = OpenLayers.Util.applyDefaults( options, OpenLayers.Format.CSWGetRecords.DEFAULTS ); var cls = OpenLayers.Format.CSWGetRecords["v"+options.version.replace(/\./g, "_")]; if(!cls) { throw "Unsupported CSWGetRecords version: " + options.version; } return new cls(options); }; /** * Constant: DEFAULTS * {Object} Default properties for the CSWGetRecords format. */ OpenLayers.Format.CSWGetRecords.DEFAULTS = { "version": "2.0.2" };
Version data entries
7 entries across 7 versions & 1 rubygems