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

View File

@@ -1,13 +1,13 @@
goog.provide('ol.source.GPX');
goog.require('ol.format.GPX');
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.GPXOptions=} opt_options Options.
* @todo stability experimental
@@ -30,4 +30,4 @@ ol.source.GPX = function(opt_options) {
});
};
goog.inherits(ol.source.GPX, ol.source.VectorFile);
goog.inherits(ol.source.GPX, ol.source.StaticVector);