Transformed

This commit is contained in:
Tim Schaub
2017-12-11 16:29:33 -07:00
parent 1cdb6a66f0
commit 7f47883c48
737 changed files with 22216 additions and 21609 deletions
+6 -4
View File
@@ -1,6 +1,6 @@
goog.provide('ol.style.TextPlacement');
/**
* @module ol/style/TextPlacement
*/
/**
* Text placement. One of `'point'`, `'line'`. Default is `'point'`. Note that
* `'line'` requires the underlying geometry to be a {@link ol.geom.LineString},
@@ -8,7 +8,9 @@ goog.provide('ol.style.TextPlacement');
* {@link ol.geom.MultiPolygon}.
* @enum {string}
*/
ol.style.TextPlacement = {
var _ol_style_TextPlacement_ = {
POINT: 'point',
LINE: 'line'
};
export default _ol_style_TextPlacement_;