Layer hierarchy for renderers.

This commit is contained in:
Tim Schaub
2012-06-20 21:53:19 +02:00
parent 5a31638da8
commit c9c1f79928
3 changed files with 23 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
goog.provide('ol.layer.TileLayer');
goog.require('ol.layer.Layer');
/**
* @constructor
* @extends {ol.layer.Layer}
*/
ol.layer.TileLayer = function() {};
goog.inherits(ol.layer.TileLayer, ol.layer.Layer);