@google/earthengine 1.7.12 → 1.7.13
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 +114 -92
- package/build/ee_api_js.js +16 -16
- package/build/ee_api_js_debug.js +92 -69
- package/build/ee_api_js_npm.js +114 -92
- package/build/main.js +114 -92
- package/package.json +1 -1
- package/src/apiclient.js +1 -1
package/build/main.js
CHANGED
|
@@ -256,14 +256,18 @@ $jscomp.generator.Context.prototype.throw_ = function(e) {
|
|
|
256
256
|
this.abruptCompletion_ = {exception:e, isException:!0};
|
|
257
257
|
this.jumpToErrorHandler_();
|
|
258
258
|
};
|
|
259
|
-
$jscomp.generator.Context.prototype.
|
|
259
|
+
$jscomp.generator.Context.prototype.getNextAddressJsc = function() {
|
|
260
260
|
return this.nextAddress;
|
|
261
261
|
};
|
|
262
|
-
$jscomp.generator.Context.prototype.
|
|
263
|
-
|
|
262
|
+
$jscomp.generator.Context.prototype.getNextAddressJsc = function() {
|
|
263
|
+
return this.nextAddress;
|
|
264
|
+
};
|
|
265
|
+
$jscomp.generator.Context.prototype.getYieldResultJsc = function() {
|
|
266
|
+
return this.yieldResult;
|
|
267
|
+
};
|
|
268
|
+
$jscomp.generator.Context.prototype.getYieldResultJsc = function() {
|
|
264
269
|
return this.yieldResult;
|
|
265
270
|
};
|
|
266
|
-
$jscomp.generator.Context.prototype.getYieldResult = $jscomp.generator.Context.prototype.getYieldResult;
|
|
267
271
|
$jscomp.generator.Context.prototype.return = function(value) {
|
|
268
272
|
this.abruptCompletion_ = {return:value};
|
|
269
273
|
this.nextAddress = this.finallyAddress_;
|
|
@@ -1040,6 +1044,19 @@ $jscomp.polyfill("Map", function(NativeMap) {
|
|
|
1040
1044
|
};
|
|
1041
1045
|
return PolyfillMap;
|
|
1042
1046
|
}, "es6", "es3");
|
|
1047
|
+
$jscomp.polyfill("Map.groupBy", function(orig) {
|
|
1048
|
+
return orig ? orig : function(items, callbackFn) {
|
|
1049
|
+
if (typeof callbackFn !== "function") {
|
|
1050
|
+
throw new TypeError("callbackFn must be a function");
|
|
1051
|
+
}
|
|
1052
|
+
for (var result = new Map(), index = 0, iter = $jscomp.makeIterator(items), entry = iter.next(); !entry.done; entry = iter.next()) {
|
|
1053
|
+
var item = entry.value, key = callbackFn(item, index++), group = result.get(key);
|
|
1054
|
+
group || (group = [], result.set(key, group));
|
|
1055
|
+
group.push(item);
|
|
1056
|
+
}
|
|
1057
|
+
return result;
|
|
1058
|
+
};
|
|
1059
|
+
}, "es_next", "es3");
|
|
1043
1060
|
$jscomp.polyfill("Set", function(NativeSet) {
|
|
1044
1061
|
function isConformant() {
|
|
1045
1062
|
if ($jscomp.ASSUME_NO_NATIVE_SET || !NativeSet || typeof NativeSet != "function" || !NativeSet.prototype.entries || typeof Object.seal != "function") {
|
|
@@ -1368,9 +1385,9 @@ $jscomp.polyfill("String.prototype.padStart", function(orig) {
|
|
|
1368
1385
|
return $jscomp.stringPadding(opt_padString, targetLength - string.length) + string;
|
|
1369
1386
|
};
|
|
1370
1387
|
}, "es8", "es3");
|
|
1371
|
-
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_lazy_tsx__disable:!1, GoogFlags__client_only_wiz_queue_effect_and_on_init_initial_runs__disable:!1, GoogFlags__fixed_noopener_behavior__enable:!1, GoogFlags__jspb_deserialize_binary_int64s_as_gbigint__disable:!1, GoogFlags__jspb_disallow_message_tojson__enable:!1, GoogFlags__jspb_serialize_with_dynamic_pivot_selector__enable:!1,
|
|
1372
|
-
GoogFlags__jspb_throw_in_array_constructor_if_array_is_already_constructed__disable:!1, GoogFlags__jspb_use_constant_default_pivot__enable:!1, GoogFlags__jspb_write_back_bigint__disable:!1, GoogFlags__optimize_get_ei_from_ved__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, GoogFlags__use_toggles:!1,
|
|
1373
|
-
GoogFlags__wiz_enable_native_promise__enable:!1};
|
|
1388
|
+
var CLOSURE_TOGGLE_ORDINALS = {GoogFlags__async_throw_on_unicode_to_byte__enable:!1, GoogFlags__batch_fc_data_fetches_in_microtask__enable:!1, GoogFlags__client_only_wiz_context_per_component__enable:!1, GoogFlags__client_only_wiz_lazy_tsx__disable:!1, GoogFlags__client_only_wiz_queue_effect_and_on_init_initial_runs__disable:!1, GoogFlags__fixed_noopener_behavior__enable:!1, GoogFlags__jspb_deserialize_binary_int64s_as_gbigint__disable:!1, GoogFlags__jspb_disallow_message_tojson__enable:!1, GoogFlags__jspb_serialize_with_dynamic_pivot_selector__enable:!1,
|
|
1389
|
+
GoogFlags__jspb_throw_in_array_constructor_if_array_is_already_constructed__disable:!1, GoogFlags__jspb_use_constant_default_pivot__enable:!1, GoogFlags__jspb_write_back_bigint__disable:!1, GoogFlags__optimize_get_ei_from_ved__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, GoogFlags__use_toggles:!1, GoogFlags__use_unobfuscated_rpc_method_names__enable:!1,
|
|
1390
|
+
GoogFlags__use_user_agent_client_hints__enable:!1, GoogFlags__wiz_enable_native_promise__enable:!1};
|
|
1374
1391
|
/*
|
|
1375
1392
|
|
|
1376
1393
|
Copyright The Closure Library Authors.
|
|
@@ -4881,45 +4898,45 @@ function module$contents$safevalues$dom$globals$fetch_privatecreateHtmlInternal(
|
|
|
4881
4898
|
function module$contents$safevalues$dom$globals$fetch_fetchResourceUrl(u, init) {
|
|
4882
4899
|
var response, $jscomp$optchain$tmp1153895636$0, $jscomp$optchain$tmp1153895636$1, $jscomp$optchain$tmp1153895636$2, mimeType;
|
|
4883
4900
|
return (0,$jscomp.asyncExecutePromiseGeneratorProgram)(function($jscomp$generator$context$1153895636$29) {
|
|
4884
|
-
if ($jscomp$generator$context$1153895636$29.
|
|
4901
|
+
if ($jscomp$generator$context$1153895636$29.getNextAddressJsc() == 1) {
|
|
4885
4902
|
return $jscomp$generator$context$1153895636$29.yield(fetch(module$contents$safevalues$internals$resource_url_impl_unwrapResourceUrl(u).toString(), init), 2);
|
|
4886
4903
|
}
|
|
4887
|
-
response = $jscomp$generator$context$1153895636$29.
|
|
4904
|
+
response = $jscomp$generator$context$1153895636$29.getYieldResultJsc();
|
|
4888
4905
|
mimeType = ($jscomp$optchain$tmp1153895636$0 = response.headers.get("Content-Type")) == null ? void 0 : ($jscomp$optchain$tmp1153895636$1 = $jscomp$optchain$tmp1153895636$0.split(";", 2)) == null ? void 0 : ($jscomp$optchain$tmp1153895636$2 = $jscomp$optchain$tmp1153895636$1[0]) == null ? void 0 : $jscomp$optchain$tmp1153895636$2.toLowerCase();
|
|
4889
4906
|
return $jscomp$generator$context$1153895636$29.return({html:function() {
|
|
4890
4907
|
var text;
|
|
4891
4908
|
return (0,$jscomp.asyncExecutePromiseGeneratorProgram)(function($jscomp$generator$context$1153895636$26) {
|
|
4892
|
-
if ($jscomp$generator$context$1153895636$26.
|
|
4909
|
+
if ($jscomp$generator$context$1153895636$26.getNextAddressJsc() == 1) {
|
|
4893
4910
|
if (mimeType !== "text/html") {
|
|
4894
4911
|
throw new module$exports$safevalues$dom$globals$fetch.IncorrectContentTypeError(response.url, "SafeHtml", "text/html");
|
|
4895
4912
|
}
|
|
4896
4913
|
return $jscomp$generator$context$1153895636$26.yield(response.text(), 2);
|
|
4897
4914
|
}
|
|
4898
|
-
text = $jscomp$generator$context$1153895636$26.
|
|
4915
|
+
text = $jscomp$generator$context$1153895636$26.getYieldResultJsc();
|
|
4899
4916
|
return $jscomp$generator$context$1153895636$26.return(module$contents$safevalues$dom$globals$fetch_privatecreateHtmlInternal(text));
|
|
4900
4917
|
});
|
|
4901
4918
|
}, script:function() {
|
|
4902
4919
|
var text;
|
|
4903
4920
|
return (0,$jscomp.asyncExecutePromiseGeneratorProgram)(function($jscomp$generator$context$1153895636$27) {
|
|
4904
|
-
if ($jscomp$generator$context$1153895636$27.
|
|
4921
|
+
if ($jscomp$generator$context$1153895636$27.getNextAddressJsc() == 1) {
|
|
4905
4922
|
if (mimeType !== "text/javascript" && mimeType !== "application/javascript") {
|
|
4906
4923
|
throw new module$exports$safevalues$dom$globals$fetch.IncorrectContentTypeError(response.url, "SafeScript", "text/javascript");
|
|
4907
4924
|
}
|
|
4908
4925
|
return $jscomp$generator$context$1153895636$27.yield(response.text(), 2);
|
|
4909
4926
|
}
|
|
4910
|
-
text = $jscomp$generator$context$1153895636$27.
|
|
4927
|
+
text = $jscomp$generator$context$1153895636$27.getYieldResultJsc();
|
|
4911
4928
|
return $jscomp$generator$context$1153895636$27.return(module$contents$safevalues$internals$script_impl_createScriptInternal(text));
|
|
4912
4929
|
});
|
|
4913
4930
|
}, styleSheet:function() {
|
|
4914
4931
|
var text;
|
|
4915
4932
|
return (0,$jscomp.asyncExecutePromiseGeneratorProgram)(function($jscomp$generator$context$1153895636$28) {
|
|
4916
|
-
if ($jscomp$generator$context$1153895636$28.
|
|
4933
|
+
if ($jscomp$generator$context$1153895636$28.getNextAddressJsc() == 1) {
|
|
4917
4934
|
if (mimeType !== "text/css") {
|
|
4918
4935
|
throw new module$exports$safevalues$dom$globals$fetch.IncorrectContentTypeError(response.url, "SafeStyleSheet", "text/css");
|
|
4919
4936
|
}
|
|
4920
4937
|
return $jscomp$generator$context$1153895636$28.yield(response.text(), 2);
|
|
4921
4938
|
}
|
|
4922
|
-
text = $jscomp$generator$context$1153895636$28.
|
|
4939
|
+
text = $jscomp$generator$context$1153895636$28.getYieldResultJsc();
|
|
4923
4940
|
return $jscomp$generator$context$1153895636$28.return(module$contents$safevalues$internals$style_sheet_impl_createStyleSheetInternal(text));
|
|
4924
4941
|
});
|
|
4925
4942
|
}});
|
|
@@ -6603,6 +6620,8 @@ module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__jspb_throw_in_arr
|
|
|
6603
6620
|
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__jspb_deserialize_binary_int64s_as_gbigint__disable = !1;
|
|
6604
6621
|
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__jspb_write_back_bigint__disable = !1;
|
|
6605
6622
|
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__optimize_get_ei_from_ved__enable = !1;
|
|
6623
|
+
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__batch_fc_data_fetches_in_microtask__enable = !1;
|
|
6624
|
+
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_unobfuscated_rpc_method_names__enable = !1;
|
|
6606
6625
|
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__testonly_disabled_flag__enable = !1;
|
|
6607
6626
|
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__testonly_debug_flag__enable = !1;
|
|
6608
6627
|
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__testonly_staging_flag__disable = !1;
|
|
@@ -6625,6 +6644,8 @@ goog.flags.JSPB_THROW_IN_ARRAY_CONSTRUCTOR_IF_ARRAY_IS_ALREADY_CONSTRUCTED = mod
|
|
|
6625
6644
|
goog.flags.JSPB_DESERIALIZE_BINARY_INT64S_AS_GBIGINT = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__override_disable_toggles || !module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__jspb_deserialize_binary_int64s_as_gbigint__disable : goog.readFlagInternalDoNotUseOrElse(824648567, !0);
|
|
6626
6645
|
goog.flags.JSPB_WRITE_BACK_BIGINT = 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__jspb_write_back_bigint__disable) : goog.readFlagInternalDoNotUseOrElse(824656860, module$contents$goog$flags_STAGING);
|
|
6627
6646
|
goog.flags.OPTIMIZE_GET_EI_FROM_VED = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__optimize_get_ei_from_ved__enable : goog.readFlagInternalDoNotUseOrElse(333098724, !1);
|
|
6647
|
+
goog.flags.BATCH_FC_DATA_FETCHES_IN_MICROTASK = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? goog.DEBUG || module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__batch_fc_data_fetches_in_microtask__enable : goog.readFlagInternalDoNotUseOrElse(861377723, goog.DEBUG);
|
|
6648
|
+
goog.flags.USE_UNOBFUSCATED_RPC_METHOD_NAMES = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? goog.DEBUG || module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_unobfuscated_rpc_method_names__enable : goog.readFlagInternalDoNotUseOrElse(861377724, goog.DEBUG);
|
|
6628
6649
|
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);
|
|
6629
6650
|
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);
|
|
6630
6651
|
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);
|
|
@@ -6725,7 +6746,7 @@ module$exports$goog$labs$userAgent$highEntropy$highEntropyValue.HighEntropyValue
|
|
|
6725
6746
|
module$exports$goog$labs$userAgent$highEntropy$highEntropyValue.HighEntropyValue.prototype.load = function() {
|
|
6726
6747
|
var $jscomp$async$this$m2110036436$9 = this, userAgentData;
|
|
6727
6748
|
return (0,$jscomp.asyncExecutePromiseGeneratorProgram)(function($jscomp$generator$context$m2110036436$35) {
|
|
6728
|
-
if ($jscomp$generator$context$m2110036436$35.
|
|
6749
|
+
if ($jscomp$generator$context$m2110036436$35.getNextAddressJsc() == 1) {
|
|
6729
6750
|
userAgentData = module$contents$goog$labs$userAgent$util_getUserAgentData();
|
|
6730
6751
|
if (!userAgentData) {
|
|
6731
6752
|
return $jscomp$generator$context$m2110036436$35.return(void 0);
|
|
@@ -6733,11 +6754,11 @@ module$exports$goog$labs$userAgent$highEntropy$highEntropyValue.HighEntropyValue
|
|
|
6733
6754
|
$jscomp$async$this$m2110036436$9.promise_ || ($jscomp$async$this$m2110036436$9.pending_ = !0, $jscomp$async$this$m2110036436$9.promise_ = function() {
|
|
6734
6755
|
var dataValues;
|
|
6735
6756
|
return (0,$jscomp.asyncExecutePromiseGeneratorProgram)(function($jscomp$generator$context$m2110036436$34) {
|
|
6736
|
-
if ($jscomp$generator$context$m2110036436$34.
|
|
6757
|
+
if ($jscomp$generator$context$m2110036436$34.getNextAddressJsc() == 1) {
|
|
6737
6758
|
return $jscomp$generator$context$m2110036436$34.setFinallyBlock(2), $jscomp$generator$context$m2110036436$34.yield(userAgentData.getHighEntropyValues([$jscomp$async$this$m2110036436$9.key_]), 4);
|
|
6738
6759
|
}
|
|
6739
|
-
if ($jscomp$generator$context$m2110036436$34.
|
|
6740
|
-
return dataValues = $jscomp$generator$context$m2110036436$34.
|
|
6760
|
+
if ($jscomp$generator$context$m2110036436$34.getNextAddressJsc() != 2) {
|
|
6761
|
+
return dataValues = $jscomp$generator$context$m2110036436$34.getYieldResultJsc(), $jscomp$async$this$m2110036436$9.value_ = dataValues[$jscomp$async$this$m2110036436$9.key_], $jscomp$generator$context$m2110036436$34.return($jscomp$async$this$m2110036436$9.value_);
|
|
6741
6762
|
}
|
|
6742
6763
|
$jscomp$generator$context$m2110036436$34.enterFinallyBlock();
|
|
6743
6764
|
$jscomp$async$this$m2110036436$9.pending_ = !1;
|
|
@@ -6746,7 +6767,7 @@ module$exports$goog$labs$userAgent$highEntropy$highEntropyValue.HighEntropyValue
|
|
|
6746
6767
|
}());
|
|
6747
6768
|
return $jscomp$generator$context$m2110036436$35.yield($jscomp$async$this$m2110036436$9.promise_, 2);
|
|
6748
6769
|
}
|
|
6749
|
-
return $jscomp$generator$context$m2110036436$35.return($jscomp$generator$context$m2110036436$35.
|
|
6770
|
+
return $jscomp$generator$context$m2110036436$35.return($jscomp$generator$context$m2110036436$35.getYieldResultJsc());
|
|
6750
6771
|
});
|
|
6751
6772
|
};
|
|
6752
6773
|
module$exports$goog$labs$userAgent$highEntropy$highEntropyValue.HighEntropyValue.prototype.resetForTesting = function() {
|
|
@@ -6996,10 +7017,10 @@ module$contents$goog$labs$userAgent$browser_HighEntropyBrandVersion.prototype.ge
|
|
|
6996
7017
|
module$contents$goog$labs$userAgent$browser_HighEntropyBrandVersion.prototype.load = function() {
|
|
6997
7018
|
var $jscomp$async$this$1683157560$59 = this, loadedVersionList, matchingBrand;
|
|
6998
7019
|
return (0,$jscomp.asyncExecutePromiseGeneratorProgram)(function($jscomp$generator$context$1683157560$106) {
|
|
6999
|
-
if ($jscomp$generator$context$1683157560$106.
|
|
7020
|
+
if ($jscomp$generator$context$1683157560$106.getNextAddressJsc() == 1) {
|
|
7000
7021
|
return $jscomp$async$this$1683157560$59.useUach_ ? $jscomp$generator$context$1683157560$106.yield(module$exports$goog$labs$userAgent$highEntropy$highEntropyData.fullVersionList.load(), 5) : $jscomp$generator$context$1683157560$106.yield(0, 3);
|
|
7001
7022
|
}
|
|
7002
|
-
if ($jscomp$generator$context$1683157560$106.
|
|
7023
|
+
if ($jscomp$generator$context$1683157560$106.getNextAddressJsc() != 3 && (loadedVersionList = $jscomp$generator$context$1683157560$106.getYieldResultJsc(), loadedVersionList !== void 0)) {
|
|
7003
7024
|
return matchingBrand = loadedVersionList.find(function($jscomp$destructuring$var11) {
|
|
7004
7025
|
return $jscomp$async$this$1683157560$59.brand_ === $jscomp$destructuring$var11.brand;
|
|
7005
7026
|
}), (0,goog.asserts.assertExists)(matchingBrand), $jscomp$generator$context$1683157560$106.return(new module$exports$goog$labs$userAgent$highEntropy$highEntropyValue.Version(matchingBrand.version));
|
|
@@ -7011,7 +7032,7 @@ module$contents$goog$labs$userAgent$browser_HighEntropyBrandVersion.prototype.lo
|
|
|
7011
7032
|
var module$contents$goog$labs$userAgent$browser_preUachHasLoaded = !1;
|
|
7012
7033
|
goog.labs.userAgent.browser.loadFullVersions = function() {
|
|
7013
7034
|
return (0,$jscomp.asyncExecutePromiseGeneratorProgram)(function($jscomp$generator$context$1683157560$107) {
|
|
7014
|
-
if ($jscomp$generator$context$1683157560$107.
|
|
7035
|
+
if ($jscomp$generator$context$1683157560$107.getNextAddressJsc() == 1) {
|
|
7015
7036
|
return module$contents$goog$labs$userAgent$browser_useUserAgentDataBrand(!0) ? $jscomp$generator$context$1683157560$107.yield(module$exports$goog$labs$userAgent$highEntropy$highEntropyData.fullVersionList.load(), 2) : $jscomp$generator$context$1683157560$107.jumpTo(2);
|
|
7016
7037
|
}
|
|
7017
7038
|
module$contents$goog$labs$userAgent$browser_preUachHasLoaded = !0;
|
|
@@ -7196,14 +7217,14 @@ module$contents$goog$labs$userAgent$platform_PlatformVersion.prototype.getIfLoad
|
|
|
7196
7217
|
module$contents$goog$labs$userAgent$platform_PlatformVersion.prototype.load = function() {
|
|
7197
7218
|
var $jscomp$async$this$m1628565157$33 = this, JSCompiler_temp_const;
|
|
7198
7219
|
return (0,$jscomp.asyncExecutePromiseGeneratorProgram)(function($jscomp$generator$context$m1628565157$37) {
|
|
7199
|
-
if ($jscomp$generator$context$m1628565157$37.
|
|
7220
|
+
if ($jscomp$generator$context$m1628565157$37.getNextAddressJsc() == 1) {
|
|
7200
7221
|
if (!module$contents$goog$labs$userAgent$platform_useUserAgentDataPlatform(!0)) {
|
|
7201
7222
|
return $jscomp$async$this$m1628565157$33.preUachHasLoaded_ = !0, $jscomp$generator$context$m1628565157$37.return(new module$exports$goog$labs$userAgent$highEntropy$highEntropyValue.Version(module$contents$goog$labs$userAgent$platform_getVersion()));
|
|
7202
7223
|
}
|
|
7203
7224
|
JSCompiler_temp_const = module$exports$goog$labs$userAgent$highEntropy$highEntropyValue.Version;
|
|
7204
7225
|
return $jscomp$generator$context$m1628565157$37.yield(module$exports$goog$labs$userAgent$highEntropy$highEntropyData.platformVersion.load(), 3);
|
|
7205
7226
|
}
|
|
7206
|
-
return $jscomp$generator$context$m1628565157$37.return(new JSCompiler_temp_const($jscomp$generator$context$m1628565157$37.
|
|
7227
|
+
return $jscomp$generator$context$m1628565157$37.return(new JSCompiler_temp_const($jscomp$generator$context$m1628565157$37.getYieldResultJsc()));
|
|
7207
7228
|
});
|
|
7208
7229
|
};
|
|
7209
7230
|
module$contents$goog$labs$userAgent$platform_PlatformVersion.prototype.resetForTesting = function() {
|
|
@@ -7368,15 +7389,16 @@ goog.events.eventTypeHelpers.getPointerFallbackEventName = function(pointerEvent
|
|
|
7368
7389
|
return goog.events.BrowserFeature.POINTER_EVENTS ? pointerEventName : fallbackEventName;
|
|
7369
7390
|
};
|
|
7370
7391
|
goog.events.eventTypeHelpers.getVendorPrefixedName = module$contents$goog$events$eventTypeHelpers_getVendorPrefixedName;
|
|
7371
|
-
goog
|
|
7372
|
-
CHANGE:"change", RESET:"reset", SELECT:"select", SUBMIT:"submit", INPUT:"input", PROPERTYCHANGE:"propertychange", DRAGSTART:"dragstart", DRAG:"drag", DRAGENTER:"dragenter", DRAGOVER:"dragover", DRAGLEAVE:"dragleave", DROP:"drop", DRAGEND:"dragend", TOUCHSTART:"touchstart", TOUCHMOVE:"touchmove", TOUCHEND:"touchend", TOUCHCANCEL:"touchcancel", BEFOREUNLOAD:"beforeunload", CONSOLEMESSAGE:"consolemessage", CONTEXTMENU:"contextmenu", DEVICECHANGE:"devicechange",
|
|
7373
|
-
DOMCONTENTLOADED:"DOMContentLoaded", ERROR:"error", HELP:"help", LOAD:"load", LOSECAPTURE:"losecapture", ORIENTATIONCHANGE:"orientationchange", READYSTATECHANGE:"readystatechange", RESIZE:"resize", SCROLL:"scroll", UNLOAD:"unload", CANPLAY:"canplay", CANPLAYTHROUGH:"canplaythrough", DURATIONCHANGE:"durationchange", EMPTIED:"emptied", ENDED:"ended", LOADEDDATA:"loadeddata", LOADEDMETADATA:"loadedmetadata", PAUSE:"pause", PLAY:"play",
|
|
7374
|
-
SEEKED:"seeked", SEEKING:"seeking", STALLED:"stalled", SUSPEND:"suspend", TIMEUPDATE:"timeupdate", VOLUMECHANGE:"volumechange", WAITING:"waiting", SOURCEOPEN:"sourceopen", SOURCEENDED:"sourceended", SOURCECLOSED:"sourceclosed", ABORT:"abort", UPDATE:"update", UPDATESTART:"updatestart", UPDATEEND:"updateend", HASHCHANGE:"hashchange", PAGEHIDE:"pagehide", PAGESHOW:"pageshow", POPSTATE:"popstate", COPY:"copy", PASTE:"paste", CUT:"cut",
|
|
7375
|
-
ONLINE:"online", OFFLINE:"offline", MESSAGE:"message", CONNECT:"connect", INSTALL:"install", ACTIVATE:"activate", FETCH:"fetch", FOREIGNFETCH:"foreignfetch", MESSAGEERROR:"messageerror", STATECHANGE:"statechange", UPDATEFOUND:"updatefound", CONTROLLERCHANGE:"controllerchange", ANIMATIONSTART:module$contents$goog$events$eventTypeHelpers_getVendorPrefixedName("AnimationStart"), ANIMATIONEND:module$contents$goog$events$eventTypeHelpers_getVendorPrefixedName("AnimationEnd"),
|
|
7376
|
-
TRANSITIONEND:module$contents$goog$events$eventTypeHelpers_getVendorPrefixedName("TransitionEnd"), POINTERDOWN:"pointerdown", POINTERUP:"pointerup", POINTERCANCEL:"pointercancel", POINTERMOVE:"pointermove", POINTEROVER:"pointerover", POINTEROUT:"pointerout", POINTERENTER:"pointerenter", POINTERLEAVE:"pointerleave", GOTPOINTERCAPTURE:"gotpointercapture", LOSTPOINTERCAPTURE:"lostpointercapture",
|
|
7377
|
-
MSGESTURETAP:"MSGestureTap", MSGOTPOINTERCAPTURE:"MSGotPointerCapture", MSINERTIASTART:"MSInertiaStart", MSLOSTPOINTERCAPTURE:"MSLostPointerCapture", MSPOINTERCANCEL:"MSPointerCancel", MSPOINTERDOWN:"MSPointerDown", MSPOINTERENTER:"MSPointerEnter", MSPOINTERHOVER:"MSPointerHover", MSPOINTERLEAVE:"MSPointerLeave", MSPOINTERMOVE:"MSPointerMove", MSPOINTEROUT:"MSPointerOut",
|
|
7378
|
-
COMPOSITIONUPDATE:"compositionupdate", COMPOSITIONEND:"compositionend", BEFOREINPUT:"beforeinput", FULLSCREENCHANGE:"fullscreenchange", WEBKITBEGINFULLSCREEN:"webkitbeginfullscreen", WEBKITENDFULLSCREEN:"webkitendfullscreen", EXIT:"exit", LOADABORT:"loadabort", LOADCOMMIT:"loadcommit", LOADREDIRECT:"loadredirect", LOADSTART:"loadstart", LOADSTOP:"loadstop", RESPONSIVE:"responsive",
|
|
7379
|
-
AFTERPRINT:"afterprint", BEFOREINSTALLPROMPT:"beforeinstallprompt", APPINSTALLED:"appinstalled", CANCEL:"cancel", FINISH:"finish", REMOVE:"remove"};
|
|
7392
|
+
var module$contents$goog$events$EventType_EventType = {CLICK:"click", RIGHTCLICK:"rightclick", DBLCLICK:"dblclick", AUXCLICK:"auxclick", MOUSEDOWN:"mousedown", MOUSEUP:"mouseup", MOUSEOVER:"mouseover", MOUSEOUT:"mouseout", MOUSEMOVE:"mousemove", MOUSEENTER:"mouseenter", MOUSELEAVE:"mouseleave", MOUSECANCEL:"mousecancel", SELECTIONCHANGE:"selectionchange", SELECTSTART:"selectstart", WHEEL:"wheel", KEYPRESS:"keypress", KEYDOWN:"keydown", KEYUP:"keyup", BLUR:"blur", FOCUS:"focus", DEACTIVATE:"deactivate",
|
|
7393
|
+
FOCUSIN:"focusin", FOCUSOUT:"focusout", CHANGE:"change", RESET:"reset", SELECT:"select", SUBMIT:"submit", INPUT:"input", PROPERTYCHANGE:"propertychange", DRAGSTART:"dragstart", DRAG:"drag", DRAGENTER:"dragenter", DRAGOVER:"dragover", DRAGLEAVE:"dragleave", DROP:"drop", DRAGEND:"dragend", TOUCHSTART:"touchstart", TOUCHMOVE:"touchmove", TOUCHEND:"touchend", TOUCHCANCEL:"touchcancel", BEFOREUNLOAD:"beforeunload", CONSOLEMESSAGE:"consolemessage", CONTEXTMENU:"contextmenu", DEVICECHANGE:"devicechange",
|
|
7394
|
+
DEVICEMOTION:"devicemotion", DEVICEORIENTATION:"deviceorientation", DOMCONTENTLOADED:"DOMContentLoaded", ERROR:"error", HELP:"help", LOAD:"load", LOSECAPTURE:"losecapture", ORIENTATIONCHANGE:"orientationchange", READYSTATECHANGE:"readystatechange", RESIZE:"resize", SCROLL:"scroll", UNLOAD:"unload", CANPLAY:"canplay", CANPLAYTHROUGH:"canplaythrough", DURATIONCHANGE:"durationchange", EMPTIED:"emptied", ENDED:"ended", LOADEDDATA:"loadeddata", LOADEDMETADATA:"loadedmetadata", PAUSE:"pause", PLAY:"play",
|
|
7395
|
+
PLAYING:"playing", PROGRESS:"progress", RATECHANGE:"ratechange", SEEKED:"seeked", SEEKING:"seeking", STALLED:"stalled", SUSPEND:"suspend", TIMEUPDATE:"timeupdate", VOLUMECHANGE:"volumechange", WAITING:"waiting", SOURCEOPEN:"sourceopen", SOURCEENDED:"sourceended", SOURCECLOSED:"sourceclosed", ABORT:"abort", UPDATE:"update", UPDATESTART:"updatestart", UPDATEEND:"updateend", HASHCHANGE:"hashchange", PAGEHIDE:"pagehide", PAGESHOW:"pageshow", POPSTATE:"popstate", COPY:"copy", PASTE:"paste", CUT:"cut",
|
|
7396
|
+
BEFORECOPY:"beforecopy", BEFORECUT:"beforecut", BEFOREPASTE:"beforepaste", ONLINE:"online", OFFLINE:"offline", MESSAGE:"message", CONNECT:"connect", INSTALL:"install", ACTIVATE:"activate", FETCH:"fetch", FOREIGNFETCH:"foreignfetch", MESSAGEERROR:"messageerror", STATECHANGE:"statechange", UPDATEFOUND:"updatefound", CONTROLLERCHANGE:"controllerchange", ANIMATIONSTART:module$contents$goog$events$eventTypeHelpers_getVendorPrefixedName("AnimationStart"), ANIMATIONEND:module$contents$goog$events$eventTypeHelpers_getVendorPrefixedName("AnimationEnd"),
|
|
7397
|
+
ANIMATIONITERATION:module$contents$goog$events$eventTypeHelpers_getVendorPrefixedName("AnimationIteration"), TRANSITIONEND:module$contents$goog$events$eventTypeHelpers_getVendorPrefixedName("TransitionEnd"), POINTERDOWN:"pointerdown", POINTERUP:"pointerup", POINTERCANCEL:"pointercancel", POINTERMOVE:"pointermove", POINTEROVER:"pointerover", POINTEROUT:"pointerout", POINTERENTER:"pointerenter", POINTERLEAVE:"pointerleave", GOTPOINTERCAPTURE:"gotpointercapture", LOSTPOINTERCAPTURE:"lostpointercapture",
|
|
7398
|
+
MSGESTURECHANGE:"MSGestureChange", MSGESTUREEND:"MSGestureEnd", MSGESTUREHOLD:"MSGestureHold", MSGESTURESTART:"MSGestureStart", MSGESTURETAP:"MSGestureTap", MSGOTPOINTERCAPTURE:"MSGotPointerCapture", MSINERTIASTART:"MSInertiaStart", MSLOSTPOINTERCAPTURE:"MSLostPointerCapture", MSPOINTERCANCEL:"MSPointerCancel", MSPOINTERDOWN:"MSPointerDown", MSPOINTERENTER:"MSPointerEnter", MSPOINTERHOVER:"MSPointerHover", MSPOINTERLEAVE:"MSPointerLeave", MSPOINTERMOVE:"MSPointerMove", MSPOINTEROUT:"MSPointerOut",
|
|
7399
|
+
MSPOINTEROVER:"MSPointerOver", MSPOINTERUP:"MSPointerUp", TEXT:"text", TEXTINPUT:"textInput", COMPOSITIONSTART:"compositionstart", COMPOSITIONUPDATE:"compositionupdate", COMPOSITIONEND:"compositionend", BEFOREINPUT:"beforeinput", FULLSCREENCHANGE:"fullscreenchange", WEBKITBEGINFULLSCREEN:"webkitbeginfullscreen", WEBKITENDFULLSCREEN:"webkitendfullscreen", EXIT:"exit", LOADABORT:"loadabort", LOADCOMMIT:"loadcommit", LOADREDIRECT:"loadredirect", LOADSTART:"loadstart", LOADSTOP:"loadstop", RESPONSIVE:"responsive",
|
|
7400
|
+
SIZECHANGED:"sizechanged", UNRESPONSIVE:"unresponsive", VISIBILITYCHANGE:"visibilitychange", STORAGE:"storage", BEFOREPRINT:"beforeprint", AFTERPRINT:"afterprint", BEFOREINSTALLPROMPT:"beforeinstallprompt", APPINSTALLED:"appinstalled", CANCEL:"cancel", FINISH:"finish", REMOVE:"remove"};
|
|
7401
|
+
goog.events.EventType = module$contents$goog$events$EventType_EventType;
|
|
7380
7402
|
function module$contents$goog$events$BrowserEvent_BrowserEvent(opt_e, opt_currentTarget) {
|
|
7381
7403
|
goog.events.Event.call(this, opt_e ? opt_e.type : "");
|
|
7382
7404
|
this.relatedTarget = this.currentTarget = this.target = null;
|
|
@@ -7401,7 +7423,7 @@ module$contents$goog$events$BrowserEvent_BrowserEvent.prototype.init = function(
|
|
|
7401
7423
|
this.target = e.target || e.srcElement;
|
|
7402
7424
|
this.currentTarget = opt_currentTarget;
|
|
7403
7425
|
var relatedTarget = e.relatedTarget;
|
|
7404
|
-
relatedTarget || (type == goog
|
|
7426
|
+
relatedTarget || (type == module$contents$goog$events$EventType_EventType.MOUSEOVER ? relatedTarget = e.fromElement : type == module$contents$goog$events$EventType_EventType.MOUSEOUT && (relatedTarget = e.toElement));
|
|
7405
7427
|
this.relatedTarget = relatedTarget;
|
|
7406
7428
|
relevantTouch ? (this.clientX = relevantTouch.clientX !== void 0 ? relevantTouch.clientX : relevantTouch.pageX, this.clientY = relevantTouch.clientY !== void 0 ? relevantTouch.clientY : relevantTouch.pageY, this.screenX = relevantTouch.screenX || 0, this.screenY = relevantTouch.screenY || 0) : (module$contents$goog$events$BrowserEvent_BrowserEvent.USE_LAYER_XY_AS_OFFSET_XY ? (this.offsetX = e.layerX !== void 0 ? e.layerX : e.offsetX, this.offsetY = e.layerY !== void 0 ? e.layerY : e.offsetY) :
|
|
7407
7429
|
(this.offsetX = goog.userAgent.WEBKIT || e.offsetX !== void 0 ? e.offsetX : e.layerX, this.offsetY = goog.userAgent.WEBKIT || e.offsetY !== void 0 ? e.offsetY : e.layerY), this.clientX = e.clientX !== void 0 ? e.clientX : e.pageX, this.clientY = e.clientY !== void 0 ? e.clientY : e.pageY, this.screenX = e.screenX || 0, this.screenY = e.screenY || 0);
|
|
@@ -19187,7 +19209,8 @@ var module$contents$goog$net$ErrorCode_ErrorCode = {NO_ERROR:0, ACCESS_DENIED:1,
|
|
|
19187
19209
|
}
|
|
19188
19210
|
}};
|
|
19189
19211
|
goog.net.ErrorCode = module$contents$goog$net$ErrorCode_ErrorCode;
|
|
19190
|
-
goog
|
|
19212
|
+
var module$contents$goog$net$EventType_EventType = {COMPLETE:"complete", SUCCESS:"success", ERROR:"error", ABORT:"abort", READY:"ready", READY_STATE_CHANGE:"readystatechange", TIMEOUT:"timeout", INCREMENTAL_DATA:"incrementaldata", PROGRESS:"progress", DOWNLOAD_PROGRESS:"downloadprogress", UPLOAD_PROGRESS:"uploadprogress"};
|
|
19213
|
+
goog.net.EventType = module$contents$goog$net$EventType_EventType;
|
|
19191
19214
|
var module$contents$goog$net$HttpStatus_HttpStatus = {CONTINUE:100, SWITCHING_PROTOCOLS:101, OK:200, CREATED:201, ACCEPTED:202, NON_AUTHORITATIVE_INFORMATION:203, NO_CONTENT:204, RESET_CONTENT:205, PARTIAL_CONTENT:206, MULTI_STATUS:207, MULTIPLE_CHOICES:300, MOVED_PERMANENTLY:301, FOUND:302, SEE_OTHER:303, NOT_MODIFIED:304, USE_PROXY:305, TEMPORARY_REDIRECT:307, PERMANENT_REDIRECT:308, BAD_REQUEST:400, UNAUTHORIZED:401, PAYMENT_REQUIRED:402, FORBIDDEN:403, NOT_FOUND:404, METHOD_NOT_ALLOWED:405, NOT_ACCEPTABLE:406,
|
|
19192
19215
|
PROXY_AUTHENTICATION_REQUIRED:407, REQUEST_TIMEOUT:408, CONFLICT:409, GONE:410, LENGTH_REQUIRED:411, PRECONDITION_FAILED:412, REQUEST_ENTITY_TOO_LARGE:413, REQUEST_URI_TOO_LONG:414, UNSUPPORTED_MEDIA_TYPE:415, REQUEST_RANGE_NOT_SATISFIABLE:416, EXPECTATION_FAILED:417, UNPROCESSABLE_ENTITY:422, LOCKED:423, FAILED_DEPENDENCY:424, PRECONDITION_REQUIRED:428, TOO_MANY_REQUESTS:429, REQUEST_HEADER_FIELDS_TOO_LARGE:431, CLIENT_CLOSED_REQUEST:499, INTERNAL_SERVER_ERROR:500, NOT_IMPLEMENTED:501, BAD_GATEWAY:502,
|
|
19193
19216
|
SERVICE_UNAVAILABLE:503, GATEWAY_TIMEOUT:504, HTTP_VERSION_NOT_SUPPORTED:505, INSUFFICIENT_STORAGE:507, NETWORK_AUTHENTICATION_REQUIRED:511, QUIRK_IE_NO_CONTENT:1223, isSuccess:function(status) {
|
|
@@ -19268,8 +19291,8 @@ goog.net.XhrIo.sendInstances_ = [];
|
|
|
19268
19291
|
goog.net.XhrIo.send = function(url, opt_callback, opt_method, opt_content, opt_headers, opt_timeoutInterval, opt_withCredentials) {
|
|
19269
19292
|
var x = new goog.net.XhrIo();
|
|
19270
19293
|
goog.net.XhrIo.sendInstances_.push(x);
|
|
19271
|
-
opt_callback && x.listen(goog
|
|
19272
|
-
x.listenOnce(goog
|
|
19294
|
+
opt_callback && x.listen(module$contents$goog$net$EventType_EventType.COMPLETE, opt_callback);
|
|
19295
|
+
x.listenOnce(module$contents$goog$net$EventType_EventType.READY, x.cleanupSend_);
|
|
19273
19296
|
opt_timeoutInterval && x.setTimeoutInterval(opt_timeoutInterval);
|
|
19274
19297
|
opt_withCredentials && x.setWithCredentials(opt_withCredentials);
|
|
19275
19298
|
x.send(url, opt_method, opt_content, opt_headers);
|
|
@@ -19396,7 +19419,7 @@ goog.net.XhrIo.prototype.createXhr = function() {
|
|
|
19396
19419
|
return this.xmlHttpFactory_ ? this.xmlHttpFactory_.createInstance() : goog.net.XmlHttp();
|
|
19397
19420
|
};
|
|
19398
19421
|
goog.net.XhrIo.prototype.timeout_ = function() {
|
|
19399
|
-
typeof goog != "undefined" && this.xhr_ && (this.lastError_ = "Timed out after " + this.timeoutInterval_ + "ms, aborting", this.lastErrorCode_ = module$contents$goog$net$ErrorCode_ErrorCode.TIMEOUT, goog.log.fine(this.logger_, this.formatMsg_(this.lastError_)), this.dispatchEvent(goog
|
|
19422
|
+
typeof goog != "undefined" && this.xhr_ && (this.lastError_ = "Timed out after " + this.timeoutInterval_ + "ms, aborting", this.lastErrorCode_ = module$contents$goog$net$ErrorCode_ErrorCode.TIMEOUT, goog.log.fine(this.logger_, this.formatMsg_(this.lastError_)), this.dispatchEvent(module$contents$goog$net$EventType_EventType.TIMEOUT), this.abort(module$contents$goog$net$ErrorCode_ErrorCode.TIMEOUT));
|
|
19400
19423
|
};
|
|
19401
19424
|
goog.net.XhrIo.prototype.error_ = function(errorCode, err) {
|
|
19402
19425
|
this.active_ = !1;
|
|
@@ -19407,10 +19430,10 @@ goog.net.XhrIo.prototype.error_ = function(errorCode, err) {
|
|
|
19407
19430
|
this.cleanUpXhr_();
|
|
19408
19431
|
};
|
|
19409
19432
|
goog.net.XhrIo.prototype.dispatchErrors_ = function() {
|
|
19410
|
-
this.errorDispatched_ || (this.errorDispatched_ = !0, this.dispatchEvent(goog
|
|
19433
|
+
this.errorDispatched_ || (this.errorDispatched_ = !0, this.dispatchEvent(module$contents$goog$net$EventType_EventType.COMPLETE), this.dispatchEvent(module$contents$goog$net$EventType_EventType.ERROR));
|
|
19411
19434
|
};
|
|
19412
19435
|
goog.net.XhrIo.prototype.abort = function(opt_failureCode) {
|
|
19413
|
-
this.xhr_ && this.active_ && (goog.log.fine(this.logger_, this.formatMsg_("Aborting")), this.active_ = !1, this.inAbort_ = !0, this.xhr_.abort(), this.inAbort_ = !1, this.lastErrorCode_ = opt_failureCode || module$contents$goog$net$ErrorCode_ErrorCode.ABORT, this.dispatchEvent(goog
|
|
19436
|
+
this.xhr_ && this.active_ && (goog.log.fine(this.logger_, this.formatMsg_("Aborting")), this.active_ = !1, this.inAbort_ = !0, this.xhr_.abort(), this.inAbort_ = !1, this.lastErrorCode_ = opt_failureCode || module$contents$goog$net$ErrorCode_ErrorCode.ABORT, this.dispatchEvent(module$contents$goog$net$EventType_EventType.COMPLETE), this.dispatchEvent(module$contents$goog$net$EventType_EventType.ABORT), this.cleanUpXhr_());
|
|
19414
19437
|
};
|
|
19415
19438
|
goog.net.XhrIo.prototype.disposeInternal = function() {
|
|
19416
19439
|
this.xhr_ && (this.active_ && (this.active_ = !1, this.inAbort_ = !0, this.xhr_.abort(), this.inAbort_ = !1), this.cleanUpXhr_(!0));
|
|
@@ -19433,11 +19456,11 @@ goog.net.XhrIo.prototype.onReadyStateChangeHelper_ = function() {
|
|
|
19433
19456
|
if (this.inSend_ && this.getReadyState() == goog.net.XmlHttp.ReadyState.COMPLETE) {
|
|
19434
19457
|
setTimeout(this.onReadyStateChange_.bind(this), 0);
|
|
19435
19458
|
} else {
|
|
19436
|
-
if (this.dispatchEvent(goog
|
|
19459
|
+
if (this.dispatchEvent(module$contents$goog$net$EventType_EventType.READY_STATE_CHANGE), this.isComplete()) {
|
|
19437
19460
|
goog.log.fine(this.logger_, this.formatMsg_("Request complete"));
|
|
19438
19461
|
this.active_ = !1;
|
|
19439
19462
|
try {
|
|
19440
|
-
this.isSuccess() ? (this.dispatchEvent(goog
|
|
19463
|
+
this.isSuccess() ? (this.dispatchEvent(module$contents$goog$net$EventType_EventType.COMPLETE), this.dispatchEvent(module$contents$goog$net$EventType_EventType.SUCCESS)) : (this.lastErrorCode_ = module$contents$goog$net$ErrorCode_ErrorCode.HTTP_ERROR, this.lastError_ = this.getStatusText() + " [" + this.getStatus() + "]", this.dispatchErrors_());
|
|
19441
19464
|
} finally {
|
|
19442
19465
|
this.cleanUpXhr_();
|
|
19443
19466
|
}
|
|
@@ -19446,9 +19469,9 @@ goog.net.XhrIo.prototype.onReadyStateChangeHelper_ = function() {
|
|
|
19446
19469
|
}
|
|
19447
19470
|
};
|
|
19448
19471
|
goog.net.XhrIo.prototype.onProgressHandler_ = function(e, opt_isDownload) {
|
|
19449
|
-
goog.asserts.assert(e.type === goog
|
|
19450
|
-
this.dispatchEvent(goog.net.XhrIo.buildProgressEvent_(e, goog
|
|
19451
|
-
this.dispatchEvent(goog.net.XhrIo.buildProgressEvent_(e, opt_isDownload ? goog
|
|
19472
|
+
goog.asserts.assert(e.type === module$contents$goog$net$EventType_EventType.PROGRESS, "goog.net.EventType.PROGRESS is of the same type as raw XHR progress.");
|
|
19473
|
+
this.dispatchEvent(goog.net.XhrIo.buildProgressEvent_(e, module$contents$goog$net$EventType_EventType.PROGRESS));
|
|
19474
|
+
this.dispatchEvent(goog.net.XhrIo.buildProgressEvent_(e, opt_isDownload ? module$contents$goog$net$EventType_EventType.DOWNLOAD_PROGRESS : module$contents$goog$net$EventType_EventType.UPLOAD_PROGRESS));
|
|
19452
19475
|
};
|
|
19453
19476
|
goog.net.XhrIo.buildProgressEvent_ = function(e, eventType) {
|
|
19454
19477
|
return {type:eventType, lengthComputable:e.lengthComputable, loaded:e.loaded, total:e.total};
|
|
@@ -19458,7 +19481,7 @@ goog.net.XhrIo.prototype.cleanUpXhr_ = function(opt_fromDispose) {
|
|
|
19458
19481
|
this.cleanUpTimeoutTimer_();
|
|
19459
19482
|
var xhr = this.xhr_;
|
|
19460
19483
|
this.xhr_ = null;
|
|
19461
|
-
opt_fromDispose || this.dispatchEvent(goog
|
|
19484
|
+
opt_fromDispose || this.dispatchEvent(module$contents$goog$net$EventType_EventType.READY);
|
|
19462
19485
|
try {
|
|
19463
19486
|
xhr.onreadystatechange = null;
|
|
19464
19487
|
} catch (e) {
|
|
@@ -19604,7 +19627,7 @@ var $jscomp$templatelit$m1153655765$101 = $jscomp.createTemplateTagFirstArg(["ht
|
|
|
19604
19627
|
ee.apiclient = {};
|
|
19605
19628
|
var module$contents$ee$apiclient_apiclient = {};
|
|
19606
19629
|
ee.apiclient.VERSION = module$exports$ee$apiVersion.V1;
|
|
19607
|
-
ee.apiclient.API_CLIENT_VERSION = "1.7.
|
|
19630
|
+
ee.apiclient.API_CLIENT_VERSION = "1.7.13";
|
|
19608
19631
|
ee.apiclient.NULL_VALUE = module$exports$eeapiclient$domain_object.NULL_VALUE;
|
|
19609
19632
|
ee.apiclient.PromiseRequestService = module$exports$eeapiclient$promise_request_service.PromiseRequestService;
|
|
19610
19633
|
ee.apiclient.MakeRequestParams = module$contents$eeapiclient$request_params_MakeRequestParams;
|
|
@@ -19909,8 +19932,8 @@ module$contents$ee$apiclient_apiclient.send = function(path, params, callback, m
|
|
|
19909
19932
|
var profileHookAtCallTime = module$contents$ee$apiclient_apiclient.profileHook_, contentType = "application/x-www-form-urlencoded";
|
|
19910
19933
|
body && (contentType = "application/json", method && method.startsWith("multipart") && (contentType = method, method = "POST"));
|
|
19911
19934
|
method = method || "POST";
|
|
19912
|
-
var headers = {"Content-Type":contentType}, version = "1.7.
|
|
19913
|
-
version === "1.7.
|
|
19935
|
+
var headers = {"Content-Type":contentType}, version = "1.7.13";
|
|
19936
|
+
version === "1.7.13" && (version = "latest");
|
|
19914
19937
|
headers[module$contents$ee$apiclient_apiclient.API_CLIENT_VERSION_HEADER] = "ee-js/" + version;
|
|
19915
19938
|
module$contents$ee$apiclient_apiclient.userAgent_ && (headers["User-Agent"] = module$contents$ee$apiclient_apiclient.userAgent_);
|
|
19916
19939
|
var authToken = module$contents$ee$apiclient_apiclient.getAuthToken();
|
|
@@ -26328,7 +26351,7 @@ ee.layers.AbstractTile.prototype.startLoad = function() {
|
|
|
26328
26351
|
this.loadingStartTs_ = (new Date()).getTime();
|
|
26329
26352
|
this.xhrIo_ = new goog.net.XhrIo();
|
|
26330
26353
|
this.xhrIo_.setResponseType(goog.net.XhrIo.ResponseType.BLOB);
|
|
26331
|
-
this.xhrIo_.listen(goog
|
|
26354
|
+
this.xhrIo_.listen(module$contents$goog$net$EventType_EventType.COMPLETE, function(event) {
|
|
26332
26355
|
var blob = $jscomp$this$800656669$27.xhrIo_.getResponse(), status = $jscomp$this$800656669$27.xhrIo_.getStatus();
|
|
26333
26356
|
status == module$contents$goog$net$HttpStatus_HttpStatus.TOO_MANY_REQUESTS && $jscomp$this$800656669$27.setStatus(ee.layers.AbstractTile.Status.THROTTLED);
|
|
26334
26357
|
if (module$contents$goog$net$HttpStatus_HttpStatus.isSuccess(status)) {
|
|
@@ -26349,7 +26372,7 @@ ee.layers.AbstractTile.prototype.startLoad = function() {
|
|
|
26349
26372
|
$jscomp$this$800656669$27.retryLoad("Failed to load tile.");
|
|
26350
26373
|
}
|
|
26351
26374
|
}, !1);
|
|
26352
|
-
this.xhrIo_.listenOnce(goog
|
|
26375
|
+
this.xhrIo_.listenOnce(module$contents$goog$net$EventType_EventType.READY, goog.partial(module$contents$goog$dispose_dispose, this.xhrIo_));
|
|
26353
26376
|
this.sourceUrl && this.sourceUrl.endsWith("&profiling=1") && (this.sourceUrl = this.sourceUrl.replace("&profiling=1", ""), this.xhrIo_.headers.set(module$contents$ee$apiclient_apiclient.PROFILE_REQUEST_HEADER, "1"));
|
|
26354
26377
|
this.xhrIo_.send(this.sourceUrl, "GET");
|
|
26355
26378
|
};
|
|
@@ -26478,21 +26501,21 @@ module$contents$goog$net$ImageLoader_ImageLoader.prototype.loadImage_ = function
|
|
|
26478
26501
|
module$contents$goog$net$ImageLoader_ImageLoader.prototype.onNetworkEvent_ = function(evt) {
|
|
26479
26502
|
var image = evt.currentTarget;
|
|
26480
26503
|
if (image) {
|
|
26481
|
-
if (evt.type == goog
|
|
26482
|
-
if (image.readyState == goog
|
|
26483
|
-
evt.type = goog
|
|
26504
|
+
if (evt.type == module$contents$goog$net$EventType_EventType.READY_STATE_CHANGE) {
|
|
26505
|
+
if (image.readyState == module$contents$goog$net$EventType_EventType.COMPLETE) {
|
|
26506
|
+
evt.type = module$contents$goog$events$EventType_EventType.LOAD;
|
|
26484
26507
|
} else {
|
|
26485
26508
|
return;
|
|
26486
26509
|
}
|
|
26487
26510
|
}
|
|
26488
|
-
typeof image.naturalWidth == "undefined" && (evt.type == goog
|
|
26511
|
+
typeof image.naturalWidth == "undefined" && (evt.type == module$contents$goog$events$EventType_EventType.LOAD ? (image.naturalWidth = image.width, image.naturalHeight = image.height) : (image.naturalWidth = 0, image.naturalHeight = 0));
|
|
26489
26512
|
this.removeImage(image.id);
|
|
26490
26513
|
this.dispatchEvent({type:evt.type, target:image});
|
|
26491
26514
|
this.isDisposed() || this.maybeFireCompletionEvent_();
|
|
26492
26515
|
}
|
|
26493
26516
|
};
|
|
26494
26517
|
module$contents$goog$net$ImageLoader_ImageLoader.prototype.maybeFireCompletionEvent_ = function() {
|
|
26495
|
-
module$contents$goog$object_isEmpty(this.imageIdToImageMap_) && module$contents$goog$object_isEmpty(this.imageIdToRequestMap_) && !this.completionFired_ && (this.completionFired_ = !0, this.dispatchEvent(goog
|
|
26518
|
+
module$contents$goog$object_isEmpty(this.imageIdToImageMap_) && module$contents$goog$object_isEmpty(this.imageIdToRequestMap_) && !this.completionFired_ && (this.completionFired_ = !0, this.dispatchEvent(module$contents$goog$net$EventType_EventType.COMPLETE));
|
|
26496
26519
|
};
|
|
26497
26520
|
module$contents$goog$net$ImageLoader_ImageLoader.prototype.disposeInternal = function() {
|
|
26498
26521
|
delete this.imageIdToRequestMap_;
|
|
@@ -26502,7 +26525,7 @@ module$contents$goog$net$ImageLoader_ImageLoader.prototype.disposeInternal = fun
|
|
|
26502
26525
|
};
|
|
26503
26526
|
module$contents$goog$net$ImageLoader_ImageLoader.CorsRequestType = {ANONYMOUS:"anonymous", USE_CREDENTIALS:"use-credentials"};
|
|
26504
26527
|
var module$contents$goog$net$ImageLoader_ImageRequest;
|
|
26505
|
-
module$contents$goog$net$ImageLoader_ImageLoader.IMAGE_LOAD_EVENTS_ = [goog
|
|
26528
|
+
module$contents$goog$net$ImageLoader_ImageLoader.IMAGE_LOAD_EVENTS_ = [module$contents$goog$events$EventType_EventType.LOAD, module$contents$goog$net$EventType_EventType.ABORT, module$contents$goog$net$EventType_EventType.ERROR];
|
|
26506
26529
|
goog.net.ImageLoader = module$contents$goog$net$ImageLoader_ImageLoader;
|
|
26507
26530
|
ee_root.third_party.earthengine_api.javascript.layers.imageoverlay = {};
|
|
26508
26531
|
ee_root.third_party.earthengine_api.javascript.layers.imageoverlay.ImageOverlay = function(tileSource, opt_options) {
|
|
@@ -26531,7 +26554,7 @@ ee_root.third_party.earthengine_api.javascript.layers.imageoverlay.ImageTile.pro
|
|
|
26531
26554
|
this.imageLoader_ = new module$contents$goog$net$ImageLoader_ImageLoader();
|
|
26532
26555
|
this.imageLoader_.addImage(this.div.id + "-image", imageUrl);
|
|
26533
26556
|
this.imageLoaderListenerKey_ = goog.events.listenOnce(this.imageLoader_, ee_root.third_party.earthengine_api.javascript.layers.imageoverlay.ImageTile.IMAGE_LOADER_EVENTS_, function(event) {
|
|
26534
|
-
event.type == goog
|
|
26557
|
+
event.type == module$contents$goog$events$EventType_EventType.LOAD ? (this.imageEl = event.target, ee.layers.AbstractTile.prototype.finishLoad.call(this)) : this.retryLoad();
|
|
26535
26558
|
}, void 0, this);
|
|
26536
26559
|
this.imageLoader_.start();
|
|
26537
26560
|
};
|
|
@@ -26546,7 +26569,7 @@ ee_root.third_party.earthengine_api.javascript.layers.imageoverlay.ImageTile.pro
|
|
|
26546
26569
|
ee_root.third_party.earthengine_api.javascript.layers.imageoverlay.ImageTile.defaultRenderer_ = function(tile) {
|
|
26547
26570
|
tile.div.appendChild(tile.imageEl);
|
|
26548
26571
|
};
|
|
26549
|
-
ee_root.third_party.earthengine_api.javascript.layers.imageoverlay.ImageTile.IMAGE_LOADER_EVENTS_ = [goog
|
|
26572
|
+
ee_root.third_party.earthengine_api.javascript.layers.imageoverlay.ImageTile.IMAGE_LOADER_EVENTS_ = [module$contents$goog$events$EventType_EventType.LOAD, module$contents$goog$net$EventType_EventType.ABORT, module$contents$goog$net$EventType_EventType.ERROR];
|
|
26550
26573
|
goog.string.path = {};
|
|
26551
26574
|
function module$contents$goog$string$path_baseName(path) {
|
|
26552
26575
|
var i = path.lastIndexOf("/") + 1;
|
|
@@ -27133,7 +27156,7 @@ ee.MapTileManager.Request_.prototype.hasReachedMaxRetries = function() {
|
|
|
27133
27156
|
return this.attemptCount_ > this.maxRetries_;
|
|
27134
27157
|
};
|
|
27135
27158
|
ee.MapTileManager.Request_.prototype.setAborted = function(aborted) {
|
|
27136
|
-
aborted && !this.aborted_ && (this.aborted_ = aborted, this.event_ = new goog.events.Event(goog
|
|
27159
|
+
aborted && !this.aborted_ && (this.aborted_ = aborted, this.event_ = new goog.events.Event(module$contents$goog$net$EventType_EventType.ABORT));
|
|
27137
27160
|
};
|
|
27138
27161
|
ee.MapTileManager.Request_.prototype.getAborted = function() {
|
|
27139
27162
|
return this.aborted_;
|
|
@@ -27143,12 +27166,12 @@ ee.MapTileManager.Request_.prototype.handleImageEvent_ = function(e) {
|
|
|
27143
27166
|
this.markCompleted_();
|
|
27144
27167
|
} else {
|
|
27145
27168
|
switch(e.type) {
|
|
27146
|
-
case goog
|
|
27169
|
+
case module$contents$goog$events$EventType_EventType.LOAD:
|
|
27147
27170
|
this.handleSuccess_(e);
|
|
27148
27171
|
this.markCompleted_();
|
|
27149
27172
|
break;
|
|
27150
|
-
case goog
|
|
27151
|
-
case goog
|
|
27173
|
+
case module$contents$goog$net$EventType_EventType.ERROR:
|
|
27174
|
+
case module$contents$goog$net$EventType_EventType.ABORT:
|
|
27152
27175
|
this.handleError_(e);
|
|
27153
27176
|
}
|
|
27154
27177
|
}
|
|
@@ -27184,7 +27207,7 @@ ee.MapTileManager.Request_.prototype.start_ = function() {
|
|
|
27184
27207
|
if (module$contents$goog$Uri_Uri.parse(sourceUrl).getQueryData().containsKey("profiling")) {
|
|
27185
27208
|
var xhrIo = new goog.net.XhrIo();
|
|
27186
27209
|
xhrIo.setResponseType(goog.net.XhrIo.ResponseType.BLOB);
|
|
27187
|
-
xhrIo.listen(goog
|
|
27210
|
+
xhrIo.listen(module$contents$goog$net$EventType_EventType.COMPLETE, goog.bind(function(event) {
|
|
27188
27211
|
this.profileId_ = xhrIo.getResponseHeader(module$contents$ee$apiclient_apiclient.PROFILE_HEADER) || null;
|
|
27189
27212
|
if (xhrIo.getStatus() >= 200 && xhrIo.getStatus() < 300) {
|
|
27190
27213
|
try {
|
|
@@ -27195,7 +27218,7 @@ ee.MapTileManager.Request_.prototype.start_ = function() {
|
|
|
27195
27218
|
}
|
|
27196
27219
|
actuallyLoadImage(ok ? objectUrl : sourceUrl);
|
|
27197
27220
|
}, this));
|
|
27198
|
-
xhrIo.listenOnce(goog
|
|
27221
|
+
xhrIo.listenOnce(module$contents$goog$net$EventType_EventType.READY, goog.bind(xhrIo.dispose, xhrIo));
|
|
27199
27222
|
xhrIo.send(sourceUrl, "GET");
|
|
27200
27223
|
} else {
|
|
27201
27224
|
actuallyLoadImage(sourceUrl);
|
|
@@ -27208,7 +27231,7 @@ ee.MapTileManager.Request_.prototype.imageLoader_ = null;
|
|
|
27208
27231
|
ee.MapTileManager.Request_.prototype.token_ = null;
|
|
27209
27232
|
ee.MapTileManager.Request_.prototype.event_ = null;
|
|
27210
27233
|
ee.MapTileManager.Request_.prototype.profileId_ = null;
|
|
27211
|
-
ee.MapTileManager.Request_.IMAGE_LOADER_EVENT_TYPES_ = [goog
|
|
27234
|
+
ee.MapTileManager.Request_.IMAGE_LOADER_EVENT_TYPES_ = [module$contents$goog$events$EventType_EventType.LOAD, module$contents$goog$net$EventType_EventType.ABORT, module$contents$goog$net$EventType_EventType.ERROR];
|
|
27212
27235
|
ee.MapTileManager.Token_ = function() {
|
|
27213
27236
|
goog.Disposable.call(this);
|
|
27214
27237
|
this.active_ = !1;
|
|
@@ -27295,11 +27318,11 @@ ee.MapLayerOverlay.prototype.setOpacity = function(opacity) {
|
|
|
27295
27318
|
});
|
|
27296
27319
|
};
|
|
27297
27320
|
ee.MapLayerOverlay.prototype.handleImageCompleted_ = function(div, tileId, e, profileId) {
|
|
27298
|
-
if (e.type == goog
|
|
27321
|
+
if (e.type == module$contents$goog$net$EventType_EventType.ERROR) {
|
|
27299
27322
|
module$contents$goog$array_remove(this.tilesLoading, tileId), this.tilesFailed.add(tileId), this.dispatchEvent(e);
|
|
27300
27323
|
} else {
|
|
27301
27324
|
module$contents$goog$array_remove(this.tilesLoading, tileId);
|
|
27302
|
-
if (e.target && e.type == goog
|
|
27325
|
+
if (e.target && e.type == module$contents$goog$events$EventType_EventType.LOAD) {
|
|
27303
27326
|
var tile = e.target;
|
|
27304
27327
|
this.tiles_.add(tile);
|
|
27305
27328
|
this.opacity_ != 1 && goog.style.setOpacity(tile, this.opacity_);
|
|
@@ -27466,29 +27489,28 @@ ee.data.Profiler.Format.prototype.toString = function() {
|
|
|
27466
27489
|
ee.data.Profiler.Format.TEXT = new ee.data.Profiler.Format("text");
|
|
27467
27490
|
ee.data.Profiler.Format.JSON = new ee.data.Profiler.Format("json");
|
|
27468
27491
|
(function() {
|
|
27469
|
-
var exportedFnInfo = {}, orderedFnNames = "ee.ApiFunction.
|
|
27470
|
-
orderedParamLists = [["name", "
|
|
27471
|
-
"collection opt_description opt_table opt_overwrite opt_append opt_selectors opt_maxVertices opt_priority".split(" "), "collection opt_description
|
|
27472
|
-
["classifier", "opt_description", "opt_assetId", "opt_priority"], "image opt_description
|
|
27473
|
-
"
|
|
27474
|
-
["
|
|
27475
|
-
["
|
|
27476
|
-
|
|
27477
|
-
["
|
|
27478
|
-
[
|
|
27479
|
-
"
|
|
27480
|
-
"
|
|
27481
|
-
|
|
27482
|
-
[
|
|
27483
|
-
|
|
27484
|
-
|
|
27485
|
-
ee.
|
|
27486
|
-
ee.data.
|
|
27487
|
-
ee.
|
|
27488
|
-
ee.
|
|
27489
|
-
ee.
|
|
27490
|
-
ee.
|
|
27491
|
-
ee.ImageCollection.prototype.linkCollection, ee.ImageCollection.prototype.getFilmstripThumbURL, ee.ImageCollection.prototype.getVideoThumbURL, ee.ImageCollection.prototype.first, ee.List, ee.Number, ee.Serializer.encode, ee.Serializer.toJSON, ee.Serializer.encodeCloudApiPretty, ee.Serializer.encodeCloudApi, ee.Serializer.toReadableJSON, ee.Serializer.toCloudApiJSON, ee.Serializer.toReadableCloudApiJSON, ee.String, ee.Terrain].forEach(function(fn, i) {
|
|
27492
|
+
var exportedFnInfo = {}, orderedFnNames = "ee.ApiFunction._call ee.ApiFunction._apply ee.ApiFunction.lookup ee.batch.Export.image.toDrive ee.batch.Export.videoMap.toCloudStorage ee.batch.Export.table.toBigQuery ee.batch.Export.table.toAsset ee.batch.Export.image.toAsset ee.batch.Export.video.toDrive ee.batch.Export.classifier.toAsset ee.batch.Export.image.toCloudStorage ee.batch.Export.video.toCloudStorage ee.batch.Export.table.toDrive ee.batch.Export.table.toFeatureView ee.batch.Export.table.toCloudStorage ee.batch.Export.map.toCloudStorage ee.Collection.prototype.sort ee.Collection.prototype.filter ee.Collection.prototype.filterBounds ee.Collection.prototype.map ee.Collection.prototype.filterMetadata ee.Collection.prototype.filterDate ee.Collection.prototype.iterate ee.Collection.prototype.limit ee.ComputedObject.prototype.aside ee.ComputedObject.prototype.evaluate ee.ComputedObject.prototype.getInfo ee.ComputedObject.prototype.serialize ee.data.copyAsset ee.data.getTaskListWithLimit ee.data.deleteAsset ee.data.getThumbId ee.data.cancelOperation ee.data.getAsset ee.data.computeValue ee.data.authenticateViaOauth ee.data.getAssetAcl ee.data.getInfo ee.data.getVideoThumbId ee.data.listFeatures ee.data.getOperation ee.data.setAssetAcl ee.data.makeDownloadUrl ee.data.getList ee.data.getTableDownloadId ee.data.listAssets ee.data.getFilmstripThumbId ee.data.cancelTask ee.data.listImages ee.data.authenticate ee.data.makeThumbUrl ee.data.updateAsset ee.data.updateTask ee.data.getDownloadId ee.data.listBuckets ee.data.authenticateViaPopup ee.data.getFeatureViewTilesKey ee.data.startProcessing ee.data.setAssetProperties ee.data.getAssetRootQuota ee.data.authenticateViaPrivateKey ee.data.makeTableDownloadUrl ee.data.getAssetRoots ee.data.setWorkloadTag ee.data.getWorkloadTag ee.data.newTaskId ee.data.createAssetHome ee.data.setDefaultWorkloadTag ee.data.getMapId ee.data.startIngestion ee.data.resetWorkloadTag ee.data.createAsset ee.data.getTaskStatus ee.data.getTileUrl ee.data.createFolder ee.data.getTaskList ee.data.renameAsset ee.data.listOperations ee.data.startTableIngestion ee.Date ee.Deserializer.fromCloudApiJSON ee.Deserializer.decodeCloudApi ee.Deserializer.decode ee.Deserializer.fromJSON ee.Dictionary ee.apply ee.initialize ee.TILE_SIZE ee.Algorithms ee.call ee.reset ee.InitState ee.Element.prototype.set ee.Encodable.SourceFrame ee.Feature.prototype.getMapId ee.Feature.prototype.getInfo ee.Feature.prototype.getMap ee.Feature ee.FeatureCollection.prototype.getMap ee.FeatureCollection.prototype.getInfo ee.FeatureCollection ee.FeatureCollection.prototype.select ee.FeatureCollection.prototype.getMapId ee.FeatureCollection.prototype.getDownloadURL ee.Filter.lt ee.Filter.or ee.Filter.and ee.Filter.prototype.not ee.Filter.eq ee.Filter ee.Filter.date ee.Filter.metadata ee.Filter.lte ee.Filter.gt ee.Filter.bounds ee.Filter.inList ee.Filter.neq ee.Filter.gte ee.Function.prototype.apply ee.Function.prototype.call ee.Geometry.LinearRing ee.Geometry.MultiPoint ee.Geometry.MultiPolygon ee.Geometry.Rectangle ee.Geometry.MultiLineString ee.Geometry.prototype.toGeoJSON ee.Geometry.Polygon ee.Geometry.LineString ee.Geometry ee.Geometry.BBox ee.Geometry.prototype.toGeoJSONString ee.Geometry.Point ee.Geometry.prototype.serialize ee.Image.prototype.expression ee.Image.prototype.select ee.Image.prototype.getInfo ee.Image.prototype.getMapId ee.Image.prototype.clip ee.Image.prototype.getThumbId ee.Image.rgb ee.Image.prototype.rename ee.Image.cat ee.Image ee.Image.prototype.getThumbURL ee.Image.prototype.getMap ee.Image.prototype.getDownloadURL ee.ImageCollection.prototype.getMapId ee.ImageCollection.prototype.getInfo ee.ImageCollection.prototype.linkCollection ee.ImageCollection.prototype.getFilmstripThumbURL ee.ImageCollection.prototype.select ee.ImageCollection ee.ImageCollection.prototype.getMap ee.ImageCollection.prototype.first ee.ImageCollection.prototype.getVideoThumbURL ee.List ee.Number ee.Serializer.toReadableCloudApiJSON ee.Serializer.encode ee.Serializer.encodeCloudApiPretty ee.Serializer.toJSON ee.Serializer.toCloudApiJSON ee.Serializer.encodeCloudApi ee.Serializer.toReadableJSON ee.String ee.Terrain".split(" "),
|
|
27493
|
+
orderedParamLists = [["name", "var_args"], ["name", "namedArgs"], ["name"], "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_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(" "),
|
|
27494
|
+
"collection opt_description opt_table opt_overwrite opt_append opt_selectors opt_maxVertices opt_priority".split(" "), "collection opt_description opt_assetId opt_maxVertices opt_priority opt_overwrite".split(" "), "image opt_description opt_assetId opt_pyramidingPolicy opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_shardSize opt_priority opt_overwrite".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(" "),
|
|
27495
|
+
["classifier", "opt_description", "opt_assetId", "opt_priority"], "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(" "), "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(" "), "collection opt_description opt_folder opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices opt_priority".split(" "),
|
|
27496
|
+
"collection opt_description opt_assetId opt_maxFeaturesPerTile opt_thinningStrategy opt_thinningRanking opt_zOrderRanking opt_priority".split(" "), "collection opt_description opt_bucket opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices opt_priority".split(" "), "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(" "), ["property", "opt_ascending"],
|
|
27497
|
+
["filter"], ["geometry"], ["algorithm", "opt_dropNulls"], ["name", "operator", "value"], ["start", "opt_end"], ["algorithm", "opt_first"], ["max", "opt_property", "opt_ascending"], ["func", "var_args"], ["callback"], ["opt_callback"], ["legacy"], ["sourceId", "destinationId", "opt_overwrite", "opt_callback"], ["opt_limit", "opt_callback"], ["assetId", "opt_callback"], ["params", "opt_callback"], ["operationName", "opt_callback"], ["id", "opt_callback"], ["obj", "opt_callback"], "clientId success opt_error opt_extraScopes opt_onImmediateFailed opt_suppressDefaultScopes".split(" "),
|
|
27498
|
+
["assetId", "opt_callback"], ["id", "opt_callback"], ["params", "opt_callback"], ["asset", "params", "opt_callback"], ["operationName", "opt_callback"], ["assetId", "aclUpdate", "opt_callback"], ["id"], ["params", "opt_callback"], ["params", "opt_callback"], ["parent", "opt_params", "opt_callback"], ["params", "opt_callback"], ["taskId", "opt_callback"], ["parent", "opt_params", "opt_callback"], ["clientId", "success", "opt_error", "opt_extraScopes", "opt_onImmediateFailed"], ["id"], ["assetId",
|
|
27499
|
+
"asset", "updateFields", "opt_callback"], ["taskId", "action", "opt_callback"], ["params", "opt_callback"], ["project", "opt_callback"], ["opt_success", "opt_error"], ["params", "opt_callback"], ["taskId", "params", "opt_callback"], ["assetId", "properties", "opt_callback"], ["rootId", "opt_callback"], ["privateKey", "opt_success", "opt_error", "opt_extraScopes", "opt_suppressDefaultScopes"], ["id"], ["opt_callback"], ["tag"], [], ["opt_count", "opt_callback"], ["requestedId", "opt_callback"],
|
|
27500
|
+
["tag"], ["params", "opt_callback"], ["taskId", "request", "opt_callback"], ["opt_resetDefault"], ["value", "opt_path", "opt_force", "opt_properties", "opt_callback"], ["taskId", "opt_callback"], ["id", "x", "y", "z"], ["path", "opt_force", "opt_callback"], ["opt_callback"], ["sourceId", "destinationId", "opt_callback"], ["opt_limit", "opt_callback"], ["taskId", "request", "opt_callback"], ["date", "opt_tz"], ["json"], ["json"], ["json"], ["json"], ["opt_dict"], ["func", "namedArgs"], "opt_baseurl opt_tileurl opt_successCallback opt_errorCallback opt_xsrfToken opt_project".split(" "),
|
|
27501
|
+
[], [], ["func", "var_args"], [], [], ["var_args"], [], ["opt_visParams", "opt_callback"], ["opt_callback"], ["opt_visParams", "opt_callback"], ["geometry", "opt_properties"], ["opt_visParams", "opt_callback"], ["opt_callback"], ["args", "opt_column"], ["propertySelectors", "opt_newProperties", "opt_retainGeometry"], ["opt_visParams", "opt_callback"], ["opt_format", "opt_selectors", "opt_filename", "opt_callback"], ["name", "value"], ["var_args"], ["var_args"], [], ["name", "value"], ["opt_filter"],
|
|
27502
|
+
["start", "opt_end"], ["name", "operator", "value"], ["name", "value"], ["name", "value"], ["geometry", "opt_errorMargin"], ["opt_leftField", "opt_rightValue", "opt_rightField", "opt_leftValue"], ["name", "value"], ["name", "value"], ["namedArgs"], ["var_args"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["coords", "opt_proj"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], ["coords", "opt_proj", "opt_geodesic", "opt_evenOdd"], ["coords", "opt_proj", "opt_geodesic",
|
|
27503
|
+
"opt_maxError"], [], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["geoJson", "opt_proj", "opt_geodesic", "opt_evenOdd"], ["west", "south", "east", "north"], [], ["coords", "opt_proj"], ["legacy"], ["expression", "opt_map"], ["var_args"], ["opt_callback"], ["opt_visParams", "opt_callback"], ["geometry"], ["params", "opt_callback"], ["r", "g", "b"], ["var_args"], ["var_args"], ["opt_args"], ["params", "opt_callback"],
|
|
27504
|
+
["opt_visParams", "opt_callback"], ["params", "opt_callback"], ["opt_visParams", "opt_callback"], ["opt_callback"], ["imageCollection", "opt_linkedBands", "opt_linkedProperties", "opt_matchPropertyName"], ["params", "opt_callback"], ["selectors", "opt_names"], ["args"], ["opt_visParams", "opt_callback"], [], ["params", "opt_callback"], ["list"], ["number"], ["obj"], ["obj", "opt_isCompound"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj"], ["string"], []];
|
|
27505
|
+
[ee.ApiFunction._call, ee.ApiFunction._apply, ee.ApiFunction.lookup, module$contents$ee$batch_Export.image.toDrive, module$contents$ee$batch_Export.videoMap.toCloudStorage, module$contents$ee$batch_Export.table.toBigQuery, module$contents$ee$batch_Export.table.toAsset, module$contents$ee$batch_Export.image.toAsset, module$contents$ee$batch_Export.video.toDrive, module$contents$ee$batch_Export.classifier.toAsset, module$contents$ee$batch_Export.image.toCloudStorage, module$contents$ee$batch_Export.video.toCloudStorage,
|
|
27506
|
+
module$contents$ee$batch_Export.table.toDrive, module$contents$ee$batch_Export.table.toFeatureView, module$contents$ee$batch_Export.table.toCloudStorage, module$contents$ee$batch_Export.map.toCloudStorage, ee.Collection.prototype.sort, ee.Collection.prototype.filter, ee.Collection.prototype.filterBounds, ee.Collection.prototype.map, ee.Collection.prototype.filterMetadata, ee.Collection.prototype.filterDate, ee.Collection.prototype.iterate, ee.Collection.prototype.limit, ee.ComputedObject.prototype.aside,
|
|
27507
|
+
ee.ComputedObject.prototype.evaluate, ee.ComputedObject.prototype.getInfo, ee.ComputedObject.prototype.serialize, ee.data.copyAsset, ee.data.getTaskListWithLimit, ee.data.deleteAsset, ee.data.getThumbId, ee.data.cancelOperation, ee.data.getAsset, ee.data.computeValue, ee.data.authenticateViaOauth, ee.data.getAssetAcl, ee.data.getInfo, ee.data.getVideoThumbId, ee.data.listFeatures, ee.data.getOperation, ee.data.setAssetAcl, ee.data.makeDownloadUrl, ee.data.getList, ee.data.getTableDownloadId, ee.data.listAssets,
|
|
27508
|
+
ee.data.getFilmstripThumbId, ee.data.cancelTask, ee.data.listImages, ee.data.authenticate, ee.data.makeThumbUrl, ee.data.updateAsset, ee.data.updateTask, ee.data.getDownloadId, ee.data.listBuckets, ee.data.authenticateViaPopup, ee.data.getFeatureViewTilesKey, ee.data.startProcessing, ee.data.setAssetProperties, ee.data.getAssetRootQuota, ee.data.authenticateViaPrivateKey, ee.data.makeTableDownloadUrl, ee.data.getAssetRoots, ee.data.setWorkloadTag, ee.data.getWorkloadTag, ee.data.newTaskId, ee.data.createAssetHome,
|
|
27509
|
+
ee.data.setDefaultWorkloadTag, ee.data.getMapId, ee.data.startIngestion, ee.data.resetWorkloadTag, ee.data.createAsset, ee.data.getTaskStatus, ee.data.getTileUrl, ee.data.createFolder, ee.data.getTaskList, ee.data.renameAsset, ee.data.listOperations, ee.data.startTableIngestion, ee.Date, ee.Deserializer.fromCloudApiJSON, ee.Deserializer.decodeCloudApi, ee.Deserializer.decode, ee.Deserializer.fromJSON, ee.Dictionary, ee.apply, ee.initialize, ee.TILE_SIZE, ee.Algorithms, ee.call, ee.reset, ee.InitState,
|
|
27510
|
+
ee.Element.prototype.set, ee.Encodable.SourceFrame, ee.Feature.prototype.getMapId, ee.Feature.prototype.getInfo, ee.Feature.prototype.getMap, ee.Feature, ee.FeatureCollection.prototype.getMap, ee.FeatureCollection.prototype.getInfo, ee.FeatureCollection, ee.FeatureCollection.prototype.select, ee.FeatureCollection.prototype.getMapId, ee.FeatureCollection.prototype.getDownloadURL, ee.Filter.lt, ee.Filter.or, ee.Filter.and, ee.Filter.prototype.not, ee.Filter.eq, ee.Filter, ee.Filter.date, ee.Filter.metadata,
|
|
27511
|
+
ee.Filter.lte, ee.Filter.gt, ee.Filter.bounds, ee.Filter.inList, ee.Filter.neq, ee.Filter.gte, ee.Function.prototype.apply, ee.Function.prototype.call, ee.Geometry.LinearRing, ee.Geometry.MultiPoint, ee.Geometry.MultiPolygon, ee.Geometry.Rectangle, ee.Geometry.MultiLineString, ee.Geometry.prototype.toGeoJSON, ee.Geometry.Polygon, ee.Geometry.LineString, ee.Geometry, ee.Geometry.BBox, ee.Geometry.prototype.toGeoJSONString, ee.Geometry.Point, ee.Geometry.prototype.serialize, ee.Image.prototype.expression,
|
|
27512
|
+
ee.Image.prototype.select, ee.Image.prototype.getInfo, ee.Image.prototype.getMapId, ee.Image.prototype.clip, ee.Image.prototype.getThumbId, ee.Image.rgb, ee.Image.prototype.rename, ee.Image.cat, ee.Image, ee.Image.prototype.getThumbURL, ee.Image.prototype.getMap, ee.Image.prototype.getDownloadURL, ee.ImageCollection.prototype.getMapId, ee.ImageCollection.prototype.getInfo, ee.ImageCollection.prototype.linkCollection, ee.ImageCollection.prototype.getFilmstripThumbURL, ee.ImageCollection.prototype.select,
|
|
27513
|
+
ee.ImageCollection, ee.ImageCollection.prototype.getMap, ee.ImageCollection.prototype.first, ee.ImageCollection.prototype.getVideoThumbURL, ee.List, ee.Number, ee.Serializer.toReadableCloudApiJSON, ee.Serializer.encode, ee.Serializer.encodeCloudApiPretty, ee.Serializer.toJSON, ee.Serializer.toCloudApiJSON, ee.Serializer.encodeCloudApi, ee.Serializer.toReadableJSON, ee.String, ee.Terrain].forEach(function(fn, i) {
|
|
27492
27514
|
fn && (exportedFnInfo[fn.toString()] = {name:orderedFnNames[i], paramNames:orderedParamLists[i]});
|
|
27493
27515
|
});
|
|
27494
27516
|
goog.global.EXPORTED_FN_INFO = exportedFnInfo;
|