@google/earthengine 0.1.407 → 0.1.409
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.
- package/build/browser.js +26920 -0
- package/build/ee_api_js.js +672 -672
- package/build/ee_api_js_debug.js +2017 -1933
- package/build/ee_api_js_npm.js +2040 -1956
- package/build/main.js +26921 -0
- package/package.json +1 -1
- package/src/apiclient.js +1 -1
- package/src/layers/earthenginetilesource.js +1 -2
package/package.json
CHANGED
package/src/apiclient.js
CHANGED
|
@@ -24,7 +24,7 @@ const {trustedResourceUrl} = goog.require('safevalues');
|
|
|
24
24
|
/** @namespace */
|
|
25
25
|
const apiclient = {};
|
|
26
26
|
|
|
27
|
-
const API_CLIENT_VERSION = '0.1.
|
|
27
|
+
const API_CLIENT_VERSION = '0.1.409';
|
|
28
28
|
|
|
29
29
|
exports.VERSION = apiVersion.VERSION;
|
|
30
30
|
exports.API_CLIENT_VERSION = API_CLIENT_VERSION;
|
|
@@ -4,7 +4,6 @@ goog.module.declareLegacyNamespace();
|
|
|
4
4
|
const AbstractTile = goog.require('ee.layers.AbstractTile');
|
|
5
5
|
const AbstractTileSource = goog.require('ee.layers.AbstractTileSource');
|
|
6
6
|
const PriorityPool = goog.require('goog.structs.PriorityPool');
|
|
7
|
-
const Profiler = goog.requireType('ee.data.Profiler');
|
|
8
7
|
const data = goog.require('ee.data');
|
|
9
8
|
const events = goog.require('goog.events');
|
|
10
9
|
|
|
@@ -18,7 +17,7 @@ const EarthEngineTileSource = class extends AbstractTileSource {
|
|
|
18
17
|
/**
|
|
19
18
|
* @param {!data.RawMapId} mapId The EE map ID for fetching this layer's
|
|
20
19
|
* tiles.
|
|
21
|
-
* @param {data.Profiler=} opt_profiler The profiler to send map tile
|
|
20
|
+
* @param {?data.Profiler=} opt_profiler The profiler to send map tile
|
|
22
21
|
* calculation cost to, if any.
|
|
23
22
|
* @param {number=} opt_parallelism The number of map tiles to fetch
|
|
24
23
|
* concurrently.
|