@google/earthengine 0.1.388 → 0.1.390

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -114,13 +114,23 @@ ee.ImageCollection.reset = function() {
114
114
  * Get the URL of a tiled thumbnail for this ImageCollection.
115
115
  * @param {!Object} params Parameters identical to ee.data.getMapId, plus,
116
116
  * optionally:
117
- * - dimensions (a number or pair of numbers in format WIDTHxHEIGHT) Maximum
118
- * dimensions of each thumbnail frame to render, in pixels. If only one
119
- * number is passed, it is used as the maximum, and the other
120
- * dimension is computed by proportional scaling.
121
- * - region (E,S,W,N or GeoJSON) Geospatial region of the image
122
- * to render. By default, the whole image.
123
- * - format (string) Encoding format. Only 'png' or 'jpg' are accepted.
117
+ * <table>
118
+ * <tr>
119
+ * <td><code> dimensions </code> (a number or pair of numbers in
120
+ * format WIDTHxHEIGHT) Maximum dimensions of each thumbnail frame to
121
+ * render, in pixels. If only one number is passed, it is used as the
122
+ * maximum, and the other dimension is computed by proportional
123
+ * scaling.</td>
124
+ * </tr>
125
+ * <tr>
126
+ * <td><code> region </code> (E,S,W,N or GeoJSON) Geospatial region of
127
+ * the image to render. By default, the whole image.</td>
128
+ * </tr>
129
+ * <tr>
130
+ * <td><code> format </code> (string) Encoding format. Only 'png'
131
+ * or 'jpg' are accepted.</td>
132
+ * </tr>
133
+ * </table>
124
134
  * @param {function(string, string=)=} opt_callback An optional
125
135
  * callback which handles the resulting URL string. If not supplied, the
126
136
  * call is made synchronously.
@@ -141,14 +151,25 @@ ee.ImageCollection.prototype.getFilmstripThumbURL = function(params, opt_callbac
141
151
  * Get the URL of an animated thumbnail for this ImageCollection.
142
152
  * @param {!Object} params Parameters identical to ee.data.getMapId, plus,
143
153
  * optionally:
144
- * - dimensions (a number or pair of numbers in format WIDTHxHEIGHT) Maximum
145
- * dimensions of the thumbnail to render, in pixels. If only one
146
- * number is passed, it is used as the maximum, and the other
147
- * dimension is computed by proportional scaling.
148
- * - region (E,S,W,N or GeoJSON) Geospatial region of the image
149
- * to render. By default, the whole image.
150
- * - format (string) Encoding format. Only 'gif' is accepted.
151
- * - framesPerSecond (number) Animation speed.
154
+ * <table>
155
+ * <tr>
156
+ * <td><code> dimensions </code> (a number or pair of numbers in format
157
+ * WIDTHxHEIGHT) Maximum dimensions of the thumbnail to render, in
158
+ * pixels. If only one number is passed, it is used as the maximum, and
159
+ * the other dimension is computed by proportional scaling.</td>
160
+ * </tr>
161
+ * <tr>
162
+ * <td><code> region </code> (E,S,W,N or GeoJSON) Geospatial region of
163
+ * the image to render. By default, the whole image.</td>
164
+ * </tr>
165
+ * <tr>
166
+ * <td><code> format </code> (string) Encoding format. Only 'gif'
167
+ * is accepted.</td>
168
+ * </tr>
169
+ * <tr>
170
+ * <td><code> framesPerSecond </code> (number) Animation speed.</td>
171
+ * </tr>
172
+ * </table>
152
173
  * @param {function(string, string=)=} opt_callback An optional
153
174
  * callback which handles the resulting URL string. If not supplied, the
154
175
  * call is made synchronously.