#802 - giving all classes a constructor that don't currently have one - this for Natural Docs
git-svn-id: http://svn.openlayers.org/trunk/openlayers@3595 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
@@ -9,7 +9,8 @@
|
||||
* @requires OpenLayers/Geometry.js
|
||||
*
|
||||
* Class: OpenLayers.Format.GML
|
||||
* Read/Wite GML.
|
||||
* Read/Wite GML. Create a new instance with the <OpenLayers.Format.GML>
|
||||
* constructor.
|
||||
*
|
||||
* Inherits from:
|
||||
* - <OpenLayers.Format>
|
||||
@@ -65,6 +66,19 @@ OpenLayers.Format.GML.prototype =
|
||||
*/
|
||||
extractAttributes: true,
|
||||
|
||||
|
||||
/**
|
||||
* Constructor: OpenLayers.Format.GML
|
||||
* Create a new parser for GML
|
||||
*
|
||||
* Parameters:
|
||||
* options - {Object} An optional object whose properties will be set on
|
||||
* this instance.
|
||||
*/
|
||||
initialize: function(options) {
|
||||
OpenLayers.Format.prototype.initialize.apply(this, [options]);
|
||||
},
|
||||
|
||||
/**
|
||||
* APIMethod: read
|
||||
* Read data from a string, and return a list of features.
|
||||
|
||||
Reference in New Issue
Block a user