Merge pull request #1781 from twpayne/format-feature

Rename ol.format.Format to ol.format.Feature
This commit is contained in:
Tom Payne
2014-02-28 14:47:19 +01:00
19 changed files with 277 additions and 274 deletions

View File

@@ -2,7 +2,7 @@ goog.provide('ol.format.Polyline');
goog.require('goog.asserts');
goog.require('ol.Feature');
goog.require('ol.format.Text');
goog.require('ol.format.TextFeature');
goog.require('ol.geom.LineString');
goog.require('ol.geom.flat');
goog.require('ol.proj');
@@ -11,12 +11,12 @@ goog.require('ol.proj');
/**
* @constructor
* @extends {ol.format.Text}
* @extends {ol.format.TextFeature}
*/
ol.format.Polyline = function() {
goog.base(this);
};
goog.inherits(ol.format.Polyline, ol.format.Text);
goog.inherits(ol.format.Polyline, ol.format.TextFeature);
/**