Rename ol.source.VectorFile to ol.source.StaticVector

This commit is contained in:
Tom Payne
2014-02-20 22:43:04 +01:00
parent e44e59311b
commit 77933d0ab3
10 changed files with 26 additions and 26 deletions
+3 -3
View File
@@ -1,13 +1,13 @@
goog.provide('ol.source.GeoJSON');
goog.require('ol.format.GeoJSON');
goog.require('ol.source.VectorFile');
goog.require('ol.source.StaticVector');
/**
* @constructor
* @extends {ol.source.VectorFile}
* @extends {ol.source.StaticVector}
* @fires {@link ol.source.VectorEvent} ol.source.VectorEvent
* @param {olx.source.GeoJSONOptions=} opt_options Options.
* @todo stability experimental
@@ -31,4 +31,4 @@ ol.source.GeoJSON = function(opt_options) {
});
};
goog.inherits(ol.source.GeoJSON, ol.source.VectorFile);
goog.inherits(ol.source.GeoJSON, ol.source.StaticVector);