Export ol.style.Text

This commit is contained in:
Éric Lemoine
2013-11-20 15:25:21 +01:00
parent dc49cc4c2f
commit e783703854
3 changed files with 10 additions and 9 deletions

View File

@@ -642,6 +642,15 @@
* @todo stability experimental
*/
/**
* @typedef {Object} ol.style.TextOptions
* @property {string|undefined} font Font.
* @property {string|undefined} text Text.
* @property {string|undefined} textAlign Text alignment.
* @property {string|undefined} textBaseline Text base line.
* @todo stability experimental
*/
/**
* @typedef {Object} ol.tilegrid.TileGridOptions
* @property {number|undefined} minZoom Minimum zoom.

View File

@@ -0,0 +1 @@
@exportClass ol.style.Text ol.style.TextOptions

View File

@@ -1,15 +1,6 @@
goog.provide('ol.style.Text');
/**
* @typedef {{font: (string|undefined),
* text: (string|undefined),
* textAlign: (string|undefined),
* textBaseline: (string|undefined)}}
*/
ol.style.TextOptions;
/**
* @constructor