Remove ol.layer.Vector2 and associated renderer

This commit is contained in:
Tim Schaub
2013-10-08 14:12:04 -06:00
parent cd647a1ebc
commit 75b40a60c0
8 changed files with 0 additions and 500 deletions
-1
View File
@@ -1 +0,0 @@
@exportSymbol ol.layer.Vector2
-26
View File
@@ -1,26 +0,0 @@
goog.provide('ol.layer.Vector2');
goog.require('ol.layer.Layer');
goog.require('ol.source.Vector2');
/**
* This is an internal class that will be removed from the API.
* @constructor
* @extends {ol.layer.Layer}
* @param {ol.layer.LayerOptions} options Options.
* @todo stability experimental
*/
ol.layer.Vector2 = function(options) {
goog.base(this, options);
};
goog.inherits(ol.layer.Vector2, ol.layer.Layer);
/**
* @return {ol.source.Vector2} Source.
*/
ol.layer.Vector2.prototype.getVectorSource = function() {
return /** @type {ol.source.Vector2} */ (this.getSource());
};