@google/earthengine 1.5.8 → 1.5.11
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 +99 -75
- package/build/ee_api_js.js +28 -28
- package/build/ee_api_js_debug.js +76 -52
- package/build/ee_api_js_npm.js +99 -75
- package/build/main.js +99 -75
- package/package.json +1 -1
- package/src/abstractoverlay.js +36 -11
- package/src/apiclient.js +2 -2
- package/src/batch.js +1 -1
- package/src/eeapiclient/domain_object.ts +2 -2
- package/src/eeapiclient/request_params.ts +2 -2
- package/src/layers/binaryoverlay.js +16 -3
- package/src/layers/imageoverlay.js +25 -10
- package/src/maptilemanager.js +15 -4
package/build/browser.js
CHANGED
|
@@ -1257,8 +1257,8 @@ $jscomp.polyfill("String.prototype.padStart", function(orig) {
|
|
|
1257
1257
|
return $jscomp.stringPadding(opt_padString, targetLength - string.length) + string;
|
|
1258
1258
|
};
|
|
1259
1259
|
}, "es8", "es3");
|
|
1260
|
-
var CLOSURE_TOGGLE_ORDINALS = {GoogFlags__async_throw_on_unicode_to_byte__enable:!1, GoogFlags__client_only_wiz_context_per_component__enable:!1,
|
|
1261
|
-
GoogFlags__use_toggles:!1, GoogFlags__use_user_agent_client_hints__enable:!1, GoogFlags__wiz_enable_native_promise__enable:!1};
|
|
1260
|
+
var CLOSURE_TOGGLE_ORDINALS = {GoogFlags__async_throw_on_unicode_to_byte__enable:!1, GoogFlags__client_only_wiz_context_per_component__enable:!1, GoogFlags__client_only_wiz_sink_lazy_tsx_execution__enable:!1, GoogFlags__client_only_wiz_ve_logging__enable:!1, GoogFlags__jspb_disallow_message_tojson__enable:!1, GoogFlags__override_disable_toggles:!1, GoogFlags__testonly_debug_flag__enable:!1, GoogFlags__testonly_disabled_flag__enable:!1, GoogFlags__testonly_stable_flag__disable:!1, GoogFlags__testonly_staging_flag__disable:!1,
|
|
1261
|
+
GoogFlags__use_toggles:!1, GoogFlags__use_user_agent_client_hints__enable:!1, GoogFlags__web_storage_is_available_cache_once__enable:!1, GoogFlags__wiz_enable_native_promise__enable:!1};
|
|
1262
1262
|
/*
|
|
1263
1263
|
|
|
1264
1264
|
Copyright The Closure Library Authors.
|
|
@@ -1306,6 +1306,11 @@ goog.readToggleInternalDoNotCallDirectly = function(name) {
|
|
|
1306
1306
|
};
|
|
1307
1307
|
goog.TOGGLE_VAR_ = "_F_toggles";
|
|
1308
1308
|
goog.TOGGLES_ = goog.global[goog.TOGGLE_VAR_] || [];
|
|
1309
|
+
goog.GENDERED_MESSAGES_ENABLED = !0;
|
|
1310
|
+
goog.GrammaticalGender_ = {OTHER:0, MASCULINE:1, FEMININE:2, NEUTER:3};
|
|
1311
|
+
goog.GRAMMATICAL_GENDER_MAP_ = {FEMININE:goog.GrammaticalGender_.FEMININE, MASCULINE:goog.GrammaticalGender_.MASCULINE, NEUTER:goog.GrammaticalGender_.NEUTER};
|
|
1312
|
+
goog.viewerGrammaticalGender_ = goog.GRAMMATICAL_GENDER_MAP_[goog.GENDERED_MESSAGES_ENABLED && goog.global._F_VIEWER_GRAMMATICAL_GENDER] || goog.GrammaticalGender_.OTHER;
|
|
1313
|
+
goog.msgKind = {MASCULINE:goog.viewerGrammaticalGender_ === goog.GrammaticalGender_.MASCULINE, FEMININE:goog.viewerGrammaticalGender_ === goog.GrammaticalGender_.FEMININE, NEUTER:goog.viewerGrammaticalGender_ === goog.GrammaticalGender_.NEUTER};
|
|
1309
1314
|
goog.LEGACY_NAMESPACE_OBJECT_ = goog.global;
|
|
1310
1315
|
goog.provide = function(name) {
|
|
1311
1316
|
if (goog.isInModuleLoader_()) {
|
|
@@ -6365,6 +6370,10 @@ goog.disposeAll = module$contents$goog$disposeAll_disposeAll;
|
|
|
6365
6370
|
goog.disposable = {};
|
|
6366
6371
|
goog.disposable.IDisposable = function() {
|
|
6367
6372
|
};
|
|
6373
|
+
goog.disposable.IDisposable.prototype.dispose = function() {
|
|
6374
|
+
};
|
|
6375
|
+
goog.disposable.IDisposable.prototype.isDisposed = function() {
|
|
6376
|
+
};
|
|
6368
6377
|
goog.Disposable = function() {
|
|
6369
6378
|
goog.Disposable.MONITORING_MODE != goog.Disposable.MonitoringMode.OFF && (goog.Disposable.INCLUDE_STACK_ON_CREATION && (this.creationStack = Error().stack), goog.Disposable.instances_[goog.getUid(this)] = this);
|
|
6370
6379
|
this.disposed_ = this.disposed_;
|
|
@@ -6510,9 +6519,10 @@ module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_user_agent_cl
|
|
|
6510
6519
|
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__async_throw_on_unicode_to_byte__enable = !1;
|
|
6511
6520
|
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__client_only_wiz_ve_logging__enable = !1;
|
|
6512
6521
|
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__client_only_wiz_context_per_component__enable = !1;
|
|
6513
|
-
module$exports$closure$flags$flags$2etoggles.
|
|
6522
|
+
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__client_only_wiz_sink_lazy_tsx_execution__enable = !1;
|
|
6514
6523
|
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__wiz_enable_native_promise__enable = !1;
|
|
6515
6524
|
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__jspb_disallow_message_tojson__enable = !1;
|
|
6525
|
+
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__web_storage_is_available_cache_once__enable = !1;
|
|
6516
6526
|
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__testonly_disabled_flag__enable = !1;
|
|
6517
6527
|
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__testonly_debug_flag__enable = !1;
|
|
6518
6528
|
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__testonly_staging_flag__disable = !1;
|
|
@@ -6523,9 +6533,10 @@ goog.flags.USE_USER_AGENT_CLIENT_HINTS = module$exports$closure$flags$flags$2eto
|
|
|
6523
6533
|
goog.flags.ASYNC_THROW_ON_UNICODE_TO_BYTE = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__async_throw_on_unicode_to_byte__enable : goog.readFlagInternalDoNotUseOrElse(899588437, !1);
|
|
6524
6534
|
goog.flags.CLIENT_ONLY_WIZ_VE_LOGGING = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__client_only_wiz_ve_logging__enable : goog.readFlagInternalDoNotUseOrElse(725719775, !1);
|
|
6525
6535
|
goog.flags.CLIENT_ONLY_WIZ_CONTEXT_PER_COMPONENT = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? goog.DEBUG || module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__client_only_wiz_context_per_component__enable : goog.readFlagInternalDoNotUseOrElse(513659523, goog.DEBUG);
|
|
6526
|
-
goog.flags.
|
|
6536
|
+
goog.flags.CLIENT_ONLY_WIZ_SINK_LAZY_TSX_EXECUTION = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__client_only_wiz_sink_lazy_tsx_execution__enable : goog.readFlagInternalDoNotUseOrElse(568333945, !1);
|
|
6527
6537
|
goog.flags.WIZ_ENABLE_NATIVE_PROMISE = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? goog.DEBUG || module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__wiz_enable_native_promise__enable : goog.readFlagInternalDoNotUseOrElse(651175828, goog.DEBUG);
|
|
6528
6538
|
goog.flags.JSPB_DISALLOW_MESSAGE_TOJSON = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? goog.DEBUG || module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__jspb_disallow_message_tojson__enable : goog.readFlagInternalDoNotUseOrElse(722764542, goog.DEBUG);
|
|
6539
|
+
goog.flags.WEB_STORAGE_IS_AVAILABLE_CACHE_ONCE = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__web_storage_is_available_cache_once__enable : goog.readFlagInternalDoNotUseOrElse(1981196515, !1);
|
|
6529
6540
|
goog.flags.TESTONLY_DISABLED_FLAG = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__testonly_disabled_flag__enable : goog.readFlagInternalDoNotUseOrElse(2147483644, !1);
|
|
6530
6541
|
goog.flags.TESTONLY_DEBUG_FLAG = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? goog.DEBUG || module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__testonly_debug_flag__enable : goog.readFlagInternalDoNotUseOrElse(2147483645, goog.DEBUG);
|
|
6531
6542
|
goog.flags.TESTONLY_STAGING_FLAG = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? goog.FLAGS_STAGING_DEFAULT && (module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__override_disable_toggles || !module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__testonly_staging_flag__disable) : goog.readFlagInternalDoNotUseOrElse(2147483646, module$contents$goog$flags_STAGING);
|
|
@@ -9023,7 +9034,11 @@ goog.structs.Set.prototype[Symbol.iterator] = function() {
|
|
|
9023
9034
|
goog.structs.Set.prototype.setSizeInternal_ = function(newSize) {
|
|
9024
9035
|
this.size = newSize;
|
|
9025
9036
|
};
|
|
9026
|
-
var ee = {
|
|
9037
|
+
var ee = {}, ee_root = {third_party:{}};
|
|
9038
|
+
ee_root.third_party.earthengine_api = {};
|
|
9039
|
+
ee_root.third_party.earthengine_api.javascript = {};
|
|
9040
|
+
ee_root.third_party.earthengine_api.javascript.abstractoverlay = {};
|
|
9041
|
+
ee_root.third_party.earthengine_api.javascript.abstractoverlay.AbstractOverlay = function(url, mapId, token, opt_init, opt_profiler) {
|
|
9027
9042
|
goog.events.EventTarget.call(this);
|
|
9028
9043
|
this.mapId = mapId;
|
|
9029
9044
|
this.token = token;
|
|
@@ -9031,26 +9046,28 @@ var ee = {AbstractOverlay:function(url, mapId, token, opt_init, opt_profiler) {
|
|
|
9031
9046
|
this.tilesFailed = new goog.structs.Set();
|
|
9032
9047
|
this.tileCounter = 0;
|
|
9033
9048
|
this.url = url;
|
|
9034
|
-
}
|
|
9035
|
-
goog.inherits(
|
|
9036
|
-
goog.exportSymbol("
|
|
9037
|
-
|
|
9038
|
-
|
|
9049
|
+
};
|
|
9050
|
+
goog.inherits(ee_root.third_party.earthengine_api.javascript.abstractoverlay.AbstractOverlay, goog.events.EventTarget);
|
|
9051
|
+
goog.exportSymbol("ee_root.third_party.earthengine_api.javascript.abstractoverlay.AbstractOverlay", ee_root.third_party.earthengine_api.javascript.abstractoverlay.AbstractOverlay);
|
|
9052
|
+
ee_root.third_party.earthengine_api.javascript.abstractoverlay.AbstractOverlay.EventType = {TILE_LOADED:"tileevent"};
|
|
9053
|
+
ee_root.third_party.earthengine_api.javascript.abstractoverlay.AbstractOverlay.prototype.getTileId = function(coord, zoom) {
|
|
9039
9054
|
var maxCoord = 1 << zoom, x = coord.x % maxCoord;
|
|
9040
9055
|
x < 0 && (x += maxCoord);
|
|
9041
9056
|
return [this.mapId, zoom, x, coord.y].join("/");
|
|
9042
9057
|
};
|
|
9043
|
-
|
|
9058
|
+
ee_root.third_party.earthengine_api.javascript.abstractoverlay.AbstractOverlay.prototype.getLoadingTilesCount = function() {
|
|
9044
9059
|
return this.tilesLoading.length;
|
|
9045
9060
|
};
|
|
9046
|
-
|
|
9061
|
+
ee_root.third_party.earthengine_api.javascript.abstractoverlay.AbstractOverlay.prototype.getFailedTilesCount = function() {
|
|
9047
9062
|
return this.tilesFailed.getCount();
|
|
9048
9063
|
};
|
|
9049
|
-
|
|
9050
|
-
goog.events.Event.call(this,
|
|
9064
|
+
ee_root.third_party.earthengine_api.javascript.abstractoverlay.TileEvent = function(count) {
|
|
9065
|
+
goog.events.Event.call(this, ee_root.third_party.earthengine_api.javascript.abstractoverlay.AbstractOverlay.EventType.TILE_LOADED);
|
|
9051
9066
|
this.count = count;
|
|
9052
9067
|
};
|
|
9053
|
-
goog.inherits(
|
|
9068
|
+
goog.inherits(ee_root.third_party.earthengine_api.javascript.abstractoverlay.TileEvent, goog.events.Event);
|
|
9069
|
+
ee.AbstractOverlay = ee_root.third_party.earthengine_api.javascript.abstractoverlay.AbstractOverlay;
|
|
9070
|
+
ee.TileEvent = ee_root.third_party.earthengine_api.javascript.abstractoverlay.TileEvent;
|
|
9054
9071
|
var module$exports$eeapiclient$ee_api_client = {}, module$contents$eeapiclient$ee_api_client_module = module$contents$eeapiclient$ee_api_client_module || {id:"third_party/earthengine_api/javascript/v1/ee_api_client.closure.js"};
|
|
9055
9072
|
module$exports$eeapiclient$ee_api_client.IAuditLogConfigLogTypeEnum = function() {
|
|
9056
9073
|
};
|
|
@@ -19298,7 +19315,7 @@ var $jscomp$templatelit$m1153655765$99 = $jscomp.createTemplateTagFirstArg(["htt
|
|
|
19298
19315
|
ee.apiclient = {};
|
|
19299
19316
|
var module$contents$ee$apiclient_apiclient = {};
|
|
19300
19317
|
ee.apiclient.VERSION = module$exports$ee$apiVersion.V1;
|
|
19301
|
-
ee.apiclient.API_CLIENT_VERSION = "1.5.
|
|
19318
|
+
ee.apiclient.API_CLIENT_VERSION = "1.5.11";
|
|
19302
19319
|
ee.apiclient.NULL_VALUE = module$exports$eeapiclient$domain_object.NULL_VALUE;
|
|
19303
19320
|
ee.apiclient.PromiseRequestService = module$exports$eeapiclient$promise_request_service.PromiseRequestService;
|
|
19304
19321
|
ee.apiclient.MakeRequestParams = module$contents$eeapiclient$request_params_MakeRequestParams;
|
|
@@ -19596,8 +19613,8 @@ module$contents$ee$apiclient_apiclient.send = function(path, params, callback, m
|
|
|
19596
19613
|
var profileHookAtCallTime = module$contents$ee$apiclient_apiclient.profileHook_, contentType = "application/x-www-form-urlencoded";
|
|
19597
19614
|
body && (contentType = "application/json", method && method.startsWith("multipart") && (contentType = method, method = "POST"));
|
|
19598
19615
|
method = method || "POST";
|
|
19599
|
-
var headers = {"Content-Type":contentType}, version = "1.5.
|
|
19600
|
-
version === "1.5.
|
|
19616
|
+
var headers = {"Content-Type":contentType}, version = "1.5.11";
|
|
19617
|
+
version === "1.5.11" && (version = "latest");
|
|
19601
19618
|
headers[module$contents$ee$apiclient_apiclient.API_CLIENT_VERSION_HEADER] = "ee-js/" + version;
|
|
19602
19619
|
var authToken = module$contents$ee$apiclient_apiclient.getAuthToken();
|
|
19603
19620
|
if (authToken != null) {
|
|
@@ -24093,7 +24110,7 @@ module$contents$ee$batch_Export.prefixImageFormatOptions_ = function(taskConfig,
|
|
|
24093
24110
|
var $jscomp$destructuring$var59 = (0,$jscomp.makeIterator)($jscomp$key$1827622838$35$.value), key = $jscomp$destructuring$var59.next().value, value = $jscomp$destructuring$var59.next().value;
|
|
24094
24111
|
if (!module$contents$goog$array_contains(validOptionKeys, key)) {
|
|
24095
24112
|
var validKeysMsg = validOptionKeys.join(", ");
|
|
24096
|
-
throw Error('"' + key + '" is not a valid option, the image format "' + imageFormat + '""may have the following options: ' + (validKeysMsg + '".'));
|
|
24113
|
+
throw Error('"' + key + '" is not a valid option, the image format "' + imageFormat + '" "may have the following options: ' + (validKeysMsg + '".'));
|
|
24097
24114
|
}
|
|
24098
24115
|
var prefixedKey = prefix + key[0].toUpperCase() + key.substring(1);
|
|
24099
24116
|
Array.isArray(value) ? prefixedOptions[prefixedKey] = value.join() : prefixedOptions[prefixedKey] = value;
|
|
@@ -24752,12 +24769,12 @@ ee.makeClass_ = function(name) {
|
|
|
24752
24769
|
};
|
|
24753
24770
|
ee.Function.registerPromoter(ee.promote_);
|
|
24754
24771
|
ee.FloatTileOverlay = function(url, mapId, token) {
|
|
24755
|
-
|
|
24772
|
+
ee_root.third_party.earthengine_api.javascript.abstractoverlay.AbstractOverlay.call(this, url, mapId, token);
|
|
24756
24773
|
this.tileSize = new google.maps.Size(ee.FloatTileOverlay.TILE_EDGE_LENGTH, ee.FloatTileOverlay.TILE_EDGE_LENGTH);
|
|
24757
24774
|
this.floatTiles_ = new goog.structs.Map();
|
|
24758
24775
|
this.floatTileDivs_ = new goog.structs.Map();
|
|
24759
24776
|
};
|
|
24760
|
-
$jscomp.inherits(ee.FloatTileOverlay,
|
|
24777
|
+
$jscomp.inherits(ee.FloatTileOverlay, ee_root.third_party.earthengine_api.javascript.abstractoverlay.AbstractOverlay);
|
|
24761
24778
|
ee.FloatTileOverlay.prototype.getTile = function(coord, zoom, ownerDocument) {
|
|
24762
24779
|
var tileId = this.getTileId(coord, zoom), src = [this.url, tileId].join("/") + "?token=" + this.token, uniqueTileId = [tileId, this.tileCounter, this.token].join("/");
|
|
24763
24780
|
this.tilesLoading.push(uniqueTileId);
|
|
@@ -24799,11 +24816,11 @@ ee.FloatTileOverlay.prototype.getLoadedFloatTilesCount = function() {
|
|
|
24799
24816
|
return this.floatTiles_.getCount();
|
|
24800
24817
|
};
|
|
24801
24818
|
ee.FloatTileOverlay.prototype.dispatchTileEvent_ = function() {
|
|
24802
|
-
this.dispatchEvent(new
|
|
24819
|
+
this.dispatchEvent(new ee_root.third_party.earthengine_api.javascript.abstractoverlay.TileEvent(this.tilesLoading.length));
|
|
24803
24820
|
};
|
|
24804
24821
|
ee.FloatTileOverlay.prototype.disposeInternal = function() {
|
|
24805
24822
|
this.floatTileDivs_ = this.floatTiles_ = null;
|
|
24806
|
-
|
|
24823
|
+
ee_root.third_party.earthengine_api.javascript.abstractoverlay.AbstractOverlay.prototype.disposeInternal.call(this);
|
|
24807
24824
|
};
|
|
24808
24825
|
goog.exportSymbol("ee.FloatTileOverlay", ee.FloatTileOverlay);
|
|
24809
24826
|
ee.FloatTileOverlay.TILE_EDGE_LENGTH = 256;
|
|
@@ -26059,35 +26076,37 @@ var module$exports$ee$layers$AbstractTileSource = function() {
|
|
|
26059
26076
|
goog.Disposable.call(this);
|
|
26060
26077
|
};
|
|
26061
26078
|
$jscomp.inherits(module$exports$ee$layers$AbstractTileSource, goog.Disposable);
|
|
26062
|
-
|
|
26079
|
+
ee_root.third_party.earthengine_api.javascript.layers = {};
|
|
26080
|
+
ee_root.third_party.earthengine_api.javascript.layers.binaryoverlay = {};
|
|
26081
|
+
ee_root.third_party.earthengine_api.javascript.layers.binaryoverlay.BinaryOverlay = function(tileSource, opt_options) {
|
|
26063
26082
|
ee.layers.AbstractOverlay.call(this, tileSource, opt_options);
|
|
26064
26083
|
this.buffersByCoord_ = new goog.structs.Map();
|
|
26065
26084
|
this.divsByCoord_ = new goog.structs.Map();
|
|
26066
26085
|
};
|
|
26067
|
-
$jscomp.inherits(
|
|
26068
|
-
|
|
26069
|
-
var tile = new
|
|
26086
|
+
$jscomp.inherits(ee_root.third_party.earthengine_api.javascript.layers.binaryoverlay.BinaryOverlay, ee.layers.AbstractOverlay);
|
|
26087
|
+
ee_root.third_party.earthengine_api.javascript.layers.binaryoverlay.BinaryOverlay.prototype.createTile = function(coord, zoom, ownerDocument, uniqueId) {
|
|
26088
|
+
var tile = new ee_root.third_party.earthengine_api.javascript.layers.binaryoverlay.BinaryTile(coord, zoom, ownerDocument, uniqueId);
|
|
26070
26089
|
this.handler.listen(tile, ee.layers.AbstractTile.EventType.STATUS_CHANGED, function() {
|
|
26071
26090
|
tile.getStatus() == ee.layers.AbstractTile.Status.LOADED && (this.buffersByCoord_.set(coord, new Float32Array(tile.buffer_)), this.divsByCoord_.set(coord, tile.div));
|
|
26072
26091
|
});
|
|
26073
26092
|
return tile;
|
|
26074
26093
|
};
|
|
26075
|
-
|
|
26094
|
+
ee_root.third_party.earthengine_api.javascript.layers.binaryoverlay.BinaryOverlay.prototype.getBuffersByCoord = function() {
|
|
26076
26095
|
return this.buffersByCoord_;
|
|
26077
26096
|
};
|
|
26078
|
-
|
|
26097
|
+
ee_root.third_party.earthengine_api.javascript.layers.binaryoverlay.BinaryOverlay.prototype.getDivsByCoord = function() {
|
|
26079
26098
|
return this.divsByCoord_;
|
|
26080
26099
|
};
|
|
26081
|
-
|
|
26100
|
+
ee_root.third_party.earthengine_api.javascript.layers.binaryoverlay.BinaryOverlay.prototype.disposeInternal = function() {
|
|
26082
26101
|
ee.layers.AbstractOverlay.prototype.disposeInternal.call(this);
|
|
26083
26102
|
this.divsByCoord_ = this.buffersByCoord_ = null;
|
|
26084
26103
|
};
|
|
26085
|
-
goog.exportSymbol("
|
|
26086
|
-
|
|
26104
|
+
goog.exportSymbol("ee_root.third_party.earthengine_api.javascript.layers.binaryoverlay.BinaryOverlay", ee_root.third_party.earthengine_api.javascript.layers.binaryoverlay.BinaryOverlay);
|
|
26105
|
+
ee_root.third_party.earthengine_api.javascript.layers.binaryoverlay.BinaryTile = function(coord, zoom, ownerDocument, uniqueId) {
|
|
26087
26106
|
ee.layers.AbstractTile.call(this, coord, zoom, ownerDocument, uniqueId);
|
|
26088
26107
|
};
|
|
26089
|
-
$jscomp.inherits(
|
|
26090
|
-
|
|
26108
|
+
$jscomp.inherits(ee_root.third_party.earthengine_api.javascript.layers.binaryoverlay.BinaryTile, ee.layers.AbstractTile);
|
|
26109
|
+
ee_root.third_party.earthengine_api.javascript.layers.binaryoverlay.BinaryTile.prototype.finishLoad = function() {
|
|
26091
26110
|
var reader = new goog.fs.FileReader();
|
|
26092
26111
|
reader.listen(goog.fs.FileReader.EventType.LOAD_END, function() {
|
|
26093
26112
|
this.buffer_ = reader.getResult();
|
|
@@ -26095,6 +26114,8 @@ ee.layers.BinaryTile.prototype.finishLoad = function() {
|
|
|
26095
26114
|
}, void 0, this);
|
|
26096
26115
|
reader.readAsArrayBuffer(this.sourceData);
|
|
26097
26116
|
};
|
|
26117
|
+
ee.layers.BinaryOverlay = ee_root.third_party.earthengine_api.javascript.layers.binaryoverlay.BinaryOverlay;
|
|
26118
|
+
ee.layers.BinaryTile = ee_root.third_party.earthengine_api.javascript.layers.binaryoverlay.BinaryTile;
|
|
26098
26119
|
goog.net.ImageLoader = function(opt_parent) {
|
|
26099
26120
|
goog.events.EventTarget.call(this);
|
|
26100
26121
|
this.imageIdToRequestMap_ = {};
|
|
@@ -26157,22 +26178,23 @@ goog.net.ImageLoader.prototype.disposeInternal = function() {
|
|
|
26157
26178
|
module$contents$goog$dispose_dispose(this.handler_);
|
|
26158
26179
|
goog.net.ImageLoader.superClass_.disposeInternal.call(this);
|
|
26159
26180
|
};
|
|
26160
|
-
|
|
26181
|
+
ee_root.third_party.earthengine_api.javascript.layers.imageoverlay = {};
|
|
26182
|
+
ee_root.third_party.earthengine_api.javascript.layers.imageoverlay.ImageOverlay = function(tileSource, opt_options) {
|
|
26161
26183
|
ee.layers.AbstractOverlay.call(this, tileSource, opt_options);
|
|
26162
26184
|
};
|
|
26163
|
-
$jscomp.inherits(
|
|
26164
|
-
|
|
26165
|
-
return new
|
|
26185
|
+
$jscomp.inherits(ee_root.third_party.earthengine_api.javascript.layers.imageoverlay.ImageOverlay, ee.layers.AbstractOverlay);
|
|
26186
|
+
ee_root.third_party.earthengine_api.javascript.layers.imageoverlay.ImageOverlay.prototype.createTile = function(coord, zoom, ownerDocument, uniqueId) {
|
|
26187
|
+
return new ee_root.third_party.earthengine_api.javascript.layers.imageoverlay.ImageTile(coord, zoom, ownerDocument, uniqueId);
|
|
26166
26188
|
};
|
|
26167
|
-
goog.exportSymbol("
|
|
26168
|
-
|
|
26189
|
+
goog.exportSymbol("ee_root.third_party.earthengine_api.javascript.layers.imageoverlay.ImageOverlay", ee_root.third_party.earthengine_api.javascript.layers.imageoverlay.ImageOverlay);
|
|
26190
|
+
ee_root.third_party.earthengine_api.javascript.layers.imageoverlay.ImageTile = function(coord, zoom, ownerDocument, uniqueId) {
|
|
26169
26191
|
ee.layers.AbstractTile.call(this, coord, zoom, ownerDocument, uniqueId);
|
|
26170
|
-
this.renderer =
|
|
26192
|
+
this.renderer = ee_root.third_party.earthengine_api.javascript.layers.imageoverlay.ImageTile.defaultRenderer_;
|
|
26171
26193
|
this.imageLoaderListenerKey_ = this.imageLoader_ = this.imageEl = null;
|
|
26172
26194
|
this.objectUrl_ = "";
|
|
26173
26195
|
};
|
|
26174
|
-
$jscomp.inherits(
|
|
26175
|
-
|
|
26196
|
+
$jscomp.inherits(ee_root.third_party.earthengine_api.javascript.layers.imageoverlay.ImageTile, ee.layers.AbstractTile);
|
|
26197
|
+
ee_root.third_party.earthengine_api.javascript.layers.imageoverlay.ImageTile.prototype.finishLoad = function() {
|
|
26176
26198
|
try {
|
|
26177
26199
|
var safeUrl = module$contents$safevalues$builders$url_builders_objectUrlFromSafeSource(this.sourceData);
|
|
26178
26200
|
this.objectUrl_ = module$contents$safevalues$internals$url_impl_unwrapUrl(safeUrl);
|
|
@@ -26182,23 +26204,25 @@ ee.layers.ImageTile.prototype.finishLoad = function() {
|
|
|
26182
26204
|
}
|
|
26183
26205
|
this.imageLoader_ = new goog.net.ImageLoader();
|
|
26184
26206
|
this.imageLoader_.addImage(this.div.id + "-image", imageUrl);
|
|
26185
|
-
this.imageLoaderListenerKey_ = goog.events.listenOnce(this.imageLoader_,
|
|
26207
|
+
this.imageLoaderListenerKey_ = goog.events.listenOnce(this.imageLoader_, ee_root.third_party.earthengine_api.javascript.layers.imageoverlay.ImageTile.IMAGE_LOADER_EVENTS_, function(event) {
|
|
26186
26208
|
event.type == goog.events.EventType.LOAD ? (this.imageEl = event.target, ee.layers.AbstractTile.prototype.finishLoad.call(this)) : this.retryLoad();
|
|
26187
26209
|
}, void 0, this);
|
|
26188
26210
|
this.imageLoader_.start();
|
|
26189
26211
|
};
|
|
26190
|
-
|
|
26212
|
+
ee_root.third_party.earthengine_api.javascript.layers.imageoverlay.ImageTile.prototype.cancelLoad = function() {
|
|
26191
26213
|
ee.layers.AbstractTile.prototype.cancelLoad.call(this);
|
|
26192
26214
|
this.imageLoader_ && (goog.events.unlistenByKey(this.imageLoaderListenerKey_), module$contents$goog$dispose_dispose(this.imageLoader_));
|
|
26193
26215
|
};
|
|
26194
|
-
|
|
26216
|
+
ee_root.third_party.earthengine_api.javascript.layers.imageoverlay.ImageTile.prototype.disposeInternal = function() {
|
|
26195
26217
|
ee.layers.AbstractTile.prototype.disposeInternal.call(this);
|
|
26196
26218
|
this.objectUrl_ && URL.revokeObjectURL(this.objectUrl_);
|
|
26197
26219
|
};
|
|
26198
|
-
|
|
26220
|
+
ee_root.third_party.earthengine_api.javascript.layers.imageoverlay.ImageTile.defaultRenderer_ = function(tile) {
|
|
26199
26221
|
tile.div.appendChild(tile.imageEl);
|
|
26200
26222
|
};
|
|
26201
|
-
|
|
26223
|
+
ee_root.third_party.earthengine_api.javascript.layers.imageoverlay.ImageTile.IMAGE_LOADER_EVENTS_ = [goog.events.EventType.LOAD, goog.net.EventType.ABORT, goog.net.EventType.ERROR];
|
|
26224
|
+
ee.layers.ImageOverlay = ee_root.third_party.earthengine_api.javascript.layers.imageoverlay.ImageOverlay;
|
|
26225
|
+
ee.layers.ImageTile = ee_root.third_party.earthengine_api.javascript.layers.imageoverlay.ImageTile;
|
|
26202
26226
|
goog.string.path = {};
|
|
26203
26227
|
goog.string.path.baseName = function(path) {
|
|
26204
26228
|
var i = path.lastIndexOf("/") + 1;
|
|
@@ -26883,7 +26907,7 @@ ee.MapTileManager.TokenPool_.prototype.objectCanBeReused = function(obj) {
|
|
|
26883
26907
|
return !obj.isDisposed() && !obj.isActive();
|
|
26884
26908
|
};
|
|
26885
26909
|
ee.MapLayerOverlay = function(url, mapId, token, init, opt_profiler) {
|
|
26886
|
-
|
|
26910
|
+
ee_root.third_party.earthengine_api.javascript.abstractoverlay.AbstractOverlay.call(this, url, mapId, token, init, opt_profiler);
|
|
26887
26911
|
this.minZoom = init.minZoom || 0;
|
|
26888
26912
|
this.maxZoom = init.maxZoom || 20;
|
|
26889
26913
|
if (!window.google || !window.google.maps) {
|
|
@@ -26897,15 +26921,15 @@ ee.MapLayerOverlay = function(url, mapId, token, init, opt_profiler) {
|
|
|
26897
26921
|
this.visible_ = !0;
|
|
26898
26922
|
this.profiler_ = opt_profiler || null;
|
|
26899
26923
|
};
|
|
26900
|
-
$jscomp.inherits(ee.MapLayerOverlay,
|
|
26924
|
+
$jscomp.inherits(ee.MapLayerOverlay, ee_root.third_party.earthengine_api.javascript.abstractoverlay.AbstractOverlay);
|
|
26901
26925
|
ee.MapLayerOverlay.prototype.addTileCallback = function(callback) {
|
|
26902
|
-
return goog.events.listen(this,
|
|
26926
|
+
return goog.events.listen(this, ee_root.third_party.earthengine_api.javascript.abstractoverlay.AbstractOverlay.EventType.TILE_LOADED, callback);
|
|
26903
26927
|
};
|
|
26904
26928
|
ee.MapLayerOverlay.prototype.removeTileCallback = function(callbackId) {
|
|
26905
26929
|
goog.events.unlistenByKey(callbackId);
|
|
26906
26930
|
};
|
|
26907
26931
|
ee.MapLayerOverlay.prototype.dispatchTileEvent_ = function() {
|
|
26908
|
-
this.dispatchEvent(new
|
|
26932
|
+
this.dispatchEvent(new ee_root.third_party.earthengine_api.javascript.abstractoverlay.TileEvent(this.tilesLoading.length));
|
|
26909
26933
|
};
|
|
26910
26934
|
ee.MapLayerOverlay.prototype.getTile = function(coord, zoom, ownerDocument) {
|
|
26911
26935
|
var maxCoord;
|
|
@@ -27115,29 +27139,29 @@ ee.data.Profiler.Format.prototype.toString = function() {
|
|
|
27115
27139
|
ee.data.Profiler.Format.TEXT = new ee.data.Profiler.Format("text");
|
|
27116
27140
|
ee.data.Profiler.Format.JSON = new ee.data.Profiler.Format("json");
|
|
27117
27141
|
(function() {
|
|
27118
|
-
var exportedFnInfo = {}, orderedFnNames = "ee.ApiFunction.
|
|
27119
|
-
orderedParamLists = [["name"
|
|
27120
|
-
"collection opt_description opt_assetId opt_maxFeaturesPerTile opt_thinningStrategy opt_thinningRanking opt_zOrderRanking opt_priority".split(" "), "collection opt_description opt_folder opt_fileNamePrefix opt_framesPerSecond opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_maxFrames opt_priority".split(" "), "collection opt_description opt_folder opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices opt_priority".split(" "), "
|
|
27121
|
-
|
|
27122
|
-
"
|
|
27123
|
-
["max", "opt_property", "opt_ascending"], ["
|
|
27124
|
-
["
|
|
27125
|
-
["
|
|
27126
|
-
["
|
|
27127
|
-
["json"], ["json"], ["opt_dict"], "opt_baseurl opt_tileurl opt_successCallback opt_errorCallback opt_xsrfToken opt_project".split(" "), [], ["func", "var_args"], [], [], ["
|
|
27128
|
-
["
|
|
27129
|
-
"
|
|
27130
|
-
"opt_callback"], ["
|
|
27131
|
-
["
|
|
27132
|
-
[ee.ApiFunction.
|
|
27133
|
-
module$contents$ee$batch_Export.
|
|
27134
|
-
ee.ComputedObject.prototype.evaluate, ee.ComputedObject.prototype.
|
|
27135
|
-
ee.data.
|
|
27136
|
-
ee.data.
|
|
27137
|
-
ee.
|
|
27138
|
-
ee.Filter
|
|
27139
|
-
ee.
|
|
27140
|
-
ee.ImageCollection.prototype.
|
|
27142
|
+
var exportedFnInfo = {}, orderedFnNames = "ee.ApiFunction._apply ee.ApiFunction.lookup ee.ApiFunction._call ee.batch.Export.table.toBigQuery ee.batch.Export.video.toCloudStorage ee.batch.Export.image.toCloudStorage ee.batch.Export.table.toFeatureView ee.batch.Export.video.toDrive ee.batch.Export.table.toDrive ee.batch.Export.table.toAsset ee.batch.Export.classifier.toAsset ee.batch.Export.image.toDrive ee.batch.Export.table.toCloudStorage ee.batch.Export.image.toAsset ee.batch.Export.map.toCloudStorage ee.batch.Export.videoMap.toCloudStorage ee.Collection.prototype.filter ee.Collection.prototype.limit ee.Collection.prototype.map ee.Collection.prototype.iterate ee.Collection.prototype.sort ee.Collection.prototype.filterMetadata ee.Collection.prototype.filterDate ee.Collection.prototype.filterBounds ee.ComputedObject.prototype.serialize ee.ComputedObject.prototype.evaluate ee.ComputedObject.prototype.aside ee.ComputedObject.prototype.getInfo ee.data.getMapId ee.data.setAssetProperties ee.data.getTaskList ee.data.authenticate ee.data.copyAsset ee.data.getTableDownloadId ee.data.listBuckets ee.data.getTileUrl ee.data.makeTableDownloadUrl ee.data.startTableIngestion ee.data.deleteAsset ee.data.getTaskListWithLimit ee.data.getAssetRootQuota ee.data.listOperations ee.data.getDownloadId ee.data.getWorkloadTag ee.data.makeDownloadUrl ee.data.cancelOperation ee.data.listImages ee.data.getAssetAcl ee.data.authenticateViaPopup ee.data.getFeatureViewTilesKey ee.data.listFeatures ee.data.getAsset ee.data.getAssetRoots ee.data.getOperation ee.data.createAssetHome ee.data.authenticateViaPrivateKey ee.data.setWorkloadTag ee.data.newTaskId ee.data.getInfo ee.data.computeValue ee.data.createAsset ee.data.getThumbId ee.data.cancelTask ee.data.setDefaultWorkloadTag ee.data.getVideoThumbId ee.data.resetWorkloadTag ee.data.updateAsset ee.data.getList ee.data.getTaskStatus ee.data.updateTask ee.data.startIngestion ee.data.getFilmstripThumbId ee.data.startProcessing ee.data.createFolder ee.data.setAssetAcl ee.data.makeThumbUrl ee.data.authenticateViaOauth ee.data.listAssets ee.data.renameAsset ee.Date ee.Deserializer.decodeCloudApi ee.Deserializer.fromCloudApiJSON ee.Deserializer.decode ee.Deserializer.fromJSON ee.Dictionary ee.apply ee.TILE_SIZE ee.initialize ee.reset ee.call ee.Algorithms ee.InitState ee.Element.prototype.set ee.Encodable.SourceFrame ee.Feature.prototype.getInfo ee.Feature.prototype.getMap ee.Feature.prototype.getMapId ee.Feature ee.FeatureCollection ee.FeatureCollection.prototype.select ee.FeatureCollection.prototype.getMap ee.FeatureCollection.prototype.getMapId ee.FeatureCollection.prototype.getDownloadURL ee.FeatureCollection.prototype.getInfo ee.Filter.lte ee.Filter.gte ee.Filter.prototype.not ee.Filter.metadata ee.Filter.date ee.Filter.bounds ee.Filter.eq ee.Filter ee.Filter.and ee.Filter.inList ee.Filter.gt ee.Filter.or ee.Filter.lt ee.Filter.neq ee.Function.prototype.apply ee.Function.prototype.call ee.Geometry.Polygon ee.Geometry.prototype.serialize ee.Geometry.MultiLineString ee.Geometry.MultiPolygon ee.Geometry.prototype.toGeoJSON ee.Geometry.LinearRing ee.Geometry.MultiPoint ee.Geometry.BBox ee.Geometry.Rectangle ee.Geometry.prototype.toGeoJSONString ee.Geometry.LineString ee.Geometry ee.Geometry.Point ee.Image.prototype.getThumbId ee.Image ee.Image.prototype.getDownloadURL ee.Image.prototype.expression ee.Image.prototype.getMapId ee.Image.prototype.getThumbURL ee.Image.rgb ee.Image.prototype.rename ee.Image.cat ee.Image.prototype.clip ee.Image.prototype.getInfo ee.Image.prototype.getMap ee.Image.prototype.select ee.ImageCollection.prototype.linkCollection ee.ImageCollection ee.ImageCollection.prototype.getVideoThumbURL ee.ImageCollection.prototype.select ee.ImageCollection.prototype.first ee.ImageCollection.prototype.getFilmstripThumbURL ee.ImageCollection.prototype.getMapId ee.ImageCollection.prototype.getMap ee.ImageCollection.prototype.getInfo ee.List ee.Number ee.Serializer.encodeCloudApiPretty ee.Serializer.toJSON ee.Serializer.encodeCloudApi ee.Serializer.toCloudApiJSON ee.Serializer.toReadableJSON ee.Serializer.toReadableCloudApiJSON ee.Serializer.encode ee.String ee.Terrain".split(" "),
|
|
27143
|
+
orderedParamLists = [["name", "namedArgs"], ["name"], ["name", "var_args"], "collection opt_description opt_table opt_overwrite opt_append opt_selectors opt_maxVertices opt_priority".split(" "), "collection opt_description opt_bucket opt_fileNamePrefix opt_framesPerSecond opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_maxFrames opt_priority".split(" "), "image opt_description opt_bucket opt_fileNamePrefix opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_shardSize opt_fileDimensions opt_skipEmptyTiles opt_fileFormat opt_formatOptions opt_priority".split(" "),
|
|
27144
|
+
"collection opt_description opt_assetId opt_maxFeaturesPerTile opt_thinningStrategy opt_thinningRanking opt_zOrderRanking opt_priority".split(" "), "collection opt_description opt_folder opt_fileNamePrefix opt_framesPerSecond opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_maxFrames opt_priority".split(" "), "collection opt_description opt_folder opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices opt_priority".split(" "), ["collection", "opt_description",
|
|
27145
|
+
"opt_assetId", "opt_maxVertices", "opt_priority"], ["classifier", "opt_description", "opt_assetId", "opt_priority"], "image opt_description opt_folder opt_fileNamePrefix opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_shardSize opt_fileDimensions opt_skipEmptyTiles opt_fileFormat opt_formatOptions opt_priority".split(" "), "collection opt_description opt_bucket opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices opt_priority".split(" "), "image opt_description opt_assetId opt_pyramidingPolicy opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_shardSize opt_priority".split(" "),
|
|
27146
|
+
"image opt_description opt_bucket opt_fileFormat opt_path opt_writePublicTiles opt_scale opt_maxZoom opt_minZoom opt_region opt_skipEmptyTiles opt_mapsApiKey opt_bucketCorsUris opt_priority".split(" "), "collection opt_description opt_bucket opt_fileNamePrefix opt_framesPerSecond opt_writePublicTiles opt_minZoom opt_maxZoom opt_scale opt_region opt_skipEmptyTiles opt_minTimeMachineZoomSubset opt_maxTimeMachineZoomSubset opt_tileWidth opt_tileHeight opt_tileStride opt_videoFormat opt_version opt_mapsApiKey opt_bucketCorsUris opt_priority".split(" "),
|
|
27147
|
+
["filter"], ["max", "opt_property", "opt_ascending"], ["algorithm", "opt_dropNulls"], ["algorithm", "opt_first"], ["property", "opt_ascending"], ["name", "operator", "value"], ["start", "opt_end"], ["geometry"], ["legacy"], ["callback"], ["func", "var_args"], ["opt_callback"], ["params", "opt_callback"], ["assetId", "properties", "opt_callback"], ["opt_callback"], ["clientId", "success", "opt_error", "opt_extraScopes", "opt_onImmediateFailed"], ["sourceId", "destinationId", "opt_overwrite", "opt_callback"],
|
|
27148
|
+
["params", "opt_callback"], ["project", "opt_callback"], ["id", "x", "y", "z"], ["id"], ["taskId", "request", "opt_callback"], ["assetId", "opt_callback"], ["opt_limit", "opt_callback"], ["rootId", "opt_callback"], ["opt_limit", "opt_callback"], ["params", "opt_callback"], [], ["id"], ["operationName", "opt_callback"], ["parent", "opt_params", "opt_callback"], ["assetId", "opt_callback"], ["opt_success", "opt_error"], ["params", "opt_callback"], ["asset", "params", "opt_callback"], ["id", "opt_callback"],
|
|
27149
|
+
["opt_callback"], ["operationName", "opt_callback"], ["requestedId", "opt_callback"], ["privateKey", "opt_success", "opt_error", "opt_extraScopes", "opt_suppressDefaultScopes"], ["tag"], ["opt_count", "opt_callback"], ["id", "opt_callback"], ["obj", "opt_callback"], ["value", "opt_path", "opt_force", "opt_properties", "opt_callback"], ["params", "opt_callback"], ["taskId", "opt_callback"], ["tag"], ["params", "opt_callback"], ["opt_resetDefault"], ["assetId", "asset", "updateFields", "opt_callback"],
|
|
27150
|
+
["params", "opt_callback"], ["taskId", "opt_callback"], ["taskId", "action", "opt_callback"], ["taskId", "request", "opt_callback"], ["params", "opt_callback"], ["taskId", "params", "opt_callback"], ["path", "opt_force", "opt_callback"], ["assetId", "aclUpdate", "opt_callback"], ["id"], "clientId success opt_error opt_extraScopes opt_onImmediateFailed opt_suppressDefaultScopes".split(" "), ["parent", "opt_params", "opt_callback"], ["sourceId", "destinationId", "opt_callback"], ["date", "opt_tz"],
|
|
27151
|
+
["json"], ["json"], ["json"], ["json"], ["opt_dict"], ["func", "namedArgs"], [], "opt_baseurl opt_tileurl opt_successCallback opt_errorCallback opt_xsrfToken opt_project".split(" "), [], ["func", "var_args"], [], [], ["var_args"], [], ["opt_callback"], ["opt_visParams", "opt_callback"], ["opt_visParams", "opt_callback"], ["geometry", "opt_properties"], ["args", "opt_column"], ["propertySelectors", "opt_newProperties", "opt_retainGeometry"], ["opt_visParams", "opt_callback"], ["opt_visParams", "opt_callback"],
|
|
27152
|
+
["opt_format", "opt_selectors", "opt_filename", "opt_callback"], ["opt_callback"], ["name", "value"], ["name", "value"], [], ["name", "operator", "value"], ["start", "opt_end"], ["geometry", "opt_errorMargin"], ["name", "value"], ["opt_filter"], ["var_args"], ["opt_leftField", "opt_rightValue", "opt_rightField", "opt_leftValue"], ["name", "value"], ["var_args"], ["name", "value"], ["name", "value"], ["namedArgs"], ["var_args"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"],
|
|
27153
|
+
["legacy"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], [], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["coords", "opt_proj"], ["west", "south", "east", "north"], ["coords", "opt_proj", "opt_geodesic", "opt_evenOdd"], [], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["geoJson", "opt_proj", "opt_geodesic", "opt_evenOdd"], ["coords", "opt_proj"], ["params", "opt_callback"], ["opt_args"], ["params",
|
|
27154
|
+
"opt_callback"], ["expression", "opt_map"], ["opt_visParams", "opt_callback"], ["params", "opt_callback"], ["r", "g", "b"], ["var_args"], ["var_args"], ["geometry"], ["opt_callback"], ["opt_visParams", "opt_callback"], ["var_args"], ["imageCollection", "opt_linkedBands", "opt_linkedProperties", "opt_matchPropertyName"], ["args"], ["params", "opt_callback"], ["selectors", "opt_names"], [], ["params", "opt_callback"], ["opt_visParams", "opt_callback"], ["opt_visParams", "opt_callback"], ["opt_callback"],
|
|
27155
|
+
["list"], ["number"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj", "opt_isCompound"], ["string"], []];
|
|
27156
|
+
[ee.ApiFunction._apply, ee.ApiFunction.lookup, ee.ApiFunction._call, module$contents$ee$batch_Export.table.toBigQuery, module$contents$ee$batch_Export.video.toCloudStorage, module$contents$ee$batch_Export.image.toCloudStorage, module$contents$ee$batch_Export.table.toFeatureView, module$contents$ee$batch_Export.video.toDrive, module$contents$ee$batch_Export.table.toDrive, module$contents$ee$batch_Export.table.toAsset, module$contents$ee$batch_Export.classifier.toAsset, module$contents$ee$batch_Export.image.toDrive,
|
|
27157
|
+
module$contents$ee$batch_Export.table.toCloudStorage, module$contents$ee$batch_Export.image.toAsset, module$contents$ee$batch_Export.map.toCloudStorage, module$contents$ee$batch_Export.videoMap.toCloudStorage, ee.Collection.prototype.filter, ee.Collection.prototype.limit, ee.Collection.prototype.map, ee.Collection.prototype.iterate, ee.Collection.prototype.sort, ee.Collection.prototype.filterMetadata, ee.Collection.prototype.filterDate, ee.Collection.prototype.filterBounds, ee.ComputedObject.prototype.serialize,
|
|
27158
|
+
ee.ComputedObject.prototype.evaluate, ee.ComputedObject.prototype.aside, ee.ComputedObject.prototype.getInfo, ee.data.getMapId, ee.data.setAssetProperties, ee.data.getTaskList, ee.data.authenticate, ee.data.copyAsset, ee.data.getTableDownloadId, ee.data.listBuckets, ee.data.getTileUrl, ee.data.makeTableDownloadUrl, ee.data.startTableIngestion, ee.data.deleteAsset, ee.data.getTaskListWithLimit, ee.data.getAssetRootQuota, ee.data.listOperations, ee.data.getDownloadId, ee.data.getWorkloadTag, ee.data.makeDownloadUrl,
|
|
27159
|
+
ee.data.cancelOperation, ee.data.listImages, ee.data.getAssetAcl, ee.data.authenticateViaPopup, ee.data.getFeatureViewTilesKey, ee.data.listFeatures, ee.data.getAsset, ee.data.getAssetRoots, ee.data.getOperation, ee.data.createAssetHome, ee.data.authenticateViaPrivateKey, ee.data.setWorkloadTag, ee.data.newTaskId, ee.data.getInfo, ee.data.computeValue, ee.data.createAsset, ee.data.getThumbId, ee.data.cancelTask, ee.data.setDefaultWorkloadTag, ee.data.getVideoThumbId, ee.data.resetWorkloadTag, ee.data.updateAsset,
|
|
27160
|
+
ee.data.getList, ee.data.getTaskStatus, ee.data.updateTask, ee.data.startIngestion, ee.data.getFilmstripThumbId, ee.data.startProcessing, ee.data.createFolder, ee.data.setAssetAcl, ee.data.makeThumbUrl, ee.data.authenticateViaOauth, ee.data.listAssets, ee.data.renameAsset, ee.Date, ee.Deserializer.decodeCloudApi, ee.Deserializer.fromCloudApiJSON, ee.Deserializer.decode, ee.Deserializer.fromJSON, ee.Dictionary, ee.apply, ee.TILE_SIZE, ee.initialize, ee.reset, ee.call, ee.Algorithms, ee.InitState,
|
|
27161
|
+
ee.Element.prototype.set, ee.Encodable.SourceFrame, ee.Feature.prototype.getInfo, ee.Feature.prototype.getMap, ee.Feature.prototype.getMapId, ee.Feature, ee.FeatureCollection, ee.FeatureCollection.prototype.select, ee.FeatureCollection.prototype.getMap, ee.FeatureCollection.prototype.getMapId, ee.FeatureCollection.prototype.getDownloadURL, ee.FeatureCollection.prototype.getInfo, ee.Filter.lte, ee.Filter.gte, ee.Filter.prototype.not, ee.Filter.metadata, ee.Filter.date, ee.Filter.bounds, ee.Filter.eq,
|
|
27162
|
+
ee.Filter, ee.Filter.and, ee.Filter.inList, ee.Filter.gt, ee.Filter.or, ee.Filter.lt, ee.Filter.neq, ee.Function.prototype.apply, ee.Function.prototype.call, ee.Geometry.Polygon, ee.Geometry.prototype.serialize, ee.Geometry.MultiLineString, ee.Geometry.MultiPolygon, ee.Geometry.prototype.toGeoJSON, ee.Geometry.LinearRing, ee.Geometry.MultiPoint, ee.Geometry.BBox, ee.Geometry.Rectangle, ee.Geometry.prototype.toGeoJSONString, ee.Geometry.LineString, ee.Geometry, ee.Geometry.Point, ee.Image.prototype.getThumbId,
|
|
27163
|
+
ee.Image, ee.Image.prototype.getDownloadURL, ee.Image.prototype.expression, ee.Image.prototype.getMapId, ee.Image.prototype.getThumbURL, ee.Image.rgb, ee.Image.prototype.rename, ee.Image.cat, ee.Image.prototype.clip, ee.Image.prototype.getInfo, ee.Image.prototype.getMap, ee.Image.prototype.select, ee.ImageCollection.prototype.linkCollection, ee.ImageCollection, ee.ImageCollection.prototype.getVideoThumbURL, ee.ImageCollection.prototype.select, ee.ImageCollection.prototype.first, ee.ImageCollection.prototype.getFilmstripThumbURL,
|
|
27164
|
+
ee.ImageCollection.prototype.getMapId, ee.ImageCollection.prototype.getMap, ee.ImageCollection.prototype.getInfo, ee.List, ee.Number, ee.Serializer.encodeCloudApiPretty, ee.Serializer.toJSON, ee.Serializer.encodeCloudApi, ee.Serializer.toCloudApiJSON, ee.Serializer.toReadableJSON, ee.Serializer.toReadableCloudApiJSON, ee.Serializer.encode, ee.String, ee.Terrain].forEach(function(fn, i) {
|
|
27141
27165
|
fn && (exportedFnInfo[fn.toString()] = {name:orderedFnNames[i], paramNames:orderedParamLists[i]});
|
|
27142
27166
|
});
|
|
27143
27167
|
goog.global.EXPORTED_FN_INFO = exportedFnInfo;
|