Files
openlayers/src/ol/iview3d.js
2013-12-13 18:04:47 +01:00

18 lines
194 B
JavaScript

goog.provide('ol.IView3D');
/**
* Interface for views.
* @interface
*/
ol.IView3D = function() {
};
/**
* @return {boolean} Is defined.
*/
ol.IView3D.prototype.isDef = function() {
};