This change adds a stability value to the api annotation, with 'experimental' as default value. enum, typedef and event annotations are never exportable, but api annotations are needed there to make them appear in the docs. Nested typedefs are no longer inlined recursively, because the resulting tables get too wide with the current template.
14 lines
432 B
JavaScript
14 lines
432 B
JavaScript
goog.provide('ol.TransformFunction');
|
|
|
|
|
|
/**
|
|
* A transform function accepts an array of input coordinate values, an optional
|
|
* output array, and an optional dimension (default should be 2). The function
|
|
* transforms the input coordinate values, populates the output array, and
|
|
* returns the output array.
|
|
*
|
|
* @typedef {function(Array.<number>, Array.<number>=, number=): Array.<number>}
|
|
* @todo api
|
|
*/
|
|
ol.TransformFunction;
|