Merge pull request #817 from tschaub/vector-exports
Proper vector exports to get vector examples working
This commit is contained in:
@@ -308,8 +308,8 @@
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @typedef {Object} ol.layer.VectorLayerOptions
|
* @typedef {Object} ol.layer.VectorLayerOptions
|
||||||
* @property {function(Array.<ol.Feature>):string|
|
* @property {function(Array.<ol.Feature>):string|undefined} transformFeatureInfo
|
||||||
* undefined} getTransformFeatureInfo Function to render an array of
|
* Function to render an array of
|
||||||
* features into feature info markup. If not provided, a comma separated
|
* features into feature info markup. If not provided, a comma separated
|
||||||
* list of the unique ids of the resulting features will be returned.
|
* list of the unique ids of the resulting features will be returned.
|
||||||
* @property {number|undefined} opacity Opacity. 0-1. Default is 1.
|
* @property {number|undefined} opacity Opacity. 0-1. Default is 1.
|
||||||
|
|||||||
@@ -1,4 +1,13 @@
|
|||||||
@exportSymbol ol.geom.GeometryType
|
@exportSymbol ol.geom.GeometryType
|
||||||
|
@exportProperty ol.geom.GeometryType.POINT
|
||||||
|
@exportProperty ol.geom.GeometryType.LINEARRING
|
||||||
|
@exportProperty ol.geom.GeometryType.LINESTRING
|
||||||
|
@exportProperty ol.geom.GeometryType.POLYGON
|
||||||
|
@exportProperty ol.geom.GeometryType.MULTIPOINT
|
||||||
|
@exportProperty ol.geom.GeometryType.MULTILINESTRING
|
||||||
|
@exportProperty ol.geom.GeometryType.MULTIPOLYGON
|
||||||
|
@exportProperty ol.geom.GeometryType.GEOMETRYCOLLECTION
|
||||||
|
|
||||||
@exportSymbol ol.geom.Point
|
@exportSymbol ol.geom.Point
|
||||||
@exportSymbol ol.geom.LineString
|
@exportSymbol ol.geom.LineString
|
||||||
@exportSymbol ol.geom.Polygon
|
@exportSymbol ol.geom.Polygon
|
||||||
|
|||||||
Reference in New Issue
Block a user