OpenLayers JavaScript Mapping Library |
OpenLayers. ClassBase class used to construct all other classes. Includes support for multiple inheritance. This constructor is new in OpenLayers 2.5. At OpenLayers 3.0, the old syntax for creating classes and dealing with inheritance will be removed. To create a new OpenLayers-style class, use the following syntaxvar MyClass = OpenLayers.Class(prototype); To create a new OpenLayers-style class with multiple inheritance, use the following syntax: var MyClass = OpenLayers.Class(Class1, Class2, prototype); OpenLayers. createDeprecated. Old method to create an OpenLayers style class. Use the OpenLayers.Class constructor instead. ReturnsAn OpenLayers class inherit
Deprecated. Old method to inherit from one or more OpenLayers style classes. Use the OpenLayers.Class constructor instead. Parameters
ReturnsAn object prototype |
Deprecated.
OpenLayers.Class.inherit = function ()