Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaurício Meneghini Fauth <mauricio@fauth.dev>2022-04-29 22:32:15 +0300
committerMaurício Meneghini Fauth <mauricio@fauth.dev>2022-04-29 22:32:15 +0300
commit473c7664ceea4900b21a0283119d7fbf57f8c5a2 (patch)
tree41d20b1e4ab38c419cdb7c252aae56904655163c
parent49e2b081bae3a78ac9e95027f0feb1fe306b5291 (diff)
parent6af017a6ad7c1867cb295046032facf940688aba (diff)
Merge branch 'QA_5_1' into QA_5_2
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
-rw-r--r--ChangeLog1
-rw-r--r--js/vendor/codemirror/lib/codemirror.css21
-rw-r--r--js/vendor/codemirror/lib/codemirror.js40
-rw-r--r--js/vendor/codemirror/mode/javascript/javascript.js1
-rw-r--r--js/vendor/codemirror/mode/sql/sql.js8
-rw-r--r--js/vendor/jquery/jquery-migrate.js439
-rw-r--r--js/vendor/jquery/jquery-ui.min.js13
-rw-r--r--js/vendor/openlayers/OpenLayers.js4
-rw-r--r--js/vendor/openlayers/OpenLayers.js.map2
-rw-r--r--js/vendor/openlayers/theme/ol.css9
-rw-r--r--package.json8
-rw-r--r--yarn.lock725
12 files changed, 694 insertions, 577 deletions
diff --git a/ChangeLog b/ChangeLog
index 89953366e7..496ca53ef6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -46,6 +46,7 @@ phpMyAdmin - ChangeLog
- issue #17494 Remove jQuery SVG JavaScript dependency
- issue #17335 Fix column visibility dropdown when the column name is too long
- issue #17445 Fix issue when exporting using Firefox or Safari on PHP 8.1.4
+- issue Update JavaScript dependencies
5.1.3 (2022-02-10)
- issue #17308 Fix broken pagination links in the navigation sidebar
diff --git a/js/vendor/codemirror/lib/codemirror.css b/js/vendor/codemirror/lib/codemirror.css
index 86061bb04f..f4d5718a78 100644
--- a/js/vendor/codemirror/lib/codemirror.css
+++ b/js/vendor/codemirror/lib/codemirror.css
@@ -60,19 +60,13 @@
.cm-fat-cursor div.CodeMirror-cursors {
z-index: 1;
}
-.cm-fat-cursor-mark {
- background-color: rgba(20, 255, 20, 0.5);
- -webkit-animation: blink 1.06s steps(1) infinite;
- -moz-animation: blink 1.06s steps(1) infinite;
- animation: blink 1.06s steps(1) infinite;
-}
-.cm-animate-fat-cursor {
- width: auto;
- -webkit-animation: blink 1.06s steps(1) infinite;
- -moz-animation: blink 1.06s steps(1) infinite;
- animation: blink 1.06s steps(1) infinite;
- background-color: #7e7;
-}
+.cm-fat-cursor .CodeMirror-line::selection,
+.cm-fat-cursor .CodeMirror-line > span::selection,
+.cm-fat-cursor .CodeMirror-line > span > span::selection { background: transparent; }
+.cm-fat-cursor .CodeMirror-line::-moz-selection,
+.cm-fat-cursor .CodeMirror-line > span::-moz-selection,
+.cm-fat-cursor .CodeMirror-line > span > span::-moz-selection { background: transparent; }
+.cm-fat-cursor { caret-color: transparent; }
@-moz-keyframes blink {
0% {}
50% { background-color: transparent; }
@@ -170,6 +164,7 @@ div.CodeMirror span.CodeMirror-nonmatchingbracket {color: #a22;}
height: 100%;
outline: none; /* Prevent dragging from highlighting the element */
position: relative;
+ z-index: 0;
}
.CodeMirror-sizer {
position: relative;
diff --git a/js/vendor/codemirror/lib/codemirror.js b/js/vendor/codemirror/lib/codemirror.js
index 2f626b70f0..e142f1dbd0 100644
--- a/js/vendor/codemirror/lib/codemirror.js
+++ b/js/vendor/codemirror/lib/codemirror.js
@@ -1324,7 +1324,7 @@
// Add a span to a line.
function addMarkedSpan(line, span, op) {
var inThisOp = op && window.WeakSet && (op.markedSpans || (op.markedSpans = new WeakSet));
- if (inThisOp && inThisOp.has(line.markedSpans)) {
+ if (inThisOp && line.markedSpans && inThisOp.has(line.markedSpans)) {
line.markedSpans.push(span);
} else {
line.markedSpans = line.markedSpans ? line.markedSpans.concat([span]) : [span];
@@ -2351,12 +2351,14 @@
function mapFromLineView(lineView, line, lineN) {
if (lineView.line == line)
{ return {map: lineView.measure.map, cache: lineView.measure.cache} }
- for (var i = 0; i < lineView.rest.length; i++)
- { if (lineView.rest[i] == line)
- { return {map: lineView.measure.maps[i], cache: lineView.measure.caches[i]} } }
- for (var i$1 = 0; i$1 < lineView.rest.length; i$1++)
- { if (lineNo(lineView.rest[i$1]) > lineN)
- { return {map: lineView.measure.maps[i$1], cache: lineView.measure.caches[i$1], before: true} } }
+ if (lineView.rest) {
+ for (var i = 0; i < lineView.rest.length; i++)
+ { if (lineView.rest[i] == line)
+ { return {map: lineView.measure.maps[i], cache: lineView.measure.caches[i]} } }
+ for (var i$1 = 0; i$1 < lineView.rest.length; i$1++)
+ { if (lineNo(lineView.rest[i$1]) > lineN)
+ { return {map: lineView.measure.maps[i$1], cache: lineView.measure.caches[i$1], before: true} } }
+ }
}
// Render a line into the hidden node display.externalMeasured. Used
@@ -2583,9 +2585,11 @@
}
function widgetTopHeight(lineObj) {
+ var ref = visualLine(lineObj);
+ var widgets = ref.widgets;
var height = 0;
- if (lineObj.widgets) { for (var i = 0; i < lineObj.widgets.length; ++i) { if (lineObj.widgets[i].above)
- { height += widgetHeight(lineObj.widgets[i]); } } }
+ if (widgets) { for (var i = 0; i < widgets.length; ++i) { if (widgets[i].above)
+ { height += widgetHeight(widgets[i]); } } }
return height
}
@@ -3150,13 +3154,19 @@
var curFragment = result.cursors = document.createDocumentFragment();
var selFragment = result.selection = document.createDocumentFragment();
+ var customCursor = cm.options.$customCursor;
+ if (customCursor) { primary = true; }
for (var i = 0; i < doc.sel.ranges.length; i++) {
if (!primary && i == doc.sel.primIndex) { continue }
var range = doc.sel.ranges[i];
if (range.from().line >= cm.display.viewTo || range.to().line < cm.display.viewFrom) { continue }
var collapsed = range.empty();
- if (collapsed || cm.options.showCursorWhenSelecting)
- { drawSelectionCursor(cm, range.head, curFragment); }
+ if (customCursor) {
+ var head = customCursor(cm, range);
+ if (head) { drawSelectionCursor(cm, head, curFragment); }
+ } else if (collapsed || cm.options.showCursorWhenSelecting) {
+ drawSelectionCursor(cm, range.head, curFragment);
+ }
if (!collapsed)
{ drawSelectionRange(cm, range, selFragment); }
}
@@ -3174,9 +3184,8 @@
if (/\bcm-fat-cursor\b/.test(cm.getWrapperElement().className)) {
var charPos = charCoords(cm, head, "div", null, null);
- if (charPos.right - charPos.left > 0) {
- cursor.style.width = (charPos.right - charPos.left) + "px";
- }
+ var width = charPos.right - charPos.left;
+ cursor.style.width = (width > 0 ? width : cm.defaultCharWidth()) + "px";
}
if (pos.other) {
@@ -3649,6 +3658,7 @@
this.vert.firstChild.style.height =
Math.max(0, measure.scrollHeight - measure.clientHeight + totalHeight) + "px";
} else {
+ this.vert.scrollTop = 0;
this.vert.style.display = "";
this.vert.firstChild.style.height = "0";
}
@@ -9832,7 +9842,7 @@
addLegacyProps(CodeMirror);
- CodeMirror.version = "5.63.3";
+ CodeMirror.version = "5.65.3";
return CodeMirror;
diff --git a/js/vendor/codemirror/mode/javascript/javascript.js b/js/vendor/codemirror/mode/javascript/javascript.js
index 95cbbd8533..7cfee313a3 100644
--- a/js/vendor/codemirror/mode/javascript/javascript.js
+++ b/js/vendor/codemirror/mode/javascript/javascript.js
@@ -330,6 +330,7 @@ CodeMirror.defineMode("javascript", function(config, parserConfig) {
cx.state.context = new Context(cx.state.context, cx.state.localVars, true)
cx.state.localVars = null
}
+ pushcontext.lex = pushblockcontext.lex = true
function popcontext() {
cx.state.localVars = cx.state.context.vars
cx.state.context = cx.state.context.prev
diff --git a/js/vendor/codemirror/mode/sql/sql.js b/js/vendor/codemirror/mode/sql/sql.js
index ead4d6db23..cd8b757bb6 100644
--- a/js/vendor/codemirror/mode/sql/sql.js
+++ b/js/vendor/codemirror/mode/sql/sql.js
@@ -122,9 +122,9 @@ CodeMirror.defineMode("sql", function(config, parserConfig) {
if (dateSQL.hasOwnProperty(word) && (stream.match(/^( )+'[^']*'/) || stream.match(/^( )+"[^"]*"/)))
return "number";
if (atoms.hasOwnProperty(word)) return "atom";
- if (builtin.hasOwnProperty(word)) return "builtin";
+ if (builtin.hasOwnProperty(word)) return "type";
if (keywords.hasOwnProperty(word)) return "keyword";
- if (client.hasOwnProperty(word)) return "string-2";
+ if (client.hasOwnProperty(word)) return "builtin";
return null;
}
}
@@ -332,7 +332,7 @@ CodeMirror.defineMode("sql", function(config, parserConfig) {
CodeMirror.defineMIME("text/x-mariadb", {
name: "sql",
client: set("charset clear connect edit ego exit go help nopager notee nowarning pager print prompt quit rehash source status system tee"),
- keywords: set(sqlKeywords + "accessible action add after algorithm all always analyze asensitive at authors auto_increment autocommit avg avg_row_length before binary binlog both btree cache call cascade cascaded case catalog_name chain change changed character check checkpoint checksum class_origin client_statistics close coalesce code collate collation collations column columns comment commit committed completion concurrent condition connection consistent constraint contains continue contributors convert cross current current_date current_time current_timestamp current_user cursor data database databases day_hour day_microsecond day_minute day_second deallocate dec declare default delay_key_write delayed delimiter des_key_file describe deterministic dev_pop dev_samp deviance diagnostics directory disable discard distinctrow div dual dumpfile each elseif enable enclosed end ends engine engines enum errors escape escaped even event events every execute exists exit explain extended fast fetch field fields first flush for force foreign found_rows full fulltext function general generated get global grant grants group groupby_concat handler hard hash help high_priority hosts hour_microsecond hour_minute hour_second if ignore ignore_server_ids import index index_statistics infile inner innodb inout insensitive insert_method install interval invoker isolation iterate key keys kill language last leading leave left level limit linear lines list load local localtime localtimestamp lock logs low_priority master master_heartbeat_period master_ssl_verify_server_cert masters match max max_rows maxvalue message_text middleint migrate min min_rows minute_microsecond minute_second mod mode modifies modify mutex mysql_errno natural next no no_write_to_binlog offline offset one online open optimize option optionally out outer outfile pack_keys parser partition partitions password persistent phase plugin plugins prepare preserve prev primary privileges procedure processlist profile profiles purge query quick range read read_write reads real rebuild recover references regexp relaylog release remove rename reorganize repair repeatable replace require resignal restrict resume return returns revoke right rlike rollback rollup row row_format rtree savepoint schedule schema schema_name schemas second_microsecond security sensitive separator serializable server session share show shutdown signal slave slow smallint snapshot soft soname spatial specific sql sql_big_result sql_buffer_result sql_cache sql_calc_found_rows sql_no_cache sql_small_result sqlexception sqlstate sqlwarning ssl start starting starts status std stddev stddev_pop stddev_samp storage straight_join subclass_origin sum suspend table_name table_statistics tables tablespace temporary terminated to trailing transaction trigger triggers truncate uncommitted undo uninstall unique unlock upgrade usage use use_frm user user_resources user_statistics using utc_date utc_time utc_timestamp value variables varying view views virtual warnings when while with work write xa xor year_month zerofill begin do then else loop repeat"),
+ keywords: set(sqlKeywords + "accessible action add after algorithm all always analyze asensitive at authors auto_increment autocommit avg avg_row_length before binary binlog both btree cache call cascade cascaded case catalog_name chain change changed character check checkpoint checksum class_origin client_statistics close coalesce code collate collation collations column columns comment commit committed completion concurrent condition connection consistent constraint contains continue contributors convert cross current current_date current_time current_timestamp current_user cursor data database databases day_hour day_microsecond day_minute day_second deallocate dec declare default delay_key_write delayed delimiter des_key_file describe deterministic dev_pop dev_samp deviance diagnostics directory disable discard distinctrow div dual dumpfile each elseif enable enclosed end ends engine engines enum errors escape escaped even event events every execute exists exit explain extended fast fetch field fields first flush for force foreign found_rows full fulltext function general generated get global grant grants group group_concat handler hard hash help high_priority hosts hour_microsecond hour_minute hour_second if ignore ignore_server_ids import index index_statistics infile inner innodb inout insensitive insert_method install interval invoker isolation iterate key keys kill language last leading leave left level limit linear lines list load local localtime localtimestamp lock logs low_priority master master_heartbeat_period master_ssl_verify_server_cert masters match max max_rows maxvalue message_text middleint migrate min min_rows minute_microsecond minute_second mod mode modifies modify mutex mysql_errno natural next no no_write_to_binlog offline offset one online open optimize option optionally out outer outfile pack_keys parser partition partitions password persistent phase plugin plugins prepare preserve prev primary privileges procedure processlist profile profiles purge query quick range read read_write reads real rebuild recover references regexp relaylog release remove rename reorganize repair repeatable replace require resignal restrict resume return returns revoke right rlike rollback rollup row row_format rtree savepoint schedule schema schema_name schemas second_microsecond security sensitive separator serializable server session share show shutdown signal slave slow smallint snapshot soft soname spatial specific sql sql_big_result sql_buffer_result sql_cache sql_calc_found_rows sql_no_cache sql_small_result sqlexception sqlstate sqlwarning ssl start starting starts status std stddev stddev_pop stddev_samp storage straight_join subclass_origin sum suspend table_name table_statistics tables tablespace temporary terminated to trailing transaction trigger triggers truncate uncommitted undo uninstall unique unlock upgrade usage use use_frm user user_resources user_statistics using utc_date utc_time utc_timestamp value variables varying view views virtual warnings when while with work write xa xor year_month zerofill begin do then else loop repeat"),
builtin: set("bool boolean bit blob decimal double float long longblob longtext medium mediumblob mediumint mediumtext time timestamp tinyblob tinyint tinytext text bigint int int1 int2 int3 int4 int8 integer float float4 float8 double char varbinary varchar varcharacter precision date datetime year unsigned signed numeric"),
atoms: set("false true null unknown"),
operatorChars: /^[*+\-%<>!=&|^]/,
@@ -452,7 +452,7 @@ CodeMirror.defineMode("sql", function(config, parserConfig) {
CodeMirror.defineMIME("text/x-sparksql", {
name: "sql",
keywords: set("add after all alter analyze and anti archive array as asc at between bucket buckets by cache cascade case cast change clear cluster clustered codegen collection column columns comment commit compact compactions compute concatenate cost create cross cube current current_date current_timestamp database databases data dbproperties defined delete delimited deny desc describe dfs directories distinct distribute drop else end escaped except exchange exists explain export extended external false fields fileformat first following for format formatted from full function functions global grant group grouping having if ignore import in index indexes inner inpath inputformat insert intersect interval into is items join keys last lateral lazy left like limit lines list load local location lock locks logical macro map minus msck natural no not null nulls of on optimize option options or order out outer outputformat over overwrite partition partitioned partitions percent preceding principals purge range recordreader recordwriter recover reduce refresh regexp rename repair replace reset restrict revoke right rlike role roles rollback rollup row rows schema schemas select semi separated serde serdeproperties set sets show skewed sort sorted start statistics stored stratify struct table tables tablesample tblproperties temp temporary terminated then to touch transaction transactions transform true truncate unarchive unbounded uncache union unlock unset use using values view when where window with"),
- builtin: set("tinyint smallint int bigint boolean float double string binary timestamp decimal array map struct uniontype delimited serde sequencefile textfile rcfile inputformat outputformat"),
+ builtin: set("abs acos acosh add_months aggregate and any approx_count_distinct approx_percentile array array_contains array_distinct array_except array_intersect array_join array_max array_min array_position array_remove array_repeat array_sort array_union arrays_overlap arrays_zip ascii asin asinh assert_true atan atan2 atanh avg base64 between bigint bin binary bit_and bit_count bit_get bit_length bit_or bit_xor bool_and bool_or boolean bround btrim cardinality case cast cbrt ceil ceiling char char_length character_length chr coalesce collect_list collect_set concat concat_ws conv corr cos cosh cot count count_if count_min_sketch covar_pop covar_samp crc32 cume_dist current_catalog current_database current_date current_timestamp current_timezone current_user date date_add date_format date_from_unix_date date_part date_sub date_trunc datediff day dayofmonth dayofweek dayofyear decimal decode degrees delimited dense_rank div double e element_at elt encode every exists exp explode explode_outer expm1 extract factorial filter find_in_set first first_value flatten float floor forall format_number format_string from_csv from_json from_unixtime from_utc_timestamp get_json_object getbit greatest grouping grouping_id hash hex hour hypot if ifnull in initcap inline inline_outer input_file_block_length input_file_block_start input_file_name inputformat instr int isnan isnotnull isnull java_method json_array_length json_object_keys json_tuple kurtosis lag last last_day last_value lcase lead least left length levenshtein like ln locate log log10 log1p log2 lower lpad ltrim make_date make_dt_interval make_interval make_timestamp make_ym_interval map map_concat map_entries map_filter map_from_arrays map_from_entries map_keys map_values map_zip_with max max_by md5 mean min min_by minute mod monotonically_increasing_id month months_between named_struct nanvl negative next_day not now nth_value ntile nullif nvl nvl2 octet_length or outputformat overlay parse_url percent_rank percentile percentile_approx pi pmod posexplode posexplode_outer position positive pow power printf quarter radians raise_error rand randn random rank rcfile reflect regexp regexp_extract regexp_extract_all regexp_like regexp_replace repeat replace reverse right rint rlike round row_number rpad rtrim schema_of_csv schema_of_json second sentences sequence sequencefile serde session_window sha sha1 sha2 shiftleft shiftright shiftrightunsigned shuffle sign signum sin sinh size skewness slice smallint some sort_array soundex space spark_partition_id split sqrt stack std stddev stddev_pop stddev_samp str_to_map string struct substr substring substring_index sum tan tanh textfile timestamp timestamp_micros timestamp_millis timestamp_seconds tinyint to_csv to_date to_json to_timestamp to_unix_timestamp to_utc_timestamp transform transform_keys transform_values translate trim trunc try_add try_divide typeof ucase unbase64 unhex uniontype unix_date unix_micros unix_millis unix_seconds unix_timestamp upper uuid var_pop var_samp variance version weekday weekofyear when width_bucket window xpath xpath_boolean xpath_double xpath_float xpath_int xpath_long xpath_number xpath_short xpath_string xxhash64 year zip_with"),
atoms: set("false true null"),
operatorChars: /^[*\/+\-%<>!=~&|^]/,
dateSQL: set("date time timestamp"),
diff --git a/js/vendor/jquery/jquery-migrate.js b/js/vendor/jquery/jquery-migrate.js
index 7917349ea8..b3757a9d02 100644
--- a/js/vendor/jquery/jquery-migrate.js
+++ b/js/vendor/jquery/jquery-migrate.js
@@ -1,5 +1,5 @@
/*!
- * jQuery Migrate - v3.3.2 - 2020-11-17T23:22Z
+ * jQuery Migrate - v3.4.0 - 2022-03-24T16:30Z
* Copyright OpenJS Foundation and other contributors
*/
( function( factory ) {
@@ -24,7 +24,7 @@
} )( function( jQuery, window ) {
"use strict";
-jQuery.migrateVersion = "3.3.2";
+jQuery.migrateVersion = "3.4.0";
// Returns 0 if v1 == v2, -1 if v1 < v2, 1 if v1 > v2
function compareVersions( v1, v2 ) {
@@ -48,6 +48,40 @@ function jQueryVersionSince( version ) {
return compareVersions( jQuery.fn.jquery, version ) >= 0;
}
+// A map from disabled patch codes to `true`. This should really
+// be a `Set` but those are unsupported in IE.
+var disabledPatches = Object.create( null );
+
+// Don't apply patches for specified codes. Helpful for code bases
+// where some Migrate warnings have been addressed and it's desirable
+// to avoid needless patches or false positives.
+jQuery.migrateDisablePatches = function() {
+ var i;
+ for ( i = 0; i < arguments.length; i++ ) {
+ disabledPatches[ arguments[ i ] ] = true;
+ }
+};
+
+// Allow enabling patches disabled via `jQuery.migrateDisablePatches`.
+// Helpful if you want to disable a patch only for some code that won't
+// be updated soon to be able to focus on other warnings - and enable it
+// immediately after such a call:
+// ```js
+// jQuery.migrateDisablePatches( "workaroundA" );
+// elem.pluginViolatingWarningA( "pluginMethod" );
+// jQuery.migrateEnablePatches( "workaroundA" );
+// ```
+jQuery.migrateEnablePatches = function() {
+ var i;
+ for ( i = 0; i < arguments.length; i++ ) {
+ delete disabledPatches[ arguments[ i ] ];
+ }
+};
+
+jQuery.migrateIsPatchEnabled = function( patchCode ) {
+ return !disabledPatches[ patchCode ];
+};
+
( function() {
// Support: IE9 only
@@ -91,11 +125,12 @@ jQuery.migrateReset = function() {
jQuery.migrateWarnings.length = 0;
};
-function migrateWarn( msg ) {
+function migrateWarn( code, msg ) {
var console = window.console;
- if ( !jQuery.migrateDeduplicateWarnings || !warnedAbout[ msg ] ) {
+ if ( jQuery.migrateIsPatchEnabled( code ) &&
+ ( !jQuery.migrateDeduplicateWarnings || !warnedAbout[ msg ] ) ) {
warnedAbout[ msg ] = true;
- jQuery.migrateWarnings.push( msg );
+ jQuery.migrateWarnings.push( msg + " [" + code + "]" );
if ( console && console.warn && !jQuery.migrateMute ) {
console.warn( "JQMIGRATE: " + msg );
if ( jQuery.migrateTrace && console.trace ) {
@@ -105,32 +140,62 @@ function migrateWarn( msg ) {
}
}
-function migrateWarnProp( obj, prop, value, msg ) {
+function migrateWarnProp( obj, prop, value, code, msg ) {
Object.defineProperty( obj, prop, {
configurable: true,
enumerable: true,
get: function() {
- migrateWarn( msg );
+ migrateWarn( code, msg );
return value;
},
set: function( newValue ) {
- migrateWarn( msg );
+ migrateWarn( code, msg );
value = newValue;
}
} );
}
-function migrateWarnFunc( obj, prop, newFunc, msg ) {
+function migrateWarnFuncInternal( obj, prop, newFunc, code, msg ) {
+ var finalFunc,
+ origFunc = obj[ prop ];
+
obj[ prop ] = function() {
- migrateWarn( msg );
- return newFunc.apply( this, arguments );
+
+ // If `msg` not provided, do not warn; more sophisticated warnings
+ // logic is most likely embedded in `newFunc`, in that case here
+ // we just care about the logic choosing the proper implementation
+ // based on whether the patch is disabled or not.
+ if ( msg ) {
+ migrateWarn( code, msg );
+ }
+
+ // Since patches can be disabled & enabled dynamically, we
+ // need to decide which implementation to run on each invocation.
+ finalFunc = jQuery.migrateIsPatchEnabled( code ) ?
+ newFunc :
+
+ // The function may not have existed originally so we need a fallback.
+ ( origFunc || jQuery.noop );
+
+ return finalFunc.apply( this, arguments );
};
}
+function migratePatchAndWarnFunc( obj, prop, newFunc, code, msg ) {
+ if ( !msg ) {
+ throw new Error( "No warning message provided" );
+ }
+ return migrateWarnFuncInternal( obj, prop, newFunc, code, msg );
+}
+
+function migratePatchFunc( obj, prop, newFunc, code ) {
+ return migrateWarnFuncInternal( obj, prop, newFunc, code );
+}
+
if ( window.document.compatMode === "BackCompat" ) {
- // JQuery has never supported or tested Quirks Mode
- migrateWarn( "jQuery is not compatible with Quirks Mode" );
+ // jQuery has never supported or tested Quirks Mode
+ migrateWarn( "quirks", "jQuery is not compatible with Quirks Mode" );
}
var findProp,
@@ -145,21 +210,27 @@ var findProp,
// Make sure we trim BOM and NBSP
rtrim = /^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g;
-jQuery.fn.init = function( arg1 ) {
+migratePatchFunc( jQuery.fn, "init", function( arg1 ) {
var args = Array.prototype.slice.call( arguments );
- if ( typeof arg1 === "string" && arg1 === "#" ) {
+ if ( jQuery.migrateIsPatchEnabled( "selector-empty-id" ) &&
+ typeof arg1 === "string" && arg1 === "#" ) {
- // JQuery( "#" ) is a bogus ID selector, but it returned an empty set before jQuery 3.0
- migrateWarn( "jQuery( '#' ) is not a valid selector" );
+ // JQuery( "#" ) is a bogus ID selector, but it returned an empty set
+ // before jQuery 3.0
+ migrateWarn( "selector-empty-id", "jQuery( '#' ) is not a valid selector" );
args[ 0 ] = [];
}
return oldInit.apply( this, args );
-};
+}, "selector-empty-id" );
+
+// This is already done in Core but the above patch will lose this assignment
+// so we need to redo it. It doesn't matter whether the patch is enabled or not
+// as the method is always going to be a Migrate-created wrapper.
jQuery.fn.init.prototype = jQuery.fn;
-jQuery.find = function( selector ) {
+migratePatchFunc( jQuery, "find", function( selector ) {
var args = Array.prototype.slice.call( arguments );
// Support: PhantomJS 1.x
@@ -181,16 +252,18 @@ jQuery.find = function( selector ) {
// Note that there may be false alarms if selector uses jQuery extensions
try {
window.document.querySelector( selector );
- migrateWarn( "Attribute selector with '#' must be quoted: " + args[ 0 ] );
+ migrateWarn( "selector-hash",
+ "Attribute selector with '#' must be quoted: " + args[ 0 ] );
args[ 0 ] = selector;
} catch ( err2 ) {
- migrateWarn( "Attribute selector with '#' was not fixed: " + args[ 0 ] );
+ migrateWarn( "selector-hash",
+ "Attribute selector with '#' was not fixed: " + args[ 0 ] );
}
}
}
return oldFind.apply( this, args );
-};
+}, "selector-hash" );
// Copy properties attached to original jQuery.find method (e.g. .attr, .isXML)
for ( findProp in oldFind ) {
@@ -200,53 +273,53 @@ for ( findProp in oldFind ) {
}
// The number of elements contained in the matched element set
-migrateWarnFunc( jQuery.fn, "size", function() {
+migratePatchAndWarnFunc( jQuery.fn, "size", function() {
return this.length;
-},
+}, "size",
"jQuery.fn.size() is deprecated and removed; use the .length property" );
-migrateWarnFunc( jQuery, "parseJSON", function() {
+migratePatchAndWarnFunc( jQuery, "parseJSON", function() {
return JSON.parse.apply( null, arguments );
-},
+}, "parseJSON",
"jQuery.parseJSON is deprecated; use JSON.parse" );
-migrateWarnFunc( jQuery, "holdReady", jQuery.holdReady,
- "jQuery.holdReady is deprecated" );
+migratePatchAndWarnFunc( jQuery, "holdReady", jQuery.holdReady,
+ "holdReady", "jQuery.holdReady is deprecated" );
-migrateWarnFunc( jQuery, "unique", jQuery.uniqueSort,
- "jQuery.unique is deprecated; use jQuery.uniqueSort" );
+migratePatchAndWarnFunc( jQuery, "unique", jQuery.uniqueSort,
+ "unique", "jQuery.unique is deprecated; use jQuery.uniqueSort" );
// Now jQuery.expr.pseudos is the standard incantation
-migrateWarnProp( jQuery.expr, "filters", jQuery.expr.pseudos,
+migrateWarnProp( jQuery.expr, "filters", jQuery.expr.pseudos, "expr-pre-pseudos",
"jQuery.expr.filters is deprecated; use jQuery.expr.pseudos" );
-migrateWarnProp( jQuery.expr, ":", jQuery.expr.pseudos,
+migrateWarnProp( jQuery.expr, ":", jQuery.expr.pseudos, "expr-pre-pseudos",
"jQuery.expr[':'] is deprecated; use jQuery.expr.pseudos" );
// Prior to jQuery 3.1.1 there were internal refs so we don't warn there
if ( jQueryVersionSince( "3.1.1" ) ) {
- migrateWarnFunc( jQuery, "trim", function( text ) {
+ migratePatchAndWarnFunc( jQuery, "trim", function( text ) {
return text == null ?
"" :
( text + "" ).replace( rtrim, "" );
- },
+ }, "trim",
"jQuery.trim is deprecated; use String.prototype.trim" );
}
// Prior to jQuery 3.2 there were internal refs so we don't warn there
if ( jQueryVersionSince( "3.2.0" ) ) {
- migrateWarnFunc( jQuery, "nodeName", function( elem, name ) {
+ migratePatchAndWarnFunc( jQuery, "nodeName", function( elem, name ) {
return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase();
- },
+ }, "nodeName",
"jQuery.nodeName is deprecated" );
- migrateWarnFunc( jQuery, "isArray", Array.isArray,
+ migratePatchAndWarnFunc( jQuery, "isArray", Array.isArray, "isArray",
"jQuery.isArray is deprecated; use Array.isArray"
);
}
if ( jQueryVersionSince( "3.3.0" ) ) {
- migrateWarnFunc( jQuery, "isNumeric", function( obj ) {
+ migratePatchAndWarnFunc( jQuery, "isNumeric", function( obj ) {
// As of jQuery 3.0, isNumeric is limited to
// strings and numbers (primitives or objects)
@@ -258,7 +331,7 @@ if ( jQueryVersionSince( "3.3.0" ) ) {
// ...but misinterprets leading-number strings, e.g. hex literals ("0x...")
// subtraction forces infinities to NaN
!isNaN( obj - parseFloat( obj ) );
- },
+ }, "isNumeric",
"jQuery.isNumeric() is deprecated"
);
@@ -269,7 +342,7 @@ if ( jQueryVersionSince( "3.3.0" ) ) {
class2type[ "[object " + name + "]" ] = name.toLowerCase();
} );
- migrateWarnFunc( jQuery, "type", function( obj ) {
+ migratePatchAndWarnFunc( jQuery, "type", function( obj ) {
if ( obj == null ) {
return obj + "";
}
@@ -278,19 +351,19 @@ if ( jQueryVersionSince( "3.3.0" ) ) {
return typeof obj === "object" || typeof obj === "function" ?
class2type[ Object.prototype.toString.call( obj ) ] || "object" :
typeof obj;
- },
+ }, "type",
"jQuery.type is deprecated" );
- migrateWarnFunc( jQuery, "isFunction",
+ migratePatchAndWarnFunc( jQuery, "isFunction",
function( obj ) {
return typeof obj === "function";
- },
+ }, "isFunction",
"jQuery.isFunction() is deprecated" );
- migrateWarnFunc( jQuery, "isWindow",
+ migratePatchAndWarnFunc( jQuery, "isWindow",
function( obj ) {
return obj != null && obj === obj.window;
- },
+ }, "isWindow",
"jQuery.isWindow() is deprecated"
);
}
@@ -301,21 +374,21 @@ if ( jQuery.ajax ) {
var oldAjax = jQuery.ajax,
rjsonp = /(=)\?(?=&|$)|\?\?/;
-jQuery.ajax = function( ) {
+migratePatchFunc( jQuery, "ajax", function() {
var jQXHR = oldAjax.apply( this, arguments );
// Be sure we got a jQXHR (e.g., not sync)
if ( jQXHR.promise ) {
- migrateWarnFunc( jQXHR, "success", jQXHR.done,
+ migratePatchAndWarnFunc( jQXHR, "success", jQXHR.done, "jqXHR-methods",
"jQXHR.success is deprecated and removed" );
- migrateWarnFunc( jQXHR, "error", jQXHR.fail,
+ migratePatchAndWarnFunc( jQXHR, "error", jQXHR.fail, "jqXHR-methods",
"jQXHR.error is deprecated and removed" );
- migrateWarnFunc( jQXHR, "complete", jQXHR.always,
+ migratePatchAndWarnFunc( jQXHR, "complete", jQXHR.always, "jqXHR-methods",
"jQXHR.complete is deprecated and removed" );
}
return jQXHR;
-};
+}, "jqXHR-methods" );
// Only trigger the logic in jQuery <4 as the JSON-to-JSONP auto-promotion
// behavior is gone in jQuery 4.0 and as it has security implications, we don't
@@ -334,7 +407,7 @@ if ( !jQueryVersionSince( "4.0.0" ) ) {
.indexOf( "application/x-www-form-urlencoded" ) === 0 &&
rjsonp.test( s.data )
) ) {
- migrateWarn( "JSON-to-JSONP auto-promotion is deprecated" );
+ migrateWarn( "jsonp-promotion", "JSON-to-JSONP auto-promotion is deprecated" );
}
} );
}
@@ -345,27 +418,29 @@ var oldRemoveAttr = jQuery.fn.removeAttr,
oldToggleClass = jQuery.fn.toggleClass,
rmatchNonSpace = /\S+/g;
-jQuery.fn.removeAttr = function( name ) {
+migratePatchFunc( jQuery.fn, "removeAttr", function( name ) {
var self = this;
jQuery.each( name.match( rmatchNonSpace ), function( _i, attr ) {
if ( jQuery.expr.match.bool.test( attr ) ) {
- migrateWarn( "jQuery.fn.removeAttr no longer sets boolean properties: " + attr );
+ migrateWarn( "removeAttr-bool",
+ "jQuery.fn.removeAttr no longer sets boolean properties: " + attr );
self.prop( attr, false );
}
} );
return oldRemoveAttr.apply( this, arguments );
-};
+}, "removeAttr-bool" );
-jQuery.fn.toggleClass = function( state ) {
+migratePatchFunc( jQuery.fn, "toggleClass", function( state ) {
// Only deprecating no-args or single boolean arg
if ( state !== undefined && typeof state !== "boolean" ) {
+
return oldToggleClass.apply( this, arguments );
}
- migrateWarn( "jQuery.fn.toggleClass( boolean ) is deprecated" );
+ migrateWarn( "toggleClass-bool", "jQuery.fn.toggleClass( boolean ) is deprecated" );
// Toggle entire class name of each element
return this.each( function() {
@@ -387,7 +462,7 @@ jQuery.fn.toggleClass = function( state ) {
);
}
} );
-};
+}, "toggleClass-bool" );
function camelCase( string ) {
return string.replace( /-([a-z])/g, function( _, letter ) {
@@ -395,7 +470,7 @@ function camelCase( string ) {
} );
}
-var oldFnCss,
+var origFnCss,
internalSwapCall = false,
ralphaStart = /^[a-z]/,
@@ -440,12 +515,12 @@ if ( jQuery.swap ) {
} );
}
-jQuery.swap = function( elem, options, callback, args ) {
+migratePatchFunc( jQuery, "swap", function( elem, options, callback, args ) {
var ret, name,
old = {};
if ( !internalSwapCall ) {
- migrateWarn( "jQuery.swap() is undocumented and deprecated" );
+ migrateWarn( "swap", "jQuery.swap() is undocumented and deprecated" );
}
// Remember the old values, and insert the new ones
@@ -462,22 +537,53 @@ jQuery.swap = function( elem, options, callback, args ) {
}
return ret;
-};
+}, "swap" );
if ( jQueryVersionSince( "3.4.0" ) && typeof Proxy !== "undefined" ) {
-
jQuery.cssProps = new Proxy( jQuery.cssProps || {}, {
set: function() {
- migrateWarn( "JQMIGRATE: jQuery.cssProps is deprecated" );
+ migrateWarn( "cssProps", "jQuery.cssProps is deprecated" );
return Reflect.set.apply( this, arguments );
}
} );
}
-// Create a dummy jQuery.cssNumber if missing. It won't be used by jQuery but
-// it will prevent code adding new keys to it unconditionally from crashing.
-if ( !jQuery.cssNumber ) {
- jQuery.cssNumber = {};
+// In jQuery >=4 where jQuery.cssNumber is missing fill it with the latest 3.x version:
+// https://github.com/jquery/jquery/blob/3.6.0/src/css.js#L212-L233
+// This way, number values for the CSS properties below won't start triggering
+// Migrate warnings when jQuery gets updated to >=4.0.0 (gh-438).
+if ( jQueryVersionSince( "4.0.0" ) && typeof Proxy !== "undefined" ) {
+ jQuery.cssNumber = new Proxy( {
+ animationIterationCount: true,
+ columnCount: true,
+ fillOpacity: true,
+ flexGrow: true,
+ flexShrink: true,
+ fontWeight: true,
+ gridArea: true,
+ gridColumn: true,
+ gridColumnEnd: true,
+ gridColumnStart: true,
+ gridRow: true,
+ gridRowEnd: true,
+ gridRowStart: true,
+ lineHeight: true,
+ opacity: true,
+ order: true,
+ orphans: true,
+ widows: true,
+ zIndex: true,
+ zoom: true
+ }, {
+ get: function() {
+ migrateWarn( "css-number", "jQuery.cssNumber is deprecated" );
+ return Reflect.get.apply( this, arguments );
+ },
+ set: function() {
+ migrateWarn( "css-number", "jQuery.cssNumber is deprecated" );
+ return Reflect.set.apply( this, arguments );
+ }
+ } );
}
function isAutoPx( prop ) {
@@ -489,56 +595,63 @@ function isAutoPx( prop ) {
rautoPx.test( prop[ 0 ].toUpperCase() + prop.slice( 1 ) );
}
-oldFnCss = jQuery.fn.css;
+origFnCss = jQuery.fn.css;
-jQuery.fn.css = function( name, value ) {
+migratePatchFunc( jQuery.fn, "css", function( name, value ) {
var camelName,
origThis = this;
+
if ( name && typeof name === "object" && !Array.isArray( name ) ) {
jQuery.each( name, function( n, v ) {
jQuery.fn.css.call( origThis, n, v );
} );
return this;
}
+
if ( typeof value === "number" ) {
camelName = camelCase( name );
if ( !isAutoPx( camelName ) && !jQuery.cssNumber[ camelName ] ) {
- migrateWarn( "Number-typed values are deprecated for jQuery.fn.css( \"" +
+ migrateWarn( "css-number",
+ "Number-typed values are deprecated for jQuery.fn.css( \"" +
name + "\", value )" );
}
}
- return oldFnCss.apply( this, arguments );
-};
+ return origFnCss.apply( this, arguments );
+}, "css-number" );
-var oldData = jQuery.data;
+var origData = jQuery.data;
-jQuery.data = function( elem, name, value ) {
+migratePatchFunc( jQuery, "data", function( elem, name, value ) {
var curData, sameKeys, key;
// Name can be an object, and each entry in the object is meant to be set as data
if ( name && typeof name === "object" && arguments.length === 2 ) {
- curData = jQuery.hasData( elem ) && oldData.call( this, elem );
+
+ curData = jQuery.hasData( elem ) && origData.call( this, elem );
sameKeys = {};
for ( key in name ) {
if ( key !== camelCase( key ) ) {
- migrateWarn( "jQuery.data() always sets/gets camelCased names: " + key );
+ migrateWarn( "data-camelCase",
+ "jQuery.data() always sets/gets camelCased names: " + key );
curData[ key ] = name[ key ];
} else {
sameKeys[ key ] = name[ key ];
}
}
- oldData.call( this, elem, sameKeys );
+ origData.call( this, elem, sameKeys );
return name;
}
// If the name is transformed, look for the un-transformed name in the data object
if ( name && typeof name === "string" && name !== camelCase( name ) ) {
- curData = jQuery.hasData( elem ) && oldData.call( this, elem );
+
+ curData = jQuery.hasData( elem ) && origData.call( this, elem );
if ( curData && name in curData ) {
- migrateWarn( "jQuery.data() always sets/gets camelCased names: " + name );
+ migrateWarn( "data-camelCase",
+ "jQuery.data() always sets/gets camelCased names: " + name );
if ( arguments.length > 2 ) {
curData[ name ] = value;
}
@@ -546,8 +659,8 @@ jQuery.data = function( elem, name, value ) {
}
}
- return oldData.apply( this, arguments );
-};
+ return origData.apply( this, arguments );
+}, "data-camelCase" );
// Support jQuery slim which excludes the effects module
if ( jQuery.fx ) {
@@ -558,9 +671,10 @@ var intervalValue, intervalMsg,
return pct;
};
-jQuery.Tween.prototype.run = function( ) {
+migratePatchFunc( jQuery.Tween.prototype, "run", function( ) {
if ( jQuery.easing[ this.easing ].length > 1 ) {
migrateWarn(
+ "easing-one-arg",
"'jQuery.easing." + this.easing.toString() + "' should use only one argument"
);
@@ -568,9 +682,9 @@ jQuery.Tween.prototype.run = function( ) {
}
oldTweenRun.apply( this, arguments );
-};
+}, "easing-one-arg" );
-intervalValue = jQuery.fx.interval || 13;
+intervalValue = jQuery.fx.interval;
intervalMsg = "jQuery.fx.interval is deprecated";
// Support: IE9, Android <=4.4
@@ -582,12 +696,17 @@ if ( window.requestAnimationFrame ) {
enumerable: true,
get: function() {
if ( !window.document.hidden ) {
- migrateWarn( intervalMsg );
+ migrateWarn( "fx-interval", intervalMsg );
+ }
+
+ // Only fallback to the default if patch is enabled
+ if ( !jQuery.migrateIsPatchEnabled( "fx-interval" ) ) {
+ return intervalValue;
}
- return intervalValue;
+ return intervalValue === undefined ? 13 : intervalValue;
},
set: function( newValue ) {
- migrateWarn( intervalMsg );
+ migrateWarn( "fx-interval", intervalMsg );
intervalValue = newValue;
}
} );
@@ -603,16 +722,18 @@ jQuery.event.props = [];
jQuery.event.fixHooks = {};
migrateWarnProp( jQuery.event.props, "concat", jQuery.event.props.concat,
+ "event-old-patch",
"jQuery.event.props.concat() is deprecated and removed" );
-jQuery.event.fix = function( originalEvent ) {
+migratePatchFunc( jQuery.event, "fix", function( originalEvent ) {
var event,
type = originalEvent.type,
fixHook = this.fixHooks[ type ],
props = jQuery.event.props;
if ( props.length ) {
- migrateWarn( "jQuery.event.props are deprecated and removed: " + props.join() );
+ migrateWarn( "event-old-patch",
+ "jQuery.event.props are deprecated and removed: " + props.join() );
while ( props.length ) {
jQuery.event.addProp( props.pop() );
}
@@ -620,7 +741,8 @@ jQuery.event.fix = function( originalEvent ) {
if ( fixHook && !fixHook._migrated_ ) {
fixHook._migrated_ = true;
- migrateWarn( "jQuery.event.fixHooks are deprecated and removed: " + type );
+ migrateWarn( "event-old-patch",
+ "jQuery.event.fixHooks are deprecated and removed: " + type );
if ( ( props = fixHook.props ) && props.length ) {
while ( props.length ) {
jQuery.event.addProp( props.pop() );
@@ -630,21 +752,24 @@ jQuery.event.fix = function( originalEvent ) {
event = originalFix.call( this, originalEvent );
- return fixHook && fixHook.filter ? fixHook.filter( event, originalEvent ) : event;
-};
+ return fixHook && fixHook.filter ?
+ fixHook.filter( event, originalEvent ) :
+ event;
+}, "event-old-patch" );
-jQuery.event.add = function( elem, types ) {
+migratePatchFunc( jQuery.event, "add", function( elem, types ) {
// This misses the multiple-types case but that seems awfully rare
if ( elem === window && types === "load" && window.document.readyState === "complete" ) {
- migrateWarn( "jQuery(window).on('load'...) called after load event occurred" );
+ migrateWarn( "load-after-event",
+ "jQuery(window).on('load'...) called after load event occurred" );
}
return oldEventAdd.apply( this, arguments );
-};
+}, "load-after-event" );
jQuery.each( [ "load", "unload", "error" ], function( _, name ) {
- jQuery.fn[ name ] = function() {
+ migratePatchFunc( jQuery.fn, name, function() {
var args = Array.prototype.slice.call( arguments, 0 );
// If this is an ajax load() the first arg should be the string URL;
@@ -655,7 +780,8 @@ jQuery.each( [ "load", "unload", "error" ], function( _, name ) {
return oldLoad.apply( this, args );
}
- migrateWarn( "jQuery.fn." + name + "() is deprecated" );
+ migrateWarn( "shorthand-removed-v3",
+ "jQuery.fn." + name + "() is deprecated" );
args.splice( 0, 0, name );
if ( arguments.length ) {
@@ -668,7 +794,7 @@ jQuery.each( [ "load", "unload", "error" ], function( _, name ) {
// See http://bugs.jquery.com/ticket/11820
this.triggerHandler.apply( this, args );
return this;
- };
+ }, "shorthand-removed-v3" );
} );
@@ -678,12 +804,13 @@ jQuery.each( ( "blur focus focusin focusout resize scroll click dblclick " +
function( _i, name ) {
// Handle event binding
- jQuery.fn[ name ] = function( data, fn ) {
- migrateWarn( "jQuery.fn." + name + "() event shorthand is deprecated" );
+ migratePatchAndWarnFunc( jQuery.fn, name, function( data, fn ) {
return arguments.length > 0 ?
this.on( name, null, data, fn ) :
this.trigger( name );
- };
+ },
+ "shorthand-deprecated-v3",
+ "jQuery.fn." + name + "() event shorthand is deprecated" );
} );
// Trigger "ready" event only once, on document ready
@@ -694,39 +821,30 @@ jQuery( function() {
jQuery.event.special.ready = {
setup: function() {
if ( this === window.document ) {
- migrateWarn( "'ready' event is deprecated" );
+ migrateWarn( "ready-event", "'ready' event is deprecated" );
}
}
};
-jQuery.fn.extend( {
-
- bind: function( types, data, fn ) {
- migrateWarn( "jQuery.fn.bind() is deprecated" );
- return this.on( types, null, data, fn );
- },
- unbind: function( types, fn ) {
- migrateWarn( "jQuery.fn.unbind() is deprecated" );
- return this.off( types, null, fn );
- },
- delegate: function( selector, types, data, fn ) {
- migrateWarn( "jQuery.fn.delegate() is deprecated" );
- return this.on( types, selector, data, fn );
- },
- undelegate: function( selector, types, fn ) {
- migrateWarn( "jQuery.fn.undelegate() is deprecated" );
- return arguments.length === 1 ?
- this.off( selector, "**" ) :
- this.off( types, selector || "**", fn );
- },
- hover: function( fnOver, fnOut ) {
- migrateWarn( "jQuery.fn.hover() is deprecated" );
- return this.on( "mouseenter", fnOver ).on( "mouseleave", fnOut || fnOver );
- }
-} );
+migratePatchAndWarnFunc( jQuery.fn, "bind", function( types, data, fn ) {
+ return this.on( types, null, data, fn );
+}, "pre-on-methods", "jQuery.fn.bind() is deprecated" );
+migratePatchAndWarnFunc( jQuery.fn, "unbind", function( types, fn ) {
+ return this.off( types, null, fn );
+}, "pre-on-methods", "jQuery.fn.unbind() is deprecated" );
+migratePatchAndWarnFunc( jQuery.fn, "delegate", function( selector, types, data, fn ) {
+ return this.on( types, selector, data, fn );
+}, "pre-on-methods", "jQuery.fn.delegate() is deprecated" );
+migratePatchAndWarnFunc( jQuery.fn, "undelegate", function( selector, types, fn ) {
+ return arguments.length === 1 ?
+ this.off( selector, "**" ) :
+ this.off( types, selector || "**", fn );
+}, "pre-on-methods", "jQuery.fn.undelegate() is deprecated" );
+migratePatchAndWarnFunc( jQuery.fn, "hover", function( fnOver, fnOut ) {
+ return this.on( "mouseenter", fnOver ).on( "mouseleave", fnOut || fnOver );
+}, "pre-on-methods", "jQuery.fn.hover() is deprecated" );
var rxhtmlTag = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>\x20\t\r\n\f]*)[^>]*)\/>/gi,
- origHtmlPrefilter = jQuery.htmlPrefilter,
makeMarkup = function( html ) {
var doc = window.document.implementation.createHTMLDocument( "" );
doc.body.innerHTML = html;
@@ -735,62 +853,65 @@ var rxhtmlTag = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\
warnIfChanged = function( html ) {
var changed = html.replace( rxhtmlTag, "<$1></$2>" );
if ( changed !== html && makeMarkup( html ) !== makeMarkup( changed ) ) {
- migrateWarn( "HTML tags must be properly nested and closed: " + html );
+ migrateWarn( "self-closed-tags",
+ "HTML tags must be properly nested and closed: " + html );
}
};
+/**
+ * Deprecated, please use `jQuery.migrateDisablePatches( "self-closed-tags" )` instead.
+ * @deprecated
+ */
jQuery.UNSAFE_restoreLegacyHtmlPrefilter = function() {
- jQuery.htmlPrefilter = function( html ) {
- warnIfChanged( html );
- return html.replace( rxhtmlTag, "<$1></$2>" );
- };
+ jQuery.migrateEnablePatches( "self-closed-tags" );
};
-jQuery.htmlPrefilter = function( html ) {
+migratePatchFunc( jQuery, "htmlPrefilter", function( html ) {
warnIfChanged( html );
- return origHtmlPrefilter( html );
-};
+ return html.replace( rxhtmlTag, "<$1></$2>" );
+}, "self-closed-tags" );
-var oldOffset = jQuery.fn.offset;
+// This patch needs to be disabled by default as it re-introduces
+// security issues (CVE-2020-11022, CVE-2020-11023).
+jQuery.migrateDisablePatches( "self-closed-tags" );
-jQuery.fn.offset = function() {
+var origOffset = jQuery.fn.offset;
+
+migratePatchFunc( jQuery.fn, "offset", function() {
var elem = this[ 0 ];
if ( elem && ( !elem.nodeType || !elem.getBoundingClientRect ) ) {
- migrateWarn( "jQuery.fn.offset() requires a valid DOM element" );
+ migrateWarn( "offset-valid-elem", "jQuery.fn.offset() requires a valid DOM element" );
return arguments.length ? this : undefined;
}
- return oldOffset.apply( this, arguments );
-};
+ return origOffset.apply( this, arguments );
+}, "offset-valid-elem" );
// Support jQuery slim which excludes the ajax module
// The jQuery.param patch is about respecting `jQuery.ajaxSettings.traditional`
// so it doesn't make sense for the slim build.
if ( jQuery.ajax ) {
-var oldParam = jQuery.param;
+var origParam = jQuery.param;
-jQuery.param = function( data, traditional ) {
+migratePatchFunc( jQuery, "param", function( data, traditional ) {
var ajaxTraditional = jQuery.ajaxSettings && jQuery.ajaxSettings.traditional;
if ( traditional === undefined && ajaxTraditional ) {
- migrateWarn( "jQuery.param() no longer uses jQuery.ajaxSettings.traditional" );
+ migrateWarn( "param-ajax-traditional",
+ "jQuery.param() no longer uses jQuery.ajaxSettings.traditional" );
traditional = ajaxTraditional;
}
- return oldParam.call( this, data, traditional );
-};
+ return origParam.call( this, data, traditional );
+}, "param-ajax-traditional" );
}
-var oldSelf = jQuery.fn.andSelf || jQuery.fn.addBack;
-
-jQuery.fn.andSelf = function() {
- migrateWarn( "jQuery.fn.andSelf() is deprecated and removed, use jQuery.fn.addBack()" );
- return oldSelf.apply( this, arguments );
-};
+migratePatchAndWarnFunc( jQuery.fn, "andSelf", jQuery.fn.addBack, "andSelf",
+ "jQuery.fn.andSelf() is deprecated and removed, use jQuery.fn.addBack()" );
// Support jQuery slim which excludes the deferred module in jQuery 4.0+
if ( jQuery.Deferred ) {
@@ -807,15 +928,13 @@ var oldDeferred = jQuery.Deferred,
jQuery.Callbacks( "memory" ) ]
];
-jQuery.Deferred = function( func ) {
+migratePatchFunc( jQuery, "Deferred", function( func ) {
var deferred = oldDeferred(),
promise = deferred.promise();
- deferred.pipe = promise.pipe = function( /* fnDone, fnFail, fnProgress */ ) {
+ function newDeferredPipe( /* fnDone, fnFail, fnProgress */ ) {
var fns = arguments;
- migrateWarn( "deferred.pipe() is deprecated" );
-
return jQuery.Deferred( function( newDefer ) {
jQuery.each( tuples, function( i, tuple ) {
var fn = typeof fns[ i ] === "function" && fns[ i ];
@@ -840,15 +959,19 @@ jQuery.Deferred = function( func ) {
} );
fns = null;
} ).promise();
+ }
- };
+ migratePatchAndWarnFunc( deferred, "pipe", newDeferredPipe, "deferred-pipe",
+ "deferred.pipe() is deprecated" );
+ migratePatchAndWarnFunc( promise, "pipe", newDeferredPipe, "deferred-pipe",
+ "deferred.pipe() is deprecated" );
if ( func ) {
func.call( deferred, deferred );
}
return deferred;
-};
+}, "deferred-pipe" );
// Preserve handler of uncaught exceptions in promise chains
jQuery.Deferred.exceptionHook = oldDeferred.exceptionHook;
diff --git a/js/vendor/jquery/jquery-ui.min.js b/js/vendor/jquery/jquery-ui.min.js
index 25398a1674..c1cbc8b452 100644
--- a/js/vendor/jquery/jquery-ui.min.js
+++ b/js/vendor/jquery/jquery-ui.min.js
@@ -1,13 +1,6 @@
-/*! jQuery UI - v1.12.1 - 2016-09-14
+/*! jQuery UI - v1.13.1 - 2022-01-20
* http://jqueryui.com
-* Includes: widget.js, position.js, data.js, disable-selection.js, effect.js, effects/effect-blind.js, effects/effect-bounce.js, effects/effect-clip.js, effects/effect-drop.js, effects/effect-explode.js, effects/effect-fade.js, effects/effect-fold.js, effects/effect-highlight.js, effects/effect-puff.js, effects/effect-pulsate.js, effects/effect-scale.js, effects/effect-shake.js, effects/effect-size.js, effects/effect-slide.js, effects/effect-transfer.js, focusable.js, form-reset-mixin.js, jquery-1-7.js, keycode.js, labels.js, scroll-parent.js, tabbable.js, unique-id.js, widgets/accordion.js, widgets/autocomplete.js, widgets/button.js, widgets/checkboxradio.js, widgets/controlgroup.js, widgets/datepicker.js, widgets/dialog.js, widgets/draggable.js, widgets/droppable.js, widgets/menu.js, widgets/mouse.js, widgets/progressbar.js, widgets/resizable.js, widgets/selectable.js, widgets/selectmenu.js, widgets/slider.js, widgets/sortable.js, widgets/spinner.js, widgets/tabs.js, widgets/tooltip.js
+* Includes: widget.js, position.js, data.js, disable-selection.js, effect.js, effects/effect-blind.js, effects/effect-bounce.js, effects/effect-clip.js, effects/effect-drop.js, effects/effect-explode.js, effects/effect-fade.js, effects/effect-fold.js, effects/effect-highlight.js, effects/effect-puff.js, effects/effect-pulsate.js, effects/effect-scale.js, effects/effect-shake.js, effects/effect-size.js, effects/effect-slide.js, effects/effect-transfer.js, focusable.js, form-reset-mixin.js, jquery-patch.js, keycode.js, labels.js, scroll-parent.js, tabbable.js, unique-id.js, widgets/accordion.js, widgets/autocomplete.js, widgets/button.js, widgets/checkboxradio.js, widgets/controlgroup.js, widgets/datepicker.js, widgets/dialog.js, widgets/draggable.js, widgets/droppable.js, widgets/menu.js, widgets/mouse.js, widgets/progressbar.js, widgets/resizable.js, widgets/selectable.js, widgets/selectmenu.js, widgets/slider.js, widgets/sortable.js, widgets/spinner.js, widgets/tabs.js, widgets/tooltip.js
* Copyright jQuery Foundation and other contributors; Licensed MIT */
-(function(t){"function"==typeof define&&define.amd?define(["jquery"],t):t(jQuery)})(function(t){function e(t){for(var e=t.css("visibility");"inherit"===e;)t=t.parent(),e=t.css("visibility");return"hidden"!==e}function i(t){for(var e,i;t.length&&t[0]!==document;){if(e=t.css("position"),("absolute"===e||"relative"===e||"fixed"===e)&&(i=parseInt(t.css("zIndex"),10),!isNaN(i)&&0!==i))return i;t=t.parent()}return 0}function s(){this._curInst=null,this._keyEvent=!1,this._disabledInputs=[],this._datepickerShowing=!1,this._inDialog=!1,this._mainDivId="ui-datepicker-div",this._inlineClass="ui-datepicker-inline",this._appendClass="ui-datepicker-append",this._triggerClass="ui-datepicker-trigger",this._dialogClass="ui-datepicker-dialog",this._disableClass="ui-datepicker-disabled",this._unselectableClass="ui-datepicker-unselectable",this._currentClass="ui-datepicker-current-day",this._dayOverClass="ui-datepicker-days-cell-over",this.regional=[],this.regional[""]={closeText:"Done",prevText:"Prev",nextText:"Next",currentText:"Today",monthNames:["January","February","March","April","May","June","July","August","September","October","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],dayNames:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],dayNamesShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],dayNamesMin:["Su","Mo","Tu","We","Th","Fr","Sa"],weekHeader:"Wk",dateFormat:"mm/dd/yy",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},this._defaults={showOn:"focus",showAnim:"fadeIn",showOptions:{},defaultDate:null,appendText:"",buttonText:"...",buttonImage:"",buttonImageOnly:!1,hideIfNoPrevNext:!1,navigationAsDateFormat:!1,gotoCurrent:!1,changeMonth:!1,changeYear:!1,yearRange:"c-10:c+10",showOtherMonths:!1,selectOtherMonths:!1,showWeek:!1,calculateWeek:this.iso8601Week,shortYearCutoff:"+10",minDate:null,maxDate:null,duration:"fast",beforeShowDay:null,beforeShow:null,onSelect:null,onChangeMonthYear:null,onClose:null,numberOfMonths:1,showCurrentAtPos:0,stepMonths:1,stepBigMonths:12,altField:"",altFormat:"",constrainInput:!0,showButtonPanel:!1,autoSize:!1,disabled:!1},t.extend(this._defaults,this.regional[""]),this.regional.en=t.extend(!0,{},this.regional[""]),this.regional["en-US"]=t.extend(!0,{},this.regional.en),this.dpDiv=n(t("<div id='"+this._mainDivId+"' class='ui-datepicker ui-widget ui-widget-content ui-helper-clearfix ui-corner-all'></div>"))}function n(e){var i="button, .ui-datepicker-prev, .ui-datepicker-next, .ui-datepicker-calendar td a";return e.on("mouseout",i,function(){t(this).removeClass("ui-state-hover"),-1!==this.className.indexOf("ui-datepicker-prev")&&t(this).removeClass("ui-datepicker-prev-hover"),-1!==this.className.indexOf("ui-datepicker-next")&&t(this).removeClass("ui-datepicker-next-hover")}).on("mouseover",i,o)}function o(){t.datepicker._isDisabledDatepicker(m.inline?m.dpDiv.parent()[0]:m.input[0])||(t(this).parents(".ui-datepicker-calendar").find("a").removeClass("ui-state-hover"),t(this).addClass("ui-state-hover"),-1!==this.className.indexOf("ui-datepicker-prev")&&t(this).addClass("ui-datepicker-prev-hover"),-1!==this.className.indexOf("ui-datepicker-next")&&t(this).addClass("ui-datepicker-next-hover"))}function a(e,i){t.extend(e,i);for(var s in i)null==i[s]&&(e[s]=i[s]);return e}function r(t){return function(){var e=this.element.val();t.apply(this,arguments),this._refresh(),e!==this.element.val()&&this._trigger("change")}}t.ui=t.ui||{},t.ui.version="1.12.1";var h=0,l=Array.prototype.slice;t.cleanData=function(e){return function(i){var s,n,o;for(o=0;null!=(n=i[o]);o++)try{s=t._data(n,"events"),s&&s.remove&&t(n).triggerHandler("remove")}catch(a){}e(i)}}(t.cleanData),t.widget=function(e,i,s){var n,o,a,r={},h=e.split(".")[0];e=e.split(".")[1];var l=h+"-"+e;return s||(s=i,i=t.Widget),t.isArray(s)&&(s=t.extend.apply(null,[{}].concat(s))),t.expr[":"][l.toLowerCase()]=function(e){return!!t.data(e,l)},t[h]=t[h]||{},n=t[h][e],o=t[h][e]=function(t,e){return this._createWidget?(arguments.length&&this._createWidget(t,e),void 0):new o(t,e)},t.extend(o,n,{version:s.version,_proto:t.extend({},s),_childConstructors:[]}),a=new i,a.options=t.widget.extend({},a.options),t.each(s,function(e,s){return t.isFunction(s)?(r[e]=function(){function t(){return i.prototype[e].apply(this,arguments)}function n(t){return i.prototype[e].apply(this,t)}return function(){var e,i=this._super,o=this._superApply;return this._super=t,this._superApply=n,e=s.apply(this,arguments),this._super=i,this._superApply=o,e}}(),void 0):(r[e]=s,void 0)}),o.prototype=t.widget.extend(a,{widgetEventPrefix:n?a.widgetEventPrefix||e:e},r,{constructor:o,namespace:h,widgetName:e,widgetFullName:l}),n?(t.each(n._childConstructors,function(e,i){var s=i.prototype;t.widget(s.namespace+"."+s.widgetName,o,i._proto)}),delete n._childConstructors):i._childConstructors.push(o),t.widget.bridge(e,o),o},t.widget.extend=function(e){for(var i,s,n=l.call(arguments,1),o=0,a=n.length;a>o;o++)for(i in n[o])s=n[o][i],n[o].hasOwnProperty(i)&&void 0!==s&&(e[i]=t.isPlainObject(s)?t.isPlainObject(e[i])?t.widget.extend({},e[i],s):t.widget.extend({},s):s);return e},t.widget.bridge=function(e,i){var s=i.prototype.widgetFullName||e;t.fn[e]=function(n){var o="string"==typeof n,a=l.call(arguments,1),r=this;return o?this.length||"instance"!==n?this.each(function(){var i,o=t.data(this,s);return"instance"===n?(r=o,!1):o?t.isFunction(o[n])&&"_"!==n.charAt(0)?(i=o[n].apply(o,a),i!==o&&void 0!==i?(r=i&&i.jquery?r.pushStack(i.get()):i,!1):void 0):t.error("no such method '"+n+"' for "+e+" widget instance"):t.error("cannot call methods on "+e+" prior to initialization; "+"attempted to call method '"+n+"'")}):r=void 0:(a.length&&(n=t.widget.extend.apply(null,[n].concat(a))),this.each(function(){var e=t.data(this,s);e?(e.option(n||{}),e._init&&e._init()):t.data(this,s,new i(n,this))})),r}},t.Widget=function(){},t.Widget._childConstructors=[],t.Widget.prototype={widgetName:"widget",widgetEventPrefix:"",defaultElement:"<div>",options:{classes:{},disabled:!1,create:null},_createWidget:function(e,i){i=t(i||this.defaultElement||this)[0],this.element=t(i),this.uuid=h++,this.eventNamespace="."+this.widgetName+this.uuid,this.bindings=t(),this.hoverable=t(),this.focusable=t(),this.classesElementLookup={},i!==this&&(t.data(i,this.widgetFullName,this),this._on(!0,this.element,{remove:function(t){t.target===i&&this.destroy()}}),this.document=t(i.style?i.ownerDocument:i.document||i),this.window=t(this.document[0].defaultView||this.document[0].parentWindow)),this.options=t.widget.extend({},this.options,this._getCreateOptions(),e),this._create(),this.options.disabled&&this._setOptionDisabled(this.options.disabled),this._trigger("create",null,this._getCreateEventData()),this._init()},_getCreateOptions:function(){return{}},_getCreateEventData:t.noop,_create:t.noop,_init:t.noop,destroy:function(){var e=this;this._destroy(),t.each(this.classesElementLookup,function(t,i){e._removeClass(i,t)}),this.element.off(this.eventNamespace).removeData(this.widgetFullName),this.widget().off(this.eventNamespace).removeAttr("aria-disabled"),this.bindings.off(this.eventNamespace)},_destroy:t.noop,widget:function(){return this.element},option:function(e,i){var s,n,o,a=e;if(0===arguments.length)return t.widget.extend({},this.options);if("string"==typeof e)if(a={},s=e.split("."),e=s.shift(),s.length){for(n=a[e]=t.widget.extend({},this.options[e]),o=0;s.length-1>o;o++)n[s[o]]=n[s[o]]||{},n=n[s[o]];if(e=s.pop(),1===arguments.length)return void 0===n[e]?null:n[e];n[e]=i}else{if(1===arguments.length)return void 0===this.options[e]?null:this.options[e];a[e]=i}return this._setOptions(a),this},_setOptions:function(t){var e;for(e in t)this._setOption(e,t[e]);return this},_setOption:function(t,e){return"classes"===t&&this._setOptionClasses(e),this.options[t]=e,"disabled"===t&&this._setOptionDisabled(e),this},_setOptionClasses:function(e){var i,s,n;for(i in e)n=this.classesElementLookup[i],e[i]!==this.options.classes[i]&&n&&n.length&&(s=t(n.get()),this._removeClass(n,i),s.addClass(this._classes({element:s,keys:i,classes:e,add:!0})))},_setOptionDisabled:function(t){this._toggleClass(this.widget(),this.widgetFullName+"-disabled",null,!!t),t&&(this._removeClass(this.hoverable,null,"ui-state-hover"),this._removeClass(this.focusable,null,"ui-state-focus"))},enable:function(){return this._setOptions({disabled:!1})},disable:function(){return this._setOptions({disabled:!0})},_classes:function(e){function i(i,o){var a,r;for(r=0;i.length>r;r++)a=n.classesElementLookup[i[r]]||t(),a=e.add?t(t.unique(a.get().concat(e.element.get()))):t(a.not(e.element).get()),n.classesElementLookup[i[r]]=a,s.push(i[r]),o&&e.classes[i[r]]&&s.push(e.classes[i[r]])}var s=[],n=this;return e=t.extend({element:this.element,classes:this.options.classes||{}},e),this._on(e.element,{remove:"_untrackClassesElement"}),e.keys&&i(e.keys.match(/\S+/g)||[],!0),e.extra&&i(e.extra.match(/\S+/g)||[]),s.join(" ")},_untrackClassesElement:function(e){var i=this;t.each(i.classesElementLookup,function(s,n){-1!==t.inArray(e.target,n)&&(i.classesElementLookup[s]=t(n.not(e.target).get()))})},_removeClass:function(t,e,i){return this._toggleClass(t,e,i,!1)},_addClass:function(t,e,i){return this._toggleClass(t,e,i,!0)},_toggleClass:function(t,e,i,s){s="boolean"==typeof s?s:i;var n="string"==typeof t||null===t,o={extra:n?e:i,keys:n?t:e,element:n?this.element:t,add:s};return o.element.toggleClass(this._classes(o),s),this},_on:function(e,i,s){var n,o=this;"boolean"!=typeof e&&(s=i,i=e,e=!1),s?(i=n=t(i),this.bindings=this.bindings.add(i)):(s=i,i=this.element,n=this.widget()),t.each(s,function(s,a){function r(){return e||o.options.disabled!==!0&&!t(this).hasClass("ui-state-disabled")?("string"==typeof a?o[a]:a).apply(o,arguments):void 0}"string"!=typeof a&&(r.guid=a.guid=a.guid||r.guid||t.guid++);var h=s.match(/^([\w:-]*)\s*(.*)$/),l=h[1]+o.eventNamespace,c=h[2];c?n.on(l,c,r):i.on(l,r)})},_off:function(e,i){i=(i||"").split(" ").join(this.eventNamespace+" ")+this.eventNamespace,e.off(i).off(i),this.bindings=t(this.bindings.not(e).get()),this.focusable=t(this.focusable.not(e).get()),this.hoverable=t(this.hoverable.not(e).get())},_delay:function(t,e){function i(){return("string"==typeof t?s[t]:t).apply(s,arguments)}var s=this;return setTimeout(i,e||0)},_hoverable:function(e){this.hoverable=this.hoverable.add(e),this._on(e,{mouseenter:function(e){this._addClass(t(e.currentTarget),null,"ui-state-hover")},mouseleave:function(e){this._removeClass(t(e.currentTarget),null,"ui-state-hover")}})},_focusable:function(e){this.focusable=this.focusable.add(e),this._on(e,{focusin:function(e){this._addClass(t(e.currentTarget),null,"ui-state-focus")},focusout:function(e){this._removeClass(t(e.currentTarget),null,"ui-state-focus")}})},_trigger:function(e,i,s){var n,o,a=this.options[e];if(s=s||{},i=t.Event(i),i.type=(e===this.widgetEventPrefix?e:this.widgetEventPrefix+e).toLowerCase(),i.target=this.element[0],o=i.originalEvent)for(n in o)n in i||(i[n]=o[n]);return this.element.trigger(i,s),!(t.isFunction(a)&&a.apply(this.element[0],[i].concat(s))===!1||i.isDefaultPrevented())}},t.each({show:"fadeIn",hide:"fadeOut"},function(e,i){t.Widget.prototype["_"+e]=function(s,n,o){"string"==typeof n&&(n={effect:n});var a,r=n?n===!0||"number"==typeof n?i:n.effect||i:e;n=n||{},"number"==typeof n&&(n={duration:n}),a=!t.isEmptyObject(n),n.complete=o,n.delay&&s.delay(n.delay),a&&t.effects&&t.effects.effect[r]?s[e](n):r!==e&&s[r]?s[r](n.duration,n.easing,o):s.queue(function(i){t(this)[e](),o&&o.call(s[0]),i()})}}),t.widget,function(){function e(t,e,i){return[parseFloat(t[0])*(u.test(t[0])?e/100:1),parseFloat(t[1])*(u.test(t[1])?i/100:1)]}function i(e,i){return parseInt(t.css(e,i),10)||0}function s(e){var i=e[0];return 9===i.nodeType?{width:e.width(),height:e.height(),offset:{top:0,left:0}}:t.isWindow(i)?{width:e.width(),height:e.height(),offset:{top:e.scrollTop(),left:e.scrollLeft()}}:i.preventDefault?{width:0,height:0,offset:{top:i.pageY,left:i.pageX}}:{width:e.outerWidth(),height:e.outerHeight(),offset:e.offset()}}var n,o=Math.max,a=Math.abs,r=/left|center|right/,h=/top|center|bottom/,l=/[\+\-]\d+(\.[\d]+)?%?/,c=/^\w+/,u=/%$/,d=t.fn.position;t.position={scrollbarWidth:function(){if(void 0!==n)return n;var e,i,s=t("<div style='display:block;position:absolute;width:50px;height:50px;overflow:hidden;'><div style='height:100px;width:auto;'></div></div>"),o=s.children()[0];return t("body").append(s),e=o.offsetWidth,s.css("overflow","scroll"),i=o.offsetWidth,e===i&&(i=s[0].clientWidth),s.remove(),n=e-i},getScrollInfo:function(e){var i=e.isWindow||e.isDocument?"":e.element.css("overflow-x"),s=e.isWindow||e.isDocument?"":e.element.css("overflow-y"),n="scroll"===i||"auto"===i&&e.width<e.element[0].scrollWidth,o="scroll"===s||"auto"===s&&e.height<e.element[0].scrollHeight;return{width:o?t.position.scrollbarWidth():0,height:n?t.position.scrollbarWidth():0}},getWithinInfo:function(e){var i=t(e||window),s=t.isWindow(i[0]),n=!!i[0]&&9===i[0].nodeType,o=!s&&!n;return{element:i,isWindow:s,isDocument:n,offset:o?t(e).offset():{left:0,top:0},scrollLeft:i.scrollLeft(),scrollTop:i.scrollTop(),width:i.outerWidth(),height:i.outerHeight()}}},t.fn.position=function(n){if(!n||!n.of)return d.apply(this,arguments);n=t.extend({},n);var u,p,f,g,m,_,v=t(n.of),b=t.position.getWithinInfo(n.within),y=t.position.getScrollInfo(b),w=(n.collision||"flip").split(" "),k={};return _=s(v),v[0].preventDefault&&(n.at="left top"),p=_.width,f=_.height,g=_.offset,m=t.extend({},g),t.each(["my","at"],function(){var t,e,i=(n[this]||"").split(" ");1===i.length&&(i=r.test(i[0])?i.concat(["center"]):h.test(i[0])?["center"].concat(i):["center","center"]),i[0]=r.test(i[0])?i[0]:"center",i[1]=h.test(i[1])?i[1]:"center",t=l.exec(i[0]),e=l.exec(i[1]),k[this]=[t?t[0]:0,e?e[0]:0],n[this]=[c.exec(i[0])[0],c.exec(i[1])[0]]}),1===w.length&&(w[1]=w[0]),"right"===n.at[0]?m.left+=p:"center"===n.at[0]&&(m.left+=p/2),"bottom"===n.at[1]?m.top+=f:"center"===n.at[1]&&(m.top+=f/2),u=e(k.at,p,f),m.left+=u[0],m.top+=u[1],this.each(function(){var s,r,h=t(this),l=h.outerWidth(),c=h.outerHeight(),d=i(this,"marginLeft"),_=i(this,"marginTop"),x=l+d+i(this,"marginRight")+y.width,C=c+_+i(this,"marginBottom")+y.height,D=t.extend({},m),I=e(k.my,h.outerWidth(),h.outerHeight());"right"===n.my[0]?D.left-=l:"center"===n.my[0]&&(D.left-=l/2),"bottom"===n.my[1]?D.top-=c:"center"===n.my[1]&&(D.top-=c/2),D.left+=I[0],D.top+=I[1],s={marginLeft:d,marginTop:_},t.each(["left","top"],function(e,i){t.ui.position[w[e]]&&t.ui.position[w[e]][i](D,{targetWidth:p,targetHeight:f,elemWidth:l,elemHeight:c,collisionPosition:s,collisionWidth:x,collisionHeight:C,offset:[u[0]+I[0],u[1]+I[1]],my:n.my,at:n.at,within:b,elem:h})}),n.using&&(r=function(t){var e=g.left-D.left,i=e+p-l,s=g.top-D.top,r=s+f-c,u={target:{element:v,left:g.left,top:g.top,width:p,height:f},element:{element:h,left:D.left,top:D.top,width:l,height:c},horizontal:0>i?"left":e>0?"right":"center",vertical:0>r?"top":s>0?"bottom":"middle"};l>p&&p>a(e+i)&&(u.horizontal="center"),c>f&&f>a(s+r)&&(u.vertical="middle"),u.important=o(a(e),a(i))>o(a(s),a(r))?"horizontal":"vertical",n.using.call(this,t,u)}),h.offset(t.extend(D,{using:r}))})},t.ui.position={fit:{left:function(t,e){var i,s=e.within,n=s.isWindow?s.scrollLeft:s.offset.left,a=s.width,r=t.left-e.collisionPosition.marginLeft,h=n-r,l=r+e.collisionWidth-a-n;e.collisionWidth>a?h>0&&0>=l?(i=t.left+h+e.collisionWidth-a-n,t.left+=h-i):t.left=l>0&&0>=h?n:h>l?n+a-e.collisionWidth:n:h>0?t.left+=h:l>0?t.left-=l:t.left=o(t.left-r,t.left)},top:function(t,e){var i,s=e.within,n=s.isWindow?s.scrollTop:s.offset.top,a=e.within.height,r=t.top-e.collisionPosition.marginTop,h=n-r,l=r+e.collisionHeight-a-n;e.collisionHeight>a?h>0&&0>=l?(i=t.top+h+e.collisionHeight-a-n,t.top+=h-i):t.top=l>0&&0>=h?n:h>l?n+a-e.collisionHeight:n:h>0?t.top+=h:l>0?t.top-=l:t.top=o(t.top-r,t.top)}},flip:{left:function(t,e){var i,s,n=e.within,o=n.offset.left+n.scrollLeft,r=n.width,h=n.isWindow?n.scrollLeft:n.offset.left,l=t.left-e.collisionPosition.marginLeft,c=l-h,u=l+e.collisionWidth-r-h,d="left"===e.my[0]?-e.elemWidth:"right"===e.my[0]?e.elemWidth:0,p="left"===e.at[0]?e.targetWidth:"right"===e.at[0]?-e.targetWidth:0,f=-2*e.offset[0];0>c?(i=t.left+d+p+f+e.collisionWidth-r-o,(0>i||a(c)>i)&&(t.left+=d+p+f)):u>0&&(s=t.left-e.collisionPosition.marginLeft+d+p+f-h,(s>0||u>a(s))&&(t.left+=d+p+f))},top:function(t,e){var i,s,n=e.within,o=n.offset.top+n.scrollTop,r=n.height,h=n.isWindow?n.scrollTop:n.offset.top,l=t.top-e.collisionPosition.marginTop,c=l-h,u=l+e.collisionHeight-r-h,d="top"===e.my[1],p=d?-e.elemHeight:"bottom"===e.my[1]?e.elemHeight:0,f="top"===e.at[1]?e.targetHeight:"bottom"===e.at[1]?-e.targetHeight:0,g=-2*e.offset[1];0>c?(s=t.top+p+f+g+e.collisionHeight-r-o,(0>s||a(c)>s)&&(t.top+=p+f+g)):u>0&&(i=t.top-e.collisionPosition.marginTop+p+f+g-h,(i>0||u>a(i))&&(t.top+=p+f+g))}},flipfit:{left:function(){t.ui.position.flip.left.apply(this,arguments),t.ui.position.fit.left.apply(this,arguments)},top:function(){t.ui.position.flip.top.apply(this,arguments),t.ui.position.fit.top.apply(this,arguments)}}}}(),t.ui.position,t.extend(t.expr[":"],{data:t.expr.createPseudo?t.expr.createPseudo(function(e){return function(i){return!!t.data(i,e)}}):function(e,i,s){return!!t.data(e,s[3])}}),t.fn.extend({disableSelection:function(){var t="onselectstart"in document.createElement("div")?"selectstart":"mousedown";return function(){return this.on(t+".ui-disableSelection",function(t){t.preventDefault()})}}(),enableSelection:function(){return this.off(".ui-disableSelection")}});var c="ui-effects-",u="ui-effects-style",d="ui-effects-animated",p=t;t.effects={effect:{}},function(t,e){function i(t,e,i){var s=u[e.type]||{};return null==t?i||!e.def?null:e.def:(t=s.floor?~~t:parseFloat(t),isNaN(t)?e.def:s.mod?(t+s.mod)%s.mod:0>t?0:t>s.max?s.max:t)}function s(i){var s=l(),n=s._rgba=[];return i=i.toLowerCase(),f(h,function(t,o){var a,r=o.re.exec(i),h=r&&o.parse(r),l=o.space||"rgba";return h?(a=s[l](h),s[c[l].cache]=a[c[l].cache],n=s._rgba=a._rgba,!1):e}),n.length?("0,0,0,0"===n.join()&&t.extend(n,o.transparent),s):o[i]}function n(t,e,i){return i=(i+1)%1,1>6*i?t+6*(e-t)*i:1>2*i?e:2>3*i?t+6*(e-t)*(2/3-i):t}var o,a="backgroundColor borderBottomColor borderLeftColor borderRightColor borderTopColor color columnRuleColor outlineColor textDecorationColor textEmphasisColor",r=/^([\-+])=\s*(\d+\.?\d*)/,h=[{re:/rgba?\(\s*(\d{1,3})\s*,\s*(\d{1,3})\s*,\s*(\d{1,3})\s*(?:,\s*(\d?(?:\.\d+)?)\s*)?\)/,parse:function(t){return[t[1],t[2],t[3],t[4]]}},{re:/rgba?\(\s*(\d+(?:\.\d+)?)\%\s*,\s*(\d+(?:\.\d+)?)\%\s*,\s*(\d+(?:\.\d+)?)\%\s*(?:,\s*(\d?(?:\.\d+)?)\s*)?\)/,parse:function(t){return[2.55*t[1],2.55*t[2],2.55*t[3],t[4]]}},{re:/#([a-f0-9]{2})([a-f0-9]{2})([a-f0-9]{2})/,parse:function(t){return[parseInt(t[1],16),parseInt(t[2],16),parseInt(t[3],16)]}},{re:/#([a-f0-9])([a-f0-9])([a-f0-9])/,parse:function(t){return[parseInt(t[1]+t[1],16),parseInt(t[2]+t[2],16),parseInt(t[3]+t[3],16)]}},{re:/hsla?\(\s*(\d+(?:\.\d+)?)\s*,\s*(\d+(?:\.\d+)?)\%\s*,\s*(\d+(?:\.\d+)?)\%\s*(?:,\s*(\d?(?:\.\d+)?)\s*)?\)/,space:"hsla",parse:function(t){return[t[1],t[2]/100,t[3]/100,t[4]]}}],l=t.Color=function(e,i,s,n){return new t.Color.fn.parse(e,i,s,n)},c={rgba:{props:{red:{idx:0,type:"byte"},green:{idx:1,type:"byte"},blue:{idx:2,type:"byte"}}},hsla:{props:{hue:{idx:0,type:"degrees"},saturation:{idx:1,type:"percent"},lightness:{idx:2,type:"percent"}}}},u={"byte":{floor:!0,max:255},percent:{max:1},degrees:{mod:360,floor:!0}},d=l.support={},p=t("<p>")[0],f=t.each;p.style.cssText="background-color:rgba(1,1,1,.5)",d.rgba=p.style.backgroundColor.indexOf("rgba")>-1,f(c,function(t,e){e.cache="_"+t,e.props.alpha={idx:3,type:"percent",def:1}}),l.fn=t.extend(l.prototype,{parse:function(n,a,r,h){if(n===e)return this._rgba=[null,null,null,null],this;(n.jquery||n.nodeType)&&(n=t(n).css(a),a=e);var u=this,d=t.type(n),p=this._rgba=[];return a!==e&&(n=[n,a,r,h],d="array"),"string"===d?this.parse(s(n)||o._default):"array"===d?(f(c.rgba.props,function(t,e){p[e.idx]=i(n[e.idx],e)}),this):"object"===d?(n instanceof l?f(c,function(t,e){n[e.cache]&&(u[e.cache]=n[e.cache].slice())}):f(c,function(e,s){var o=s.cache;f(s.props,function(t,e){if(!u[o]&&s.to){if("alpha"===t||null==n[t])return;u[o]=s.to(u._rgba)}u[o][e.idx]=i(n[t],e,!0)}),u[o]&&0>t.inArray(null,u[o].slice(0,3))&&(u[o][3]=1,s.from&&(u._rgba=s.from(u[o])))}),this):e},is:function(t){var i=l(t),s=!0,n=this;return f(c,function(t,o){var a,r=i[o.cache];return r&&(a=n[o.cache]||o.to&&o.to(n._rgba)||[],f(o.props,function(t,i){return null!=r[i.idx]?s=r[i.idx]===a[i.idx]:e})),s}),s},_space:function(){var t=[],e=this;return f(c,function(i,s){e[s.cache]&&t.push(i)}),t.pop()},transition:function(t,e){var s=l(t),n=s._space(),o=c[n],a=0===this.alpha()?l("transparent"):this,r=a[o.cache]||o.to(a._rgba),h=r.slice();return s=s[o.cache],f(o.props,function(t,n){var o=n.idx,a=r[o],l=s[o],c=u[n.type]||{};null!==l&&(null===a?h[o]=l:(c.mod&&(l-a>c.mod/2?a+=c.mod:a-l>c.mod/2&&(a-=c.mod)),h[o]=i((l-a)*e+a,n)))}),this[n](h)},blend:function(e){if(1===this._rgba[3])return this;var i=this._rgba.slice(),s=i.pop(),n=l(e)._rgba;return l(t.map(i,function(t,e){return(1-s)*n[e]+s*t}))},toRgbaString:function(){var e="rgba(",i=t.map(this._rgba,function(t,e){return null==t?e>2?1:0:t});return 1===i[3]&&(i.pop(),e="rgb("),e+i.join()+")"},toHslaString:function(){var e="hsla(",i=t.map(this.hsla(),function(t,e){return null==t&&(t=e>2?1:0),e&&3>e&&(t=Math.round(100*t)+"%"),t});return 1===i[3]&&(i.pop(),e="hsl("),e+i.join()+")"},toHexString:function(e){var i=this._rgba.slice(),s=i.pop();return e&&i.push(~~(255*s)),"#"+t.map(i,function(t){return t=(t||0).toString(16),1===t.length?"0"+t:t}).join("")},toString:function(){return 0===this._rgba[3]?"transparent":this.toRgbaString()}}),l.fn.parse.prototype=l.fn,c.hsla.to=function(t){if(null==t[0]||null==t[1]||null==t[2])return[null,null,null,t[3]];var e,i,s=t[0]/255,n=t[1]/255,o=t[2]/255,a=t[3],r=Math.max(s,n,o),h=Math.min(s,n,o),l=r-h,c=r+h,u=.5*c;return e=h===r?0:s===r?60*(n-o)/l+360:n===r?60*(o-s)/l+120:60*(s-n)/l+240,i=0===l?0:.5>=u?l/c:l/(2-c),[Math.round(e)%360,i,u,null==a?1:a]},c.hsla.from=function(t){if(null==t[0]||null==t[1]||null==t[2])return[null,null,null,t[3]];var e=t[0]/360,i=t[1],s=t[2],o=t[3],a=.5>=s?s*(1+i):s+i-s*i,r=2*s-a;return[Math.round(255*n(r,a,e+1/3)),Math.round(255*n(r,a,e)),Math.round(255*n(r,a,e-1/3)),o]},f(c,function(s,n){var o=n.props,a=n.cache,h=n.to,c=n.from;l.fn[s]=function(s){if(h&&!this[a]&&(this[a]=h(this._rgba)),s===e)return this[a].slice();var n,r=t.type(s),u="array"===r||"object"===r?s:arguments,d=this[a].slice();return f(o,function(t,e){var s=u["object"===r?t:e.idx];null==s&&(s=d[e.idx]),d[e.idx]=i(s,e)}),c?(n=l(c(d)),n[a]=d,n):l(d)},f(o,function(e,i){l.fn[e]||(l.fn[e]=function(n){var o,a=t.type(n),h="alpha"===e?this._hsla?"hsla":"rgba":s,l=this[h](),c=l[i.idx];return"undefined"===a?c:("function"===a&&(n=n.call(this,c),a=t.type(n)),null==n&&i.empty?this:("string"===a&&(o=r.exec(n),o&&(n=c+parseFloat(o[2])*("+"===o[1]?1:-1))),l[i.idx]=n,this[h](l)))})})}),l.hook=function(e){var i=e.split(" ");f(i,function(e,i){t.cssHooks[i]={set:function(e,n){var o,a,r="";if("transparent"!==n&&("string"!==t.type(n)||(o=s(n)))){if(n=l(o||n),!d.rgba&&1!==n._rgba[3]){for(a="backgroundColor"===i?e.parentNode:e;(""===r||"transparent"===r)&&a&&a.style;)try{r=t.css(a,"backgroundColor"),a=a.parentNode}catch(h){}n=n.blend(r&&"transparent"!==r?r:"_default")}n=n.toRgbaString()}try{e.style[i]=n}catch(h){}}},t.fx.step[i]=function(e){e.colorInit||(e.start=l(e.elem,i),e.end=l(e.end),e.colorInit=!0),t.cssHooks[i].set(e.elem,e.start.transition(e.end,e.pos))}})},l.hook(a),t.cssHooks.borderColor={expand:function(t){var e={};return f(["Top","Right","Bottom","Left"],function(i,s){e["border"+s+"Color"]=t}),e}},o=t.Color.names={aqua:"#00ffff",black:"#000000",blue:"#0000ff",fuchsia:"#ff00ff",gray:"#808080",green:"#008000",lime:"#00ff00",maroon:"#800000",navy:"#000080",olive:"#808000",purple:"#800080",red:"#ff0000",silver:"#c0c0c0",teal:"#008080",white:"#ffffff",yellow:"#ffff00",transparent:[null,null,null,0],_default:"#ffffff"}}(p),function(){function e(e){var i,s,n=e.ownerDocument.defaultView?e.ownerDocument.defaultView.getComputedStyle(e,null):e.currentStyle,o={};if(n&&n.length&&n[0]&&n[n[0]])for(s=n.length;s--;)i=n[s],"string"==typeof n[i]&&(o[t.camelCase(i)]=n[i]);else for(i in n)"string"==typeof n[i]&&(o[i]=n[i]);return o}function i(e,i){var s,o,a={};for(s in i)o=i[s],e[s]!==o&&(n[s]||(t.fx.step[s]||!isNaN(parseFloat(o)))&&(a[s]=o));return a}var s=["add","remove","toggle"],n={border:1,borderBottom:1,borderColor:1,borderLeft:1,borderRight:1,borderTop:1,borderWidth:1,margin:1,padding:1};t.each(["borderLeftStyle","borderRightStyle","borderBottomStyle","borderTopStyle"],function(e,i){t.fx.step[i]=function(t){("none"!==t.end&&!t.setAttr||1===t.pos&&!t.setAttr)&&(p.style(t.elem,i,t.end),t.setAttr=!0)}}),t.fn.addBack||(t.fn.addBack=function(t){return this.add(null==t?this.prevObject:this.prevObject.filter(t))}),t.effects.animateClass=function(n,o,a,r){var h=t.speed(o,a,r);return this.queue(function(){var o,a=t(this),r=a.attr("class")||"",l=h.children?a.find("*").addBack():a;l=l.map(function(){var i=t(this);return{el:i,start:e(this)}}),o=function(){t.each(s,function(t,e){n[e]&&a[e+"Class"](n[e])})},o(),l=l.map(function(){return this.end=e(this.el[0]),this.diff=i(this.start,this.end),this}),a.attr("class",r),l=l.map(function(){var e=this,i=t.Deferred(),s=t.extend({},h,{queue:!1,complete:function(){i.resolve(e)}});return this.el.animate(this.diff,s),i.promise()}),t.when.apply(t,l.get()).done(function(){o(),t.each(arguments,function(){var e=this.el;t.each(this.diff,function(t){e.css(t,"")})}),h.complete.call(a[0])})})},t.fn.extend({addClass:function(e){return function(i,s,n,o){return s?t.effects.animateClass.call(this,{add:i},s,n,o):e.apply(this,arguments)}}(t.fn.addClass),removeClass:function(e){return function(i,s,n,o){return arguments.length>1?t.effects.animateClass.call(this,{remove:i},s,n,o):e.apply(this,arguments)}}(t.fn.removeClass),toggleClass:function(e){return function(i,s,n,o,a){return"boolean"==typeof s||void 0===s?n?t.effects.animateClass.call(this,s?{add:i}:{remove:i},n,o,a):e.apply(this,arguments):t.effects.animateClass.call(this,{toggle:i},s,n,o)}}(t.fn.toggleClass),switchClass:function(e,i,s,n,o){return t.effects.animateClass.call(this,{add:i,remove:e},s,n,o)}})}(),function(){function e(e,i,s,n){return t.isPlainObject(e)&&(i=e,e=e.effect),e={effect:e},null==i&&(i={}),t.isFunction(i)&&(n=i,s=null,i={}),("number"==typeof i||t.fx.speeds[i])&&(n=s,s=i,i={}),t.isFunction(s)&&(n=s,s=null),i&&t.extend(e,i),s=s||i.duration,e.duration=t.fx.off?0:"number"==typeof s?s:s in t.fx.speeds?t.fx.speeds[s]:t.fx.speeds._default,e.complete=n||i.complete,e}function i(e){return!e||"number"==typeof e||t.fx.speeds[e]?!0:"string"!=typeof e||t.effects.effect[e]?t.isFunction(e)?!0:"object"!=typeof e||e.effect?!1:!0:!0}function s(t,e){var i=e.outerWidth(),s=e.outerHeight(),n=/^rect\((-?\d*\.?\d*px|-?\d+%|auto),?\s*(-?\d*\.?\d*px|-?\d+%|auto),?\s*(-?\d*\.?\d*px|-?\d+%|auto),?\s*(-?\d*\.?\d*px|-?\d+%|auto)\)$/,o=n.exec(t)||["",0,i,s,0];return{top:parseFloat(o[1])||0,right:"auto"===o[2]?i:parseFloat(o[2]),bottom:"auto"===o[3]?s:parseFloat(o[3]),left:parseFloat(o[4])||0}}t.expr&&t.expr.filters&&t.expr.filters.animated&&(t.expr.filters.animated=function(e){return function(i){return!!t(i).data(d)||e(i)}}(t.expr.filters.animated)),t.uiBackCompat!==!1&&t.extend(t.effects,{save:function(t,e){for(var i=0,s=e.length;s>i;i++)null!==e[i]&&t.data(c+e[i],t[0].style[e[i]])},restore:function(t,e){for(var i,s=0,n=e.length;n>s;s++)null!==e[s]&&(i=t.data(c+e[s]),t.css(e[s],i))},setMode:function(t,e){return"toggle"===e&&(e=t.is(":hidden")?"show":"hide"),e},createWrapper:function(e){if(e.parent().is(".ui-effects-wrapper"))return e.parent();var i={width:e.outerWidth(!0),height:e.outerHeight(!0),"float":e.css("float")},s=t("<div></div>").addClass("ui-effects-wrapper").css({fontSize:"100%",background:"transparent",border:"none",margin:0,padding:0}),n={width:e.width(),height:e.height()},o=document.activeElement;try{o.id}catch(a){o=document.body}return e.wrap(s),(e[0]===o||t.contains(e[0],o))&&t(o).trigger("focus"),s=e.parent(),"static"===e.css("position")?(s.css({position:"relative"}),e.css({position:"relative"})):(t.extend(i,{position:e.css("position"),zIndex:e.css("z-index")}),t.each(["top","left","bottom","right"],function(t,s){i[s]=e.css(s),isNaN(parseInt(i[s],10))&&(i[s]="auto")}),e.css({position:"relative",top:0,left:0,right:"auto",bottom:"auto"})),e.css(n),s.css(i).show()},removeWrapper:function(e){var i=document.activeElement;return e.parent().is(".ui-effects-wrapper")&&(e.parent().replaceWith(e),(e[0]===i||t.contains(e[0],i))&&t(i).trigger("focus")),e}}),t.extend(t.effects,{version:"1.12.1",define:function(e,i,s){return s||(s=i,i="effect"),t.effects.effect[e]=s,t.effects.effect[e].mode=i,s},scaledDimensions:function(t,e,i){if(0===e)return{height:0,width:0,outerHeight:0,outerWidth:0};var s="horizontal"!==i?(e||100)/100:1,n="vertical"!==i?(e||100)/100:1;return{height:t.height()*n,width:t.width()*s,outerHeight:t.outerHeight()*n,outerWidth:t.outerWidth()*s}},clipToBox:function(t){return{width:t.clip.right-t.clip.left,height:t.clip.bottom-t.clip.top,left:t.clip.left,top:t.clip.top}},unshift:function(t,e,i){var s=t.queue();e>1&&s.splice.apply(s,[1,0].concat(s.splice(e,i))),t.dequeue()},saveStyle:function(t){t.data(u,t[0].style.cssText)},restoreStyle:function(t){t[0].style.cssText=t.data(u)||"",t.removeData(u)},mode:function(t,e){var i=t.is(":hidden");return"toggle"===e&&(e=i?"show":"hide"),(i?"hide"===e:"show"===e)&&(e="none"),e},getBaseline:function(t,e){var i,s;switch(t[0]){case"top":i=0;break;case"middle":i=.5;break;case"bottom":i=1;break;default:i=t[0]/e.height}switch(t[1]){case"left":s=0;break;case"center":s=.5;break;case"right":s=1;break;default:s=t[1]/e.width}return{x:s,y:i}},createPlaceholder:function(e){var i,s=e.css("position"),n=e.position();return e.css({marginTop:e.css("marginTop"),marginBottom:e.css("marginBottom"),marginLeft:e.css("marginLeft"),marginRight:e.css("marginRight")}).outerWidth(e.outerWidth()).outerHeight(e.outerHeight()),/^(static|relative)/.test(s)&&(s="absolute",i=t("<"+e[0].nodeName+">").insertAfter(e).css({display:/^(inline|ruby)/.test(e.css("display"))?"inline-block":"block",visibility:"hidden",marginTop:e.css("marginTop"),marginBottom:e.css("marginBottom"),marginLeft:e.css("marginLeft"),marginRight:e.css("marginRight"),"float":e.css("float")}).outerWidth(e.outerWidth()).outerHeight(e.outerHeight()).addClass("ui-effects-placeholder"),e.data(c+"placeholder",i)),e.css({position:s,left:n.left,top:n.top}),i},removePlaceholder:function(t){var e=c+"placeholder",i=t.data(e);i&&(i.remove(),t.removeData(e))},cleanUp:function(e){t.effects.restoreStyle(e),t.effects.removePlaceholder(e)},setTransition:function(e,i,s,n){return n=n||{},t.each(i,function(t,i){var o=e.cssUnit(i);o[0]>0&&(n[i]=o[0]*s+o[1])}),n}}),t.fn.extend({effect:function(){function i(e){function i(){r.removeData(d),t.effects.cleanUp(r),"hide"===s.mode&&r.hide(),a()}function a(){t.isFunction(h)&&h.call(r[0]),t.isFunction(e)&&e()}var r=t(this);s.mode=c.shift(),t.uiBackCompat===!1||o?"none"===s.mode?(r[l](),a()):n.call(r[0],s,i):(r.is(":hidden")?"hide"===l:"show"===l)?(r[l](),a()):n.call(r[0],s,a)}var s=e.apply(this,arguments),n=t.effects.effect[s.effect],o=n.mode,a=s.queue,r=a||"fx",h=s.complete,l=s.mode,c=[],u=function(e){var i=t(this),s=t.effects.mode(i,l)||o;i.data(d,!0),c.push(s),o&&("show"===s||s===o&&"hide"===s)&&i.show(),o&&"none"===s||t.effects.saveStyle(i),t.isFunction(e)&&e()};return t.fx.off||!n?l?this[l](s.duration,h):this.each(function(){h&&h.call(this)}):a===!1?this.each(u).each(i):this.queue(r,u).queue(r,i)},show:function(t){return function(s){if(i(s))return t.apply(this,arguments);var n=e.apply(this,arguments);return n.mode="show",this.effect.call(this,n)
-}}(t.fn.show),hide:function(t){return function(s){if(i(s))return t.apply(this,arguments);var n=e.apply(this,arguments);return n.mode="hide",this.effect.call(this,n)}}(t.fn.hide),toggle:function(t){return function(s){if(i(s)||"boolean"==typeof s)return t.apply(this,arguments);var n=e.apply(this,arguments);return n.mode="toggle",this.effect.call(this,n)}}(t.fn.toggle),cssUnit:function(e){var i=this.css(e),s=[];return t.each(["em","px","%","pt"],function(t,e){i.indexOf(e)>0&&(s=[parseFloat(i),e])}),s},cssClip:function(t){return t?this.css("clip","rect("+t.top+"px "+t.right+"px "+t.bottom+"px "+t.left+"px)"):s(this.css("clip"),this)},transfer:function(e,i){var s=t(this),n=t(e.to),o="fixed"===n.css("position"),a=t("body"),r=o?a.scrollTop():0,h=o?a.scrollLeft():0,l=n.offset(),c={top:l.top-r,left:l.left-h,height:n.innerHeight(),width:n.innerWidth()},u=s.offset(),d=t("<div class='ui-effects-transfer'></div>").appendTo("body").addClass(e.className).css({top:u.top-r,left:u.left-h,height:s.innerHeight(),width:s.innerWidth(),position:o?"fixed":"absolute"}).animate(c,e.duration,e.easing,function(){d.remove(),t.isFunction(i)&&i()})}}),t.fx.step.clip=function(e){e.clipInit||(e.start=t(e.elem).cssClip(),"string"==typeof e.end&&(e.end=s(e.end,e.elem)),e.clipInit=!0),t(e.elem).cssClip({top:e.pos*(e.end.top-e.start.top)+e.start.top,right:e.pos*(e.end.right-e.start.right)+e.start.right,bottom:e.pos*(e.end.bottom-e.start.bottom)+e.start.bottom,left:e.pos*(e.end.left-e.start.left)+e.start.left})}}(),function(){var e={};t.each(["Quad","Cubic","Quart","Quint","Expo"],function(t,i){e[i]=function(e){return Math.pow(e,t+2)}}),t.extend(e,{Sine:function(t){return 1-Math.cos(t*Math.PI/2)},Circ:function(t){return 1-Math.sqrt(1-t*t)},Elastic:function(t){return 0===t||1===t?t:-Math.pow(2,8*(t-1))*Math.sin((80*(t-1)-7.5)*Math.PI/15)},Back:function(t){return t*t*(3*t-2)},Bounce:function(t){for(var e,i=4;((e=Math.pow(2,--i))-1)/11>t;);return 1/Math.pow(4,3-i)-7.5625*Math.pow((3*e-2)/22-t,2)}}),t.each(e,function(e,i){t.easing["easeIn"+e]=i,t.easing["easeOut"+e]=function(t){return 1-i(1-t)},t.easing["easeInOut"+e]=function(t){return.5>t?i(2*t)/2:1-i(-2*t+2)/2}})}();var f=t.effects;t.effects.define("blind","hide",function(e,i){var s={up:["bottom","top"],vertical:["bottom","top"],down:["top","bottom"],left:["right","left"],horizontal:["right","left"],right:["left","right"]},n=t(this),o=e.direction||"up",a=n.cssClip(),r={clip:t.extend({},a)},h=t.effects.createPlaceholder(n);r.clip[s[o][0]]=r.clip[s[o][1]],"show"===e.mode&&(n.cssClip(r.clip),h&&h.css(t.effects.clipToBox(r)),r.clip=a),h&&h.animate(t.effects.clipToBox(r),e.duration,e.easing),n.animate(r,{queue:!1,duration:e.duration,easing:e.easing,complete:i})}),t.effects.define("bounce",function(e,i){var s,n,o,a=t(this),r=e.mode,h="hide"===r,l="show"===r,c=e.direction||"up",u=e.distance,d=e.times||5,p=2*d+(l||h?1:0),f=e.duration/p,g=e.easing,m="up"===c||"down"===c?"top":"left",_="up"===c||"left"===c,v=0,b=a.queue().length;for(t.effects.createPlaceholder(a),o=a.css(m),u||(u=a["top"===m?"outerHeight":"outerWidth"]()/3),l&&(n={opacity:1},n[m]=o,a.css("opacity",0).css(m,_?2*-u:2*u).animate(n,f,g)),h&&(u/=Math.pow(2,d-1)),n={},n[m]=o;d>v;v++)s={},s[m]=(_?"-=":"+=")+u,a.animate(s,f,g).animate(n,f,g),u=h?2*u:u/2;h&&(s={opacity:0},s[m]=(_?"-=":"+=")+u,a.animate(s,f,g)),a.queue(i),t.effects.unshift(a,b,p+1)}),t.effects.define("clip","hide",function(e,i){var s,n={},o=t(this),a=e.direction||"vertical",r="both"===a,h=r||"horizontal"===a,l=r||"vertical"===a;s=o.cssClip(),n.clip={top:l?(s.bottom-s.top)/2:s.top,right:h?(s.right-s.left)/2:s.right,bottom:l?(s.bottom-s.top)/2:s.bottom,left:h?(s.right-s.left)/2:s.left},t.effects.createPlaceholder(o),"show"===e.mode&&(o.cssClip(n.clip),n.clip=s),o.animate(n,{queue:!1,duration:e.duration,easing:e.easing,complete:i})}),t.effects.define("drop","hide",function(e,i){var s,n=t(this),o=e.mode,a="show"===o,r=e.direction||"left",h="up"===r||"down"===r?"top":"left",l="up"===r||"left"===r?"-=":"+=",c="+="===l?"-=":"+=",u={opacity:0};t.effects.createPlaceholder(n),s=e.distance||n["top"===h?"outerHeight":"outerWidth"](!0)/2,u[h]=l+s,a&&(n.css(u),u[h]=c+s,u.opacity=1),n.animate(u,{queue:!1,duration:e.duration,easing:e.easing,complete:i})}),t.effects.define("explode","hide",function(e,i){function s(){b.push(this),b.length===u*d&&n()}function n(){p.css({visibility:"visible"}),t(b).remove(),i()}var o,a,r,h,l,c,u=e.pieces?Math.round(Math.sqrt(e.pieces)):3,d=u,p=t(this),f=e.mode,g="show"===f,m=p.show().css("visibility","hidden").offset(),_=Math.ceil(p.outerWidth()/d),v=Math.ceil(p.outerHeight()/u),b=[];for(o=0;u>o;o++)for(h=m.top+o*v,c=o-(u-1)/2,a=0;d>a;a++)r=m.left+a*_,l=a-(d-1)/2,p.clone().appendTo("body").wrap("<div></div>").css({position:"absolute",visibility:"visible",left:-a*_,top:-o*v}).parent().addClass("ui-effects-explode").css({position:"absolute",overflow:"hidden",width:_,height:v,left:r+(g?l*_:0),top:h+(g?c*v:0),opacity:g?0:1}).animate({left:r+(g?0:l*_),top:h+(g?0:c*v),opacity:g?1:0},e.duration||500,e.easing,s)}),t.effects.define("fade","toggle",function(e,i){var s="show"===e.mode;t(this).css("opacity",s?0:1).animate({opacity:s?1:0},{queue:!1,duration:e.duration,easing:e.easing,complete:i})}),t.effects.define("fold","hide",function(e,i){var s=t(this),n=e.mode,o="show"===n,a="hide"===n,r=e.size||15,h=/([0-9]+)%/.exec(r),l=!!e.horizFirst,c=l?["right","bottom"]:["bottom","right"],u=e.duration/2,d=t.effects.createPlaceholder(s),p=s.cssClip(),f={clip:t.extend({},p)},g={clip:t.extend({},p)},m=[p[c[0]],p[c[1]]],_=s.queue().length;h&&(r=parseInt(h[1],10)/100*m[a?0:1]),f.clip[c[0]]=r,g.clip[c[0]]=r,g.clip[c[1]]=0,o&&(s.cssClip(g.clip),d&&d.css(t.effects.clipToBox(g)),g.clip=p),s.queue(function(i){d&&d.animate(t.effects.clipToBox(f),u,e.easing).animate(t.effects.clipToBox(g),u,e.easing),i()}).animate(f,u,e.easing).animate(g,u,e.easing).queue(i),t.effects.unshift(s,_,4)}),t.effects.define("highlight","show",function(e,i){var s=t(this),n={backgroundColor:s.css("backgroundColor")};"hide"===e.mode&&(n.opacity=0),t.effects.saveStyle(s),s.css({backgroundImage:"none",backgroundColor:e.color||"#ffff99"}).animate(n,{queue:!1,duration:e.duration,easing:e.easing,complete:i})}),t.effects.define("size",function(e,i){var s,n,o,a=t(this),r=["fontSize"],h=["borderTopWidth","borderBottomWidth","paddingTop","paddingBottom"],l=["borderLeftWidth","borderRightWidth","paddingLeft","paddingRight"],c=e.mode,u="effect"!==c,d=e.scale||"both",p=e.origin||["middle","center"],f=a.css("position"),g=a.position(),m=t.effects.scaledDimensions(a),_=e.from||m,v=e.to||t.effects.scaledDimensions(a,0);t.effects.createPlaceholder(a),"show"===c&&(o=_,_=v,v=o),n={from:{y:_.height/m.height,x:_.width/m.width},to:{y:v.height/m.height,x:v.width/m.width}},("box"===d||"both"===d)&&(n.from.y!==n.to.y&&(_=t.effects.setTransition(a,h,n.from.y,_),v=t.effects.setTransition(a,h,n.to.y,v)),n.from.x!==n.to.x&&(_=t.effects.setTransition(a,l,n.from.x,_),v=t.effects.setTransition(a,l,n.to.x,v))),("content"===d||"both"===d)&&n.from.y!==n.to.y&&(_=t.effects.setTransition(a,r,n.from.y,_),v=t.effects.setTransition(a,r,n.to.y,v)),p&&(s=t.effects.getBaseline(p,m),_.top=(m.outerHeight-_.outerHeight)*s.y+g.top,_.left=(m.outerWidth-_.outerWidth)*s.x+g.left,v.top=(m.outerHeight-v.outerHeight)*s.y+g.top,v.left=(m.outerWidth-v.outerWidth)*s.x+g.left),a.css(_),("content"===d||"both"===d)&&(h=h.concat(["marginTop","marginBottom"]).concat(r),l=l.concat(["marginLeft","marginRight"]),a.find("*[width]").each(function(){var i=t(this),s=t.effects.scaledDimensions(i),o={height:s.height*n.from.y,width:s.width*n.from.x,outerHeight:s.outerHeight*n.from.y,outerWidth:s.outerWidth*n.from.x},a={height:s.height*n.to.y,width:s.width*n.to.x,outerHeight:s.height*n.to.y,outerWidth:s.width*n.to.x};n.from.y!==n.to.y&&(o=t.effects.setTransition(i,h,n.from.y,o),a=t.effects.setTransition(i,h,n.to.y,a)),n.from.x!==n.to.x&&(o=t.effects.setTransition(i,l,n.from.x,o),a=t.effects.setTransition(i,l,n.to.x,a)),u&&t.effects.saveStyle(i),i.css(o),i.animate(a,e.duration,e.easing,function(){u&&t.effects.restoreStyle(i)})})),a.animate(v,{queue:!1,duration:e.duration,easing:e.easing,complete:function(){var e=a.offset();0===v.opacity&&a.css("opacity",_.opacity),u||(a.css("position","static"===f?"relative":f).offset(e),t.effects.saveStyle(a)),i()}})}),t.effects.define("scale",function(e,i){var s=t(this),n=e.mode,o=parseInt(e.percent,10)||(0===parseInt(e.percent,10)?0:"effect"!==n?0:100),a=t.extend(!0,{from:t.effects.scaledDimensions(s),to:t.effects.scaledDimensions(s,o,e.direction||"both"),origin:e.origin||["middle","center"]},e);e.fade&&(a.from.opacity=1,a.to.opacity=0),t.effects.effect.size.call(this,a,i)}),t.effects.define("puff","hide",function(e,i){var s=t.extend(!0,{},e,{fade:!0,percent:parseInt(e.percent,10)||150});t.effects.effect.scale.call(this,s,i)}),t.effects.define("pulsate","show",function(e,i){var s=t(this),n=e.mode,o="show"===n,a="hide"===n,r=o||a,h=2*(e.times||5)+(r?1:0),l=e.duration/h,c=0,u=1,d=s.queue().length;for((o||!s.is(":visible"))&&(s.css("opacity",0).show(),c=1);h>u;u++)s.animate({opacity:c},l,e.easing),c=1-c;s.animate({opacity:c},l,e.easing),s.queue(i),t.effects.unshift(s,d,h+1)}),t.effects.define("shake",function(e,i){var s=1,n=t(this),o=e.direction||"left",a=e.distance||20,r=e.times||3,h=2*r+1,l=Math.round(e.duration/h),c="up"===o||"down"===o?"top":"left",u="up"===o||"left"===o,d={},p={},f={},g=n.queue().length;for(t.effects.createPlaceholder(n),d[c]=(u?"-=":"+=")+a,p[c]=(u?"+=":"-=")+2*a,f[c]=(u?"-=":"+=")+2*a,n.animate(d,l,e.easing);r>s;s++)n.animate(p,l,e.easing).animate(f,l,e.easing);n.animate(p,l,e.easing).animate(d,l/2,e.easing).queue(i),t.effects.unshift(n,g,h+1)}),t.effects.define("slide","show",function(e,i){var s,n,o=t(this),a={up:["bottom","top"],down:["top","bottom"],left:["right","left"],right:["left","right"]},r=e.mode,h=e.direction||"left",l="up"===h||"down"===h?"top":"left",c="up"===h||"left"===h,u=e.distance||o["top"===l?"outerHeight":"outerWidth"](!0),d={};t.effects.createPlaceholder(o),s=o.cssClip(),n=o.position()[l],d[l]=(c?-1:1)*u+n,d.clip=o.cssClip(),d.clip[a[h][1]]=d.clip[a[h][0]],"show"===r&&(o.cssClip(d.clip),o.css(l,d[l]),d.clip=s,d[l]=n),o.animate(d,{queue:!1,duration:e.duration,easing:e.easing,complete:i})});var f;t.uiBackCompat!==!1&&(f=t.effects.define("transfer",function(e,i){t(this).transfer(e,i)})),t.ui.focusable=function(i,s){var n,o,a,r,h,l=i.nodeName.toLowerCase();return"area"===l?(n=i.parentNode,o=n.name,i.href&&o&&"map"===n.nodeName.toLowerCase()?(a=t("img[usemap='#"+o+"']"),a.length>0&&a.is(":visible")):!1):(/^(input|select|textarea|button|object)$/.test(l)?(r=!i.disabled,r&&(h=t(i).closest("fieldset")[0],h&&(r=!h.disabled))):r="a"===l?i.href||s:s,r&&t(i).is(":visible")&&e(t(i)))},t.extend(t.expr[":"],{focusable:function(e){return t.ui.focusable(e,null!=t.attr(e,"tabindex"))}}),t.ui.focusable,t.fn.form=function(){return"string"==typeof this[0].form?this.closest("form"):t(this[0].form)},t.ui.formResetMixin={_formResetHandler:function(){var e=t(this);setTimeout(function(){var i=e.data("ui-form-reset-instances");t.each(i,function(){this.refresh()})})},_bindFormResetHandler:function(){if(this.form=this.element.form(),this.form.length){var t=this.form.data("ui-form-reset-instances")||[];t.length||this.form.on("reset.ui-form-reset",this._formResetHandler),t.push(this),this.form.data("ui-form-reset-instances",t)}},_unbindFormResetHandler:function(){if(this.form.length){var e=this.form.data("ui-form-reset-instances");e.splice(t.inArray(this,e),1),e.length?this.form.data("ui-form-reset-instances",e):this.form.removeData("ui-form-reset-instances").off("reset.ui-form-reset")}}},"1.7"===t.fn.jquery.substring(0,3)&&(t.each(["Width","Height"],function(e,i){function s(e,i,s,o){return t.each(n,function(){i-=parseFloat(t.css(e,"padding"+this))||0,s&&(i-=parseFloat(t.css(e,"border"+this+"Width"))||0),o&&(i-=parseFloat(t.css(e,"margin"+this))||0)}),i}var n="Width"===i?["Left","Right"]:["Top","Bottom"],o=i.toLowerCase(),a={innerWidth:t.fn.innerWidth,innerHeight:t.fn.innerHeight,outerWidth:t.fn.outerWidth,outerHeight:t.fn.outerHeight};t.fn["inner"+i]=function(e){return void 0===e?a["inner"+i].call(this):this.each(function(){t(this).css(o,s(this,e)+"px")})},t.fn["outer"+i]=function(e,n){return"number"!=typeof e?a["outer"+i].call(this,e):this.each(function(){t(this).css(o,s(this,e,!0,n)+"px")})}}),t.fn.addBack=function(t){return this.add(null==t?this.prevObject:this.prevObject.filter(t))}),t.ui.keyCode={BACKSPACE:8,COMMA:188,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,HOME:36,LEFT:37,PAGE_DOWN:34,PAGE_UP:33,PERIOD:190,RIGHT:39,SPACE:32,TAB:9,UP:38},t.ui.escapeSelector=function(){var t=/([!"#$%&'()*+,.\/:;<=>?@[\]^`{|}~])/g;return function(e){return e.replace(t,"\\$1")}}(),t.fn.labels=function(){var e,i,s,n,o;return this[0].labels&&this[0].labels.length?this.pushStack(this[0].labels):(n=this.eq(0).parents("label"),s=this.attr("id"),s&&(e=this.eq(0).parents().last(),o=e.add(e.length?e.siblings():this.siblings()),i="label[for='"+t.ui.escapeSelector(s)+"']",n=n.add(o.find(i).addBack(i))),this.pushStack(n))},t.fn.scrollParent=function(e){var i=this.css("position"),s="absolute"===i,n=e?/(auto|scroll|hidden)/:/(auto|scroll)/,o=this.parents().filter(function(){var e=t(this);return s&&"static"===e.css("position")?!1:n.test(e.css("overflow")+e.css("overflow-y")+e.css("overflow-x"))}).eq(0);return"fixed"!==i&&o.length?o:t(this[0].ownerDocument||document)},t.extend(t.expr[":"],{tabbable:function(e){var i=t.attr(e,"tabindex"),s=null!=i;return(!s||i>=0)&&t.ui.focusable(e,s)}}),t.fn.extend({uniqueId:function(){var t=0;return function(){return this.each(function(){this.id||(this.id="ui-id-"+ ++t)})}}(),removeUniqueId:function(){return this.each(function(){/^ui-id-\d+$/.test(this.id)&&t(this).removeAttr("id")})}}),t.widget("ui.accordion",{version:"1.12.1",options:{active:0,animate:{},classes:{"ui-accordion-header":"ui-corner-top","ui-accordion-header-collapsed":"ui-corner-all","ui-accordion-content":"ui-corner-bottom"},collapsible:!1,event:"click",header:"> li > :first-child, > :not(li):even",heightStyle:"auto",icons:{activeHeader:"ui-icon-triangle-1-s",header:"ui-icon-triangle-1-e"},activate:null,beforeActivate:null},hideProps:{borderTopWidth:"hide",borderBottomWidth:"hide",paddingTop:"hide",paddingBottom:"hide",height:"hide"},showProps:{borderTopWidth:"show",borderBottomWidth:"show",paddingTop:"show",paddingBottom:"show",height:"show"},_create:function(){var e=this.options;this.prevShow=this.prevHide=t(),this._addClass("ui-accordion","ui-widget ui-helper-reset"),this.element.attr("role","tablist"),e.collapsible||e.active!==!1&&null!=e.active||(e.active=0),this._processPanels(),0>e.active&&(e.active+=this.headers.length),this._refresh()},_getCreateEventData:function(){return{header:this.active,panel:this.active.length?this.active.next():t()}},_createIcons:function(){var e,i,s=this.options.icons;s&&(e=t("<span>"),this._addClass(e,"ui-accordion-header-icon","ui-icon "+s.header),e.prependTo(this.headers),i=this.active.children(".ui-accordion-header-icon"),this._removeClass(i,s.header)._addClass(i,null,s.activeHeader)._addClass(this.headers,"ui-accordion-icons"))},_destroyIcons:function(){this._removeClass(this.headers,"ui-accordion-icons"),this.headers.children(".ui-accordion-header-icon").remove()},_destroy:function(){var t;this.element.removeAttr("role"),this.headers.removeAttr("role aria-expanded aria-selected aria-controls tabIndex").removeUniqueId(),this._destroyIcons(),t=this.headers.next().css("display","").removeAttr("role aria-hidden aria-labelledby").removeUniqueId(),"content"!==this.options.heightStyle&&t.css("height","")},_setOption:function(t,e){return"active"===t?(this._activate(e),void 0):("event"===t&&(this.options.event&&this._off(this.headers,this.options.event),this._setupEvents(e)),this._super(t,e),"collapsible"!==t||e||this.options.active!==!1||this._activate(0),"icons"===t&&(this._destroyIcons(),e&&this._createIcons()),void 0)},_setOptionDisabled:function(t){this._super(t),this.element.attr("aria-disabled",t),this._toggleClass(null,"ui-state-disabled",!!t),this._toggleClass(this.headers.add(this.headers.next()),null,"ui-state-disabled",!!t)},_keydown:function(e){if(!e.altKey&&!e.ctrlKey){var i=t.ui.keyCode,s=this.headers.length,n=this.headers.index(e.target),o=!1;switch(e.keyCode){case i.RIGHT:case i.DOWN:o=this.headers[(n+1)%s];break;case i.LEFT:case i.UP:o=this.headers[(n-1+s)%s];break;case i.SPACE:case i.ENTER:this._eventHandler(e);break;case i.HOME:o=this.headers[0];break;case i.END:o=this.headers[s-1]}o&&(t(e.target).attr("tabIndex",-1),t(o).attr("tabIndex",0),t(o).trigger("focus"),e.preventDefault())}},_panelKeyDown:function(e){e.keyCode===t.ui.keyCode.UP&&e.ctrlKey&&t(e.currentTarget).prev().trigger("focus")},refresh:function(){var e=this.options;this._processPanels(),e.active===!1&&e.collapsible===!0||!this.headers.length?(e.active=!1,this.active=t()):e.active===!1?this._activate(0):this.active.length&&!t.contains(this.element[0],this.active[0])?this.headers.length===this.headers.find(".ui-state-disabled").length?(e.active=!1,this.active=t()):this._activate(Math.max(0,e.active-1)):e.active=this.headers.index(this.active),this._destroyIcons(),this._refresh()},_processPanels:function(){var t=this.headers,e=this.panels;this.headers=this.element.find(this.options.header),this._addClass(this.headers,"ui-accordion-header ui-accordion-header-collapsed","ui-state-default"),this.panels=this.headers.next().filter(":not(.ui-accordion-content-active)").hide(),this._addClass(this.panels,"ui-accordion-content","ui-helper-reset ui-widget-content"),e&&(this._off(t.not(this.headers)),this._off(e.not(this.panels)))},_refresh:function(){var e,i=this.options,s=i.heightStyle,n=this.element.parent();this.active=this._findActive(i.active),this._addClass(this.active,"ui-accordion-header-active","ui-state-active")._removeClass(this.active,"ui-accordion-header-collapsed"),this._addClass(this.active.next(),"ui-accordion-content-active"),this.active.next().show(),this.headers.attr("role","tab").each(function(){var e=t(this),i=e.uniqueId().attr("id"),s=e.next(),n=s.uniqueId().attr("id");e.attr("aria-controls",n),s.attr("aria-labelledby",i)}).next().attr("role","tabpanel"),this.headers.not(this.active).attr({"aria-selected":"false","aria-expanded":"false",tabIndex:-1}).next().attr({"aria-hidden":"true"}).hide(),this.active.length?this.active.attr({"aria-selected":"true","aria-expanded":"true",tabIndex:0}).next().attr({"aria-hidden":"false"}):this.headers.eq(0).attr("tabIndex",0),this._createIcons(),this._setupEvents(i.event),"fill"===s?(e=n.height(),this.element.siblings(":visible").each(function(){var i=t(this),s=i.css("position");"absolute"!==s&&"fixed"!==s&&(e-=i.outerHeight(!0))}),this.headers.each(function(){e-=t(this).outerHeight(!0)}),this.headers.next().each(function(){t(this).height(Math.max(0,e-t(this).innerHeight()+t(this).height()))}).css("overflow","auto")):"auto"===s&&(e=0,this.headers.next().each(function(){var i=t(this).is(":visible");i||t(this).show(),e=Math.max(e,t(this).css("height","").height()),i||t(this).hide()}).height(e))},_activate:function(e){var i=this._findActive(e)[0];i!==this.active[0]&&(i=i||this.active[0],this._eventHandler({target:i,currentTarget:i,preventDefault:t.noop}))},_findActive:function(e){return"number"==typeof e?this.headers.eq(e):t()},_setupEvents:function(e){var i={keydown:"_keydown"};e&&t.each(e.split(" "),function(t,e){i[e]="_eventHandler"}),this._off(this.headers.add(this.headers.next())),this._on(this.headers,i),this._on(this.headers.next(),{keydown:"_panelKeyDown"}),this._hoverable(this.headers),this._focusable(this.headers)},_eventHandler:function(e){var i,s,n=this.options,o=this.active,a=t(e.currentTarget),r=a[0]===o[0],h=r&&n.collapsible,l=h?t():a.next(),c=o.next(),u={oldHeader:o,oldPanel:c,newHeader:h?t():a,newPanel:l};e.preventDefault(),r&&!n.collapsible||this._trigger("beforeActivate",e,u)===!1||(n.active=h?!1:this.headers.index(a),this.active=r?t():a,this._toggle(u),this._removeClass(o,"ui-accordion-header-active","ui-state-active"),n.icons&&(i=o.children(".ui-accordion-header-icon"),this._removeClass(i,null,n.icons.activeHeader)._addClass(i,null,n.icons.header)),r||(this._removeClass(a,"ui-accordion-header-collapsed")._addClass(a,"ui-accordion-header-active","ui-state-active"),n.icons&&(s=a.children(".ui-accordion-header-icon"),this._removeClass(s,null,n.icons.header)._addClass(s,null,n.icons.activeHeader)),this._addClass(a.next(),"ui-accordion-content-active")))},_toggle:function(e){var i=e.newPanel,s=this.prevShow.length?this.prevShow:e.oldPanel;this.prevShow.add(this.prevHide).stop(!0,!0),this.prevShow=i,this.prevHide=s,this.options.animate?this._animate(i,s,e):(s.hide(),i.show(),this._toggleComplete(e)),s.attr({"aria-hidden":"true"}),s.prev().attr({"aria-selected":"false","aria-expanded":"false"}),i.length&&s.length?s.prev().attr({tabIndex:-1,"aria-expanded":"false"}):i.length&&this.headers.filter(function(){return 0===parseInt(t(this).attr("tabIndex"),10)}).attr("tabIndex",-1),i.attr("aria-hidden","false").prev().attr({"aria-selected":"true","aria-expanded":"true",tabIndex:0})},_animate:function(t,e,i){var s,n,o,a=this,r=0,h=t.css("box-sizing"),l=t.length&&(!e.length||t.index()<e.index()),c=this.options.animate||{},u=l&&c.down||c,d=function(){a._toggleComplete(i)};return"number"==typeof u&&(o=u),"string"==typeof u&&(n=u),n=n||u.easing||c.easing,o=o||u.duration||c.duration,e.length?t.length?(s=t.show().outerHeight(),e.animate(this.hideProps,{duration:o,easing:n,step:function(t,e){e.now=Math.round(t)}}),t.hide().animate(this.showProps,{duration:o,easing:n,complete:d,step:function(t,i){i.now=Math.round(t),"height"!==i.prop?"content-box"===h&&(r+=i.now):"content"!==a.options.heightStyle&&(i.now=Math.round(s-e.outerHeight()-r),r=0)}}),void 0):e.animate(this.hideProps,o,n,d):t.animate(this.showProps,o,n,d)},_toggleComplete:function(t){var e=t.oldPanel,i=e.prev();this._removeClass(e,"ui-accordion-content-active"),this._removeClass(i,"ui-accordion-header-active")._addClass(i,"ui-accordion-header-collapsed"),e.length&&(e.parent()[0].className=e.parent()[0].className),this._trigger("activate",null,t)}}),t.ui.safeActiveElement=function(t){var e;try{e=t.activeElement}catch(i){e=t.body}return e||(e=t.body),e.nodeName||(e=t.body),e},t.widget("ui.menu",{version:"1.12.1",defaultElement:"<ul>",delay:300,options:{icons:{submenu:"ui-icon-caret-1-e"},items:"> *",menus:"ul",position:{my:"left top",at:"right top"},role:"menu",blur:null,focus:null,select:null},_create:function(){this.activeMenu=this.element,this.mouseHandled=!1,this.element.uniqueId().attr({role:this.options.role,tabIndex:0}),this._addClass("ui-menu","ui-widget ui-widget-content"),this._on({"mousedown .ui-menu-item":function(t){t.preventDefault()},"click .ui-menu-item":function(e){var i=t(e.target),s=t(t.ui.safeActiveElement(this.document[0]));!this.mouseHandled&&i.not(".ui-state-disabled").length&&(this.select(e),e.isPropagationStopped()||(this.mouseHandled=!0),i.has(".ui-menu").length?this.expand(e):!this.element.is(":focus")&&s.closest(".ui-menu").length&&(this.element.trigger("focus",[!0]),this.active&&1===this.active.parents(".ui-menu").length&&clearTimeout(this.timer)))},"mouseenter .ui-menu-item":function(e){if(!this.previousFilter){var i=t(e.target).closest(".ui-menu-item"),s=t(e.currentTarget);i[0]===s[0]&&(this._removeClass(s.siblings().children(".ui-state-active"),null,"ui-state-active"),this.focus(e,s))}},mouseleave:"collapseAll","mouseleave .ui-menu":"collapseAll",focus:function(t,e){var i=this.active||this.element.find(this.options.items).eq(0);e||this.focus(t,i)},blur:function(e){this._delay(function(){var i=!t.contains(this.element[0],t.ui.safeActiveElement(this.document[0]));i&&this.collapseAll(e)})},keydown:"_keydown"}),this.refresh(),this._on(this.document,{click:function(t){this._closeOnDocumentClick(t)&&this.collapseAll(t),this.mouseHandled=!1}})},_destroy:function(){var e=this.element.find(".ui-menu-item").removeAttr("role aria-disabled"),i=e.children(".ui-menu-item-wrapper").removeUniqueId().removeAttr("tabIndex role aria-haspopup");this.element.removeAttr("aria-activedescendant").find(".ui-menu").addBack().removeAttr("role aria-labelledby aria-expanded aria-hidden aria-disabled tabIndex").removeUniqueId().show(),i.children().each(function(){var e=t(this);e.data("ui-menu-submenu-caret")&&e.remove()})},_keydown:function(e){var i,s,n,o,a=!0;switch(e.keyCode){case t.ui.keyCode.PAGE_UP:this.previousPage(e);break;case t.ui.keyCode.PAGE_DOWN:this.nextPage(e);break;case t.ui.keyCode.HOME:this._move("first","first",e);break;case t.ui.keyCode.END:this._move("last","last",e);break;case t.ui.keyCode.UP:this.previous(e);break;case t.ui.keyCode.DOWN:this.next(e);break;case t.ui.keyCode.LEFT:this.collapse(e);break;case t.ui.keyCode.RIGHT:this.active&&!this.active.is(".ui-state-disabled")&&this.expand(e);break;case t.ui.keyCode.ENTER:case t.ui.keyCode.SPACE:this._activate(e);break;case t.ui.keyCode.ESCAPE:this.collapse(e);break;default:a=!1,s=this.previousFilter||"",o=!1,n=e.keyCode>=96&&105>=e.keyCode?""+(e.keyCode-96):String.fromCharCode(e.keyCode),clearTimeout(this.filterTimer),n===s?o=!0:n=s+n,i=this._filterMenuItems(n),i=o&&-1!==i.index(this.active.next())?this.active.nextAll(".ui-menu-item"):i,i.length||(n=String.fromCharCode(e.keyCode),i=this._filterMenuItems(n)),i.length?(this.focus(e,i),this.previousFilter=n,this.filterTimer=this._delay(function(){delete this.previousFilter},1e3)):delete this.previousFilter}a&&e.preventDefault()},_activate:function(t){this.active&&!this.active.is(".ui-state-disabled")&&(this.active.children("[aria-haspopup='true']").length?this.expand(t):this.select(t))},refresh:function(){var e,i,s,n,o,a=this,r=this.options.icons.submenu,h=this.element.find(this.options.menus);this._toggleClass("ui-menu-icons",null,!!this.element.find(".ui-icon").length),s=h.filter(":not(.ui-menu)").hide().attr({role:this.options.role,"aria-hidden":"true","aria-expanded":"false"}).each(function(){var e=t(this),i=e.prev(),s=t("<span>").data("ui-menu-submenu-caret",!0);a._addClass(s,"ui-menu-icon","ui-icon "+r),i.attr("aria-haspopup","true").prepend(s),e.attr("aria-labelledby",i.attr("id"))}),this._addClass(s,"ui-menu","ui-widget ui-widget-content ui-front"),e=h.add(this.element),i=e.find(this.options.items),i.not(".ui-menu-item").each(function(){var e=t(this);a._isDivider(e)&&a._addClass(e,"ui-menu-divider","ui-widget-content")}),n=i.not(".ui-menu-item, .ui-menu-divider"),o=n.children().not(".ui-menu").uniqueId().attr({tabIndex:-1,role:this._itemRole()}),this._addClass(n,"ui-menu-item")._addClass(o,"ui-menu-item-wrapper"),i.filter(".ui-state-disabled").attr("aria-disabled","true"),this.active&&!t.contains(this.element[0],this.active[0])&&this.blur()},_itemRole:function(){return{menu:"menuitem",listbox:"option"}[this.options.role]},_setOption:function(t,e){if("icons"===t){var i=this.element.find(".ui-menu-icon");this._removeClass(i,null,this.options.icons.submenu)._addClass(i,null,e.submenu)}this._super(t,e)},_setOptionDisabled:function(t){this._super(t),this.element.attr("aria-disabled",t+""),this._toggleClass(null,"ui-state-disabled",!!t)},focus:function(t,e){var i,s,n;this.blur(t,t&&"focus"===t.type),this._scrollIntoView(e),this.active=e.first(),s=this.active.children(".ui-menu-item-wrapper"),this._addClass(s,null,"ui-state-active"),this.options.role&&this.element.attr("aria-activedescendant",s.attr("id")),n=this.active.parent().closest(".ui-menu-item").children(".ui-menu-item-wrapper"),this._addClass(n,null,"ui-state-active"),t&&"keydown"===t.type?this._close():this.timer=this._delay(function(){this._close()},this.delay),i=e.children(".ui-menu"),i.length&&t&&/^mouse/.test(t.type)&&this._startOpening(i),this.activeMenu=e.parent(),this._trigger("focus",t,{item:e})},_scrollIntoView:function(e){var i,s,n,o,a,r;this._hasScroll()&&(i=parseFloat(t.css(this.activeMenu[0],"borderTopWidth"))||0,s=parseFloat(t.css(this.activeMenu[0],"paddingTop"))||0,n=e.offset().top-this.activeMenu.offset().top-i-s,o=this.activeMenu.scrollTop(),a=this.activeMenu.height(),r=e.outerHeight(),0>n?this.activeMenu.scrollTop(o+n):n+r>a&&this.activeMenu.scrollTop(o+n-a+r))},blur:function(t,e){e||clearTimeout(this.timer),this.active&&(this._removeClass(this.active.children(".ui-menu-item-wrapper"),null,"ui-state-active"),this._trigger("blur",t,{item:this.active}),this.active=null)},_startOpening:function(t){clearTimeout(this.timer),"true"===t.attr("aria-hidden")&&(this.timer=this._delay(function(){this._close(),this._open(t)},this.delay))},_open:function(e){var i=t.extend({of:this.active},this.options.position);clearTimeout(this.timer),this.element.find(".ui-menu").not(e.parents(".ui-menu")).hide().attr("aria-hidden","true"),e.show().removeAttr("aria-hidden").attr("aria-expanded","true").position(i)},collapseAll:function(e,i){clearTimeout(this.timer),this.timer=this._delay(function(){var s=i?this.element:t(e&&e.target).closest(this.element.find(".ui-menu"));s.length||(s=this.element),this._close(s),this.blur(e),this._removeClass(s.find(".ui-state-active"),null,"ui-state-active"),this.activeMenu=s},this.delay)},_close:function(t){t||(t=this.active?this.active.parent():this.element),t.find(".ui-menu").hide().attr("aria-hidden","true").attr("aria-expanded","false")},_closeOnDocumentClick:function(e){return!t(e.target).closest(".ui-menu").length},_isDivider:function(t){return!/[^\-\u2014\u2013\s]/.test(t.text())},collapse:function(t){var e=this.active&&this.active.parent().closest(".ui-menu-item",this.element);e&&e.length&&(this._close(),this.focus(t,e))},expand:function(t){var e=this.active&&this.active.children(".ui-menu ").find(this.options.items).first();e&&e.length&&(this._open(e.parent()),this._delay(function(){this.focus(t,e)}))},next:function(t){this._move("next","first",t)},previous:function(t){this._move("prev","last",t)},isFirstItem:function(){return this.active&&!this.active.prevAll(".ui-menu-item").length},isLastItem:function(){return this.active&&!this.active.nextAll(".ui-menu-item").length},_move:function(t,e,i){var s;this.active&&(s="first"===t||"last"===t?this.active["first"===t?"prevAll":"nextAll"](".ui-menu-item").eq(-1):this.active[t+"All"](".ui-menu-item").eq(0)),s&&s.length&&this.active||(s=this.activeMenu.find(this.options.items)[e]()),this.focus(i,s)},nextPage:function(e){var i,s,n;return this.active?(this.isLastItem()||(this._hasScroll()?(s=this.active.offset().top,n=this.element.height(),this.active.nextAll(".ui-menu-item").each(function(){return i=t(this),0>i.offset().top-s-n}),this.focus(e,i)):this.focus(e,this.activeMenu.find(this.options.items)[this.active?"last":"first"]())),void 0):(this.next(e),void 0)},previousPage:function(e){var i,s,n;return this.active?(this.isFirstItem()||(this._hasScroll()?(s=this.active.offset().top,n=this.element.height(),this.active.prevAll(".ui-menu-item").each(function(){return i=t(this),i.offset().top-s+n>0}),this.focus(e,i)):this.focus(e,this.activeMenu.find(this.options.items).first())),void 0):(this.next(e),void 0)},_hasScroll:function(){return this.element.outerHeight()<this.element.prop("scrollHeight")},select:function(e){this.active=this.active||t(e.target).closest(".ui-menu-item");var i={item:this.active};this.active.has(".ui-menu").length||this.collapseAll(e,!0),this._trigger("select",e,i)},_filterMenuItems:function(e){var i=e.replace(/[\-\[\]{}()*+?.,\\\^$|#\s]/g,"\\$&"),s=RegExp("^"+i,"i");return this.activeMenu.find(this.options.items).filter(".ui-menu-item").filter(function(){return s.test(t.trim(t(this).children(".ui-menu-item-wrapper").text()))})}}),t.widget("ui.autocomplete",{version:"1.12.1",defaultElement:"<input>",options:{appendTo:null,autoFocus:!1,delay:300,minLength:1,position:{my:"left top",at:"left bottom",collision:"none"},source:null,change:null,close:null,focus:null,open:null,response:null,search:null,select:null},requestIndex:0,pending:0,_create:function(){var e,i,s,n=this.element[0].nodeName.toLowerCase(),o="textarea"===n,a="input"===n;
-this.isMultiLine=o||!a&&this._isContentEditable(this.element),this.valueMethod=this.element[o||a?"val":"text"],this.isNewMenu=!0,this._addClass("ui-autocomplete-input"),this.element.attr("autocomplete","off"),this._on(this.element,{keydown:function(n){if(this.element.prop("readOnly"))return e=!0,s=!0,i=!0,void 0;e=!1,s=!1,i=!1;var o=t.ui.keyCode;switch(n.keyCode){case o.PAGE_UP:e=!0,this._move("previousPage",n);break;case o.PAGE_DOWN:e=!0,this._move("nextPage",n);break;case o.UP:e=!0,this._keyEvent("previous",n);break;case o.DOWN:e=!0,this._keyEvent("next",n);break;case o.ENTER:this.menu.active&&(e=!0,n.preventDefault(),this.menu.select(n));break;case o.TAB:this.menu.active&&this.menu.select(n);break;case o.ESCAPE:this.menu.element.is(":visible")&&(this.isMultiLine||this._value(this.term),this.close(n),n.preventDefault());break;default:i=!0,this._searchTimeout(n)}},keypress:function(s){if(e)return e=!1,(!this.isMultiLine||this.menu.element.is(":visible"))&&s.preventDefault(),void 0;if(!i){var n=t.ui.keyCode;switch(s.keyCode){case n.PAGE_UP:this._move("previousPage",s);break;case n.PAGE_DOWN:this._move("nextPage",s);break;case n.UP:this._keyEvent("previous",s);break;case n.DOWN:this._keyEvent("next",s)}}},input:function(t){return s?(s=!1,t.preventDefault(),void 0):(this._searchTimeout(t),void 0)},focus:function(){this.selectedItem=null,this.previous=this._value()},blur:function(t){return this.cancelBlur?(delete this.cancelBlur,void 0):(clearTimeout(this.searching),this.close(t),this._change(t),void 0)}}),this._initSource(),this.menu=t("<ul>").appendTo(this._appendTo()).menu({role:null}).hide().menu("instance"),this._addClass(this.menu.element,"ui-autocomplete","ui-front"),this._on(this.menu.element,{mousedown:function(e){e.preventDefault(),this.cancelBlur=!0,this._delay(function(){delete this.cancelBlur,this.element[0]!==t.ui.safeActiveElement(this.document[0])&&this.element.trigger("focus")})},menufocus:function(e,i){var s,n;return this.isNewMenu&&(this.isNewMenu=!1,e.originalEvent&&/^mouse/.test(e.originalEvent.type))?(this.menu.blur(),this.document.one("mousemove",function(){t(e.target).trigger(e.originalEvent)}),void 0):(n=i.item.data("ui-autocomplete-item"),!1!==this._trigger("focus",e,{item:n})&&e.originalEvent&&/^key/.test(e.originalEvent.type)&&this._value(n.value),s=i.item.attr("aria-label")||n.value,s&&t.trim(s).length&&(this.liveRegion.children().hide(),t("<div>").text(s).appendTo(this.liveRegion)),void 0)},menuselect:function(e,i){var s=i.item.data("ui-autocomplete-item"),n=this.previous;this.element[0]!==t.ui.safeActiveElement(this.document[0])&&(this.element.trigger("focus"),this.previous=n,this._delay(function(){this.previous=n,this.selectedItem=s})),!1!==this._trigger("select",e,{item:s})&&this._value(s.value),this.term=this._value(),this.close(e),this.selectedItem=s}}),this.liveRegion=t("<div>",{role:"status","aria-live":"assertive","aria-relevant":"additions"}).appendTo(this.document[0].body),this._addClass(this.liveRegion,null,"ui-helper-hidden-accessible"),this._on(this.window,{beforeunload:function(){this.element.removeAttr("autocomplete")}})},_destroy:function(){clearTimeout(this.searching),this.element.removeAttr("autocomplete"),this.menu.element.remove(),this.liveRegion.remove()},_setOption:function(t,e){this._super(t,e),"source"===t&&this._initSource(),"appendTo"===t&&this.menu.element.appendTo(this._appendTo()),"disabled"===t&&e&&this.xhr&&this.xhr.abort()},_isEventTargetInWidget:function(e){var i=this.menu.element[0];return e.target===this.element[0]||e.target===i||t.contains(i,e.target)},_closeOnClickOutside:function(t){this._isEventTargetInWidget(t)||this.close()},_appendTo:function(){var e=this.options.appendTo;return e&&(e=e.jquery||e.nodeType?t(e):this.document.find(e).eq(0)),e&&e[0]||(e=this.element.closest(".ui-front, dialog")),e.length||(e=this.document[0].body),e},_initSource:function(){var e,i,s=this;t.isArray(this.options.source)?(e=this.options.source,this.source=function(i,s){s(t.ui.autocomplete.filter(e,i.term))}):"string"==typeof this.options.source?(i=this.options.source,this.source=function(e,n){s.xhr&&s.xhr.abort(),s.xhr=t.ajax({url:i,data:e,dataType:"json",success:function(t){n(t)},error:function(){n([])}})}):this.source=this.options.source},_searchTimeout:function(t){clearTimeout(this.searching),this.searching=this._delay(function(){var e=this.term===this._value(),i=this.menu.element.is(":visible"),s=t.altKey||t.ctrlKey||t.metaKey||t.shiftKey;(!e||e&&!i&&!s)&&(this.selectedItem=null,this.search(null,t))},this.options.delay)},search:function(t,e){return t=null!=t?t:this._value(),this.term=this._value(),t.length<this.options.minLength?this.close(e):this._trigger("search",e)!==!1?this._search(t):void 0},_search:function(t){this.pending++,this._addClass("ui-autocomplete-loading"),this.cancelSearch=!1,this.source({term:t},this._response())},_response:function(){var e=++this.requestIndex;return t.proxy(function(t){e===this.requestIndex&&this.__response(t),this.pending--,this.pending||this._removeClass("ui-autocomplete-loading")},this)},__response:function(t){t&&(t=this._normalize(t)),this._trigger("response",null,{content:t}),!this.options.disabled&&t&&t.length&&!this.cancelSearch?(this._suggest(t),this._trigger("open")):this._close()},close:function(t){this.cancelSearch=!0,this._close(t)},_close:function(t){this._off(this.document,"mousedown"),this.menu.element.is(":visible")&&(this.menu.element.hide(),this.menu.blur(),this.isNewMenu=!0,this._trigger("close",t))},_change:function(t){this.previous!==this._value()&&this._trigger("change",t,{item:this.selectedItem})},_normalize:function(e){return e.length&&e[0].label&&e[0].value?e:t.map(e,function(e){return"string"==typeof e?{label:e,value:e}:t.extend({},e,{label:e.label||e.value,value:e.value||e.label})})},_suggest:function(e){var i=this.menu.element.empty();this._renderMenu(i,e),this.isNewMenu=!0,this.menu.refresh(),i.show(),this._resizeMenu(),i.position(t.extend({of:this.element},this.options.position)),this.options.autoFocus&&this.menu.next(),this._on(this.document,{mousedown:"_closeOnClickOutside"})},_resizeMenu:function(){var t=this.menu.element;t.outerWidth(Math.max(t.width("").outerWidth()+1,this.element.outerWidth()))},_renderMenu:function(e,i){var s=this;t.each(i,function(t,i){s._renderItemData(e,i)})},_renderItemData:function(t,e){return this._renderItem(t,e).data("ui-autocomplete-item",e)},_renderItem:function(e,i){return t("<li>").append(t("<div>").text(i.label)).appendTo(e)},_move:function(t,e){return this.menu.element.is(":visible")?this.menu.isFirstItem()&&/^previous/.test(t)||this.menu.isLastItem()&&/^next/.test(t)?(this.isMultiLine||this._value(this.term),this.menu.blur(),void 0):(this.menu[t](e),void 0):(this.search(null,e),void 0)},widget:function(){return this.menu.element},_value:function(){return this.valueMethod.apply(this.element,arguments)},_keyEvent:function(t,e){(!this.isMultiLine||this.menu.element.is(":visible"))&&(this._move(t,e),e.preventDefault())},_isContentEditable:function(t){if(!t.length)return!1;var e=t.prop("contentEditable");return"inherit"===e?this._isContentEditable(t.parent()):"true"===e}}),t.extend(t.ui.autocomplete,{escapeRegex:function(t){return t.replace(/[\-\[\]{}()*+?.,\\\^$|#\s]/g,"\\$&")},filter:function(e,i){var s=RegExp(t.ui.autocomplete.escapeRegex(i),"i");return t.grep(e,function(t){return s.test(t.label||t.value||t)})}}),t.widget("ui.autocomplete",t.ui.autocomplete,{options:{messages:{noResults:"No search results.",results:function(t){return t+(t>1?" results are":" result is")+" available, use up and down arrow keys to navigate."}}},__response:function(e){var i;this._superApply(arguments),this.options.disabled||this.cancelSearch||(i=e&&e.length?this.options.messages.results(e.length):this.options.messages.noResults,this.liveRegion.children().hide(),t("<div>").text(i).appendTo(this.liveRegion))}}),t.ui.autocomplete;var g=/ui-corner-([a-z]){2,6}/g;t.widget("ui.controlgroup",{version:"1.12.1",defaultElement:"<div>",options:{direction:"horizontal",disabled:null,onlyVisible:!0,items:{button:"input[type=button], input[type=submit], input[type=reset], button, a",controlgroupLabel:".ui-controlgroup-label",checkboxradio:"input[type='checkbox'], input[type='radio']",selectmenu:"select",spinner:".ui-spinner-input"}},_create:function(){this._enhance()},_enhance:function(){this.element.attr("role","toolbar"),this.refresh()},_destroy:function(){this._callChildMethod("destroy"),this.childWidgets.removeData("ui-controlgroup-data"),this.element.removeAttr("role"),this.options.items.controlgroupLabel&&this.element.find(this.options.items.controlgroupLabel).find(".ui-controlgroup-label-contents").contents().unwrap()},_initWidgets:function(){var e=this,i=[];t.each(this.options.items,function(s,n){var o,a={};return n?"controlgroupLabel"===s?(o=e.element.find(n),o.each(function(){var e=t(this);e.children(".ui-controlgroup-label-contents").length||e.contents().wrapAll("<span class='ui-controlgroup-label-contents'></span>")}),e._addClass(o,null,"ui-widget ui-widget-content ui-state-default"),i=i.concat(o.get()),void 0):(t.fn[s]&&(a=e["_"+s+"Options"]?e["_"+s+"Options"]("middle"):{classes:{}},e.element.find(n).each(function(){var n=t(this),o=n[s]("instance"),r=t.widget.extend({},a);if("button"!==s||!n.parent(".ui-spinner").length){o||(o=n[s]()[s]("instance")),o&&(r.classes=e._resolveClassesValues(r.classes,o)),n[s](r);var h=n[s]("widget");t.data(h[0],"ui-controlgroup-data",o?o:n[s]("instance")),i.push(h[0])}})),void 0):void 0}),this.childWidgets=t(t.unique(i)),this._addClass(this.childWidgets,"ui-controlgroup-item")},_callChildMethod:function(e){this.childWidgets.each(function(){var i=t(this),s=i.data("ui-controlgroup-data");s&&s[e]&&s[e]()})},_updateCornerClass:function(t,e){var i="ui-corner-top ui-corner-bottom ui-corner-left ui-corner-right ui-corner-all",s=this._buildSimpleOptions(e,"label").classes.label;this._removeClass(t,null,i),this._addClass(t,null,s)},_buildSimpleOptions:function(t,e){var i="vertical"===this.options.direction,s={classes:{}};return s.classes[e]={middle:"",first:"ui-corner-"+(i?"top":"left"),last:"ui-corner-"+(i?"bottom":"right"),only:"ui-corner-all"}[t],s},_spinnerOptions:function(t){var e=this._buildSimpleOptions(t,"ui-spinner");return e.classes["ui-spinner-up"]="",e.classes["ui-spinner-down"]="",e},_buttonOptions:function(t){return this._buildSimpleOptions(t,"ui-button")},_checkboxradioOptions:function(t){return this._buildSimpleOptions(t,"ui-checkboxradio-label")},_selectmenuOptions:function(t){var e="vertical"===this.options.direction;return{width:e?"auto":!1,classes:{middle:{"ui-selectmenu-button-open":"","ui-selectmenu-button-closed":""},first:{"ui-selectmenu-button-open":"ui-corner-"+(e?"top":"tl"),"ui-selectmenu-button-closed":"ui-corner-"+(e?"top":"left")},last:{"ui-selectmenu-button-open":e?"":"ui-corner-tr","ui-selectmenu-button-closed":"ui-corner-"+(e?"bottom":"right")},only:{"ui-selectmenu-button-open":"ui-corner-top","ui-selectmenu-button-closed":"ui-corner-all"}}[t]}},_resolveClassesValues:function(e,i){var s={};return t.each(e,function(n){var o=i.options.classes[n]||"";o=t.trim(o.replace(g,"")),s[n]=(o+" "+e[n]).replace(/\s+/g," ")}),s},_setOption:function(t,e){return"direction"===t&&this._removeClass("ui-controlgroup-"+this.options.direction),this._super(t,e),"disabled"===t?(this._callChildMethod(e?"disable":"enable"),void 0):(this.refresh(),void 0)},refresh:function(){var e,i=this;this._addClass("ui-controlgroup ui-controlgroup-"+this.options.direction),"horizontal"===this.options.direction&&this._addClass(null,"ui-helper-clearfix"),this._initWidgets(),e=this.childWidgets,this.options.onlyVisible&&(e=e.filter(":visible")),e.length&&(t.each(["first","last"],function(t,s){var n=e[s]().data("ui-controlgroup-data");if(n&&i["_"+n.widgetName+"Options"]){var o=i["_"+n.widgetName+"Options"](1===e.length?"only":s);o.classes=i._resolveClassesValues(o.classes,n),n.element[n.widgetName](o)}else i._updateCornerClass(e[s](),s)}),this._callChildMethod("refresh"))}}),t.widget("ui.checkboxradio",[t.ui.formResetMixin,{version:"1.12.1",options:{disabled:null,label:null,icon:!0,classes:{"ui-checkboxradio-label":"ui-corner-all","ui-checkboxradio-icon":"ui-corner-all"}},_getCreateOptions:function(){var e,i,s=this,n=this._super()||{};return this._readType(),i=this.element.labels(),this.label=t(i[i.length-1]),this.label.length||t.error("No label found for checkboxradio widget"),this.originalLabel="",this.label.contents().not(this.element[0]).each(function(){s.originalLabel+=3===this.nodeType?t(this).text():this.outerHTML}),this.originalLabel&&(n.label=this.originalLabel),e=this.element[0].disabled,null!=e&&(n.disabled=e),n},_create:function(){var t=this.element[0].checked;this._bindFormResetHandler(),null==this.options.disabled&&(this.options.disabled=this.element[0].disabled),this._setOption("disabled",this.options.disabled),this._addClass("ui-checkboxradio","ui-helper-hidden-accessible"),this._addClass(this.label,"ui-checkboxradio-label","ui-button ui-widget"),"radio"===this.type&&this._addClass(this.label,"ui-checkboxradio-radio-label"),this.options.label&&this.options.label!==this.originalLabel?this._updateLabel():this.originalLabel&&(this.options.label=this.originalLabel),this._enhance(),t&&(this._addClass(this.label,"ui-checkboxradio-checked","ui-state-active"),this.icon&&this._addClass(this.icon,null,"ui-state-hover")),this._on({change:"_toggleClasses",focus:function(){this._addClass(this.label,null,"ui-state-focus ui-visual-focus")},blur:function(){this._removeClass(this.label,null,"ui-state-focus ui-visual-focus")}})},_readType:function(){var e=this.element[0].nodeName.toLowerCase();this.type=this.element[0].type,"input"===e&&/radio|checkbox/.test(this.type)||t.error("Can't create checkboxradio on element.nodeName="+e+" and element.type="+this.type)},_enhance:function(){this._updateIcon(this.element[0].checked)},widget:function(){return this.label},_getRadioGroup:function(){var e,i=this.element[0].name,s="input[name='"+t.ui.escapeSelector(i)+"']";return i?(e=this.form.length?t(this.form[0].elements).filter(s):t(s).filter(function(){return 0===t(this).form().length}),e.not(this.element)):t([])},_toggleClasses:function(){var e=this.element[0].checked;this._toggleClass(this.label,"ui-checkboxradio-checked","ui-state-active",e),this.options.icon&&"checkbox"===this.type&&this._toggleClass(this.icon,null,"ui-icon-check ui-state-checked",e)._toggleClass(this.icon,null,"ui-icon-blank",!e),"radio"===this.type&&this._getRadioGroup().each(function(){var e=t(this).checkboxradio("instance");e&&e._removeClass(e.label,"ui-checkboxradio-checked","ui-state-active")})},_destroy:function(){this._unbindFormResetHandler(),this.icon&&(this.icon.remove(),this.iconSpace.remove())},_setOption:function(t,e){return"label"!==t||e?(this._super(t,e),"disabled"===t?(this._toggleClass(this.label,null,"ui-state-disabled",e),this.element[0].disabled=e,void 0):(this.refresh(),void 0)):void 0},_updateIcon:function(e){var i="ui-icon ui-icon-background ";this.options.icon?(this.icon||(this.icon=t("<span>"),this.iconSpace=t("<span> </span>"),this._addClass(this.iconSpace,"ui-checkboxradio-icon-space")),"checkbox"===this.type?(i+=e?"ui-icon-check ui-state-checked":"ui-icon-blank",this._removeClass(this.icon,null,e?"ui-icon-blank":"ui-icon-check")):i+="ui-icon-blank",this._addClass(this.icon,"ui-checkboxradio-icon",i),e||this._removeClass(this.icon,null,"ui-icon-check ui-state-checked"),this.icon.prependTo(this.label).after(this.iconSpace)):void 0!==this.icon&&(this.icon.remove(),this.iconSpace.remove(),delete this.icon)},_updateLabel:function(){var t=this.label.contents().not(this.element[0]);this.icon&&(t=t.not(this.icon[0])),this.iconSpace&&(t=t.not(this.iconSpace[0])),t.remove(),this.label.append(this.options.label)},refresh:function(){var t=this.element[0].checked,e=this.element[0].disabled;this._updateIcon(t),this._toggleClass(this.label,"ui-checkboxradio-checked","ui-state-active",t),null!==this.options.label&&this._updateLabel(),e!==this.options.disabled&&this._setOptions({disabled:e})}}]),t.ui.checkboxradio,t.widget("ui.button",{version:"1.12.1",defaultElement:"<button>",options:{classes:{"ui-button":"ui-corner-all"},disabled:null,icon:null,iconPosition:"beginning",label:null,showLabel:!0},_getCreateOptions:function(){var t,e=this._super()||{};return this.isInput=this.element.is("input"),t=this.element[0].disabled,null!=t&&(e.disabled=t),this.originalLabel=this.isInput?this.element.val():this.element.html(),this.originalLabel&&(e.label=this.originalLabel),e},_create:function(){!this.option.showLabel&!this.options.icon&&(this.options.showLabel=!0),null==this.options.disabled&&(this.options.disabled=this.element[0].disabled||!1),this.hasTitle=!!this.element.attr("title"),this.options.label&&this.options.label!==this.originalLabel&&(this.isInput?this.element.val(this.options.label):this.element.html(this.options.label)),this._addClass("ui-button","ui-widget"),this._setOption("disabled",this.options.disabled),this._enhance(),this.element.is("a")&&this._on({keyup:function(e){e.keyCode===t.ui.keyCode.SPACE&&(e.preventDefault(),this.element[0].click?this.element[0].click():this.element.trigger("click"))}})},_enhance:function(){this.element.is("button")||this.element.attr("role","button"),this.options.icon&&(this._updateIcon("icon",this.options.icon),this._updateTooltip())},_updateTooltip:function(){this.title=this.element.attr("title"),this.options.showLabel||this.title||this.element.attr("title",this.options.label)},_updateIcon:function(e,i){var s="iconPosition"!==e,n=s?this.options.iconPosition:i,o="top"===n||"bottom"===n;this.icon?s&&this._removeClass(this.icon,null,this.options.icon):(this.icon=t("<span>"),this._addClass(this.icon,"ui-button-icon","ui-icon"),this.options.showLabel||this._addClass("ui-button-icon-only")),s&&this._addClass(this.icon,null,i),this._attachIcon(n),o?(this._addClass(this.icon,null,"ui-widget-icon-block"),this.iconSpace&&this.iconSpace.remove()):(this.iconSpace||(this.iconSpace=t("<span> </span>"),this._addClass(this.iconSpace,"ui-button-icon-space")),this._removeClass(this.icon,null,"ui-wiget-icon-block"),this._attachIconSpace(n))},_destroy:function(){this.element.removeAttr("role"),this.icon&&this.icon.remove(),this.iconSpace&&this.iconSpace.remove(),this.hasTitle||this.element.removeAttr("title")},_attachIconSpace:function(t){this.icon[/^(?:end|bottom)/.test(t)?"before":"after"](this.iconSpace)},_attachIcon:function(t){this.element[/^(?:end|bottom)/.test(t)?"append":"prepend"](this.icon)},_setOptions:function(t){var e=void 0===t.showLabel?this.options.showLabel:t.showLabel,i=void 0===t.icon?this.options.icon:t.icon;e||i||(t.showLabel=!0),this._super(t)},_setOption:function(t,e){"icon"===t&&(e?this._updateIcon(t,e):this.icon&&(this.icon.remove(),this.iconSpace&&this.iconSpace.remove())),"iconPosition"===t&&this._updateIcon(t,e),"showLabel"===t&&(this._toggleClass("ui-button-icon-only",null,!e),this._updateTooltip()),"label"===t&&(this.isInput?this.element.val(e):(this.element.html(e),this.icon&&(this._attachIcon(this.options.iconPosition),this._attachIconSpace(this.options.iconPosition)))),this._super(t,e),"disabled"===t&&(this._toggleClass(null,"ui-state-disabled",e),this.element[0].disabled=e,e&&this.element.blur())},refresh:function(){var t=this.element.is("input, button")?this.element[0].disabled:this.element.hasClass("ui-button-disabled");t!==this.options.disabled&&this._setOptions({disabled:t}),this._updateTooltip()}}),t.uiBackCompat!==!1&&(t.widget("ui.button",t.ui.button,{options:{text:!0,icons:{primary:null,secondary:null}},_create:function(){this.options.showLabel&&!this.options.text&&(this.options.showLabel=this.options.text),!this.options.showLabel&&this.options.text&&(this.options.text=this.options.showLabel),this.options.icon||!this.options.icons.primary&&!this.options.icons.secondary?this.options.icon&&(this.options.icons.primary=this.options.icon):this.options.icons.primary?this.options.icon=this.options.icons.primary:(this.options.icon=this.options.icons.secondary,this.options.iconPosition="end"),this._super()},_setOption:function(t,e){return"text"===t?(this._super("showLabel",e),void 0):("showLabel"===t&&(this.options.text=e),"icon"===t&&(this.options.icons.primary=e),"icons"===t&&(e.primary?(this._super("icon",e.primary),this._super("iconPosition","beginning")):e.secondary&&(this._super("icon",e.secondary),this._super("iconPosition","end"))),this._superApply(arguments),void 0)}}),t.fn.button=function(e){return function(){return!this.length||this.length&&"INPUT"!==this[0].tagName||this.length&&"INPUT"===this[0].tagName&&"checkbox"!==this.attr("type")&&"radio"!==this.attr("type")?e.apply(this,arguments):(t.ui.checkboxradio||t.error("Checkboxradio widget missing"),0===arguments.length?this.checkboxradio({icon:!1}):this.checkboxradio.apply(this,arguments))}}(t.fn.button),t.fn.buttonset=function(){return t.ui.controlgroup||t.error("Controlgroup widget missing"),"option"===arguments[0]&&"items"===arguments[1]&&arguments[2]?this.controlgroup.apply(this,[arguments[0],"items.button",arguments[2]]):"option"===arguments[0]&&"items"===arguments[1]?this.controlgroup.apply(this,[arguments[0],"items.button"]):("object"==typeof arguments[0]&&arguments[0].items&&(arguments[0].items={button:arguments[0].items}),this.controlgroup.apply(this,arguments))}),t.ui.button,t.extend(t.ui,{datepicker:{version:"1.12.1"}});var m;t.extend(s.prototype,{markerClassName:"hasDatepicker",maxRows:4,_widgetDatepicker:function(){return this.dpDiv},setDefaults:function(t){return a(this._defaults,t||{}),this},_attachDatepicker:function(e,i){var s,n,o;s=e.nodeName.toLowerCase(),n="div"===s||"span"===s,e.id||(this.uuid+=1,e.id="dp"+this.uuid),o=this._newInst(t(e),n),o.settings=t.extend({},i||{}),"input"===s?this._connectDatepicker(e,o):n&&this._inlineDatepicker(e,o)},_newInst:function(e,i){var s=e[0].id.replace(/([^A-Za-z0-9_\-])/g,"\\\\$1");return{id:s,input:e,selectedDay:0,selectedMonth:0,selectedYear:0,drawMonth:0,drawYear:0,inline:i,dpDiv:i?n(t("<div class='"+this._inlineClass+" ui-datepicker ui-widget ui-widget-content ui-helper-clearfix ui-corner-all'></div>")):this.dpDiv}},_connectDatepicker:function(e,i){var s=t(e);i.append=t([]),i.trigger=t([]),s.hasClass(this.markerClassName)||(this._attachments(s,i),s.addClass(this.markerClassName).on("keydown",this._doKeyDown).on("keypress",this._doKeyPress).on("keyup",this._doKeyUp),this._autoSize(i),t.data(e,"datepicker",i),i.settings.disabled&&this._disableDatepicker(e))},_attachments:function(e,i){var s,n,o,a=this._get(i,"appendText"),r=this._get(i,"isRTL");i.append&&i.append.remove(),a&&(i.append=t("<span class='"+this._appendClass+"'>"+a+"</span>"),e[r?"before":"after"](i.append)),e.off("focus",this._showDatepicker),i.trigger&&i.trigger.remove(),s=this._get(i,"showOn"),("focus"===s||"both"===s)&&e.on("focus",this._showDatepicker),("button"===s||"both"===s)&&(n=this._get(i,"buttonText"),o=this._get(i,"buttonImage"),i.trigger=t(this._get(i,"buttonImageOnly")?t("<img/>").addClass(this._triggerClass).attr({src:o,alt:n,title:n}):t("<button type='button'></button>").addClass(this._triggerClass).html(o?t("<img/>").attr({src:o,alt:n,title:n}):n)),e[r?"before":"after"](i.trigger),i.trigger.on("click",function(){return t.datepicker._datepickerShowing&&t.datepicker._lastInput===e[0]?t.datepicker._hideDatepicker():t.datepicker._datepickerShowing&&t.datepicker._lastInput!==e[0]?(t.datepicker._hideDatepicker(),t.datepicker._showDatepicker(e[0])):t.datepicker._showDatepicker(e[0]),!1}))},_autoSize:function(t){if(this._get(t,"autoSize")&&!t.inline){var e,i,s,n,o=new Date(2009,11,20),a=this._get(t,"dateFormat");a.match(/[DM]/)&&(e=function(t){for(i=0,s=0,n=0;t.length>n;n++)t[n].length>i&&(i=t[n].length,s=n);return s},o.setMonth(e(this._get(t,a.match(/MM/)?"monthNames":"monthNamesShort"))),o.setDate(e(this._get(t,a.match(/DD/)?"dayNames":"dayNamesShort"))+20-o.getDay())),t.input.attr("size",this._formatDate(t,o).length)}},_inlineDatepicker:function(e,i){var s=t(e);s.hasClass(this.markerClassName)||(s.addClass(this.markerClassName).append(i.dpDiv),t.data(e,"datepicker",i),this._setDate(i,this._getDefaultDate(i),!0),this._updateDatepicker(i),this._updateAlternate(i),i.settings.disabled&&this._disableDatepicker(e),i.dpDiv.css("display","block"))},_dialogDatepicker:function(e,i,s,n,o){var r,h,l,c,u,d=this._dialogInst;return d||(this.uuid+=1,r="dp"+this.uuid,this._dialogInput=t("<input type='text' id='"+r+"' style='position: absolute; top: -100px; width: 0px;'/>"),this._dialogInput.on("keydown",this._doKeyDown),t("body").append(this._dialogInput),d=this._dialogInst=this._newInst(this._dialogInput,!1),d.settings={},t.data(this._dialogInput[0],"datepicker",d)),a(d.settings,n||{}),i=i&&i.constructor===Date?this._formatDate(d,i):i,this._dialogInput.val(i),this._pos=o?o.length?o:[o.pageX,o.pageY]:null,this._pos||(h=document.documentElement.clientWidth,l=document.documentElement.clientHeight,c=document.documentElement.scrollLeft||document.body.scrollLeft,u=document.documentElement.scrollTop||document.body.scrollTop,this._pos=[h/2-100+c,l/2-150+u]),this._dialogInput.css("left",this._pos[0]+20+"px").css("top",this._pos[1]+"px"),d.settings.onSelect=s,this._inDialog=!0,this.dpDiv.addClass(this._dialogClass),this._showDatepicker(this._dialogInput[0]),t.blockUI&&t.blockUI(this.dpDiv),t.data(this._dialogInput[0],"datepicker",d),this},_destroyDatepicker:function(e){var i,s=t(e),n=t.data(e,"datepicker");s.hasClass(this.markerClassName)&&(i=e.nodeName.toLowerCase(),t.removeData(e,"datepicker"),"input"===i?(n.append.remove(),n.trigger.remove(),s.removeClass(this.markerClassName).off("focus",this._showDatepicker).off("keydown",this._doKeyDown).off("keypress",this._doKeyPress).off("keyup",this._doKeyUp)):("div"===i||"span"===i)&&s.removeClass(this.markerClassName).empty(),m===n&&(m=null))},_enableDatepicker:function(e){var i,s,n=t(e),o=t.data(e,"datepicker");n.hasClass(this.markerClassName)&&(i=e.nodeName.toLowerCase(),"input"===i?(e.disabled=!1,o.trigger.filter("button").each(function(){this.disabled=!1}).end().filter("img").css({opacity:"1.0",cursor:""})):("div"===i||"span"===i)&&(s=n.children("."+this._inlineClass),s.children().removeClass("ui-state-disabled"),s.find("select.ui-datepicker-month, select.ui-datepicker-year").prop("disabled",!1)),this._disabledInputs=t.map(this._disabledInputs,function(t){return t===e?null:t}))},_disableDatepicker:function(e){var i,s,n=t(e),o=t.data(e,"datepicker");n.hasClass(this.markerClassName)&&(i=e.nodeName.toLowerCase(),"input"===i?(e.disabled=!0,o.trigger.filter("button").each(function(){this.disabled=!0}).end().filter("img").css({opacity:"0.5",cursor:"default"})):("div"===i||"span"===i)&&(s=n.children("."+this._inlineClass),s.children().addClass("ui-state-disabled"),s.find("select.ui-datepicker-month, select.ui-datepicker-year").prop("disabled",!0)),this._disabledInputs=t.map(this._disabledInputs,function(t){return t===e?null:t}),this._disabledInputs[this._disabledInputs.length]=e)},_isDisabledDatepicker:function(t){if(!t)return!1;for(var e=0;this._disabledInputs.length>e;e++)if(this._disabledInputs[e]===t)return!0;return!1},_getInst:function(e){try{return t.data(e,"datepicker")}catch(i){throw"Missing instance data for this datepicker"}},_optionDatepicker:function(e,i,s){var n,o,r,h,l=this._getInst(e);return 2===arguments.length&&"string"==typeof i?"defaults"===i?t.extend({},t.datepicker._defaults):l?"all"===i?t.extend({},l.settings):this._get(l,i):null:(n=i||{},"string"==typeof i&&(n={},n[i]=s),l&&(this._curInst===l&&this._hideDatepicker(),o=this._getDateDatepicker(e,!0),r=this._getMinMaxDate(l,"min"),h=this._getMinMaxDate(l,"max"),a(l.settings,n),null!==r&&void 0!==n.dateFormat&&void 0===n.minDate&&(l.settings.minDate=this._formatDate(l,r)),null!==h&&void 0!==n.dateFormat&&void 0===n.maxDate&&(l.settings.maxDate=this._formatDate(l,h)),"disabled"in n&&(n.disabled?this._disableDatepicker(e):this._enableDatepicker(e)),this._attachments(t(e),l),this._autoSize(l),this._setDate(l,o),this._updateAlternate(l),this._updateDatepicker(l)),void 0)},_changeDatepicker:function(t,e,i){this._optionDatepicker(t,e,i)},_refreshDatepicker:function(t){var e=this._getInst(t);e&&this._updateDatepicker(e)},_setDateDatepicker:function(t,e){var i=this._getInst(t);i&&(this._setDate(i,e),this._updateDatepicker(i),this._updateAlternate(i))},_getDateDatepicker:function(t,e){var i=this._getInst(t);return i&&!i.inline&&this._setDateFromField(i,e),i?this._getDate(i):null},_doKeyDown:function(e){var i,s,n,o=t.datepicker._getInst(e.target),a=!0,r=o.dpDiv.is(".ui-datepicker-rtl");if(o._keyEvent=!0,t.datepicker._datepickerShowing)switch(e.keyCode){case 9:t.datepicker._hideDatepicker(),a=!1;break;case 13:return n=t("td."+t.datepicker._dayOverClass+":not(."+t.datepicker._currentClass+")",o.dpDiv),n[0]&&t.datepicker._selectDay(e.target,o.selectedMonth,o.selectedYear,n[0]),i=t.datepicker._get(o,"onSelect"),i?(s=t.datepicker._formatDate(o),i.apply(o.input?o.input[0]:null,[s,o])):t.datepicker._hideDatepicker(),!1;case 27:t.datepicker._hideDatepicker();break;case 33:t.datepicker._adjustDate(e.target,e.ctrlKey?-t.datepicker._get(o,"stepBigMonths"):-t.datepicker._get(o,"stepMonths"),"M");break;case 34:t.datepicker._adjustDate(e.target,e.ctrlKey?+t.datepicker._get(o,"stepBigMonths"):+t.datepicker._get(o,"stepMonths"),"M");break;case 35:(e.ctrlKey||e.metaKey)&&t.datepicker._clearDate(e.target),a=e.ctrlKey||e.metaKey;break;case 36:(e.ctrlKey||e.metaKey)&&t.datepicker._gotoToday(e.target),a=e.ctrlKey||e.metaKey;break;case 37:(e.ctrlKey||e.metaKey)&&t.datepicker._adjustDate(e.target,r?1:-1,"D"),a=e.ctrlKey||e.metaKey,e.originalEvent.altKey&&t.datepicker._adjustDate(e.target,e.ctrlKey?-t.datepicker._get(o,"stepBigMonths"):-t.datepicker._get(o,"stepMonths"),"M");break;case 38:(e.ctrlKey||e.metaKey)&&t.datepicker._adjustDate(e.target,-7,"D"),a=e.ctrlKey||e.metaKey;break;case 39:(e.ctrlKey||e.metaKey)&&t.datepicker._adjustDate(e.target,r?-1:1,"D"),a=e.ctrlKey||e.metaKey,e.originalEvent.altKey&&t.datepicker._adjustDate(e.target,e.ctrlKey?+t.datepicker._get(o,"stepBigMonths"):+t.datepicker._get(o,"stepMonths"),"M");break;case 40:(e.ctrlKey||e.metaKey)&&t.datepicker._adjustDate(e.target,7,"D"),a=e.ctrlKey||e.metaKey;break;default:a=!1}else 36===e.keyCode&&e.ctrlKey?t.datepicker._showDatepicker(this):a=!1;a&&(e.preventDefault(),e.stopPropagation())},_doKeyPress:function(e){var i,s,n=t.datepicker._getInst(e.target);return t.datepicker._get(n,"constrainInput")?(i=t.datepicker._possibleChars(t.datepicker._get(n,"dateFormat")),s=String.fromCharCode(null==e.charCode?e.keyCode:e.charCode),e.ctrlKey||e.metaKey||" ">s||!i||i.indexOf(s)>-1):void 0},_doKeyUp:function(e){var i,s=t.datepicker._getInst(e.target);if(s.input.val()!==s.lastVal)try{i=t.datepicker.parseDate(t.datepicker._get(s,"dateFormat"),s.input?s.input.val():null,t.datepicker._getFormatConfig(s)),i&&(t.datepicker._setDateFromField(s),t.datepicker._updateAlternate(s),t.datepicker._updateDatepicker(s))}catch(n){}return!0},_showDatepicker:function(e){if(e=e.target||e,"input"!==e.nodeName.toLowerCase()&&(e=t("input",e.parentNode)[0]),!t.datepicker._isDisabledDatepicker(e)&&t.datepicker._lastInput!==e){var s,n,o,r,h,l,c;s=t.datepicker._getInst(e),t.datepicker._curInst&&t.datepicker._curInst!==s&&(t.datepicker._curInst.dpDiv.stop(!0,!0),s&&t.datepicker._datepickerShowing&&t.datepicker._hideDatepicker(t.datepicker._curInst.input[0])),n=t.datepicker._get(s,"beforeShow"),o=n?n.apply(e,[e,s]):{},o!==!1&&(a(s.settings,o),s.lastVal=null,t.datepicker._lastInput=e,t.datepicker._setDateFromField(s),t.datepicker._inDialog&&(e.value=""),t.datepicker._pos||(t.datepicker._pos=t.datepicker._findPos(e),t.datepicker._pos[1]+=e.offsetHeight),r=!1,t(e).parents().each(function(){return r|="fixed"===t(this).css("position"),!r}),h={left:t.datepicker._pos[0],top:t.datepicker._pos[1]},t.datepicker._pos=null,s.dpDiv.empty(),s.dpDiv.css({position:"absolute",display:"block",top:"-1000px"}),t.datepicker._updateDatepicker(s),h=t.datepicker._checkOffset(s,h,r),s.dpDiv.css({position:t.datepicker._inDialog&&t.blockUI?"static":r?"fixed":"absolute",display:"none",left:h.left+"px",top:h.top+"px"}),s.inline||(l=t.datepicker._get(s,"showAnim"),c=t.datepicker._get(s,"duration"),s.dpDiv.css("z-index",i(t(e))+1),t.datepicker._datepickerShowing=!0,t.effects&&t.effects.effect[l]?s.dpDiv.show(l,t.datepicker._get(s,"showOptions"),c):s.dpDiv[l||"show"](l?c:null),t.datepicker._shouldFocusInput(s)&&s.input.trigger("focus"),t.datepicker._curInst=s))
-}},_updateDatepicker:function(e){this.maxRows=4,m=e,e.dpDiv.empty().append(this._generateHTML(e)),this._attachHandlers(e);var i,s=this._getNumberOfMonths(e),n=s[1],a=17,r=e.dpDiv.find("."+this._dayOverClass+" a");r.length>0&&o.apply(r.get(0)),e.dpDiv.removeClass("ui-datepicker-multi-2 ui-datepicker-multi-3 ui-datepicker-multi-4").width(""),n>1&&e.dpDiv.addClass("ui-datepicker-multi-"+n).css("width",a*n+"em"),e.dpDiv[(1!==s[0]||1!==s[1]?"add":"remove")+"Class"]("ui-datepicker-multi"),e.dpDiv[(this._get(e,"isRTL")?"add":"remove")+"Class"]("ui-datepicker-rtl"),e===t.datepicker._curInst&&t.datepicker._datepickerShowing&&t.datepicker._shouldFocusInput(e)&&e.input.trigger("focus"),e.yearshtml&&(i=e.yearshtml,setTimeout(function(){i===e.yearshtml&&e.yearshtml&&e.dpDiv.find("select.ui-datepicker-year:first").replaceWith(e.yearshtml),i=e.yearshtml=null},0))},_shouldFocusInput:function(t){return t.input&&t.input.is(":visible")&&!t.input.is(":disabled")&&!t.input.is(":focus")},_checkOffset:function(e,i,s){var n=e.dpDiv.outerWidth(),o=e.dpDiv.outerHeight(),a=e.input?e.input.outerWidth():0,r=e.input?e.input.outerHeight():0,h=document.documentElement.clientWidth+(s?0:t(document).scrollLeft()),l=document.documentElement.clientHeight+(s?0:t(document).scrollTop());return i.left-=this._get(e,"isRTL")?n-a:0,i.left-=s&&i.left===e.input.offset().left?t(document).scrollLeft():0,i.top-=s&&i.top===e.input.offset().top+r?t(document).scrollTop():0,i.left-=Math.min(i.left,i.left+n>h&&h>n?Math.abs(i.left+n-h):0),i.top-=Math.min(i.top,i.top+o>l&&l>o?Math.abs(o+r):0),i},_findPos:function(e){for(var i,s=this._getInst(e),n=this._get(s,"isRTL");e&&("hidden"===e.type||1!==e.nodeType||t.expr.filters.hidden(e));)e=e[n?"previousSibling":"nextSibling"];return i=t(e).offset(),[i.left,i.top]},_hideDatepicker:function(e){var i,s,n,o,a=this._curInst;!a||e&&a!==t.data(e,"datepicker")||this._datepickerShowing&&(i=this._get(a,"showAnim"),s=this._get(a,"duration"),n=function(){t.datepicker._tidyDialog(a)},t.effects&&(t.effects.effect[i]||t.effects[i])?a.dpDiv.hide(i,t.datepicker._get(a,"showOptions"),s,n):a.dpDiv["slideDown"===i?"slideUp":"fadeIn"===i?"fadeOut":"hide"](i?s:null,n),i||n(),this._datepickerShowing=!1,o=this._get(a,"onClose"),o&&o.apply(a.input?a.input[0]:null,[a.input?a.input.val():"",a]),this._lastInput=null,this._inDialog&&(this._dialogInput.css({position:"absolute",left:"0",top:"-100px"}),t.blockUI&&(t.unblockUI(),t("body").append(this.dpDiv))),this._inDialog=!1)},_tidyDialog:function(t){t.dpDiv.removeClass(this._dialogClass).off(".ui-datepicker-calendar")},_checkExternalClick:function(e){if(t.datepicker._curInst){var i=t(e.target),s=t.datepicker._getInst(i[0]);(i[0].id!==t.datepicker._mainDivId&&0===i.parents("#"+t.datepicker._mainDivId).length&&!i.hasClass(t.datepicker.markerClassName)&&!i.closest("."+t.datepicker._triggerClass).length&&t.datepicker._datepickerShowing&&(!t.datepicker._inDialog||!t.blockUI)||i.hasClass(t.datepicker.markerClassName)&&t.datepicker._curInst!==s)&&t.datepicker._hideDatepicker()}},_adjustDate:function(e,i,s){var n=t(e),o=this._getInst(n[0]);this._isDisabledDatepicker(n[0])||(this._adjustInstDate(o,i+("M"===s?this._get(o,"showCurrentAtPos"):0),s),this._updateDatepicker(o))},_gotoToday:function(e){var i,s=t(e),n=this._getInst(s[0]);this._get(n,"gotoCurrent")&&n.currentDay?(n.selectedDay=n.currentDay,n.drawMonth=n.selectedMonth=n.currentMonth,n.drawYear=n.selectedYear=n.currentYear):(i=new Date,n.selectedDay=i.getDate(),n.drawMonth=n.selectedMonth=i.getMonth(),n.drawYear=n.selectedYear=i.getFullYear()),this._notifyChange(n),this._adjustDate(s)},_selectMonthYear:function(e,i,s){var n=t(e),o=this._getInst(n[0]);o["selected"+("M"===s?"Month":"Year")]=o["draw"+("M"===s?"Month":"Year")]=parseInt(i.options[i.selectedIndex].value,10),this._notifyChange(o),this._adjustDate(n)},_selectDay:function(e,i,s,n){var o,a=t(e);t(n).hasClass(this._unselectableClass)||this._isDisabledDatepicker(a[0])||(o=this._getInst(a[0]),o.selectedDay=o.currentDay=t("a",n).html(),o.selectedMonth=o.currentMonth=i,o.selectedYear=o.currentYear=s,this._selectDate(e,this._formatDate(o,o.currentDay,o.currentMonth,o.currentYear)))},_clearDate:function(e){var i=t(e);this._selectDate(i,"")},_selectDate:function(e,i){var s,n=t(e),o=this._getInst(n[0]);i=null!=i?i:this._formatDate(o),o.input&&o.input.val(i),this._updateAlternate(o),s=this._get(o,"onSelect"),s?s.apply(o.input?o.input[0]:null,[i,o]):o.input&&o.input.trigger("change"),o.inline?this._updateDatepicker(o):(this._hideDatepicker(),this._lastInput=o.input[0],"object"!=typeof o.input[0]&&o.input.trigger("focus"),this._lastInput=null)},_updateAlternate:function(e){var i,s,n,o=this._get(e,"altField");o&&(i=this._get(e,"altFormat")||this._get(e,"dateFormat"),s=this._getDate(e),n=this.formatDate(i,s,this._getFormatConfig(e)),t(o).val(n))},noWeekends:function(t){var e=t.getDay();return[e>0&&6>e,""]},iso8601Week:function(t){var e,i=new Date(t.getTime());return i.setDate(i.getDate()+4-(i.getDay()||7)),e=i.getTime(),i.setMonth(0),i.setDate(1),Math.floor(Math.round((e-i)/864e5)/7)+1},parseDate:function(e,i,s){if(null==e||null==i)throw"Invalid arguments";if(i="object"==typeof i?""+i:i+"",""===i)return null;var n,o,a,r,h=0,l=(s?s.shortYearCutoff:null)||this._defaults.shortYearCutoff,c="string"!=typeof l?l:(new Date).getFullYear()%100+parseInt(l,10),u=(s?s.dayNamesShort:null)||this._defaults.dayNamesShort,d=(s?s.dayNames:null)||this._defaults.dayNames,p=(s?s.monthNamesShort:null)||this._defaults.monthNamesShort,f=(s?s.monthNames:null)||this._defaults.monthNames,g=-1,m=-1,_=-1,v=-1,b=!1,y=function(t){var i=e.length>n+1&&e.charAt(n+1)===t;return i&&n++,i},w=function(t){var e=y(t),s="@"===t?14:"!"===t?20:"y"===t&&e?4:"o"===t?3:2,n="y"===t?s:1,o=RegExp("^\\d{"+n+","+s+"}"),a=i.substring(h).match(o);if(!a)throw"Missing number at position "+h;return h+=a[0].length,parseInt(a[0],10)},k=function(e,s,n){var o=-1,a=t.map(y(e)?n:s,function(t,e){return[[e,t]]}).sort(function(t,e){return-(t[1].length-e[1].length)});if(t.each(a,function(t,e){var s=e[1];return i.substr(h,s.length).toLowerCase()===s.toLowerCase()?(o=e[0],h+=s.length,!1):void 0}),-1!==o)return o+1;throw"Unknown name at position "+h},x=function(){if(i.charAt(h)!==e.charAt(n))throw"Unexpected literal at position "+h;h++};for(n=0;e.length>n;n++)if(b)"'"!==e.charAt(n)||y("'")?x():b=!1;else switch(e.charAt(n)){case"d":_=w("d");break;case"D":k("D",u,d);break;case"o":v=w("o");break;case"m":m=w("m");break;case"M":m=k("M",p,f);break;case"y":g=w("y");break;case"@":r=new Date(w("@")),g=r.getFullYear(),m=r.getMonth()+1,_=r.getDate();break;case"!":r=new Date((w("!")-this._ticksTo1970)/1e4),g=r.getFullYear(),m=r.getMonth()+1,_=r.getDate();break;case"'":y("'")?x():b=!0;break;default:x()}if(i.length>h&&(a=i.substr(h),!/^\s+/.test(a)))throw"Extra/unparsed characters found in date: "+a;if(-1===g?g=(new Date).getFullYear():100>g&&(g+=(new Date).getFullYear()-(new Date).getFullYear()%100+(c>=g?0:-100)),v>-1)for(m=1,_=v;;){if(o=this._getDaysInMonth(g,m-1),o>=_)break;m++,_-=o}if(r=this._daylightSavingAdjust(new Date(g,m-1,_)),r.getFullYear()!==g||r.getMonth()+1!==m||r.getDate()!==_)throw"Invalid date";return r},ATOM:"yy-mm-dd",COOKIE:"D, dd M yy",ISO_8601:"yy-mm-dd",RFC_822:"D, d M y",RFC_850:"DD, dd-M-y",RFC_1036:"D, d M y",RFC_1123:"D, d M yy",RFC_2822:"D, d M yy",RSS:"D, d M y",TICKS:"!",TIMESTAMP:"@",W3C:"yy-mm-dd",_ticksTo1970:1e7*60*60*24*(718685+Math.floor(492.5)-Math.floor(19.7)+Math.floor(4.925)),formatDate:function(t,e,i){if(!e)return"";var s,n=(i?i.dayNamesShort:null)||this._defaults.dayNamesShort,o=(i?i.dayNames:null)||this._defaults.dayNames,a=(i?i.monthNamesShort:null)||this._defaults.monthNamesShort,r=(i?i.monthNames:null)||this._defaults.monthNames,h=function(e){var i=t.length>s+1&&t.charAt(s+1)===e;return i&&s++,i},l=function(t,e,i){var s=""+e;if(h(t))for(;i>s.length;)s="0"+s;return s},c=function(t,e,i,s){return h(t)?s[e]:i[e]},u="",d=!1;if(e)for(s=0;t.length>s;s++)if(d)"'"!==t.charAt(s)||h("'")?u+=t.charAt(s):d=!1;else switch(t.charAt(s)){case"d":u+=l("d",e.getDate(),2);break;case"D":u+=c("D",e.getDay(),n,o);break;case"o":u+=l("o",Math.round((new Date(e.getFullYear(),e.getMonth(),e.getDate()).getTime()-new Date(e.getFullYear(),0,0).getTime())/864e5),3);break;case"m":u+=l("m",e.getMonth()+1,2);break;case"M":u+=c("M",e.getMonth(),a,r);break;case"y":u+=h("y")?e.getFullYear():(10>e.getFullYear()%100?"0":"")+e.getFullYear()%100;break;case"@":u+=e.getTime();break;case"!":u+=1e4*e.getTime()+this._ticksTo1970;break;case"'":h("'")?u+="'":d=!0;break;default:u+=t.charAt(s)}return u},_possibleChars:function(t){var e,i="",s=!1,n=function(i){var s=t.length>e+1&&t.charAt(e+1)===i;return s&&e++,s};for(e=0;t.length>e;e++)if(s)"'"!==t.charAt(e)||n("'")?i+=t.charAt(e):s=!1;else switch(t.charAt(e)){case"d":case"m":case"y":case"@":i+="0123456789";break;case"D":case"M":return null;case"'":n("'")?i+="'":s=!0;break;default:i+=t.charAt(e)}return i},_get:function(t,e){return void 0!==t.settings[e]?t.settings[e]:this._defaults[e]},_setDateFromField:function(t,e){if(t.input.val()!==t.lastVal){var i=this._get(t,"dateFormat"),s=t.lastVal=t.input?t.input.val():null,n=this._getDefaultDate(t),o=n,a=this._getFormatConfig(t);try{o=this.parseDate(i,s,a)||n}catch(r){s=e?"":s}t.selectedDay=o.getDate(),t.drawMonth=t.selectedMonth=o.getMonth(),t.drawYear=t.selectedYear=o.getFullYear(),t.currentDay=s?o.getDate():0,t.currentMonth=s?o.getMonth():0,t.currentYear=s?o.getFullYear():0,this._adjustInstDate(t)}},_getDefaultDate:function(t){return this._restrictMinMax(t,this._determineDate(t,this._get(t,"defaultDate"),new Date))},_determineDate:function(e,i,s){var n=function(t){var e=new Date;return e.setDate(e.getDate()+t),e},o=function(i){try{return t.datepicker.parseDate(t.datepicker._get(e,"dateFormat"),i,t.datepicker._getFormatConfig(e))}catch(s){}for(var n=(i.toLowerCase().match(/^c/)?t.datepicker._getDate(e):null)||new Date,o=n.getFullYear(),a=n.getMonth(),r=n.getDate(),h=/([+\-]?[0-9]+)\s*(d|D|w|W|m|M|y|Y)?/g,l=h.exec(i);l;){switch(l[2]||"d"){case"d":case"D":r+=parseInt(l[1],10);break;case"w":case"W":r+=7*parseInt(l[1],10);break;case"m":case"M":a+=parseInt(l[1],10),r=Math.min(r,t.datepicker._getDaysInMonth(o,a));break;case"y":case"Y":o+=parseInt(l[1],10),r=Math.min(r,t.datepicker._getDaysInMonth(o,a))}l=h.exec(i)}return new Date(o,a,r)},a=null==i||""===i?s:"string"==typeof i?o(i):"number"==typeof i?isNaN(i)?s:n(i):new Date(i.getTime());return a=a&&"Invalid Date"==""+a?s:a,a&&(a.setHours(0),a.setMinutes(0),a.setSeconds(0),a.setMilliseconds(0)),this._daylightSavingAdjust(a)},_daylightSavingAdjust:function(t){return t?(t.setHours(t.getHours()>12?t.getHours()+2:0),t):null},_setDate:function(t,e,i){var s=!e,n=t.selectedMonth,o=t.selectedYear,a=this._restrictMinMax(t,this._determineDate(t,e,new Date));t.selectedDay=t.currentDay=a.getDate(),t.drawMonth=t.selectedMonth=t.currentMonth=a.getMonth(),t.drawYear=t.selectedYear=t.currentYear=a.getFullYear(),n===t.selectedMonth&&o===t.selectedYear||i||this._notifyChange(t),this._adjustInstDate(t),t.input&&t.input.val(s?"":this._formatDate(t))},_getDate:function(t){var e=!t.currentYear||t.input&&""===t.input.val()?null:this._daylightSavingAdjust(new Date(t.currentYear,t.currentMonth,t.currentDay));return e},_attachHandlers:function(e){var i=this._get(e,"stepMonths"),s="#"+e.id.replace(/\\\\/g,"\\");e.dpDiv.find("[data-handler]").map(function(){var e={prev:function(){t.datepicker._adjustDate(s,-i,"M")},next:function(){t.datepicker._adjustDate(s,+i,"M")},hide:function(){t.datepicker._hideDatepicker()},today:function(){t.datepicker._gotoToday(s)},selectDay:function(){return t.datepicker._selectDay(s,+this.getAttribute("data-month"),+this.getAttribute("data-year"),this),!1},selectMonth:function(){return t.datepicker._selectMonthYear(s,this,"M"),!1},selectYear:function(){return t.datepicker._selectMonthYear(s,this,"Y"),!1}};t(this).on(this.getAttribute("data-event"),e[this.getAttribute("data-handler")])})},_generateHTML:function(t){var e,i,s,n,o,a,r,h,l,c,u,d,p,f,g,m,_,v,b,y,w,k,x,C,D,I,T,P,M,S,H,z,O,A,N,W,E,F,L,R=new Date,B=this._daylightSavingAdjust(new Date(R.getFullYear(),R.getMonth(),R.getDate())),Y=this._get(t,"isRTL"),j=this._get(t,"showButtonPanel"),q=this._get(t,"hideIfNoPrevNext"),K=this._get(t,"navigationAsDateFormat"),U=this._getNumberOfMonths(t),V=this._get(t,"showCurrentAtPos"),$=this._get(t,"stepMonths"),X=1!==U[0]||1!==U[1],G=this._daylightSavingAdjust(t.currentDay?new Date(t.currentYear,t.currentMonth,t.currentDay):new Date(9999,9,9)),Q=this._getMinMaxDate(t,"min"),J=this._getMinMaxDate(t,"max"),Z=t.drawMonth-V,te=t.drawYear;if(0>Z&&(Z+=12,te--),J)for(e=this._daylightSavingAdjust(new Date(J.getFullYear(),J.getMonth()-U[0]*U[1]+1,J.getDate())),e=Q&&Q>e?Q:e;this._daylightSavingAdjust(new Date(te,Z,1))>e;)Z--,0>Z&&(Z=11,te--);for(t.drawMonth=Z,t.drawYear=te,i=this._get(t,"prevText"),i=K?this.formatDate(i,this._daylightSavingAdjust(new Date(te,Z-$,1)),this._getFormatConfig(t)):i,s=this._canAdjustMonth(t,-1,te,Z)?"<a class='ui-datepicker-prev ui-corner-all' data-handler='prev' data-event='click' title='"+i+"'><span class='ui-icon ui-icon-circle-triangle-"+(Y?"e":"w")+"'>"+i+"</span></a>":q?"":"<a class='ui-datepicker-prev ui-corner-all ui-state-disabled' title='"+i+"'><span class='ui-icon ui-icon-circle-triangle-"+(Y?"e":"w")+"'>"+i+"</span></a>",n=this._get(t,"nextText"),n=K?this.formatDate(n,this._daylightSavingAdjust(new Date(te,Z+$,1)),this._getFormatConfig(t)):n,o=this._canAdjustMonth(t,1,te,Z)?"<a class='ui-datepicker-next ui-corner-all' data-handler='next' data-event='click' title='"+n+"'><span class='ui-icon ui-icon-circle-triangle-"+(Y?"w":"e")+"'>"+n+"</span></a>":q?"":"<a class='ui-datepicker-next ui-corner-all ui-state-disabled' title='"+n+"'><span class='ui-icon ui-icon-circle-triangle-"+(Y?"w":"e")+"'>"+n+"</span></a>",a=this._get(t,"currentText"),r=this._get(t,"gotoCurrent")&&t.currentDay?G:B,a=K?this.formatDate(a,r,this._getFormatConfig(t)):a,h=t.inline?"":"<button type='button' class='ui-datepicker-close ui-state-default ui-priority-primary ui-corner-all' data-handler='hide' data-event='click'>"+this._get(t,"closeText")+"</button>",l=j?"<div class='ui-datepicker-buttonpane ui-widget-content'>"+(Y?h:"")+(this._isInRange(t,r)?"<button type='button' class='ui-datepicker-current ui-state-default ui-priority-secondary ui-corner-all' data-handler='today' data-event='click'>"+a+"</button>":"")+(Y?"":h)+"</div>":"",c=parseInt(this._get(t,"firstDay"),10),c=isNaN(c)?0:c,u=this._get(t,"showWeek"),d=this._get(t,"dayNames"),p=this._get(t,"dayNamesMin"),f=this._get(t,"monthNames"),g=this._get(t,"monthNamesShort"),m=this._get(t,"beforeShowDay"),_=this._get(t,"showOtherMonths"),v=this._get(t,"selectOtherMonths"),b=this._getDefaultDate(t),y="",k=0;U[0]>k;k++){for(x="",this.maxRows=4,C=0;U[1]>C;C++){if(D=this._daylightSavingAdjust(new Date(te,Z,t.selectedDay)),I=" ui-corner-all",T="",X){if(T+="<div class='ui-datepicker-group",U[1]>1)switch(C){case 0:T+=" ui-datepicker-group-first",I=" ui-corner-"+(Y?"right":"left");break;case U[1]-1:T+=" ui-datepicker-group-last",I=" ui-corner-"+(Y?"left":"right");break;default:T+=" ui-datepicker-group-middle",I=""}T+="'>"}for(T+="<div class='ui-datepicker-header ui-widget-header ui-helper-clearfix"+I+"'>"+(/all|left/.test(I)&&0===k?Y?o:s:"")+(/all|right/.test(I)&&0===k?Y?s:o:"")+this._generateMonthYearHeader(t,Z,te,Q,J,k>0||C>0,f,g)+"</div><table class='ui-datepicker-calendar'><thead>"+"<tr>",P=u?"<th class='ui-datepicker-week-col'>"+this._get(t,"weekHeader")+"</th>":"",w=0;7>w;w++)M=(w+c)%7,P+="<th scope='col'"+((w+c+6)%7>=5?" class='ui-datepicker-week-end'":"")+">"+"<span title='"+d[M]+"'>"+p[M]+"</span></th>";for(T+=P+"</tr></thead><tbody>",S=this._getDaysInMonth(te,Z),te===t.selectedYear&&Z===t.selectedMonth&&(t.selectedDay=Math.min(t.selectedDay,S)),H=(this._getFirstDayOfMonth(te,Z)-c+7)%7,z=Math.ceil((H+S)/7),O=X?this.maxRows>z?this.maxRows:z:z,this.maxRows=O,A=this._daylightSavingAdjust(new Date(te,Z,1-H)),N=0;O>N;N++){for(T+="<tr>",W=u?"<td class='ui-datepicker-week-col'>"+this._get(t,"calculateWeek")(A)+"</td>":"",w=0;7>w;w++)E=m?m.apply(t.input?t.input[0]:null,[A]):[!0,""],F=A.getMonth()!==Z,L=F&&!v||!E[0]||Q&&Q>A||J&&A>J,W+="<td class='"+((w+c+6)%7>=5?" ui-datepicker-week-end":"")+(F?" ui-datepicker-other-month":"")+(A.getTime()===D.getTime()&&Z===t.selectedMonth&&t._keyEvent||b.getTime()===A.getTime()&&b.getTime()===D.getTime()?" "+this._dayOverClass:"")+(L?" "+this._unselectableClass+" ui-state-disabled":"")+(F&&!_?"":" "+E[1]+(A.getTime()===G.getTime()?" "+this._currentClass:"")+(A.getTime()===B.getTime()?" ui-datepicker-today":""))+"'"+(F&&!_||!E[2]?"":" title='"+E[2].replace(/'/g,"&#39;")+"'")+(L?"":" data-handler='selectDay' data-event='click' data-month='"+A.getMonth()+"' data-year='"+A.getFullYear()+"'")+">"+(F&&!_?"&#xa0;":L?"<span class='ui-state-default'>"+A.getDate()+"</span>":"<a class='ui-state-default"+(A.getTime()===B.getTime()?" ui-state-highlight":"")+(A.getTime()===G.getTime()?" ui-state-active":"")+(F?" ui-priority-secondary":"")+"' href='#'>"+A.getDate()+"</a>")+"</td>",A.setDate(A.getDate()+1),A=this._daylightSavingAdjust(A);T+=W+"</tr>"}Z++,Z>11&&(Z=0,te++),T+="</tbody></table>"+(X?"</div>"+(U[0]>0&&C===U[1]-1?"<div class='ui-datepicker-row-break'></div>":""):""),x+=T}y+=x}return y+=l,t._keyEvent=!1,y},_generateMonthYearHeader:function(t,e,i,s,n,o,a,r){var h,l,c,u,d,p,f,g,m=this._get(t,"changeMonth"),_=this._get(t,"changeYear"),v=this._get(t,"showMonthAfterYear"),b="<div class='ui-datepicker-title'>",y="";if(o||!m)y+="<span class='ui-datepicker-month'>"+a[e]+"</span>";else{for(h=s&&s.getFullYear()===i,l=n&&n.getFullYear()===i,y+="<select class='ui-datepicker-month' data-handler='selectMonth' data-event='change'>",c=0;12>c;c++)(!h||c>=s.getMonth())&&(!l||n.getMonth()>=c)&&(y+="<option value='"+c+"'"+(c===e?" selected='selected'":"")+">"+r[c]+"</option>");y+="</select>"}if(v||(b+=y+(!o&&m&&_?"":"&#xa0;")),!t.yearshtml)if(t.yearshtml="",o||!_)b+="<span class='ui-datepicker-year'>"+i+"</span>";else{for(u=this._get(t,"yearRange").split(":"),d=(new Date).getFullYear(),p=function(t){var e=t.match(/c[+\-].*/)?i+parseInt(t.substring(1),10):t.match(/[+\-].*/)?d+parseInt(t,10):parseInt(t,10);return isNaN(e)?d:e},f=p(u[0]),g=Math.max(f,p(u[1]||"")),f=s?Math.max(f,s.getFullYear()):f,g=n?Math.min(g,n.getFullYear()):g,t.yearshtml+="<select class='ui-datepicker-year' data-handler='selectYear' data-event='change'>";g>=f;f++)t.yearshtml+="<option value='"+f+"'"+(f===i?" selected='selected'":"")+">"+f+"</option>";t.yearshtml+="</select>",b+=t.yearshtml,t.yearshtml=null}return b+=this._get(t,"yearSuffix"),v&&(b+=(!o&&m&&_?"":"&#xa0;")+y),b+="</div>"},_adjustInstDate:function(t,e,i){var s=t.selectedYear+("Y"===i?e:0),n=t.selectedMonth+("M"===i?e:0),o=Math.min(t.selectedDay,this._getDaysInMonth(s,n))+("D"===i?e:0),a=this._restrictMinMax(t,this._daylightSavingAdjust(new Date(s,n,o)));t.selectedDay=a.getDate(),t.drawMonth=t.selectedMonth=a.getMonth(),t.drawYear=t.selectedYear=a.getFullYear(),("M"===i||"Y"===i)&&this._notifyChange(t)},_restrictMinMax:function(t,e){var i=this._getMinMaxDate(t,"min"),s=this._getMinMaxDate(t,"max"),n=i&&i>e?i:e;return s&&n>s?s:n},_notifyChange:function(t){var e=this._get(t,"onChangeMonthYear");e&&e.apply(t.input?t.input[0]:null,[t.selectedYear,t.selectedMonth+1,t])},_getNumberOfMonths:function(t){var e=this._get(t,"numberOfMonths");return null==e?[1,1]:"number"==typeof e?[1,e]:e},_getMinMaxDate:function(t,e){return this._determineDate(t,this._get(t,e+"Date"),null)},_getDaysInMonth:function(t,e){return 32-this._daylightSavingAdjust(new Date(t,e,32)).getDate()},_getFirstDayOfMonth:function(t,e){return new Date(t,e,1).getDay()},_canAdjustMonth:function(t,e,i,s){var n=this._getNumberOfMonths(t),o=this._daylightSavingAdjust(new Date(i,s+(0>e?e:n[0]*n[1]),1));return 0>e&&o.setDate(this._getDaysInMonth(o.getFullYear(),o.getMonth())),this._isInRange(t,o)},_isInRange:function(t,e){var i,s,n=this._getMinMaxDate(t,"min"),o=this._getMinMaxDate(t,"max"),a=null,r=null,h=this._get(t,"yearRange");return h&&(i=h.split(":"),s=(new Date).getFullYear(),a=parseInt(i[0],10),r=parseInt(i[1],10),i[0].match(/[+\-].*/)&&(a+=s),i[1].match(/[+\-].*/)&&(r+=s)),(!n||e.getTime()>=n.getTime())&&(!o||e.getTime()<=o.getTime())&&(!a||e.getFullYear()>=a)&&(!r||r>=e.getFullYear())},_getFormatConfig:function(t){var e=this._get(t,"shortYearCutoff");return e="string"!=typeof e?e:(new Date).getFullYear()%100+parseInt(e,10),{shortYearCutoff:e,dayNamesShort:this._get(t,"dayNamesShort"),dayNames:this._get(t,"dayNames"),monthNamesShort:this._get(t,"monthNamesShort"),monthNames:this._get(t,"monthNames")}},_formatDate:function(t,e,i,s){e||(t.currentDay=t.selectedDay,t.currentMonth=t.selectedMonth,t.currentYear=t.selectedYear);var n=e?"object"==typeof e?e:this._daylightSavingAdjust(new Date(s,i,e)):this._daylightSavingAdjust(new Date(t.currentYear,t.currentMonth,t.currentDay));return this.formatDate(this._get(t,"dateFormat"),n,this._getFormatConfig(t))}}),t.fn.datepicker=function(e){if(!this.length)return this;t.datepicker.initialized||(t(document).on("mousedown",t.datepicker._checkExternalClick),t.datepicker.initialized=!0),0===t("#"+t.datepicker._mainDivId).length&&t("body").append(t.datepicker.dpDiv);var i=Array.prototype.slice.call(arguments,1);return"string"!=typeof e||"isDisabled"!==e&&"getDate"!==e&&"widget"!==e?"option"===e&&2===arguments.length&&"string"==typeof arguments[1]?t.datepicker["_"+e+"Datepicker"].apply(t.datepicker,[this[0]].concat(i)):this.each(function(){"string"==typeof e?t.datepicker["_"+e+"Datepicker"].apply(t.datepicker,[this].concat(i)):t.datepicker._attachDatepicker(this,e)}):t.datepicker["_"+e+"Datepicker"].apply(t.datepicker,[this[0]].concat(i))},t.datepicker=new s,t.datepicker.initialized=!1,t.datepicker.uuid=(new Date).getTime(),t.datepicker.version="1.12.1",t.datepicker,t.ui.ie=!!/msie [\w.]+/.exec(navigator.userAgent.toLowerCase());var _=!1;t(document).on("mouseup",function(){_=!1}),t.widget("ui.mouse",{version:"1.12.1",options:{cancel:"input, textarea, button, select, option",distance:1,delay:0},_mouseInit:function(){var e=this;this.element.on("mousedown."+this.widgetName,function(t){return e._mouseDown(t)}).on("click."+this.widgetName,function(i){return!0===t.data(i.target,e.widgetName+".preventClickEvent")?(t.removeData(i.target,e.widgetName+".preventClickEvent"),i.stopImmediatePropagation(),!1):void 0}),this.started=!1},_mouseDestroy:function(){this.element.off("."+this.widgetName),this._mouseMoveDelegate&&this.document.off("mousemove."+this.widgetName,this._mouseMoveDelegate).off("mouseup."+this.widgetName,this._mouseUpDelegate)},_mouseDown:function(e){if(!_){this._mouseMoved=!1,this._mouseStarted&&this._mouseUp(e),this._mouseDownEvent=e;var i=this,s=1===e.which,n="string"==typeof this.options.cancel&&e.target.nodeName?t(e.target).closest(this.options.cancel).length:!1;return s&&!n&&this._mouseCapture(e)?(this.mouseDelayMet=!this.options.delay,this.mouseDelayMet||(this._mouseDelayTimer=setTimeout(function(){i.mouseDelayMet=!0},this.options.delay)),this._mouseDistanceMet(e)&&this._mouseDelayMet(e)&&(this._mouseStarted=this._mouseStart(e)!==!1,!this._mouseStarted)?(e.preventDefault(),!0):(!0===t.data(e.target,this.widgetName+".preventClickEvent")&&t.removeData(e.target,this.widgetName+".preventClickEvent"),this._mouseMoveDelegate=function(t){return i._mouseMove(t)},this._mouseUpDelegate=function(t){return i._mouseUp(t)},this.document.on("mousemove."+this.widgetName,this._mouseMoveDelegate).on("mouseup."+this.widgetName,this._mouseUpDelegate),e.preventDefault(),_=!0,!0)):!0}},_mouseMove:function(e){if(this._mouseMoved){if(t.ui.ie&&(!document.documentMode||9>document.documentMode)&&!e.button)return this._mouseUp(e);if(!e.which)if(e.originalEvent.altKey||e.originalEvent.ctrlKey||e.originalEvent.metaKey||e.originalEvent.shiftKey)this.ignoreMissingWhich=!0;else if(!this.ignoreMissingWhich)return this._mouseUp(e)}return(e.which||e.button)&&(this._mouseMoved=!0),this._mouseStarted?(this._mouseDrag(e),e.preventDefault()):(this._mouseDistanceMet(e)&&this._mouseDelayMet(e)&&(this._mouseStarted=this._mouseStart(this._mouseDownEvent,e)!==!1,this._mouseStarted?this._mouseDrag(e):this._mouseUp(e)),!this._mouseStarted)},_mouseUp:function(e){this.document.off("mousemove."+this.widgetName,this._mouseMoveDelegate).off("mouseup."+this.widgetName,this._mouseUpDelegate),this._mouseStarted&&(this._mouseStarted=!1,e.target===this._mouseDownEvent.target&&t.data(e.target,this.widgetName+".preventClickEvent",!0),this._mouseStop(e)),this._mouseDelayTimer&&(clearTimeout(this._mouseDelayTimer),delete this._mouseDelayTimer),this.ignoreMissingWhich=!1,_=!1,e.preventDefault()},_mouseDistanceMet:function(t){return Math.max(Math.abs(this._mouseDownEvent.pageX-t.pageX),Math.abs(this._mouseDownEvent.pageY-t.pageY))>=this.options.distance},_mouseDelayMet:function(){return this.mouseDelayMet},_mouseStart:function(){},_mouseDrag:function(){},_mouseStop:function(){},_mouseCapture:function(){return!0}}),t.ui.plugin={add:function(e,i,s){var n,o=t.ui[e].prototype;for(n in s)o.plugins[n]=o.plugins[n]||[],o.plugins[n].push([i,s[n]])},call:function(t,e,i,s){var n,o=t.plugins[e];if(o&&(s||t.element[0].parentNode&&11!==t.element[0].parentNode.nodeType))for(n=0;o.length>n;n++)t.options[o[n][0]]&&o[n][1].apply(t.element,i)}},t.ui.safeBlur=function(e){e&&"body"!==e.nodeName.toLowerCase()&&t(e).trigger("blur")},t.widget("ui.draggable",t.ui.mouse,{version:"1.12.1",widgetEventPrefix:"drag",options:{addClasses:!0,appendTo:"parent",axis:!1,connectToSortable:!1,containment:!1,cursor:"auto",cursorAt:!1,grid:!1,handle:!1,helper:"original",iframeFix:!1,opacity:!1,refreshPositions:!1,revert:!1,revertDuration:500,scope:"default",scroll:!0,scrollSensitivity:20,scrollSpeed:20,snap:!1,snapMode:"both",snapTolerance:20,stack:!1,zIndex:!1,drag:null,start:null,stop:null},_create:function(){"original"===this.options.helper&&this._setPositionRelative(),this.options.addClasses&&this._addClass("ui-draggable"),this._setHandleClassName(),this._mouseInit()},_setOption:function(t,e){this._super(t,e),"handle"===t&&(this._removeHandleClassName(),this._setHandleClassName())},_destroy:function(){return(this.helper||this.element).is(".ui-draggable-dragging")?(this.destroyOnClear=!0,void 0):(this._removeHandleClassName(),this._mouseDestroy(),void 0)},_mouseCapture:function(e){var i=this.options;return this.helper||i.disabled||t(e.target).closest(".ui-resizable-handle").length>0?!1:(this.handle=this._getHandle(e),this.handle?(this._blurActiveElement(e),this._blockFrames(i.iframeFix===!0?"iframe":i.iframeFix),!0):!1)},_blockFrames:function(e){this.iframeBlocks=this.document.find(e).map(function(){var e=t(this);return t("<div>").css("position","absolute").appendTo(e.parent()).outerWidth(e.outerWidth()).outerHeight(e.outerHeight()).offset(e.offset())[0]})},_unblockFrames:function(){this.iframeBlocks&&(this.iframeBlocks.remove(),delete this.iframeBlocks)},_blurActiveElement:function(e){var i=t.ui.safeActiveElement(this.document[0]),s=t(e.target);s.closest(i).length||t.ui.safeBlur(i)},_mouseStart:function(e){var i=this.options;return this.helper=this._createHelper(e),this._addClass(this.helper,"ui-draggable-dragging"),this._cacheHelperProportions(),t.ui.ddmanager&&(t.ui.ddmanager.current=this),this._cacheMargins(),this.cssPosition=this.helper.css("position"),this.scrollParent=this.helper.scrollParent(!0),this.offsetParent=this.helper.offsetParent(),this.hasFixedAncestor=this.helper.parents().filter(function(){return"fixed"===t(this).css("position")}).length>0,this.positionAbs=this.element.offset(),this._refreshOffsets(e),this.originalPosition=this.position=this._generatePosition(e,!1),this.originalPageX=e.pageX,this.originalPageY=e.pageY,i.cursorAt&&this._adjustOffsetFromHelper(i.cursorAt),this._setContainment(),this._trigger("start",e)===!1?(this._clear(),!1):(this._cacheHelperProportions(),t.ui.ddmanager&&!i.dropBehaviour&&t.ui.ddmanager.prepareOffsets(this,e),this._mouseDrag(e,!0),t.ui.ddmanager&&t.ui.ddmanager.dragStart(this,e),!0)},_refreshOffsets:function(t){this.offset={top:this.positionAbs.top-this.margins.top,left:this.positionAbs.left-this.margins.left,scroll:!1,parent:this._getParentOffset(),relative:this._getRelativeOffset()},this.offset.click={left:t.pageX-this.offset.left,top:t.pageY-this.offset.top}},_mouseDrag:function(e,i){if(this.hasFixedAncestor&&(this.offset.parent=this._getParentOffset()),this.position=this._generatePosition(e,!0),this.positionAbs=this._convertPositionTo("absolute"),!i){var s=this._uiHash();if(this._trigger("drag",e,s)===!1)return this._mouseUp(new t.Event("mouseup",e)),!1;this.position=s.position}return this.helper[0].style.left=this.position.left+"px",this.helper[0].style.top=this.position.top+"px",t.ui.ddmanager&&t.ui.ddmanager.drag(this,e),!1},_mouseStop:function(e){var i=this,s=!1;return t.ui.ddmanager&&!this.options.dropBehaviour&&(s=t.ui.ddmanager.drop(this,e)),this.dropped&&(s=this.dropped,this.dropped=!1),"invalid"===this.options.revert&&!s||"valid"===this.options.revert&&s||this.options.revert===!0||t.isFunction(this.options.revert)&&this.options.revert.call(this.element,s)?t(this.helper).animate(this.originalPosition,parseInt(this.options.revertDuration,10),function(){i._trigger("stop",e)!==!1&&i._clear()}):this._trigger("stop",e)!==!1&&this._clear(),!1},_mouseUp:function(e){return this._unblockFrames(),t.ui.ddmanager&&t.ui.ddmanager.dragStop(this,e),this.handleElement.is(e.target)&&this.element.trigger("focus"),t.ui.mouse.prototype._mouseUp.call(this,e)},cancel:function(){return this.helper.is(".ui-draggable-dragging")?this._mouseUp(new t.Event("mouseup",{target:this.element[0]})):this._clear(),this},_getHandle:function(e){return this.options.handle?!!t(e.target).closest(this.element.find(this.options.handle)).length:!0},_setHandleClassName:function(){this.handleElement=this.options.handle?this.element.find(this.options.handle):this.element,this._addClass(this.handleElement,"ui-draggable-handle")},_removeHandleClassName:function(){this._removeClass(this.handleElement,"ui-draggable-handle")},_createHelper:function(e){var i=this.options,s=t.isFunction(i.helper),n=s?t(i.helper.apply(this.element[0],[e])):"clone"===i.helper?this.element.clone().removeAttr("id"):this.element;return n.parents("body").length||n.appendTo("parent"===i.appendTo?this.element[0].parentNode:i.appendTo),s&&n[0]===this.element[0]&&this._setPositionRelative(),n[0]===this.element[0]||/(fixed|absolute)/.test(n.css("position"))||n.css("position","absolute"),n},_setPositionRelative:function(){/^(?:r|a|f)/.test(this.element.css("position"))||(this.element[0].style.position="relative")},_adjustOffsetFromHelper:function(e){"string"==typeof e&&(e=e.split(" ")),t.isArray(e)&&(e={left:+e[0],top:+e[1]||0}),"left"in e&&(this.offset.click.left=e.left+this.margins.left),"right"in e&&(this.offset.click.left=this.helperProportions.width-e.right+this.margins.left),"top"in e&&(this.offset.click.top=e.top+this.margins.top),"bottom"in e&&(this.offset.click.top=this.helperProportions.height-e.bottom+this.margins.top)},_isRootNode:function(t){return/(html|body)/i.test(t.tagName)||t===this.document[0]},_getParentOffset:function(){var e=this.offsetParent.offset(),i=this.document[0];return"absolute"===this.cssPosition&&this.scrollParent[0]!==i&&t.contains(this.scrollParent[0],this.offsetParent[0])&&(e.left+=this.scrollParent.scrollLeft(),e.top+=this.scrollParent.scrollTop()),this._isRootNode(this.offsetParent[0])&&(e={top:0,left:0}),{top:e.top+(parseInt(this.offsetParent.css("borderTopWidth"),10)||0),left:e.left+(parseInt(this.offsetParent.css("borderLeftWidth"),10)||0)}},_getRelativeOffset:function(){if("relative"!==this.cssPosition)return{top:0,left:0};var t=this.element.position(),e=this._isRootNode(this.scrollParent[0]);return{top:t.top-(parseInt(this.helper.css("top"),10)||0)+(e?0:this.scrollParent.scrollTop()),left:t.left-(parseInt(this.helper.css("left"),10)||0)+(e?0:this.scrollParent.scrollLeft())}
-},_cacheMargins:function(){this.margins={left:parseInt(this.element.css("marginLeft"),10)||0,top:parseInt(this.element.css("marginTop"),10)||0,right:parseInt(this.element.css("marginRight"),10)||0,bottom:parseInt(this.element.css("marginBottom"),10)||0}},_cacheHelperProportions:function(){this.helperProportions={width:this.helper.outerWidth(),height:this.helper.outerHeight()}},_setContainment:function(){var e,i,s,n=this.options,o=this.document[0];return this.relativeContainer=null,n.containment?"window"===n.containment?(this.containment=[t(window).scrollLeft()-this.offset.relative.left-this.offset.parent.left,t(window).scrollTop()-this.offset.relative.top-this.offset.parent.top,t(window).scrollLeft()+t(window).width()-this.helperProportions.width-this.margins.left,t(window).scrollTop()+(t(window).height()||o.body.parentNode.scrollHeight)-this.helperProportions.height-this.margins.top],void 0):"document"===n.containment?(this.containment=[0,0,t(o).width()-this.helperProportions.width-this.margins.left,(t(o).height()||o.body.parentNode.scrollHeight)-this.helperProportions.height-this.margins.top],void 0):n.containment.constructor===Array?(this.containment=n.containment,void 0):("parent"===n.containment&&(n.containment=this.helper[0].parentNode),i=t(n.containment),s=i[0],s&&(e=/(scroll|auto)/.test(i.css("overflow")),this.containment=[(parseInt(i.css("borderLeftWidth"),10)||0)+(parseInt(i.css("paddingLeft"),10)||0),(parseInt(i.css("borderTopWidth"),10)||0)+(parseInt(i.css("paddingTop"),10)||0),(e?Math.max(s.scrollWidth,s.offsetWidth):s.offsetWidth)-(parseInt(i.css("borderRightWidth"),10)||0)-(parseInt(i.css("paddingRight"),10)||0)-this.helperProportions.width-this.margins.left-this.margins.right,(e?Math.max(s.scrollHeight,s.offsetHeight):s.offsetHeight)-(parseInt(i.css("borderBottomWidth"),10)||0)-(parseInt(i.css("paddingBottom"),10)||0)-this.helperProportions.height-this.margins.top-this.margins.bottom],this.relativeContainer=i),void 0):(this.containment=null,void 0)},_convertPositionTo:function(t,e){e||(e=this.position);var i="absolute"===t?1:-1,s=this._isRootNode(this.scrollParent[0]);return{top:e.top+this.offset.relative.top*i+this.offset.parent.top*i-("fixed"===this.cssPosition?-this.offset.scroll.top:s?0:this.offset.scroll.top)*i,left:e.left+this.offset.relative.left*i+this.offset.parent.left*i-("fixed"===this.cssPosition?-this.offset.scroll.left:s?0:this.offset.scroll.left)*i}},_generatePosition:function(t,e){var i,s,n,o,a=this.options,r=this._isRootNode(this.scrollParent[0]),h=t.pageX,l=t.pageY;return r&&this.offset.scroll||(this.offset.scroll={top:this.scrollParent.scrollTop(),left:this.scrollParent.scrollLeft()}),e&&(this.containment&&(this.relativeContainer?(s=this.relativeContainer.offset(),i=[this.containment[0]+s.left,this.containment[1]+s.top,this.containment[2]+s.left,this.containment[3]+s.top]):i=this.containment,t.pageX-this.offset.click.left<i[0]&&(h=i[0]+this.offset.click.left),t.pageY-this.offset.click.top<i[1]&&(l=i[1]+this.offset.click.top),t.pageX-this.offset.click.left>i[2]&&(h=i[2]+this.offset.click.left),t.pageY-this.offset.click.top>i[3]&&(l=i[3]+this.offset.click.top)),a.grid&&(n=a.grid[1]?this.originalPageY+Math.round((l-this.originalPageY)/a.grid[1])*a.grid[1]:this.originalPageY,l=i?n-this.offset.click.top>=i[1]||n-this.offset.click.top>i[3]?n:n-this.offset.click.top>=i[1]?n-a.grid[1]:n+a.grid[1]:n,o=a.grid[0]?this.originalPageX+Math.round((h-this.originalPageX)/a.grid[0])*a.grid[0]:this.originalPageX,h=i?o-this.offset.click.left>=i[0]||o-this.offset.click.left>i[2]?o:o-this.offset.click.left>=i[0]?o-a.grid[0]:o+a.grid[0]:o),"y"===a.axis&&(h=this.originalPageX),"x"===a.axis&&(l=this.originalPageY)),{top:l-this.offset.click.top-this.offset.relative.top-this.offset.parent.top+("fixed"===this.cssPosition?-this.offset.scroll.top:r?0:this.offset.scroll.top),left:h-this.offset.click.left-this.offset.relative.left-this.offset.parent.left+("fixed"===this.cssPosition?-this.offset.scroll.left:r?0:this.offset.scroll.left)}},_clear:function(){this._removeClass(this.helper,"ui-draggable-dragging"),this.helper[0]===this.element[0]||this.cancelHelperRemoval||this.helper.remove(),this.helper=null,this.cancelHelperRemoval=!1,this.destroyOnClear&&this.destroy()},_trigger:function(e,i,s){return s=s||this._uiHash(),t.ui.plugin.call(this,e,[i,s,this],!0),/^(drag|start|stop)/.test(e)&&(this.positionAbs=this._convertPositionTo("absolute"),s.offset=this.positionAbs),t.Widget.prototype._trigger.call(this,e,i,s)},plugins:{},_uiHash:function(){return{helper:this.helper,position:this.position,originalPosition:this.originalPosition,offset:this.positionAbs}}}),t.ui.plugin.add("draggable","connectToSortable",{start:function(e,i,s){var n=t.extend({},i,{item:s.element});s.sortables=[],t(s.options.connectToSortable).each(function(){var i=t(this).sortable("instance");i&&!i.options.disabled&&(s.sortables.push(i),i.refreshPositions(),i._trigger("activate",e,n))})},stop:function(e,i,s){var n=t.extend({},i,{item:s.element});s.cancelHelperRemoval=!1,t.each(s.sortables,function(){var t=this;t.isOver?(t.isOver=0,s.cancelHelperRemoval=!0,t.cancelHelperRemoval=!1,t._storedCSS={position:t.placeholder.css("position"),top:t.placeholder.css("top"),left:t.placeholder.css("left")},t._mouseStop(e),t.options.helper=t.options._helper):(t.cancelHelperRemoval=!0,t._trigger("deactivate",e,n))})},drag:function(e,i,s){t.each(s.sortables,function(){var n=!1,o=this;o.positionAbs=s.positionAbs,o.helperProportions=s.helperProportions,o.offset.click=s.offset.click,o._intersectsWith(o.containerCache)&&(n=!0,t.each(s.sortables,function(){return this.positionAbs=s.positionAbs,this.helperProportions=s.helperProportions,this.offset.click=s.offset.click,this!==o&&this._intersectsWith(this.containerCache)&&t.contains(o.element[0],this.element[0])&&(n=!1),n})),n?(o.isOver||(o.isOver=1,s._parent=i.helper.parent(),o.currentItem=i.helper.appendTo(o.element).data("ui-sortable-item",!0),o.options._helper=o.options.helper,o.options.helper=function(){return i.helper[0]},e.target=o.currentItem[0],o._mouseCapture(e,!0),o._mouseStart(e,!0,!0),o.offset.click.top=s.offset.click.top,o.offset.click.left=s.offset.click.left,o.offset.parent.left-=s.offset.parent.left-o.offset.parent.left,o.offset.parent.top-=s.offset.parent.top-o.offset.parent.top,s._trigger("toSortable",e),s.dropped=o.element,t.each(s.sortables,function(){this.refreshPositions()}),s.currentItem=s.element,o.fromOutside=s),o.currentItem&&(o._mouseDrag(e),i.position=o.position)):o.isOver&&(o.isOver=0,o.cancelHelperRemoval=!0,o.options._revert=o.options.revert,o.options.revert=!1,o._trigger("out",e,o._uiHash(o)),o._mouseStop(e,!0),o.options.revert=o.options._revert,o.options.helper=o.options._helper,o.placeholder&&o.placeholder.remove(),i.helper.appendTo(s._parent),s._refreshOffsets(e),i.position=s._generatePosition(e,!0),s._trigger("fromSortable",e),s.dropped=!1,t.each(s.sortables,function(){this.refreshPositions()}))})}}),t.ui.plugin.add("draggable","cursor",{start:function(e,i,s){var n=t("body"),o=s.options;n.css("cursor")&&(o._cursor=n.css("cursor")),n.css("cursor",o.cursor)},stop:function(e,i,s){var n=s.options;n._cursor&&t("body").css("cursor",n._cursor)}}),t.ui.plugin.add("draggable","opacity",{start:function(e,i,s){var n=t(i.helper),o=s.options;n.css("opacity")&&(o._opacity=n.css("opacity")),n.css("opacity",o.opacity)},stop:function(e,i,s){var n=s.options;n._opacity&&t(i.helper).css("opacity",n._opacity)}}),t.ui.plugin.add("draggable","scroll",{start:function(t,e,i){i.scrollParentNotHidden||(i.scrollParentNotHidden=i.helper.scrollParent(!1)),i.scrollParentNotHidden[0]!==i.document[0]&&"HTML"!==i.scrollParentNotHidden[0].tagName&&(i.overflowOffset=i.scrollParentNotHidden.offset())},drag:function(e,i,s){var n=s.options,o=!1,a=s.scrollParentNotHidden[0],r=s.document[0];a!==r&&"HTML"!==a.tagName?(n.axis&&"x"===n.axis||(s.overflowOffset.top+a.offsetHeight-e.pageY<n.scrollSensitivity?a.scrollTop=o=a.scrollTop+n.scrollSpeed:e.pageY-s.overflowOffset.top<n.scrollSensitivity&&(a.scrollTop=o=a.scrollTop-n.scrollSpeed)),n.axis&&"y"===n.axis||(s.overflowOffset.left+a.offsetWidth-e.pageX<n.scrollSensitivity?a.scrollLeft=o=a.scrollLeft+n.scrollSpeed:e.pageX-s.overflowOffset.left<n.scrollSensitivity&&(a.scrollLeft=o=a.scrollLeft-n.scrollSpeed))):(n.axis&&"x"===n.axis||(e.pageY-t(r).scrollTop()<n.scrollSensitivity?o=t(r).scrollTop(t(r).scrollTop()-n.scrollSpeed):t(window).height()-(e.pageY-t(r).scrollTop())<n.scrollSensitivity&&(o=t(r).scrollTop(t(r).scrollTop()+n.scrollSpeed))),n.axis&&"y"===n.axis||(e.pageX-t(r).scrollLeft()<n.scrollSensitivity?o=t(r).scrollLeft(t(r).scrollLeft()-n.scrollSpeed):t(window).width()-(e.pageX-t(r).scrollLeft())<n.scrollSensitivity&&(o=t(r).scrollLeft(t(r).scrollLeft()+n.scrollSpeed)))),o!==!1&&t.ui.ddmanager&&!n.dropBehaviour&&t.ui.ddmanager.prepareOffsets(s,e)}}),t.ui.plugin.add("draggable","snap",{start:function(e,i,s){var n=s.options;s.snapElements=[],t(n.snap.constructor!==String?n.snap.items||":data(ui-draggable)":n.snap).each(function(){var e=t(this),i=e.offset();this!==s.element[0]&&s.snapElements.push({item:this,width:e.outerWidth(),height:e.outerHeight(),top:i.top,left:i.left})})},drag:function(e,i,s){var n,o,a,r,h,l,c,u,d,p,f=s.options,g=f.snapTolerance,m=i.offset.left,_=m+s.helperProportions.width,v=i.offset.top,b=v+s.helperProportions.height;for(d=s.snapElements.length-1;d>=0;d--)h=s.snapElements[d].left-s.margins.left,l=h+s.snapElements[d].width,c=s.snapElements[d].top-s.margins.top,u=c+s.snapElements[d].height,h-g>_||m>l+g||c-g>b||v>u+g||!t.contains(s.snapElements[d].item.ownerDocument,s.snapElements[d].item)?(s.snapElements[d].snapping&&s.options.snap.release&&s.options.snap.release.call(s.element,e,t.extend(s._uiHash(),{snapItem:s.snapElements[d].item})),s.snapElements[d].snapping=!1):("inner"!==f.snapMode&&(n=g>=Math.abs(c-b),o=g>=Math.abs(u-v),a=g>=Math.abs(h-_),r=g>=Math.abs(l-m),n&&(i.position.top=s._convertPositionTo("relative",{top:c-s.helperProportions.height,left:0}).top),o&&(i.position.top=s._convertPositionTo("relative",{top:u,left:0}).top),a&&(i.position.left=s._convertPositionTo("relative",{top:0,left:h-s.helperProportions.width}).left),r&&(i.position.left=s._convertPositionTo("relative",{top:0,left:l}).left)),p=n||o||a||r,"outer"!==f.snapMode&&(n=g>=Math.abs(c-v),o=g>=Math.abs(u-b),a=g>=Math.abs(h-m),r=g>=Math.abs(l-_),n&&(i.position.top=s._convertPositionTo("relative",{top:c,left:0}).top),o&&(i.position.top=s._convertPositionTo("relative",{top:u-s.helperProportions.height,left:0}).top),a&&(i.position.left=s._convertPositionTo("relative",{top:0,left:h}).left),r&&(i.position.left=s._convertPositionTo("relative",{top:0,left:l-s.helperProportions.width}).left)),!s.snapElements[d].snapping&&(n||o||a||r||p)&&s.options.snap.snap&&s.options.snap.snap.call(s.element,e,t.extend(s._uiHash(),{snapItem:s.snapElements[d].item})),s.snapElements[d].snapping=n||o||a||r||p)}}),t.ui.plugin.add("draggable","stack",{start:function(e,i,s){var n,o=s.options,a=t.makeArray(t(o.stack)).sort(function(e,i){return(parseInt(t(e).css("zIndex"),10)||0)-(parseInt(t(i).css("zIndex"),10)||0)});a.length&&(n=parseInt(t(a[0]).css("zIndex"),10)||0,t(a).each(function(e){t(this).css("zIndex",n+e)}),this.css("zIndex",n+a.length))}}),t.ui.plugin.add("draggable","zIndex",{start:function(e,i,s){var n=t(i.helper),o=s.options;n.css("zIndex")&&(o._zIndex=n.css("zIndex")),n.css("zIndex",o.zIndex)},stop:function(e,i,s){var n=s.options;n._zIndex&&t(i.helper).css("zIndex",n._zIndex)}}),t.ui.draggable,t.widget("ui.resizable",t.ui.mouse,{version:"1.12.1",widgetEventPrefix:"resize",options:{alsoResize:!1,animate:!1,animateDuration:"slow",animateEasing:"swing",aspectRatio:!1,autoHide:!1,classes:{"ui-resizable-se":"ui-icon ui-icon-gripsmall-diagonal-se"},containment:!1,ghost:!1,grid:!1,handles:"e,s,se",helper:!1,maxHeight:null,maxWidth:null,minHeight:10,minWidth:10,zIndex:90,resize:null,start:null,stop:null},_num:function(t){return parseFloat(t)||0},_isNumber:function(t){return!isNaN(parseFloat(t))},_hasScroll:function(e,i){if("hidden"===t(e).css("overflow"))return!1;var s=i&&"left"===i?"scrollLeft":"scrollTop",n=!1;return e[s]>0?!0:(e[s]=1,n=e[s]>0,e[s]=0,n)},_create:function(){var e,i=this.options,s=this;this._addClass("ui-resizable"),t.extend(this,{_aspectRatio:!!i.aspectRatio,aspectRatio:i.aspectRatio,originalElement:this.element,_proportionallyResizeElements:[],_helper:i.helper||i.ghost||i.animate?i.helper||"ui-resizable-helper":null}),this.element[0].nodeName.match(/^(canvas|textarea|input|select|button|img)$/i)&&(this.element.wrap(t("<div class='ui-wrapper' style='overflow: hidden;'></div>").css({position:this.element.css("position"),width:this.element.outerWidth(),height:this.element.outerHeight(),top:this.element.css("top"),left:this.element.css("left")})),this.element=this.element.parent().data("ui-resizable",this.element.resizable("instance")),this.elementIsWrapper=!0,e={marginTop:this.originalElement.css("marginTop"),marginRight:this.originalElement.css("marginRight"),marginBottom:this.originalElement.css("marginBottom"),marginLeft:this.originalElement.css("marginLeft")},this.element.css(e),this.originalElement.css("margin",0),this.originalResizeStyle=this.originalElement.css("resize"),this.originalElement.css("resize","none"),this._proportionallyResizeElements.push(this.originalElement.css({position:"static",zoom:1,display:"block"})),this.originalElement.css(e),this._proportionallyResize()),this._setupHandles(),i.autoHide&&t(this.element).on("mouseenter",function(){i.disabled||(s._removeClass("ui-resizable-autohide"),s._handles.show())}).on("mouseleave",function(){i.disabled||s.resizing||(s._addClass("ui-resizable-autohide"),s._handles.hide())}),this._mouseInit()},_destroy:function(){this._mouseDestroy();var e,i=function(e){t(e).removeData("resizable").removeData("ui-resizable").off(".resizable").find(".ui-resizable-handle").remove()};return this.elementIsWrapper&&(i(this.element),e=this.element,this.originalElement.css({position:e.css("position"),width:e.outerWidth(),height:e.outerHeight(),top:e.css("top"),left:e.css("left")}).insertAfter(e),e.remove()),this.originalElement.css("resize",this.originalResizeStyle),i(this.originalElement),this},_setOption:function(t,e){switch(this._super(t,e),t){case"handles":this._removeHandles(),this._setupHandles();break;default:}},_setupHandles:function(){var e,i,s,n,o,a=this.options,r=this;if(this.handles=a.handles||(t(".ui-resizable-handle",this.element).length?{n:".ui-resizable-n",e:".ui-resizable-e",s:".ui-resizable-s",w:".ui-resizable-w",se:".ui-resizable-se",sw:".ui-resizable-sw",ne:".ui-resizable-ne",nw:".ui-resizable-nw"}:"e,s,se"),this._handles=t(),this.handles.constructor===String)for("all"===this.handles&&(this.handles="n,e,s,w,se,sw,ne,nw"),s=this.handles.split(","),this.handles={},i=0;s.length>i;i++)e=t.trim(s[i]),n="ui-resizable-"+e,o=t("<div>"),this._addClass(o,"ui-resizable-handle "+n),o.css({zIndex:a.zIndex}),this.handles[e]=".ui-resizable-"+e,this.element.append(o);this._renderAxis=function(e){var i,s,n,o;e=e||this.element;for(i in this.handles)this.handles[i].constructor===String?this.handles[i]=this.element.children(this.handles[i]).first().show():(this.handles[i].jquery||this.handles[i].nodeType)&&(this.handles[i]=t(this.handles[i]),this._on(this.handles[i],{mousedown:r._mouseDown})),this.elementIsWrapper&&this.originalElement[0].nodeName.match(/^(textarea|input|select|button)$/i)&&(s=t(this.handles[i],this.element),o=/sw|ne|nw|se|n|s/.test(i)?s.outerHeight():s.outerWidth(),n=["padding",/ne|nw|n/.test(i)?"Top":/se|sw|s/.test(i)?"Bottom":/^e$/.test(i)?"Right":"Left"].join(""),e.css(n,o),this._proportionallyResize()),this._handles=this._handles.add(this.handles[i])},this._renderAxis(this.element),this._handles=this._handles.add(this.element.find(".ui-resizable-handle")),this._handles.disableSelection(),this._handles.on("mouseover",function(){r.resizing||(this.className&&(o=this.className.match(/ui-resizable-(se|sw|ne|nw|n|e|s|w)/i)),r.axis=o&&o[1]?o[1]:"se")}),a.autoHide&&(this._handles.hide(),this._addClass("ui-resizable-autohide"))},_removeHandles:function(){this._handles.remove()},_mouseCapture:function(e){var i,s,n=!1;for(i in this.handles)s=t(this.handles[i])[0],(s===e.target||t.contains(s,e.target))&&(n=!0);return!this.options.disabled&&n},_mouseStart:function(e){var i,s,n,o=this.options,a=this.element;return this.resizing=!0,this._renderProxy(),i=this._num(this.helper.css("left")),s=this._num(this.helper.css("top")),o.containment&&(i+=t(o.containment).scrollLeft()||0,s+=t(o.containment).scrollTop()||0),this.offset=this.helper.offset(),this.position={left:i,top:s},this.size=this._helper?{width:this.helper.width(),height:this.helper.height()}:{width:a.width(),height:a.height()},this.originalSize=this._helper?{width:a.outerWidth(),height:a.outerHeight()}:{width:a.width(),height:a.height()},this.sizeDiff={width:a.outerWidth()-a.width(),height:a.outerHeight()-a.height()},this.originalPosition={left:i,top:s},this.originalMousePosition={left:e.pageX,top:e.pageY},this.aspectRatio="number"==typeof o.aspectRatio?o.aspectRatio:this.originalSize.width/this.originalSize.height||1,n=t(".ui-resizable-"+this.axis).css("cursor"),t("body").css("cursor","auto"===n?this.axis+"-resize":n),this._addClass("ui-resizable-resizing"),this._propagate("start",e),!0},_mouseDrag:function(e){var i,s,n=this.originalMousePosition,o=this.axis,a=e.pageX-n.left||0,r=e.pageY-n.top||0,h=this._change[o];return this._updatePrevProperties(),h?(i=h.apply(this,[e,a,r]),this._updateVirtualBoundaries(e.shiftKey),(this._aspectRatio||e.shiftKey)&&(i=this._updateRatio(i,e)),i=this._respectSize(i,e),this._updateCache(i),this._propagate("resize",e),s=this._applyChanges(),!this._helper&&this._proportionallyResizeElements.length&&this._proportionallyResize(),t.isEmptyObject(s)||(this._updatePrevProperties(),this._trigger("resize",e,this.ui()),this._applyChanges()),!1):!1},_mouseStop:function(e){this.resizing=!1;var i,s,n,o,a,r,h,l=this.options,c=this;return this._helper&&(i=this._proportionallyResizeElements,s=i.length&&/textarea/i.test(i[0].nodeName),n=s&&this._hasScroll(i[0],"left")?0:c.sizeDiff.height,o=s?0:c.sizeDiff.width,a={width:c.helper.width()-o,height:c.helper.height()-n},r=parseFloat(c.element.css("left"))+(c.position.left-c.originalPosition.left)||null,h=parseFloat(c.element.css("top"))+(c.position.top-c.originalPosition.top)||null,l.animate||this.element.css(t.extend(a,{top:h,left:r})),c.helper.height(c.size.height),c.helper.width(c.size.width),this._helper&&!l.animate&&this._proportionallyResize()),t("body").css("cursor","auto"),this._removeClass("ui-resizable-resizing"),this._propagate("stop",e),this._helper&&this.helper.remove(),!1},_updatePrevProperties:function(){this.prevPosition={top:this.position.top,left:this.position.left},this.prevSize={width:this.size.width,height:this.size.height}},_applyChanges:function(){var t={};return this.position.top!==this.prevPosition.top&&(t.top=this.position.top+"px"),this.position.left!==this.prevPosition.left&&(t.left=this.position.left+"px"),this.size.width!==this.prevSize.width&&(t.width=this.size.width+"px"),this.size.height!==this.prevSize.height&&(t.height=this.size.height+"px"),this.helper.css(t),t},_updateVirtualBoundaries:function(t){var e,i,s,n,o,a=this.options;o={minWidth:this._isNumber(a.minWidth)?a.minWidth:0,maxWidth:this._isNumber(a.maxWidth)?a.maxWidth:1/0,minHeight:this._isNumber(a.minHeight)?a.minHeight:0,maxHeight:this._isNumber(a.maxHeight)?a.maxHeight:1/0},(this._aspectRatio||t)&&(e=o.minHeight*this.aspectRatio,s=o.minWidth/this.aspectRatio,i=o.maxHeight*this.aspectRatio,n=o.maxWidth/this.aspectRatio,e>o.minWidth&&(o.minWidth=e),s>o.minHeight&&(o.minHeight=s),o.maxWidth>i&&(o.maxWidth=i),o.maxHeight>n&&(o.maxHeight=n)),this._vBoundaries=o},_updateCache:function(t){this.offset=this.helper.offset(),this._isNumber(t.left)&&(this.position.left=t.left),this._isNumber(t.top)&&(this.position.top=t.top),this._isNumber(t.height)&&(this.size.height=t.height),this._isNumber(t.width)&&(this.size.width=t.width)},_updateRatio:function(t){var e=this.position,i=this.size,s=this.axis;return this._isNumber(t.height)?t.width=t.height*this.aspectRatio:this._isNumber(t.width)&&(t.height=t.width/this.aspectRatio),"sw"===s&&(t.left=e.left+(i.width-t.width),t.top=null),"nw"===s&&(t.top=e.top+(i.height-t.height),t.left=e.left+(i.width-t.width)),t},_respectSize:function(t){var e=this._vBoundaries,i=this.axis,s=this._isNumber(t.width)&&e.maxWidth&&e.maxWidth<t.width,n=this._isNumber(t.height)&&e.maxHeight&&e.maxHeight<t.height,o=this._isNumber(t.width)&&e.minWidth&&e.minWidth>t.width,a=this._isNumber(t.height)&&e.minHeight&&e.minHeight>t.height,r=this.originalPosition.left+this.originalSize.width,h=this.originalPosition.top+this.originalSize.height,l=/sw|nw|w/.test(i),c=/nw|ne|n/.test(i);return o&&(t.width=e.minWidth),a&&(t.height=e.minHeight),s&&(t.width=e.maxWidth),n&&(t.height=e.maxHeight),o&&l&&(t.left=r-e.minWidth),s&&l&&(t.left=r-e.maxWidth),a&&c&&(t.top=h-e.minHeight),n&&c&&(t.top=h-e.maxHeight),t.width||t.height||t.left||!t.top?t.width||t.height||t.top||!t.left||(t.left=null):t.top=null,t},_getPaddingPlusBorderDimensions:function(t){for(var e=0,i=[],s=[t.css("borderTopWidth"),t.css("borderRightWidth"),t.css("borderBottomWidth"),t.css("borderLeftWidth")],n=[t.css("paddingTop"),t.css("paddingRight"),t.css("paddingBottom"),t.css("paddingLeft")];4>e;e++)i[e]=parseFloat(s[e])||0,i[e]+=parseFloat(n[e])||0;return{height:i[0]+i[2],width:i[1]+i[3]}},_proportionallyResize:function(){if(this._proportionallyResizeElements.length)for(var t,e=0,i=this.helper||this.element;this._proportionallyResizeElements.length>e;e++)t=this._proportionallyResizeElements[e],this.outerDimensions||(this.outerDimensions=this._getPaddingPlusBorderDimensions(t)),t.css({height:i.height()-this.outerDimensions.height||0,width:i.width()-this.outerDimensions.width||0})},_renderProxy:function(){var e=this.element,i=this.options;this.elementOffset=e.offset(),this._helper?(this.helper=this.helper||t("<div style='overflow:hidden;'></div>"),this._addClass(this.helper,this._helper),this.helper.css({width:this.element.outerWidth(),height:this.element.outerHeight(),position:"absolute",left:this.elementOffset.left+"px",top:this.elementOffset.top+"px",zIndex:++i.zIndex}),this.helper.appendTo("body").disableSelection()):this.helper=this.element},_change:{e:function(t,e){return{width:this.originalSize.width+e}},w:function(t,e){var i=this.originalSize,s=this.originalPosition;return{left:s.left+e,width:i.width-e}},n:function(t,e,i){var s=this.originalSize,n=this.originalPosition;return{top:n.top+i,height:s.height-i}},s:function(t,e,i){return{height:this.originalSize.height+i}},se:function(e,i,s){return t.extend(this._change.s.apply(this,arguments),this._change.e.apply(this,[e,i,s]))},sw:function(e,i,s){return t.extend(this._change.s.apply(this,arguments),this._change.w.apply(this,[e,i,s]))},ne:function(e,i,s){return t.extend(this._change.n.apply(this,arguments),this._change.e.apply(this,[e,i,s]))},nw:function(e,i,s){return t.extend(this._change.n.apply(this,arguments),this._change.w.apply(this,[e,i,s]))}},_propagate:function(e,i){t.ui.plugin.call(this,e,[i,this.ui()]),"resize"!==e&&this._trigger(e,i,this.ui())},plugins:{},ui:function(){return{originalElement:this.originalElement,element:this.element,helper:this.helper,position:this.position,size:this.size,originalSize:this.originalSize,originalPosition:this.originalPosition}}}),t.ui.plugin.add("resizable","animate",{stop:function(e){var i=t(this).resizable("instance"),s=i.options,n=i._proportionallyResizeElements,o=n.length&&/textarea/i.test(n[0].nodeName),a=o&&i._hasScroll(n[0],"left")?0:i.sizeDiff.height,r=o?0:i.sizeDiff.width,h={width:i.size.width-r,height:i.size.height-a},l=parseFloat(i.element.css("left"))+(i.position.left-i.originalPosition.left)||null,c=parseFloat(i.element.css("top"))+(i.position.top-i.originalPosition.top)||null;i.element.animate(t.extend(h,c&&l?{top:c,left:l}:{}),{duration:s.animateDuration,easing:s.animateEasing,step:function(){var s={width:parseFloat(i.element.css("width")),height:parseFloat(i.element.css("height")),top:parseFloat(i.element.css("top")),left:parseFloat(i.element.css("left"))};n&&n.length&&t(n[0]).css({width:s.width,height:s.height}),i._updateCache(s),i._propagate("resize",e)}})}}),t.ui.plugin.add("resizable","containment",{start:function(){var e,i,s,n,o,a,r,h=t(this).resizable("instance"),l=h.options,c=h.element,u=l.containment,d=u instanceof t?u.get(0):/parent/.test(u)?c.parent().get(0):u;d&&(h.containerElement=t(d),/document/.test(u)||u===document?(h.containerOffset={left:0,top:0},h.containerPosition={left:0,top:0},h.parentData={element:t(document),left:0,top:0,width:t(document).width(),height:t(document).height()||document.body.parentNode.scrollHeight}):(e=t(d),i=[],t(["Top","Right","Left","Bottom"]).each(function(t,s){i[t]=h._num(e.css("padding"+s))}),h.containerOffset=e.offset(),h.containerPosition=e.position(),h.containerSize={height:e.innerHeight()-i[3],width:e.innerWidth()-i[1]},s=h.containerOffset,n=h.containerSize.height,o=h.containerSize.width,a=h._hasScroll(d,"left")?d.scrollWidth:o,r=h._hasScroll(d)?d.scrollHeight:n,h.parentData={element:d,left:s.left,top:s.top,width:a,height:r}))},resize:function(e){var i,s,n,o,a=t(this).resizable("instance"),r=a.options,h=a.containerOffset,l=a.position,c=a._aspectRatio||e.shiftKey,u={top:0,left:0},d=a.containerElement,p=!0;d[0]!==document&&/static/.test(d.css("position"))&&(u=h),l.left<(a._helper?h.left:0)&&(a.size.width=a.size.width+(a._helper?a.position.left-h.left:a.position.left-u.left),c&&(a.size.height=a.size.width/a.aspectRatio,p=!1),a.position.left=r.helper?h.left:0),l.top<(a._helper?h.top:0)&&(a.size.height=a.size.height+(a._helper?a.position.top-h.top:a.position.top),c&&(a.size.width=a.size.height*a.aspectRatio,p=!1),a.position.top=a._helper?h.top:0),n=a.containerElement.get(0)===a.element.parent().get(0),o=/relative|absolute/.test(a.containerElement.css("position")),n&&o?(a.offset.left=a.parentData.left+a.position.left,a.offset.top=a.parentData.top+a.position.top):(a.offset.left=a.element.offset().left,a.offset.top=a.element.offset().top),i=Math.abs(a.sizeDiff.width+(a._helper?a.offset.left-u.left:a.offset.left-h.left)),s=Math.abs(a.sizeDiff.height+(a._helper?a.offset.top-u.top:a.offset.top-h.top)),i+a.size.width>=a.parentData.width&&(a.size.width=a.parentData.width-i,c&&(a.size.height=a.size.width/a.aspectRatio,p=!1)),s+a.size.height>=a.parentData.height&&(a.size.height=a.parentData.height-s,c&&(a.size.width=a.size.height*a.aspectRatio,p=!1)),p||(a.position.left=a.prevPosition.left,a.position.top=a.prevPosition.top,a.size.width=a.prevSize.width,a.size.height=a.prevSize.height)},stop:function(){var e=t(this).resizable("instance"),i=e.options,s=e.containerOffset,n=e.containerPosition,o=e.containerElement,a=t(e.helper),r=a.offset(),h=a.outerWidth()-e.sizeDiff.width,l=a.outerHeight()-e.sizeDiff.height;e._helper&&!i.animate&&/relative/.test(o.css("position"))&&t(this).css({left:r.left-n.left-s.left,width:h,height:l}),e._helper&&!i.animate&&/static/.test(o.css("position"))&&t(this).css({left:r.left-n.left-s.left,width:h,height:l})}}),t.ui.plugin.add("resizable","alsoResize",{start:function(){var e=t(this).resizable("instance"),i=e.options;t(i.alsoResize).each(function(){var e=t(this);e.data("ui-resizable-alsoresize",{width:parseFloat(e.width()),height:parseFloat(e.height()),left:parseFloat(e.css("left")),top:parseFloat(e.css("top"))})})},resize:function(e,i){var s=t(this).resizable("instance"),n=s.options,o=s.originalSize,a=s.originalPosition,r={height:s.size.height-o.height||0,width:s.size.width-o.width||0,top:s.position.top-a.top||0,left:s.position.left-a.left||0};t(n.alsoResize).each(function(){var e=t(this),s=t(this).data("ui-resizable-alsoresize"),n={},o=e.parents(i.originalElement[0]).length?["width","height"]:["width","height","top","left"];t.each(o,function(t,e){var i=(s[e]||0)+(r[e]||0);i&&i>=0&&(n[e]=i||null)}),e.css(n)})},stop:function(){t(this).removeData("ui-resizable-alsoresize")}}),t.ui.plugin.add("resizable","ghost",{start:function(){var e=t(this).resizable("instance"),i=e.size;e.ghost=e.originalElement.clone(),e.ghost.css({opacity:.25,display:"block",position:"relative",height:i.height,width:i.width,margin:0,left:0,top:0}),e._addClass(e.ghost,"ui-resizable-ghost"),t.uiBackCompat!==!1&&"string"==typeof e.options.ghost&&e.ghost.addClass(this.options.ghost),e.ghost.appendTo(e.helper)},resize:function(){var e=t(this).resizable("instance");e.ghost&&e.ghost.css({position:"relative",height:e.size.height,width:e.size.width})},stop:function(){var e=t(this).resizable("instance");e.ghost&&e.helper&&e.helper.get(0).removeChild(e.ghost.get(0))}}),t.ui.plugin.add("resizable","grid",{resize:function(){var e,i=t(this).resizable("instance"),s=i.options,n=i.size,o=i.originalSize,a=i.originalPosition,r=i.axis,h="number"==typeof s.grid?[s.grid,s.grid]:s.grid,l=h[0]||1,c=h[1]||1,u=Math.round((n.width-o.width)/l)*l,d=Math.round((n.height-o.height)/c)*c,p=o.width+u,f=o.height+d,g=s.maxWidth&&p>s.maxWidth,m=s.maxHeight&&f>s.maxHeight,_=s.minWidth&&s.minWidth>p,v=s.minHeight&&s.minHeight>f;s.grid=h,_&&(p+=l),v&&(f+=c),g&&(p-=l),m&&(f-=c),/^(se|s|e)$/.test(r)?(i.size.width=p,i.size.height=f):/^(ne)$/.test(r)?(i.size.width=p,i.size.height=f,i.position.top=a.top-d):/^(sw)$/.test(r)?(i.size.width=p,i.size.height=f,i.position.left=a.left-u):((0>=f-c||0>=p-l)&&(e=i._getPaddingPlusBorderDimensions(this)),f-c>0?(i.size.height=f,i.position.top=a.top-d):(f=c-e.height,i.size.height=f,i.position.top=a.top+o.height-f),p-l>0?(i.size.width=p,i.position.left=a.left-u):(p=l-e.width,i.size.width=p,i.position.left=a.left+o.width-p))}}),t.ui.resizable,t.widget("ui.dialog",{version:"1.12.1",options:{appendTo:"body",autoOpen:!0,buttons:[],classes:{"ui-dialog":"ui-corner-all","ui-dialog-titlebar":"ui-corner-all"},closeOnEscape:!0,closeText:"Close",draggable:!0,hide:null,height:"auto",maxHeight:null,maxWidth:null,minHeight:150,minWidth:150,modal:!1,position:{my:"center",at:"center",of:window,collision:"fit",using:function(e){var i=t(this).css(e).offset().top;0>i&&t(this).css("top",e.top-i)}},resizable:!0,show:null,title:null,width:300,beforeClose:null,close:null,drag:null,dragStart:null,dragStop:null,focus:null,open:null,resize:null,resizeStart:null,resizeStop:null},sizeRelatedOptions:{buttons:!0,height:!0,maxHeight:!0,maxWidth:!0,minHeight:!0,minWidth:!0,width:!0},resizableRelatedOptions:{maxHeight:!0,maxWidth:!0,minHeight:!0,minWidth:!0},_create:function(){this.originalCss={display:this.element[0].style.display,width:this.element[0].style.width,minHeight:this.element[0].style.minHeight,maxHeight:this.element[0].style.maxHeight,height:this.element[0].style.height},this.originalPosition={parent:this.element.parent(),index:this.element.parent().children().index(this.element)},this.originalTitle=this.element.attr("title"),null==this.options.title&&null!=this.originalTitle&&(this.options.title=this.originalTitle),this.options.disabled&&(this.options.disabled=!1),this._createWrapper(),this.element.show().removeAttr("title").appendTo(this.uiDialog),this._addClass("ui-dialog-content","ui-widget-content"),this._createTitlebar(),this._createButtonPane(),this.options.draggable&&t.fn.draggable&&this._makeDraggable(),this.options.resizable&&t.fn.resizable&&this._makeResizable(),this._isOpen=!1,this._trackFocus()},_init:function(){this.options.autoOpen&&this.open()},_appendTo:function(){var e=this.options.appendTo;return e&&(e.jquery||e.nodeType)?t(e):this.document.find(e||"body").eq(0)},_destroy:function(){var t,e=this.originalPosition;this._untrackInstance(),this._destroyOverlay(),this.element.removeUniqueId().css(this.originalCss).detach(),this.uiDialog.remove(),this.originalTitle&&this.element.attr("title",this.originalTitle),t=e.parent.children().eq(e.index),t.length&&t[0]!==this.element[0]?t.before(this.element):e.parent.append(this.element)},widget:function(){return this.uiDialog
-},disable:t.noop,enable:t.noop,close:function(e){var i=this;this._isOpen&&this._trigger("beforeClose",e)!==!1&&(this._isOpen=!1,this._focusedElement=null,this._destroyOverlay(),this._untrackInstance(),this.opener.filter(":focusable").trigger("focus").length||t.ui.safeBlur(t.ui.safeActiveElement(this.document[0])),this._hide(this.uiDialog,this.options.hide,function(){i._trigger("close",e)}))},isOpen:function(){return this._isOpen},moveToTop:function(){this._moveToTop()},_moveToTop:function(e,i){var s=!1,n=this.uiDialog.siblings(".ui-front:visible").map(function(){return+t(this).css("z-index")}).get(),o=Math.max.apply(null,n);return o>=+this.uiDialog.css("z-index")&&(this.uiDialog.css("z-index",o+1),s=!0),s&&!i&&this._trigger("focus",e),s},open:function(){var e=this;return this._isOpen?(this._moveToTop()&&this._focusTabbable(),void 0):(this._isOpen=!0,this.opener=t(t.ui.safeActiveElement(this.document[0])),this._size(),this._position(),this._createOverlay(),this._moveToTop(null,!0),this.overlay&&this.overlay.css("z-index",this.uiDialog.css("z-index")-1),this._show(this.uiDialog,this.options.show,function(){e._focusTabbable(),e._trigger("focus")}),this._makeFocusTarget(),this._trigger("open"),void 0)},_focusTabbable:function(){var t=this._focusedElement;t||(t=this.element.find("[autofocus]")),t.length||(t=this.element.find(":tabbable")),t.length||(t=this.uiDialogButtonPane.find(":tabbable")),t.length||(t=this.uiDialogTitlebarClose.filter(":tabbable")),t.length||(t=this.uiDialog),t.eq(0).trigger("focus")},_keepFocus:function(e){function i(){var e=t.ui.safeActiveElement(this.document[0]),i=this.uiDialog[0]===e||t.contains(this.uiDialog[0],e);i||this._focusTabbable()}e.preventDefault(),i.call(this),this._delay(i)},_createWrapper:function(){this.uiDialog=t("<div>").hide().attr({tabIndex:-1,role:"dialog"}).appendTo(this._appendTo()),this._addClass(this.uiDialog,"ui-dialog","ui-widget ui-widget-content ui-front"),this._on(this.uiDialog,{keydown:function(e){if(this.options.closeOnEscape&&!e.isDefaultPrevented()&&e.keyCode&&e.keyCode===t.ui.keyCode.ESCAPE)return e.preventDefault(),this.close(e),void 0;if(e.keyCode===t.ui.keyCode.TAB&&!e.isDefaultPrevented()){var i=this.uiDialog.find(":tabbable"),s=i.filter(":first"),n=i.filter(":last");e.target!==n[0]&&e.target!==this.uiDialog[0]||e.shiftKey?e.target!==s[0]&&e.target!==this.uiDialog[0]||!e.shiftKey||(this._delay(function(){n.trigger("focus")}),e.preventDefault()):(this._delay(function(){s.trigger("focus")}),e.preventDefault())}},mousedown:function(t){this._moveToTop(t)&&this._focusTabbable()}}),this.element.find("[aria-describedby]").length||this.uiDialog.attr({"aria-describedby":this.element.uniqueId().attr("id")})},_createTitlebar:function(){var e;this.uiDialogTitlebar=t("<div>"),this._addClass(this.uiDialogTitlebar,"ui-dialog-titlebar","ui-widget-header ui-helper-clearfix"),this._on(this.uiDialogTitlebar,{mousedown:function(e){t(e.target).closest(".ui-dialog-titlebar-close")||this.uiDialog.trigger("focus")}}),this.uiDialogTitlebarClose=t("<button type='button'></button>").button({label:t("<a>").text(this.options.closeText).html(),icon:"ui-icon-closethick",showLabel:!1}).appendTo(this.uiDialogTitlebar),this._addClass(this.uiDialogTitlebarClose,"ui-dialog-titlebar-close"),this._on(this.uiDialogTitlebarClose,{click:function(t){t.preventDefault(),this.close(t)}}),e=t("<span>").uniqueId().prependTo(this.uiDialogTitlebar),this._addClass(e,"ui-dialog-title"),this._title(e),this.uiDialogTitlebar.prependTo(this.uiDialog),this.uiDialog.attr({"aria-labelledby":e.attr("id")})},_title:function(t){this.options.title?t.text(this.options.title):t.html("&#160;")},_createButtonPane:function(){this.uiDialogButtonPane=t("<div>"),this._addClass(this.uiDialogButtonPane,"ui-dialog-buttonpane","ui-widget-content ui-helper-clearfix"),this.uiButtonSet=t("<div>").appendTo(this.uiDialogButtonPane),this._addClass(this.uiButtonSet,"ui-dialog-buttonset"),this._createButtons()},_createButtons:function(){var e=this,i=this.options.buttons;return this.uiDialogButtonPane.remove(),this.uiButtonSet.empty(),t.isEmptyObject(i)||t.isArray(i)&&!i.length?(this._removeClass(this.uiDialog,"ui-dialog-buttons"),void 0):(t.each(i,function(i,s){var n,o;s=t.isFunction(s)?{click:s,text:i}:s,s=t.extend({type:"button"},s),n=s.click,o={icon:s.icon,iconPosition:s.iconPosition,showLabel:s.showLabel,icons:s.icons,text:s.text},delete s.click,delete s.icon,delete s.iconPosition,delete s.showLabel,delete s.icons,"boolean"==typeof s.text&&delete s.text,t("<button></button>",s).button(o).appendTo(e.uiButtonSet).on("click",function(){n.apply(e.element[0],arguments)})}),this._addClass(this.uiDialog,"ui-dialog-buttons"),this.uiDialogButtonPane.appendTo(this.uiDialog),void 0)},_makeDraggable:function(){function e(t){return{position:t.position,offset:t.offset}}var i=this,s=this.options;this.uiDialog.draggable({cancel:".ui-dialog-content, .ui-dialog-titlebar-close",handle:".ui-dialog-titlebar",containment:"document",start:function(s,n){i._addClass(t(this),"ui-dialog-dragging"),i._blockFrames(),i._trigger("dragStart",s,e(n))},drag:function(t,s){i._trigger("drag",t,e(s))},stop:function(n,o){var a=o.offset.left-i.document.scrollLeft(),r=o.offset.top-i.document.scrollTop();s.position={my:"left top",at:"left"+(a>=0?"+":"")+a+" "+"top"+(r>=0?"+":"")+r,of:i.window},i._removeClass(t(this),"ui-dialog-dragging"),i._unblockFrames(),i._trigger("dragStop",n,e(o))}})},_makeResizable:function(){function e(t){return{originalPosition:t.originalPosition,originalSize:t.originalSize,position:t.position,size:t.size}}var i=this,s=this.options,n=s.resizable,o=this.uiDialog.css("position"),a="string"==typeof n?n:"n,e,s,w,se,sw,ne,nw";this.uiDialog.resizable({cancel:".ui-dialog-content",containment:"document",alsoResize:this.element,maxWidth:s.maxWidth,maxHeight:s.maxHeight,minWidth:s.minWidth,minHeight:this._minHeight(),handles:a,start:function(s,n){i._addClass(t(this),"ui-dialog-resizing"),i._blockFrames(),i._trigger("resizeStart",s,e(n))},resize:function(t,s){i._trigger("resize",t,e(s))},stop:function(n,o){var a=i.uiDialog.offset(),r=a.left-i.document.scrollLeft(),h=a.top-i.document.scrollTop();s.height=i.uiDialog.height(),s.width=i.uiDialog.width(),s.position={my:"left top",at:"left"+(r>=0?"+":"")+r+" "+"top"+(h>=0?"+":"")+h,of:i.window},i._removeClass(t(this),"ui-dialog-resizing"),i._unblockFrames(),i._trigger("resizeStop",n,e(o))}}).css("position",o)},_trackFocus:function(){this._on(this.widget(),{focusin:function(e){this._makeFocusTarget(),this._focusedElement=t(e.target)}})},_makeFocusTarget:function(){this._untrackInstance(),this._trackingInstances().unshift(this)},_untrackInstance:function(){var e=this._trackingInstances(),i=t.inArray(this,e);-1!==i&&e.splice(i,1)},_trackingInstances:function(){var t=this.document.data("ui-dialog-instances");return t||(t=[],this.document.data("ui-dialog-instances",t)),t},_minHeight:function(){var t=this.options;return"auto"===t.height?t.minHeight:Math.min(t.minHeight,t.height)},_position:function(){var t=this.uiDialog.is(":visible");t||this.uiDialog.show(),this.uiDialog.position(this.options.position),t||this.uiDialog.hide()},_setOptions:function(e){var i=this,s=!1,n={};t.each(e,function(t,e){i._setOption(t,e),t in i.sizeRelatedOptions&&(s=!0),t in i.resizableRelatedOptions&&(n[t]=e)}),s&&(this._size(),this._position()),this.uiDialog.is(":data(ui-resizable)")&&this.uiDialog.resizable("option",n)},_setOption:function(e,i){var s,n,o=this.uiDialog;"disabled"!==e&&(this._super(e,i),"appendTo"===e&&this.uiDialog.appendTo(this._appendTo()),"buttons"===e&&this._createButtons(),"closeText"===e&&this.uiDialogTitlebarClose.button({label:t("<a>").text(""+this.options.closeText).html()}),"draggable"===e&&(s=o.is(":data(ui-draggable)"),s&&!i&&o.draggable("destroy"),!s&&i&&this._makeDraggable()),"position"===e&&this._position(),"resizable"===e&&(n=o.is(":data(ui-resizable)"),n&&!i&&o.resizable("destroy"),n&&"string"==typeof i&&o.resizable("option","handles",i),n||i===!1||this._makeResizable()),"title"===e&&this._title(this.uiDialogTitlebar.find(".ui-dialog-title")))},_size:function(){var t,e,i,s=this.options;this.element.show().css({width:"auto",minHeight:0,maxHeight:"none",height:0}),s.minWidth>s.width&&(s.width=s.minWidth),t=this.uiDialog.css({height:"auto",width:s.width}).outerHeight(),e=Math.max(0,s.minHeight-t),i="number"==typeof s.maxHeight?Math.max(0,s.maxHeight-t):"none","auto"===s.height?this.element.css({minHeight:e,maxHeight:i,height:"auto"}):this.element.height(Math.max(0,s.height-t)),this.uiDialog.is(":data(ui-resizable)")&&this.uiDialog.resizable("option","minHeight",this._minHeight())},_blockFrames:function(){this.iframeBlocks=this.document.find("iframe").map(function(){var e=t(this);return t("<div>").css({position:"absolute",width:e.outerWidth(),height:e.outerHeight()}).appendTo(e.parent()).offset(e.offset())[0]})},_unblockFrames:function(){this.iframeBlocks&&(this.iframeBlocks.remove(),delete this.iframeBlocks)},_allowInteraction:function(e){return t(e.target).closest(".ui-dialog").length?!0:!!t(e.target).closest(".ui-datepicker").length},_createOverlay:function(){if(this.options.modal){var e=!0;this._delay(function(){e=!1}),this.document.data("ui-dialog-overlays")||this._on(this.document,{focusin:function(t){e||this._allowInteraction(t)||(t.preventDefault(),this._trackingInstances()[0]._focusTabbable())}}),this.overlay=t("<div>").appendTo(this._appendTo()),this._addClass(this.overlay,null,"ui-widget-overlay ui-front"),this._on(this.overlay,{mousedown:"_keepFocus"}),this.document.data("ui-dialog-overlays",(this.document.data("ui-dialog-overlays")||0)+1)}},_destroyOverlay:function(){if(this.options.modal&&this.overlay){var t=this.document.data("ui-dialog-overlays")-1;t?this.document.data("ui-dialog-overlays",t):(this._off(this.document,"focusin"),this.document.removeData("ui-dialog-overlays")),this.overlay.remove(),this.overlay=null}}}),t.uiBackCompat!==!1&&t.widget("ui.dialog",t.ui.dialog,{options:{dialogClass:""},_createWrapper:function(){this._super(),this.uiDialog.addClass(this.options.dialogClass)},_setOption:function(t,e){"dialogClass"===t&&this.uiDialog.removeClass(this.options.dialogClass).addClass(e),this._superApply(arguments)}}),t.ui.dialog,t.widget("ui.droppable",{version:"1.12.1",widgetEventPrefix:"drop",options:{accept:"*",addClasses:!0,greedy:!1,scope:"default",tolerance:"intersect",activate:null,deactivate:null,drop:null,out:null,over:null},_create:function(){var e,i=this.options,s=i.accept;this.isover=!1,this.isout=!0,this.accept=t.isFunction(s)?s:function(t){return t.is(s)},this.proportions=function(){return arguments.length?(e=arguments[0],void 0):e?e:e={width:this.element[0].offsetWidth,height:this.element[0].offsetHeight}},this._addToManager(i.scope),i.addClasses&&this._addClass("ui-droppable")},_addToManager:function(e){t.ui.ddmanager.droppables[e]=t.ui.ddmanager.droppables[e]||[],t.ui.ddmanager.droppables[e].push(this)},_splice:function(t){for(var e=0;t.length>e;e++)t[e]===this&&t.splice(e,1)},_destroy:function(){var e=t.ui.ddmanager.droppables[this.options.scope];this._splice(e)},_setOption:function(e,i){if("accept"===e)this.accept=t.isFunction(i)?i:function(t){return t.is(i)};else if("scope"===e){var s=t.ui.ddmanager.droppables[this.options.scope];this._splice(s),this._addToManager(i)}this._super(e,i)},_activate:function(e){var i=t.ui.ddmanager.current;this._addActiveClass(),i&&this._trigger("activate",e,this.ui(i))},_deactivate:function(e){var i=t.ui.ddmanager.current;this._removeActiveClass(),i&&this._trigger("deactivate",e,this.ui(i))},_over:function(e){var i=t.ui.ddmanager.current;i&&(i.currentItem||i.element)[0]!==this.element[0]&&this.accept.call(this.element[0],i.currentItem||i.element)&&(this._addHoverClass(),this._trigger("over",e,this.ui(i)))},_out:function(e){var i=t.ui.ddmanager.current;i&&(i.currentItem||i.element)[0]!==this.element[0]&&this.accept.call(this.element[0],i.currentItem||i.element)&&(this._removeHoverClass(),this._trigger("out",e,this.ui(i)))},_drop:function(e,i){var s=i||t.ui.ddmanager.current,n=!1;return s&&(s.currentItem||s.element)[0]!==this.element[0]?(this.element.find(":data(ui-droppable)").not(".ui-draggable-dragging").each(function(){var i=t(this).droppable("instance");return i.options.greedy&&!i.options.disabled&&i.options.scope===s.options.scope&&i.accept.call(i.element[0],s.currentItem||s.element)&&v(s,t.extend(i,{offset:i.element.offset()}),i.options.tolerance,e)?(n=!0,!1):void 0}),n?!1:this.accept.call(this.element[0],s.currentItem||s.element)?(this._removeActiveClass(),this._removeHoverClass(),this._trigger("drop",e,this.ui(s)),this.element):!1):!1},ui:function(t){return{draggable:t.currentItem||t.element,helper:t.helper,position:t.position,offset:t.positionAbs}},_addHoverClass:function(){this._addClass("ui-droppable-hover")},_removeHoverClass:function(){this._removeClass("ui-droppable-hover")},_addActiveClass:function(){this._addClass("ui-droppable-active")},_removeActiveClass:function(){this._removeClass("ui-droppable-active")}});var v=t.ui.intersect=function(){function t(t,e,i){return t>=e&&e+i>t}return function(e,i,s,n){if(!i.offset)return!1;var o=(e.positionAbs||e.position.absolute).left+e.margins.left,a=(e.positionAbs||e.position.absolute).top+e.margins.top,r=o+e.helperProportions.width,h=a+e.helperProportions.height,l=i.offset.left,c=i.offset.top,u=l+i.proportions().width,d=c+i.proportions().height;switch(s){case"fit":return o>=l&&u>=r&&a>=c&&d>=h;case"intersect":return o+e.helperProportions.width/2>l&&u>r-e.helperProportions.width/2&&a+e.helperProportions.height/2>c&&d>h-e.helperProportions.height/2;case"pointer":return t(n.pageY,c,i.proportions().height)&&t(n.pageX,l,i.proportions().width);case"touch":return(a>=c&&d>=a||h>=c&&d>=h||c>a&&h>d)&&(o>=l&&u>=o||r>=l&&u>=r||l>o&&r>u);default:return!1}}}();t.ui.ddmanager={current:null,droppables:{"default":[]},prepareOffsets:function(e,i){var s,n,o=t.ui.ddmanager.droppables[e.options.scope]||[],a=i?i.type:null,r=(e.currentItem||e.element).find(":data(ui-droppable)").addBack();t:for(s=0;o.length>s;s++)if(!(o[s].options.disabled||e&&!o[s].accept.call(o[s].element[0],e.currentItem||e.element))){for(n=0;r.length>n;n++)if(r[n]===o[s].element[0]){o[s].proportions().height=0;continue t}o[s].visible="none"!==o[s].element.css("display"),o[s].visible&&("mousedown"===a&&o[s]._activate.call(o[s],i),o[s].offset=o[s].element.offset(),o[s].proportions({width:o[s].element[0].offsetWidth,height:o[s].element[0].offsetHeight}))}},drop:function(e,i){var s=!1;return t.each((t.ui.ddmanager.droppables[e.options.scope]||[]).slice(),function(){this.options&&(!this.options.disabled&&this.visible&&v(e,this,this.options.tolerance,i)&&(s=this._drop.call(this,i)||s),!this.options.disabled&&this.visible&&this.accept.call(this.element[0],e.currentItem||e.element)&&(this.isout=!0,this.isover=!1,this._deactivate.call(this,i)))}),s},dragStart:function(e,i){e.element.parentsUntil("body").on("scroll.droppable",function(){e.options.refreshPositions||t.ui.ddmanager.prepareOffsets(e,i)})},drag:function(e,i){e.options.refreshPositions&&t.ui.ddmanager.prepareOffsets(e,i),t.each(t.ui.ddmanager.droppables[e.options.scope]||[],function(){if(!this.options.disabled&&!this.greedyChild&&this.visible){var s,n,o,a=v(e,this,this.options.tolerance,i),r=!a&&this.isover?"isout":a&&!this.isover?"isover":null;r&&(this.options.greedy&&(n=this.options.scope,o=this.element.parents(":data(ui-droppable)").filter(function(){return t(this).droppable("instance").options.scope===n}),o.length&&(s=t(o[0]).droppable("instance"),s.greedyChild="isover"===r)),s&&"isover"===r&&(s.isover=!1,s.isout=!0,s._out.call(s,i)),this[r]=!0,this["isout"===r?"isover":"isout"]=!1,this["isover"===r?"_over":"_out"].call(this,i),s&&"isout"===r&&(s.isout=!1,s.isover=!0,s._over.call(s,i)))}})},dragStop:function(e,i){e.element.parentsUntil("body").off("scroll.droppable"),e.options.refreshPositions||t.ui.ddmanager.prepareOffsets(e,i)}},t.uiBackCompat!==!1&&t.widget("ui.droppable",t.ui.droppable,{options:{hoverClass:!1,activeClass:!1},_addActiveClass:function(){this._super(),this.options.activeClass&&this.element.addClass(this.options.activeClass)},_removeActiveClass:function(){this._super(),this.options.activeClass&&this.element.removeClass(this.options.activeClass)},_addHoverClass:function(){this._super(),this.options.hoverClass&&this.element.addClass(this.options.hoverClass)},_removeHoverClass:function(){this._super(),this.options.hoverClass&&this.element.removeClass(this.options.hoverClass)}}),t.ui.droppable,t.widget("ui.progressbar",{version:"1.12.1",options:{classes:{"ui-progressbar":"ui-corner-all","ui-progressbar-value":"ui-corner-left","ui-progressbar-complete":"ui-corner-right"},max:100,value:0,change:null,complete:null},min:0,_create:function(){this.oldValue=this.options.value=this._constrainedValue(),this.element.attr({role:"progressbar","aria-valuemin":this.min}),this._addClass("ui-progressbar","ui-widget ui-widget-content"),this.valueDiv=t("<div>").appendTo(this.element),this._addClass(this.valueDiv,"ui-progressbar-value","ui-widget-header"),this._refreshValue()},_destroy:function(){this.element.removeAttr("role aria-valuemin aria-valuemax aria-valuenow"),this.valueDiv.remove()},value:function(t){return void 0===t?this.options.value:(this.options.value=this._constrainedValue(t),this._refreshValue(),void 0)},_constrainedValue:function(t){return void 0===t&&(t=this.options.value),this.indeterminate=t===!1,"number"!=typeof t&&(t=0),this.indeterminate?!1:Math.min(this.options.max,Math.max(this.min,t))},_setOptions:function(t){var e=t.value;delete t.value,this._super(t),this.options.value=this._constrainedValue(e),this._refreshValue()},_setOption:function(t,e){"max"===t&&(e=Math.max(this.min,e)),this._super(t,e)},_setOptionDisabled:function(t){this._super(t),this.element.attr("aria-disabled",t),this._toggleClass(null,"ui-state-disabled",!!t)},_percentage:function(){return this.indeterminate?100:100*(this.options.value-this.min)/(this.options.max-this.min)},_refreshValue:function(){var e=this.options.value,i=this._percentage();this.valueDiv.toggle(this.indeterminate||e>this.min).width(i.toFixed(0)+"%"),this._toggleClass(this.valueDiv,"ui-progressbar-complete",null,e===this.options.max)._toggleClass("ui-progressbar-indeterminate",null,this.indeterminate),this.indeterminate?(this.element.removeAttr("aria-valuenow"),this.overlayDiv||(this.overlayDiv=t("<div>").appendTo(this.valueDiv),this._addClass(this.overlayDiv,"ui-progressbar-overlay"))):(this.element.attr({"aria-valuemax":this.options.max,"aria-valuenow":e}),this.overlayDiv&&(this.overlayDiv.remove(),this.overlayDiv=null)),this.oldValue!==e&&(this.oldValue=e,this._trigger("change")),e===this.options.max&&this._trigger("complete")}}),t.widget("ui.selectable",t.ui.mouse,{version:"1.12.1",options:{appendTo:"body",autoRefresh:!0,distance:0,filter:"*",tolerance:"touch",selected:null,selecting:null,start:null,stop:null,unselected:null,unselecting:null},_create:function(){var e=this;this._addClass("ui-selectable"),this.dragged=!1,this.refresh=function(){e.elementPos=t(e.element[0]).offset(),e.selectees=t(e.options.filter,e.element[0]),e._addClass(e.selectees,"ui-selectee"),e.selectees.each(function(){var i=t(this),s=i.offset(),n={left:s.left-e.elementPos.left,top:s.top-e.elementPos.top};t.data(this,"selectable-item",{element:this,$element:i,left:n.left,top:n.top,right:n.left+i.outerWidth(),bottom:n.top+i.outerHeight(),startselected:!1,selected:i.hasClass("ui-selected"),selecting:i.hasClass("ui-selecting"),unselecting:i.hasClass("ui-unselecting")})})},this.refresh(),this._mouseInit(),this.helper=t("<div>"),this._addClass(this.helper,"ui-selectable-helper")},_destroy:function(){this.selectees.removeData("selectable-item"),this._mouseDestroy()},_mouseStart:function(e){var i=this,s=this.options;this.opos=[e.pageX,e.pageY],this.elementPos=t(this.element[0]).offset(),this.options.disabled||(this.selectees=t(s.filter,this.element[0]),this._trigger("start",e),t(s.appendTo).append(this.helper),this.helper.css({left:e.pageX,top:e.pageY,width:0,height:0}),s.autoRefresh&&this.refresh(),this.selectees.filter(".ui-selected").each(function(){var s=t.data(this,"selectable-item");s.startselected=!0,e.metaKey||e.ctrlKey||(i._removeClass(s.$element,"ui-selected"),s.selected=!1,i._addClass(s.$element,"ui-unselecting"),s.unselecting=!0,i._trigger("unselecting",e,{unselecting:s.element}))}),t(e.target).parents().addBack().each(function(){var s,n=t.data(this,"selectable-item");return n?(s=!e.metaKey&&!e.ctrlKey||!n.$element.hasClass("ui-selected"),i._removeClass(n.$element,s?"ui-unselecting":"ui-selected")._addClass(n.$element,s?"ui-selecting":"ui-unselecting"),n.unselecting=!s,n.selecting=s,n.selected=s,s?i._trigger("selecting",e,{selecting:n.element}):i._trigger("unselecting",e,{unselecting:n.element}),!1):void 0}))},_mouseDrag:function(e){if(this.dragged=!0,!this.options.disabled){var i,s=this,n=this.options,o=this.opos[0],a=this.opos[1],r=e.pageX,h=e.pageY;return o>r&&(i=r,r=o,o=i),a>h&&(i=h,h=a,a=i),this.helper.css({left:o,top:a,width:r-o,height:h-a}),this.selectees.each(function(){var i=t.data(this,"selectable-item"),l=!1,c={};i&&i.element!==s.element[0]&&(c.left=i.left+s.elementPos.left,c.right=i.right+s.elementPos.left,c.top=i.top+s.elementPos.top,c.bottom=i.bottom+s.elementPos.top,"touch"===n.tolerance?l=!(c.left>r||o>c.right||c.top>h||a>c.bottom):"fit"===n.tolerance&&(l=c.left>o&&r>c.right&&c.top>a&&h>c.bottom),l?(i.selected&&(s._removeClass(i.$element,"ui-selected"),i.selected=!1),i.unselecting&&(s._removeClass(i.$element,"ui-unselecting"),i.unselecting=!1),i.selecting||(s._addClass(i.$element,"ui-selecting"),i.selecting=!0,s._trigger("selecting",e,{selecting:i.element}))):(i.selecting&&((e.metaKey||e.ctrlKey)&&i.startselected?(s._removeClass(i.$element,"ui-selecting"),i.selecting=!1,s._addClass(i.$element,"ui-selected"),i.selected=!0):(s._removeClass(i.$element,"ui-selecting"),i.selecting=!1,i.startselected&&(s._addClass(i.$element,"ui-unselecting"),i.unselecting=!0),s._trigger("unselecting",e,{unselecting:i.element}))),i.selected&&(e.metaKey||e.ctrlKey||i.startselected||(s._removeClass(i.$element,"ui-selected"),i.selected=!1,s._addClass(i.$element,"ui-unselecting"),i.unselecting=!0,s._trigger("unselecting",e,{unselecting:i.element})))))}),!1}},_mouseStop:function(e){var i=this;return this.dragged=!1,t(".ui-unselecting",this.element[0]).each(function(){var s=t.data(this,"selectable-item");i._removeClass(s.$element,"ui-unselecting"),s.unselecting=!1,s.startselected=!1,i._trigger("unselected",e,{unselected:s.element})}),t(".ui-selecting",this.element[0]).each(function(){var s=t.data(this,"selectable-item");i._removeClass(s.$element,"ui-selecting")._addClass(s.$element,"ui-selected"),s.selecting=!1,s.selected=!0,s.startselected=!0,i._trigger("selected",e,{selected:s.element})}),this._trigger("stop",e),this.helper.remove(),!1}}),t.widget("ui.selectmenu",[t.ui.formResetMixin,{version:"1.12.1",defaultElement:"<select>",options:{appendTo:null,classes:{"ui-selectmenu-button-open":"ui-corner-top","ui-selectmenu-button-closed":"ui-corner-all"},disabled:null,icons:{button:"ui-icon-triangle-1-s"},position:{my:"left top",at:"left bottom",collision:"none"},width:!1,change:null,close:null,focus:null,open:null,select:null},_create:function(){var e=this.element.uniqueId().attr("id");this.ids={element:e,button:e+"-button",menu:e+"-menu"},this._drawButton(),this._drawMenu(),this._bindFormResetHandler(),this._rendered=!1,this.menuItems=t()},_drawButton:function(){var e,i=this,s=this._parseOption(this.element.find("option:selected"),this.element[0].selectedIndex);this.labels=this.element.labels().attr("for",this.ids.button),this._on(this.labels,{click:function(t){this.button.focus(),t.preventDefault()}}),this.element.hide(),this.button=t("<span>",{tabindex:this.options.disabled?-1:0,id:this.ids.button,role:"combobox","aria-expanded":"false","aria-autocomplete":"list","aria-owns":this.ids.menu,"aria-haspopup":"true",title:this.element.attr("title")}).insertAfter(this.element),this._addClass(this.button,"ui-selectmenu-button ui-selectmenu-button-closed","ui-button ui-widget"),e=t("<span>").appendTo(this.button),this._addClass(e,"ui-selectmenu-icon","ui-icon "+this.options.icons.button),this.buttonItem=this._renderButtonItem(s).appendTo(this.button),this.options.width!==!1&&this._resizeButton(),this._on(this.button,this._buttonEvents),this.button.one("focusin",function(){i._rendered||i._refreshMenu()})},_drawMenu:function(){var e=this;this.menu=t("<ul>",{"aria-hidden":"true","aria-labelledby":this.ids.button,id:this.ids.menu}),this.menuWrap=t("<div>").append(this.menu),this._addClass(this.menuWrap,"ui-selectmenu-menu","ui-front"),this.menuWrap.appendTo(this._appendTo()),this.menuInstance=this.menu.menu({classes:{"ui-menu":"ui-corner-bottom"},role:"listbox",select:function(t,i){t.preventDefault(),e._setSelection(),e._select(i.item.data("ui-selectmenu-item"),t)},focus:function(t,i){var s=i.item.data("ui-selectmenu-item");null!=e.focusIndex&&s.index!==e.focusIndex&&(e._trigger("focus",t,{item:s}),e.isOpen||e._select(s,t)),e.focusIndex=s.index,e.button.attr("aria-activedescendant",e.menuItems.eq(s.index).attr("id"))}}).menu("instance"),this.menuInstance._off(this.menu,"mouseleave"),this.menuInstance._closeOnDocumentClick=function(){return!1},this.menuInstance._isDivider=function(){return!1}},refresh:function(){this._refreshMenu(),this.buttonItem.replaceWith(this.buttonItem=this._renderButtonItem(this._getSelectedItem().data("ui-selectmenu-item")||{})),null===this.options.width&&this._resizeButton()},_refreshMenu:function(){var t,e=this.element.find("option");this.menu.empty(),this._parseOptions(e),this._renderMenu(this.menu,this.items),this.menuInstance.refresh(),this.menuItems=this.menu.find("li").not(".ui-selectmenu-optgroup").find(".ui-menu-item-wrapper"),this._rendered=!0,e.length&&(t=this._getSelectedItem(),this.menuInstance.focus(null,t),this._setAria(t.data("ui-selectmenu-item")),this._setOption("disabled",this.element.prop("disabled")))},open:function(t){this.options.disabled||(this._rendered?(this._removeClass(this.menu.find(".ui-state-active"),null,"ui-state-active"),this.menuInstance.focus(null,this._getSelectedItem())):this._refreshMenu(),this.menuItems.length&&(this.isOpen=!0,this._toggleAttr(),this._resizeMenu(),this._position(),this._on(this.document,this._documentClick),this._trigger("open",t)))},_position:function(){this.menuWrap.position(t.extend({of:this.button},this.options.position))},close:function(t){this.isOpen&&(this.isOpen=!1,this._toggleAttr(),this.range=null,this._off(this.document),this._trigger("close",t))},widget:function(){return this.button},menuWidget:function(){return this.menu},_renderButtonItem:function(e){var i=t("<span>");return this._setText(i,e.label),this._addClass(i,"ui-selectmenu-text"),i},_renderMenu:function(e,i){var s=this,n="";t.each(i,function(i,o){var a;o.optgroup!==n&&(a=t("<li>",{text:o.optgroup}),s._addClass(a,"ui-selectmenu-optgroup","ui-menu-divider"+(o.element.parent("optgroup").prop("disabled")?" ui-state-disabled":"")),a.appendTo(e),n=o.optgroup),s._renderItemData(e,o)})},_renderItemData:function(t,e){return this._renderItem(t,e).data("ui-selectmenu-item",e)},_renderItem:function(e,i){var s=t("<li>"),n=t("<div>",{title:i.element.attr("title")});return i.disabled&&this._addClass(s,null,"ui-state-disabled"),this._setText(n,i.label),s.append(n).appendTo(e)},_setText:function(t,e){e?t.text(e):t.html("&#160;")},_move:function(t,e){var i,s,n=".ui-menu-item";this.isOpen?i=this.menuItems.eq(this.focusIndex).parent("li"):(i=this.menuItems.eq(this.element[0].selectedIndex).parent("li"),n+=":not(.ui-state-disabled)"),s="first"===t||"last"===t?i["first"===t?"prevAll":"nextAll"](n).eq(-1):i[t+"All"](n).eq(0),s.length&&this.menuInstance.focus(e,s)},_getSelectedItem:function(){return this.menuItems.eq(this.element[0].selectedIndex).parent("li")},_toggle:function(t){this[this.isOpen?"close":"open"](t)},_setSelection:function(){var t;this.range&&(window.getSelection?(t=window.getSelection(),t.removeAllRanges(),t.addRange(this.range)):this.range.select(),this.button.focus())},_documentClick:{mousedown:function(e){this.isOpen&&(t(e.target).closest(".ui-selectmenu-menu, #"+t.ui.escapeSelector(this.ids.button)).length||this.close(e))}},_buttonEvents:{mousedown:function(){var t;window.getSelection?(t=window.getSelection(),t.rangeCount&&(this.range=t.getRangeAt(0))):this.range=document.selection.createRange()},click:function(t){this._setSelection(),this._toggle(t)},keydown:function(e){var i=!0;switch(e.keyCode){case t.ui.keyCode.TAB:case t.ui.keyCode.ESCAPE:this.close(e),i=!1;break;case t.ui.keyCode.ENTER:this.isOpen&&this._selectFocusedItem(e);break;case t.ui.keyCode.UP:e.altKey?this._toggle(e):this._move("prev",e);break;case t.ui.keyCode.DOWN:e.altKey?this._toggle(e):this._move("next",e);break;case t.ui.keyCode.SPACE:this.isOpen?this._selectFocusedItem(e):this._toggle(e);break;case t.ui.keyCode.LEFT:this._move("prev",e);break;case t.ui.keyCode.RIGHT:this._move("next",e);break;case t.ui.keyCode.HOME:case t.ui.keyCode.PAGE_UP:this._move("first",e);break;case t.ui.keyCode.END:case t.ui.keyCode.PAGE_DOWN:this._move("last",e);break;default:this.menu.trigger(e),i=!1}i&&e.preventDefault()}},_selectFocusedItem:function(t){var e=this.menuItems.eq(this.focusIndex).parent("li");e.hasClass("ui-state-disabled")||this._select(e.data("ui-selectmenu-item"),t)},_select:function(t,e){var i=this.element[0].selectedIndex;this.element[0].selectedIndex=t.index,this.buttonItem.replaceWith(this.buttonItem=this._renderButtonItem(t)),this._setAria(t),this._trigger("select",e,{item:t}),t.index!==i&&this._trigger("change",e,{item:t}),this.close(e)},_setAria:function(t){var e=this.menuItems.eq(t.index).attr("id");this.button.attr({"aria-labelledby":e,"aria-activedescendant":e}),this.menu.attr("aria-activedescendant",e)},_setOption:function(t,e){if("icons"===t){var i=this.button.find("span.ui-icon");this._removeClass(i,null,this.options.icons.button)._addClass(i,null,e.button)}this._super(t,e),"appendTo"===t&&this.menuWrap.appendTo(this._appendTo()),"width"===t&&this._resizeButton()},_setOptionDisabled:function(t){this._super(t),this.menuInstance.option("disabled",t),this.button.attr("aria-disabled",t),this._toggleClass(this.button,null,"ui-state-disabled",t),this.element.prop("disabled",t),t?(this.button.attr("tabindex",-1),this.close()):this.button.attr("tabindex",0)},_appendTo:function(){var e=this.options.appendTo;return e&&(e=e.jquery||e.nodeType?t(e):this.document.find(e).eq(0)),e&&e[0]||(e=this.element.closest(".ui-front, dialog")),e.length||(e=this.document[0].body),e},_toggleAttr:function(){this.button.attr("aria-expanded",this.isOpen),this._removeClass(this.button,"ui-selectmenu-button-"+(this.isOpen?"closed":"open"))._addClass(this.button,"ui-selectmenu-button-"+(this.isOpen?"open":"closed"))._toggleClass(this.menuWrap,"ui-selectmenu-open",null,this.isOpen),this.menu.attr("aria-hidden",!this.isOpen)},_resizeButton:function(){var t=this.options.width;return t===!1?(this.button.css("width",""),void 0):(null===t&&(t=this.element.show().outerWidth(),this.element.hide()),this.button.outerWidth(t),void 0)},_resizeMenu:function(){this.menu.outerWidth(Math.max(this.button.outerWidth(),this.menu.width("").outerWidth()+1))},_getCreateOptions:function(){var t=this._super();return t.disabled=this.element.prop("disabled"),t},_parseOptions:function(e){var i=this,s=[];e.each(function(e,n){s.push(i._parseOption(t(n),e))}),this.items=s},_parseOption:function(t,e){var i=t.parent("optgroup");return{element:t,index:e,value:t.val(),label:t.text(),optgroup:i.attr("label")||"",disabled:i.prop("disabled")||t.prop("disabled")}},_destroy:function(){this._unbindFormResetHandler(),this.menuWrap.remove(),this.button.remove(),this.element.show(),this.element.removeUniqueId(),this.labels.attr("for",this.ids.element)}}]),t.widget("ui.slider",t.ui.mouse,{version:"1.12.1",widgetEventPrefix:"slide",options:{animate:!1,classes:{"ui-slider":"ui-corner-all","ui-slider-handle":"ui-corner-all","ui-slider-range":"ui-corner-all ui-widget-header"},distance:0,max:100,min:0,orientation:"horizontal",range:!1,step:1,value:0,values:null,change:null,slide:null,start:null,stop:null},numPages:5,_create:function(){this._keySliding=!1,this._mouseSliding=!1,this._animateOff=!0,this._handleIndex=null,this._detectOrientation(),this._mouseInit(),this._calculateNewMax(),this._addClass("ui-slider ui-slider-"+this.orientation,"ui-widget ui-widget-content"),this._refresh(),this._animateOff=!1
-},_refresh:function(){this._createRange(),this._createHandles(),this._setupEvents(),this._refreshValue()},_createHandles:function(){var e,i,s=this.options,n=this.element.find(".ui-slider-handle"),o="<span tabindex='0'></span>",a=[];for(i=s.values&&s.values.length||1,n.length>i&&(n.slice(i).remove(),n=n.slice(0,i)),e=n.length;i>e;e++)a.push(o);this.handles=n.add(t(a.join("")).appendTo(this.element)),this._addClass(this.handles,"ui-slider-handle","ui-state-default"),this.handle=this.handles.eq(0),this.handles.each(function(e){t(this).data("ui-slider-handle-index",e).attr("tabIndex",0)})},_createRange:function(){var e=this.options;e.range?(e.range===!0&&(e.values?e.values.length&&2!==e.values.length?e.values=[e.values[0],e.values[0]]:t.isArray(e.values)&&(e.values=e.values.slice(0)):e.values=[this._valueMin(),this._valueMin()]),this.range&&this.range.length?(this._removeClass(this.range,"ui-slider-range-min ui-slider-range-max"),this.range.css({left:"",bottom:""})):(this.range=t("<div>").appendTo(this.element),this._addClass(this.range,"ui-slider-range")),("min"===e.range||"max"===e.range)&&this._addClass(this.range,"ui-slider-range-"+e.range)):(this.range&&this.range.remove(),this.range=null)},_setupEvents:function(){this._off(this.handles),this._on(this.handles,this._handleEvents),this._hoverable(this.handles),this._focusable(this.handles)},_destroy:function(){this.handles.remove(),this.range&&this.range.remove(),this._mouseDestroy()},_mouseCapture:function(e){var i,s,n,o,a,r,h,l,c=this,u=this.options;return u.disabled?!1:(this.elementSize={width:this.element.outerWidth(),height:this.element.outerHeight()},this.elementOffset=this.element.offset(),i={x:e.pageX,y:e.pageY},s=this._normValueFromMouse(i),n=this._valueMax()-this._valueMin()+1,this.handles.each(function(e){var i=Math.abs(s-c.values(e));(n>i||n===i&&(e===c._lastChangedValue||c.values(e)===u.min))&&(n=i,o=t(this),a=e)}),r=this._start(e,a),r===!1?!1:(this._mouseSliding=!0,this._handleIndex=a,this._addClass(o,null,"ui-state-active"),o.trigger("focus"),h=o.offset(),l=!t(e.target).parents().addBack().is(".ui-slider-handle"),this._clickOffset=l?{left:0,top:0}:{left:e.pageX-h.left-o.width()/2,top:e.pageY-h.top-o.height()/2-(parseInt(o.css("borderTopWidth"),10)||0)-(parseInt(o.css("borderBottomWidth"),10)||0)+(parseInt(o.css("marginTop"),10)||0)},this.handles.hasClass("ui-state-hover")||this._slide(e,a,s),this._animateOff=!0,!0))},_mouseStart:function(){return!0},_mouseDrag:function(t){var e={x:t.pageX,y:t.pageY},i=this._normValueFromMouse(e);return this._slide(t,this._handleIndex,i),!1},_mouseStop:function(t){return this._removeClass(this.handles,null,"ui-state-active"),this._mouseSliding=!1,this._stop(t,this._handleIndex),this._change(t,this._handleIndex),this._handleIndex=null,this._clickOffset=null,this._animateOff=!1,!1},_detectOrientation:function(){this.orientation="vertical"===this.options.orientation?"vertical":"horizontal"},_normValueFromMouse:function(t){var e,i,s,n,o;return"horizontal"===this.orientation?(e=this.elementSize.width,i=t.x-this.elementOffset.left-(this._clickOffset?this._clickOffset.left:0)):(e=this.elementSize.height,i=t.y-this.elementOffset.top-(this._clickOffset?this._clickOffset.top:0)),s=i/e,s>1&&(s=1),0>s&&(s=0),"vertical"===this.orientation&&(s=1-s),n=this._valueMax()-this._valueMin(),o=this._valueMin()+s*n,this._trimAlignValue(o)},_uiHash:function(t,e,i){var s={handle:this.handles[t],handleIndex:t,value:void 0!==e?e:this.value()};return this._hasMultipleValues()&&(s.value=void 0!==e?e:this.values(t),s.values=i||this.values()),s},_hasMultipleValues:function(){return this.options.values&&this.options.values.length},_start:function(t,e){return this._trigger("start",t,this._uiHash(e))},_slide:function(t,e,i){var s,n,o=this.value(),a=this.values();this._hasMultipleValues()&&(n=this.values(e?0:1),o=this.values(e),2===this.options.values.length&&this.options.range===!0&&(i=0===e?Math.min(n,i):Math.max(n,i)),a[e]=i),i!==o&&(s=this._trigger("slide",t,this._uiHash(e,i,a)),s!==!1&&(this._hasMultipleValues()?this.values(e,i):this.value(i)))},_stop:function(t,e){this._trigger("stop",t,this._uiHash(e))},_change:function(t,e){this._keySliding||this._mouseSliding||(this._lastChangedValue=e,this._trigger("change",t,this._uiHash(e)))},value:function(t){return arguments.length?(this.options.value=this._trimAlignValue(t),this._refreshValue(),this._change(null,0),void 0):this._value()},values:function(e,i){var s,n,o;if(arguments.length>1)return this.options.values[e]=this._trimAlignValue(i),this._refreshValue(),this._change(null,e),void 0;if(!arguments.length)return this._values();if(!t.isArray(arguments[0]))return this._hasMultipleValues()?this._values(e):this.value();for(s=this.options.values,n=arguments[0],o=0;s.length>o;o+=1)s[o]=this._trimAlignValue(n[o]),this._change(null,o);this._refreshValue()},_setOption:function(e,i){var s,n=0;switch("range"===e&&this.options.range===!0&&("min"===i?(this.options.value=this._values(0),this.options.values=null):"max"===i&&(this.options.value=this._values(this.options.values.length-1),this.options.values=null)),t.isArray(this.options.values)&&(n=this.options.values.length),this._super(e,i),e){case"orientation":this._detectOrientation(),this._removeClass("ui-slider-horizontal ui-slider-vertical")._addClass("ui-slider-"+this.orientation),this._refreshValue(),this.options.range&&this._refreshRange(i),this.handles.css("horizontal"===i?"bottom":"left","");break;case"value":this._animateOff=!0,this._refreshValue(),this._change(null,0),this._animateOff=!1;break;case"values":for(this._animateOff=!0,this._refreshValue(),s=n-1;s>=0;s--)this._change(null,s);this._animateOff=!1;break;case"step":case"min":case"max":this._animateOff=!0,this._calculateNewMax(),this._refreshValue(),this._animateOff=!1;break;case"range":this._animateOff=!0,this._refresh(),this._animateOff=!1}},_setOptionDisabled:function(t){this._super(t),this._toggleClass(null,"ui-state-disabled",!!t)},_value:function(){var t=this.options.value;return t=this._trimAlignValue(t)},_values:function(t){var e,i,s;if(arguments.length)return e=this.options.values[t],e=this._trimAlignValue(e);if(this._hasMultipleValues()){for(i=this.options.values.slice(),s=0;i.length>s;s+=1)i[s]=this._trimAlignValue(i[s]);return i}return[]},_trimAlignValue:function(t){if(this._valueMin()>=t)return this._valueMin();if(t>=this._valueMax())return this._valueMax();var e=this.options.step>0?this.options.step:1,i=(t-this._valueMin())%e,s=t-i;return 2*Math.abs(i)>=e&&(s+=i>0?e:-e),parseFloat(s.toFixed(5))},_calculateNewMax:function(){var t=this.options.max,e=this._valueMin(),i=this.options.step,s=Math.round((t-e)/i)*i;t=s+e,t>this.options.max&&(t-=i),this.max=parseFloat(t.toFixed(this._precision()))},_precision:function(){var t=this._precisionOf(this.options.step);return null!==this.options.min&&(t=Math.max(t,this._precisionOf(this.options.min))),t},_precisionOf:function(t){var e=""+t,i=e.indexOf(".");return-1===i?0:e.length-i-1},_valueMin:function(){return this.options.min},_valueMax:function(){return this.max},_refreshRange:function(t){"vertical"===t&&this.range.css({width:"",left:""}),"horizontal"===t&&this.range.css({height:"",bottom:""})},_refreshValue:function(){var e,i,s,n,o,a=this.options.range,r=this.options,h=this,l=this._animateOff?!1:r.animate,c={};this._hasMultipleValues()?this.handles.each(function(s){i=100*((h.values(s)-h._valueMin())/(h._valueMax()-h._valueMin())),c["horizontal"===h.orientation?"left":"bottom"]=i+"%",t(this).stop(1,1)[l?"animate":"css"](c,r.animate),h.options.range===!0&&("horizontal"===h.orientation?(0===s&&h.range.stop(1,1)[l?"animate":"css"]({left:i+"%"},r.animate),1===s&&h.range[l?"animate":"css"]({width:i-e+"%"},{queue:!1,duration:r.animate})):(0===s&&h.range.stop(1,1)[l?"animate":"css"]({bottom:i+"%"},r.animate),1===s&&h.range[l?"animate":"css"]({height:i-e+"%"},{queue:!1,duration:r.animate}))),e=i}):(s=this.value(),n=this._valueMin(),o=this._valueMax(),i=o!==n?100*((s-n)/(o-n)):0,c["horizontal"===this.orientation?"left":"bottom"]=i+"%",this.handle.stop(1,1)[l?"animate":"css"](c,r.animate),"min"===a&&"horizontal"===this.orientation&&this.range.stop(1,1)[l?"animate":"css"]({width:i+"%"},r.animate),"max"===a&&"horizontal"===this.orientation&&this.range.stop(1,1)[l?"animate":"css"]({width:100-i+"%"},r.animate),"min"===a&&"vertical"===this.orientation&&this.range.stop(1,1)[l?"animate":"css"]({height:i+"%"},r.animate),"max"===a&&"vertical"===this.orientation&&this.range.stop(1,1)[l?"animate":"css"]({height:100-i+"%"},r.animate))},_handleEvents:{keydown:function(e){var i,s,n,o,a=t(e.target).data("ui-slider-handle-index");switch(e.keyCode){case t.ui.keyCode.HOME:case t.ui.keyCode.END:case t.ui.keyCode.PAGE_UP:case t.ui.keyCode.PAGE_DOWN:case t.ui.keyCode.UP:case t.ui.keyCode.RIGHT:case t.ui.keyCode.DOWN:case t.ui.keyCode.LEFT:if(e.preventDefault(),!this._keySliding&&(this._keySliding=!0,this._addClass(t(e.target),null,"ui-state-active"),i=this._start(e,a),i===!1))return}switch(o=this.options.step,s=n=this._hasMultipleValues()?this.values(a):this.value(),e.keyCode){case t.ui.keyCode.HOME:n=this._valueMin();break;case t.ui.keyCode.END:n=this._valueMax();break;case t.ui.keyCode.PAGE_UP:n=this._trimAlignValue(s+(this._valueMax()-this._valueMin())/this.numPages);break;case t.ui.keyCode.PAGE_DOWN:n=this._trimAlignValue(s-(this._valueMax()-this._valueMin())/this.numPages);break;case t.ui.keyCode.UP:case t.ui.keyCode.RIGHT:if(s===this._valueMax())return;n=this._trimAlignValue(s+o);break;case t.ui.keyCode.DOWN:case t.ui.keyCode.LEFT:if(s===this._valueMin())return;n=this._trimAlignValue(s-o)}this._slide(e,a,n)},keyup:function(e){var i=t(e.target).data("ui-slider-handle-index");this._keySliding&&(this._keySliding=!1,this._stop(e,i),this._change(e,i),this._removeClass(t(e.target),null,"ui-state-active"))}}}),t.widget("ui.sortable",t.ui.mouse,{version:"1.12.1",widgetEventPrefix:"sort",ready:!1,options:{appendTo:"parent",axis:!1,connectWith:!1,containment:!1,cursor:"auto",cursorAt:!1,dropOnEmpty:!0,forcePlaceholderSize:!1,forceHelperSize:!1,grid:!1,handle:!1,helper:"original",items:"> *",opacity:!1,placeholder:!1,revert:!1,scroll:!0,scrollSensitivity:20,scrollSpeed:20,scope:"default",tolerance:"intersect",zIndex:1e3,activate:null,beforeStop:null,change:null,deactivate:null,out:null,over:null,receive:null,remove:null,sort:null,start:null,stop:null,update:null},_isOverAxis:function(t,e,i){return t>=e&&e+i>t},_isFloating:function(t){return/left|right/.test(t.css("float"))||/inline|table-cell/.test(t.css("display"))},_create:function(){this.containerCache={},this._addClass("ui-sortable"),this.refresh(),this.offset=this.element.offset(),this._mouseInit(),this._setHandleClassName(),this.ready=!0},_setOption:function(t,e){this._super(t,e),"handle"===t&&this._setHandleClassName()},_setHandleClassName:function(){var e=this;this._removeClass(this.element.find(".ui-sortable-handle"),"ui-sortable-handle"),t.each(this.items,function(){e._addClass(this.instance.options.handle?this.item.find(this.instance.options.handle):this.item,"ui-sortable-handle")})},_destroy:function(){this._mouseDestroy();for(var t=this.items.length-1;t>=0;t--)this.items[t].item.removeData(this.widgetName+"-item");return this},_mouseCapture:function(e,i){var s=null,n=!1,o=this;return this.reverting?!1:this.options.disabled||"static"===this.options.type?!1:(this._refreshItems(e),t(e.target).parents().each(function(){return t.data(this,o.widgetName+"-item")===o?(s=t(this),!1):void 0}),t.data(e.target,o.widgetName+"-item")===o&&(s=t(e.target)),s?!this.options.handle||i||(t(this.options.handle,s).find("*").addBack().each(function(){this===e.target&&(n=!0)}),n)?(this.currentItem=s,this._removeCurrentsFromItems(),!0):!1:!1)},_mouseStart:function(e,i,s){var n,o,a=this.options;if(this.currentContainer=this,this.refreshPositions(),this.helper=this._createHelper(e),this._cacheHelperProportions(),this._cacheMargins(),this.scrollParent=this.helper.scrollParent(),this.offset=this.currentItem.offset(),this.offset={top:this.offset.top-this.margins.top,left:this.offset.left-this.margins.left},t.extend(this.offset,{click:{left:e.pageX-this.offset.left,top:e.pageY-this.offset.top},parent:this._getParentOffset(),relative:this._getRelativeOffset()}),this.helper.css("position","absolute"),this.cssPosition=this.helper.css("position"),this.originalPosition=this._generatePosition(e),this.originalPageX=e.pageX,this.originalPageY=e.pageY,a.cursorAt&&this._adjustOffsetFromHelper(a.cursorAt),this.domPosition={prev:this.currentItem.prev()[0],parent:this.currentItem.parent()[0]},this.helper[0]!==this.currentItem[0]&&this.currentItem.hide(),this._createPlaceholder(),a.containment&&this._setContainment(),a.cursor&&"auto"!==a.cursor&&(o=this.document.find("body"),this.storedCursor=o.css("cursor"),o.css("cursor",a.cursor),this.storedStylesheet=t("<style>*{ cursor: "+a.cursor+" !important; }</style>").appendTo(o)),a.opacity&&(this.helper.css("opacity")&&(this._storedOpacity=this.helper.css("opacity")),this.helper.css("opacity",a.opacity)),a.zIndex&&(this.helper.css("zIndex")&&(this._storedZIndex=this.helper.css("zIndex")),this.helper.css("zIndex",a.zIndex)),this.scrollParent[0]!==this.document[0]&&"HTML"!==this.scrollParent[0].tagName&&(this.overflowOffset=this.scrollParent.offset()),this._trigger("start",e,this._uiHash()),this._preserveHelperProportions||this._cacheHelperProportions(),!s)for(n=this.containers.length-1;n>=0;n--)this.containers[n]._trigger("activate",e,this._uiHash(this));return t.ui.ddmanager&&(t.ui.ddmanager.current=this),t.ui.ddmanager&&!a.dropBehaviour&&t.ui.ddmanager.prepareOffsets(this,e),this.dragging=!0,this._addClass(this.helper,"ui-sortable-helper"),this._mouseDrag(e),!0},_mouseDrag:function(e){var i,s,n,o,a=this.options,r=!1;for(this.position=this._generatePosition(e),this.positionAbs=this._convertPositionTo("absolute"),this.lastPositionAbs||(this.lastPositionAbs=this.positionAbs),this.options.scroll&&(this.scrollParent[0]!==this.document[0]&&"HTML"!==this.scrollParent[0].tagName?(this.overflowOffset.top+this.scrollParent[0].offsetHeight-e.pageY<a.scrollSensitivity?this.scrollParent[0].scrollTop=r=this.scrollParent[0].scrollTop+a.scrollSpeed:e.pageY-this.overflowOffset.top<a.scrollSensitivity&&(this.scrollParent[0].scrollTop=r=this.scrollParent[0].scrollTop-a.scrollSpeed),this.overflowOffset.left+this.scrollParent[0].offsetWidth-e.pageX<a.scrollSensitivity?this.scrollParent[0].scrollLeft=r=this.scrollParent[0].scrollLeft+a.scrollSpeed:e.pageX-this.overflowOffset.left<a.scrollSensitivity&&(this.scrollParent[0].scrollLeft=r=this.scrollParent[0].scrollLeft-a.scrollSpeed)):(e.pageY-this.document.scrollTop()<a.scrollSensitivity?r=this.document.scrollTop(this.document.scrollTop()-a.scrollSpeed):this.window.height()-(e.pageY-this.document.scrollTop())<a.scrollSensitivity&&(r=this.document.scrollTop(this.document.scrollTop()+a.scrollSpeed)),e.pageX-this.document.scrollLeft()<a.scrollSensitivity?r=this.document.scrollLeft(this.document.scrollLeft()-a.scrollSpeed):this.window.width()-(e.pageX-this.document.scrollLeft())<a.scrollSensitivity&&(r=this.document.scrollLeft(this.document.scrollLeft()+a.scrollSpeed))),r!==!1&&t.ui.ddmanager&&!a.dropBehaviour&&t.ui.ddmanager.prepareOffsets(this,e)),this.positionAbs=this._convertPositionTo("absolute"),this.options.axis&&"y"===this.options.axis||(this.helper[0].style.left=this.position.left+"px"),this.options.axis&&"x"===this.options.axis||(this.helper[0].style.top=this.position.top+"px"),i=this.items.length-1;i>=0;i--)if(s=this.items[i],n=s.item[0],o=this._intersectsWithPointer(s),o&&s.instance===this.currentContainer&&n!==this.currentItem[0]&&this.placeholder[1===o?"next":"prev"]()[0]!==n&&!t.contains(this.placeholder[0],n)&&("semi-dynamic"===this.options.type?!t.contains(this.element[0],n):!0)){if(this.direction=1===o?"down":"up","pointer"!==this.options.tolerance&&!this._intersectsWithSides(s))break;this._rearrange(e,s),this._trigger("change",e,this._uiHash());break}return this._contactContainers(e),t.ui.ddmanager&&t.ui.ddmanager.drag(this,e),this._trigger("sort",e,this._uiHash()),this.lastPositionAbs=this.positionAbs,!1},_mouseStop:function(e,i){if(e){if(t.ui.ddmanager&&!this.options.dropBehaviour&&t.ui.ddmanager.drop(this,e),this.options.revert){var s=this,n=this.placeholder.offset(),o=this.options.axis,a={};o&&"x"!==o||(a.left=n.left-this.offset.parent.left-this.margins.left+(this.offsetParent[0]===this.document[0].body?0:this.offsetParent[0].scrollLeft)),o&&"y"!==o||(a.top=n.top-this.offset.parent.top-this.margins.top+(this.offsetParent[0]===this.document[0].body?0:this.offsetParent[0].scrollTop)),this.reverting=!0,t(this.helper).animate(a,parseInt(this.options.revert,10)||500,function(){s._clear(e)})}else this._clear(e,i);return!1}},cancel:function(){if(this.dragging){this._mouseUp(new t.Event("mouseup",{target:null})),"original"===this.options.helper?(this.currentItem.css(this._storedCSS),this._removeClass(this.currentItem,"ui-sortable-helper")):this.currentItem.show();for(var e=this.containers.length-1;e>=0;e--)this.containers[e]._trigger("deactivate",null,this._uiHash(this)),this.containers[e].containerCache.over&&(this.containers[e]._trigger("out",null,this._uiHash(this)),this.containers[e].containerCache.over=0)}return this.placeholder&&(this.placeholder[0].parentNode&&this.placeholder[0].parentNode.removeChild(this.placeholder[0]),"original"!==this.options.helper&&this.helper&&this.helper[0].parentNode&&this.helper.remove(),t.extend(this,{helper:null,dragging:!1,reverting:!1,_noFinalSort:null}),this.domPosition.prev?t(this.domPosition.prev).after(this.currentItem):t(this.domPosition.parent).prepend(this.currentItem)),this},serialize:function(e){var i=this._getItemsAsjQuery(e&&e.connected),s=[];return e=e||{},t(i).each(function(){var i=(t(e.item||this).attr(e.attribute||"id")||"").match(e.expression||/(.+)[\-=_](.+)/);i&&s.push((e.key||i[1]+"[]")+"="+(e.key&&e.expression?i[1]:i[2]))}),!s.length&&e.key&&s.push(e.key+"="),s.join("&")},toArray:function(e){var i=this._getItemsAsjQuery(e&&e.connected),s=[];return e=e||{},i.each(function(){s.push(t(e.item||this).attr(e.attribute||"id")||"")}),s},_intersectsWith:function(t){var e=this.positionAbs.left,i=e+this.helperProportions.width,s=this.positionAbs.top,n=s+this.helperProportions.height,o=t.left,a=o+t.width,r=t.top,h=r+t.height,l=this.offset.click.top,c=this.offset.click.left,u="x"===this.options.axis||s+l>r&&h>s+l,d="y"===this.options.axis||e+c>o&&a>e+c,p=u&&d;return"pointer"===this.options.tolerance||this.options.forcePointerForContainers||"pointer"!==this.options.tolerance&&this.helperProportions[this.floating?"width":"height"]>t[this.floating?"width":"height"]?p:e+this.helperProportions.width/2>o&&a>i-this.helperProportions.width/2&&s+this.helperProportions.height/2>r&&h>n-this.helperProportions.height/2},_intersectsWithPointer:function(t){var e,i,s="x"===this.options.axis||this._isOverAxis(this.positionAbs.top+this.offset.click.top,t.top,t.height),n="y"===this.options.axis||this._isOverAxis(this.positionAbs.left+this.offset.click.left,t.left,t.width),o=s&&n;return o?(e=this._getDragVerticalDirection(),i=this._getDragHorizontalDirection(),this.floating?"right"===i||"down"===e?2:1:e&&("down"===e?2:1)):!1},_intersectsWithSides:function(t){var e=this._isOverAxis(this.positionAbs.top+this.offset.click.top,t.top+t.height/2,t.height),i=this._isOverAxis(this.positionAbs.left+this.offset.click.left,t.left+t.width/2,t.width),s=this._getDragVerticalDirection(),n=this._getDragHorizontalDirection();return this.floating&&n?"right"===n&&i||"left"===n&&!i:s&&("down"===s&&e||"up"===s&&!e)},_getDragVerticalDirection:function(){var t=this.positionAbs.top-this.lastPositionAbs.top;return 0!==t&&(t>0?"down":"up")},_getDragHorizontalDirection:function(){var t=this.positionAbs.left-this.lastPositionAbs.left;return 0!==t&&(t>0?"right":"left")},refresh:function(t){return this._refreshItems(t),this._setHandleClassName(),this.refreshPositions(),this},_connectWith:function(){var t=this.options;return t.connectWith.constructor===String?[t.connectWith]:t.connectWith},_getItemsAsjQuery:function(e){function i(){r.push(this)}var s,n,o,a,r=[],h=[],l=this._connectWith();if(l&&e)for(s=l.length-1;s>=0;s--)for(o=t(l[s],this.document[0]),n=o.length-1;n>=0;n--)a=t.data(o[n],this.widgetFullName),a&&a!==this&&!a.options.disabled&&h.push([t.isFunction(a.options.items)?a.options.items.call(a.element):t(a.options.items,a.element).not(".ui-sortable-helper").not(".ui-sortable-placeholder"),a]);for(h.push([t.isFunction(this.options.items)?this.options.items.call(this.element,null,{options:this.options,item:this.currentItem}):t(this.options.items,this.element).not(".ui-sortable-helper").not(".ui-sortable-placeholder"),this]),s=h.length-1;s>=0;s--)h[s][0].each(i);return t(r)},_removeCurrentsFromItems:function(){var e=this.currentItem.find(":data("+this.widgetName+"-item)");this.items=t.grep(this.items,function(t){for(var i=0;e.length>i;i++)if(e[i]===t.item[0])return!1;return!0})},_refreshItems:function(e){this.items=[],this.containers=[this];var i,s,n,o,a,r,h,l,c=this.items,u=[[t.isFunction(this.options.items)?this.options.items.call(this.element[0],e,{item:this.currentItem}):t(this.options.items,this.element),this]],d=this._connectWith();if(d&&this.ready)for(i=d.length-1;i>=0;i--)for(n=t(d[i],this.document[0]),s=n.length-1;s>=0;s--)o=t.data(n[s],this.widgetFullName),o&&o!==this&&!o.options.disabled&&(u.push([t.isFunction(o.options.items)?o.options.items.call(o.element[0],e,{item:this.currentItem}):t(o.options.items,o.element),o]),this.containers.push(o));for(i=u.length-1;i>=0;i--)for(a=u[i][1],r=u[i][0],s=0,l=r.length;l>s;s++)h=t(r[s]),h.data(this.widgetName+"-item",a),c.push({item:h,instance:a,width:0,height:0,left:0,top:0})},refreshPositions:function(e){this.floating=this.items.length?"x"===this.options.axis||this._isFloating(this.items[0].item):!1,this.offsetParent&&this.helper&&(this.offset.parent=this._getParentOffset());var i,s,n,o;for(i=this.items.length-1;i>=0;i--)s=this.items[i],s.instance!==this.currentContainer&&this.currentContainer&&s.item[0]!==this.currentItem[0]||(n=this.options.toleranceElement?t(this.options.toleranceElement,s.item):s.item,e||(s.width=n.outerWidth(),s.height=n.outerHeight()),o=n.offset(),s.left=o.left,s.top=o.top);if(this.options.custom&&this.options.custom.refreshContainers)this.options.custom.refreshContainers.call(this);else for(i=this.containers.length-1;i>=0;i--)o=this.containers[i].element.offset(),this.containers[i].containerCache.left=o.left,this.containers[i].containerCache.top=o.top,this.containers[i].containerCache.width=this.containers[i].element.outerWidth(),this.containers[i].containerCache.height=this.containers[i].element.outerHeight();return this},_createPlaceholder:function(e){e=e||this;var i,s=e.options;s.placeholder&&s.placeholder.constructor!==String||(i=s.placeholder,s.placeholder={element:function(){var s=e.currentItem[0].nodeName.toLowerCase(),n=t("<"+s+">",e.document[0]);return e._addClass(n,"ui-sortable-placeholder",i||e.currentItem[0].className)._removeClass(n,"ui-sortable-helper"),"tbody"===s?e._createTrPlaceholder(e.currentItem.find("tr").eq(0),t("<tr>",e.document[0]).appendTo(n)):"tr"===s?e._createTrPlaceholder(e.currentItem,n):"img"===s&&n.attr("src",e.currentItem.attr("src")),i||n.css("visibility","hidden"),n},update:function(t,n){(!i||s.forcePlaceholderSize)&&(n.height()||n.height(e.currentItem.innerHeight()-parseInt(e.currentItem.css("paddingTop")||0,10)-parseInt(e.currentItem.css("paddingBottom")||0,10)),n.width()||n.width(e.currentItem.innerWidth()-parseInt(e.currentItem.css("paddingLeft")||0,10)-parseInt(e.currentItem.css("paddingRight")||0,10)))}}),e.placeholder=t(s.placeholder.element.call(e.element,e.currentItem)),e.currentItem.after(e.placeholder),s.placeholder.update(e,e.placeholder)},_createTrPlaceholder:function(e,i){var s=this;e.children().each(function(){t("<td>&#160;</td>",s.document[0]).attr("colspan",t(this).attr("colspan")||1).appendTo(i)})},_contactContainers:function(e){var i,s,n,o,a,r,h,l,c,u,d=null,p=null;for(i=this.containers.length-1;i>=0;i--)if(!t.contains(this.currentItem[0],this.containers[i].element[0]))if(this._intersectsWith(this.containers[i].containerCache)){if(d&&t.contains(this.containers[i].element[0],d.element[0]))continue;d=this.containers[i],p=i}else this.containers[i].containerCache.over&&(this.containers[i]._trigger("out",e,this._uiHash(this)),this.containers[i].containerCache.over=0);if(d)if(1===this.containers.length)this.containers[p].containerCache.over||(this.containers[p]._trigger("over",e,this._uiHash(this)),this.containers[p].containerCache.over=1);else{for(n=1e4,o=null,c=d.floating||this._isFloating(this.currentItem),a=c?"left":"top",r=c?"width":"height",u=c?"pageX":"pageY",s=this.items.length-1;s>=0;s--)t.contains(this.containers[p].element[0],this.items[s].item[0])&&this.items[s].item[0]!==this.currentItem[0]&&(h=this.items[s].item.offset()[a],l=!1,e[u]-h>this.items[s][r]/2&&(l=!0),n>Math.abs(e[u]-h)&&(n=Math.abs(e[u]-h),o=this.items[s],this.direction=l?"up":"down"));if(!o&&!this.options.dropOnEmpty)return;if(this.currentContainer===this.containers[p])return this.currentContainer.containerCache.over||(this.containers[p]._trigger("over",e,this._uiHash()),this.currentContainer.containerCache.over=1),void 0;o?this._rearrange(e,o,null,!0):this._rearrange(e,null,this.containers[p].element,!0),this._trigger("change",e,this._uiHash()),this.containers[p]._trigger("change",e,this._uiHash(this)),this.currentContainer=this.containers[p],this.options.placeholder.update(this.currentContainer,this.placeholder),this.containers[p]._trigger("over",e,this._uiHash(this)),this.containers[p].containerCache.over=1}},_createHelper:function(e){var i=this.options,s=t.isFunction(i.helper)?t(i.helper.apply(this.element[0],[e,this.currentItem])):"clone"===i.helper?this.currentItem.clone():this.currentItem;return s.parents("body").length||t("parent"!==i.appendTo?i.appendTo:this.currentItem[0].parentNode)[0].appendChild(s[0]),s[0]===this.currentItem[0]&&(this._storedCSS={width:this.currentItem[0].style.width,height:this.currentItem[0].style.height,position:this.currentItem.css("position"),top:this.currentItem.css("top"),left:this.currentItem.css("left")}),(!s[0].style.width||i.forceHelperSize)&&s.width(this.currentItem.width()),(!s[0].style.height||i.forceHelperSize)&&s.height(this.currentItem.height()),s},_adjustOffsetFromHelper:function(e){"string"==typeof e&&(e=e.split(" ")),t.isArray(e)&&(e={left:+e[0],top:+e[1]||0}),"left"in e&&(this.offset.click.left=e.left+this.margins.left),"right"in e&&(this.offset.click.left=this.helperProportions.width-e.right+this.margins.left),"top"in e&&(this.offset.click.top=e.top+this.margins.top),"bottom"in e&&(this.offset.click.top=this.helperProportions.height-e.bottom+this.margins.top)},_getParentOffset:function(){this.offsetParent=this.helper.offsetParent();var e=this.offsetParent.offset();return"absolute"===this.cssPosition&&this.scrollParent[0]!==this.document[0]&&t.contains(this.scrollParent[0],this.offsetParent[0])&&(e.left+=this.scrollParent.scrollLeft(),e.top+=this.scrollParent.scrollTop()),(this.offsetParent[0]===this.document[0].body||this.offsetParent[0].tagName&&"html"===this.offsetParent[0].tagName.toLowerCase()&&t.ui.ie)&&(e={top:0,left:0}),{top:e.top+(parseInt(this.offsetParent.css("borderTopWidth"),10)||0),left:e.left+(parseInt(this.offsetParent.css("borderLeftWidth"),10)||0)}},_getRelativeOffset:function(){if("relative"===this.cssPosition){var t=this.currentItem.position();return{top:t.top-(parseInt(this.helper.css("top"),10)||0)+this.scrollParent.scrollTop(),left:t.left-(parseInt(this.helper.css("left"),10)||0)+this.scrollParent.scrollLeft()}}return{top:0,left:0}},_cacheMargins:function(){this.margins={left:parseInt(this.currentItem.css("marginLeft"),10)||0,top:parseInt(this.currentItem.css("marginTop"),10)||0}},_cacheHelperProportions:function(){this.helperProportions={width:this.helper.outerWidth(),height:this.helper.outerHeight()}},_setContainment:function(){var e,i,s,n=this.options;"parent"===n.containment&&(n.containment=this.helper[0].parentNode),("document"===n.containment||"window"===n.containment)&&(this.containment=[0-this.offset.relative.left-this.offset.parent.left,0-this.offset.relative.top-this.offset.parent.top,"document"===n.containment?this.document.width():this.window.width()-this.helperProportions.width-this.margins.left,("document"===n.containment?this.document.height()||document.body.parentNode.scrollHeight:this.window.height()||this.document[0].body.parentNode.scrollHeight)-this.helperProportions.height-this.margins.top]),/^(document|window|parent)$/.test(n.containment)||(e=t(n.containment)[0],i=t(n.containment).offset(),s="hidden"!==t(e).css("overflow"),this.containment=[i.left+(parseInt(t(e).css("borderLeftWidth"),10)||0)+(parseInt(t(e).css("paddingLeft"),10)||0)-this.margins.left,i.top+(parseInt(t(e).css("borderTopWidth"),10)||0)+(parseInt(t(e).css("paddingTop"),10)||0)-this.margins.top,i.left+(s?Math.max(e.scrollWidth,e.offsetWidth):e.offsetWidth)-(parseInt(t(e).css("borderLeftWidth"),10)||0)-(parseInt(t(e).css("paddingRight"),10)||0)-this.helperProportions.width-this.margins.left,i.top+(s?Math.max(e.scrollHeight,e.offsetHeight):e.offsetHeight)-(parseInt(t(e).css("borderTopWidth"),10)||0)-(parseInt(t(e).css("paddingBottom"),10)||0)-this.helperProportions.height-this.margins.top])},_convertPositionTo:function(e,i){i||(i=this.position);var s="absolute"===e?1:-1,n="absolute"!==this.cssPosition||this.scrollParent[0]!==this.document[0]&&t.contains(this.scrollParent[0],this.offsetParent[0])?this.scrollParent:this.offsetParent,o=/(html|body)/i.test(n[0].tagName);return{top:i.top+this.offset.relative.top*s+this.offset.parent.top*s-("fixed"===this.cssPosition?-this.scrollParent.scrollTop():o?0:n.scrollTop())*s,left:i.left+this.offset.relative.left*s+this.offset.parent.left*s-("fixed"===this.cssPosition?-this.scrollParent.scrollLeft():o?0:n.scrollLeft())*s}},_generatePosition:function(e){var i,s,n=this.options,o=e.pageX,a=e.pageY,r="absolute"!==this.cssPosition||this.scrollParent[0]!==this.document[0]&&t.contains(this.scrollParent[0],this.offsetParent[0])?this.scrollParent:this.offsetParent,h=/(html|body)/i.test(r[0].tagName);return"relative"!==this.cssPosition||this.scrollParent[0]!==this.document[0]&&this.scrollParent[0]!==this.offsetParent[0]||(this.offset.relative=this._getRelativeOffset()),this.originalPosition&&(this.containment&&(e.pageX-this.offset.click.left<this.containment[0]&&(o=this.containment[0]+this.offset.click.left),e.pageY-this.offset.click.top<this.containment[1]&&(a=this.containment[1]+this.offset.click.top),e.pageX-this.offset.click.left>this.containment[2]&&(o=this.containment[2]+this.offset.click.left),e.pageY-this.offset.click.top>this.containment[3]&&(a=this.containment[3]+this.offset.click.top)),n.grid&&(i=this.originalPageY+Math.round((a-this.originalPageY)/n.grid[1])*n.grid[1],a=this.containment?i-this.offset.click.top>=this.containment[1]&&i-this.offset.click.top<=this.containment[3]?i:i-this.offset.click.top>=this.containment[1]?i-n.grid[1]:i+n.grid[1]:i,s=this.originalPageX+Math.round((o-this.originalPageX)/n.grid[0])*n.grid[0],o=this.containment?s-this.offset.click.left>=this.containment[0]&&s-this.offset.click.left<=this.containment[2]?s:s-this.offset.click.left>=this.containment[0]?s-n.grid[0]:s+n.grid[0]:s)),{top:a-this.offset.click.top-this.offset.relative.top-this.offset.parent.top+("fixed"===this.cssPosition?-this.scrollParent.scrollTop():h?0:r.scrollTop()),left:o-this.offset.click.left-this.offset.relative.left-this.offset.parent.left+("fixed"===this.cssPosition?-this.scrollParent.scrollLeft():h?0:r.scrollLeft())}},_rearrange:function(t,e,i,s){i?i[0].appendChild(this.placeholder[0]):e.item[0].parentNode.insertBefore(this.placeholder[0],"down"===this.direction?e.item[0]:e.item[0].nextSibling),this.counter=this.counter?++this.counter:1;var n=this.counter;
-this._delay(function(){n===this.counter&&this.refreshPositions(!s)})},_clear:function(t,e){function i(t,e,i){return function(s){i._trigger(t,s,e._uiHash(e))}}this.reverting=!1;var s,n=[];if(!this._noFinalSort&&this.currentItem.parent().length&&this.placeholder.before(this.currentItem),this._noFinalSort=null,this.helper[0]===this.currentItem[0]){for(s in this._storedCSS)("auto"===this._storedCSS[s]||"static"===this._storedCSS[s])&&(this._storedCSS[s]="");this.currentItem.css(this._storedCSS),this._removeClass(this.currentItem,"ui-sortable-helper")}else this.currentItem.show();for(this.fromOutside&&!e&&n.push(function(t){this._trigger("receive",t,this._uiHash(this.fromOutside))}),!this.fromOutside&&this.domPosition.prev===this.currentItem.prev().not(".ui-sortable-helper")[0]&&this.domPosition.parent===this.currentItem.parent()[0]||e||n.push(function(t){this._trigger("update",t,this._uiHash())}),this!==this.currentContainer&&(e||(n.push(function(t){this._trigger("remove",t,this._uiHash())}),n.push(function(t){return function(e){t._trigger("receive",e,this._uiHash(this))}}.call(this,this.currentContainer)),n.push(function(t){return function(e){t._trigger("update",e,this._uiHash(this))}}.call(this,this.currentContainer)))),s=this.containers.length-1;s>=0;s--)e||n.push(i("deactivate",this,this.containers[s])),this.containers[s].containerCache.over&&(n.push(i("out",this,this.containers[s])),this.containers[s].containerCache.over=0);if(this.storedCursor&&(this.document.find("body").css("cursor",this.storedCursor),this.storedStylesheet.remove()),this._storedOpacity&&this.helper.css("opacity",this._storedOpacity),this._storedZIndex&&this.helper.css("zIndex","auto"===this._storedZIndex?"":this._storedZIndex),this.dragging=!1,e||this._trigger("beforeStop",t,this._uiHash()),this.placeholder[0].parentNode.removeChild(this.placeholder[0]),this.cancelHelperRemoval||(this.helper[0]!==this.currentItem[0]&&this.helper.remove(),this.helper=null),!e){for(s=0;n.length>s;s++)n[s].call(this,t);this._trigger("stop",t,this._uiHash())}return this.fromOutside=!1,!this.cancelHelperRemoval},_trigger:function(){t.Widget.prototype._trigger.apply(this,arguments)===!1&&this.cancel()},_uiHash:function(e){var i=e||this;return{helper:i.helper,placeholder:i.placeholder||t([]),position:i.position,originalPosition:i.originalPosition,offset:i.positionAbs,item:i.currentItem,sender:e?e.element:null}}}),t.widget("ui.spinner",{version:"1.12.1",defaultElement:"<input>",widgetEventPrefix:"spin",options:{classes:{"ui-spinner":"ui-corner-all","ui-spinner-down":"ui-corner-br","ui-spinner-up":"ui-corner-tr"},culture:null,icons:{down:"ui-icon-triangle-1-s",up:"ui-icon-triangle-1-n"},incremental:!0,max:null,min:null,numberFormat:null,page:10,step:1,change:null,spin:null,start:null,stop:null},_create:function(){this._setOption("max",this.options.max),this._setOption("min",this.options.min),this._setOption("step",this.options.step),""!==this.value()&&this._value(this.element.val(),!0),this._draw(),this._on(this._events),this._refresh(),this._on(this.window,{beforeunload:function(){this.element.removeAttr("autocomplete")}})},_getCreateOptions:function(){var e=this._super(),i=this.element;return t.each(["min","max","step"],function(t,s){var n=i.attr(s);null!=n&&n.length&&(e[s]=n)}),e},_events:{keydown:function(t){this._start(t)&&this._keydown(t)&&t.preventDefault()},keyup:"_stop",focus:function(){this.previous=this.element.val()},blur:function(t){return this.cancelBlur?(delete this.cancelBlur,void 0):(this._stop(),this._refresh(),this.previous!==this.element.val()&&this._trigger("change",t),void 0)},mousewheel:function(t,e){if(e){if(!this.spinning&&!this._start(t))return!1;this._spin((e>0?1:-1)*this.options.step,t),clearTimeout(this.mousewheelTimer),this.mousewheelTimer=this._delay(function(){this.spinning&&this._stop(t)},100),t.preventDefault()}},"mousedown .ui-spinner-button":function(e){function i(){var e=this.element[0]===t.ui.safeActiveElement(this.document[0]);e||(this.element.trigger("focus"),this.previous=s,this._delay(function(){this.previous=s}))}var s;s=this.element[0]===t.ui.safeActiveElement(this.document[0])?this.previous:this.element.val(),e.preventDefault(),i.call(this),this.cancelBlur=!0,this._delay(function(){delete this.cancelBlur,i.call(this)}),this._start(e)!==!1&&this._repeat(null,t(e.currentTarget).hasClass("ui-spinner-up")?1:-1,e)},"mouseup .ui-spinner-button":"_stop","mouseenter .ui-spinner-button":function(e){return t(e.currentTarget).hasClass("ui-state-active")?this._start(e)===!1?!1:(this._repeat(null,t(e.currentTarget).hasClass("ui-spinner-up")?1:-1,e),void 0):void 0},"mouseleave .ui-spinner-button":"_stop"},_enhance:function(){this.uiSpinner=this.element.attr("autocomplete","off").wrap("<span>").parent().append("<a></a><a></a>")},_draw:function(){this._enhance(),this._addClass(this.uiSpinner,"ui-spinner","ui-widget ui-widget-content"),this._addClass("ui-spinner-input"),this.element.attr("role","spinbutton"),this.buttons=this.uiSpinner.children("a").attr("tabIndex",-1).attr("aria-hidden",!0).button({classes:{"ui-button":""}}),this._removeClass(this.buttons,"ui-corner-all"),this._addClass(this.buttons.first(),"ui-spinner-button ui-spinner-up"),this._addClass(this.buttons.last(),"ui-spinner-button ui-spinner-down"),this.buttons.first().button({icon:this.options.icons.up,showLabel:!1}),this.buttons.last().button({icon:this.options.icons.down,showLabel:!1}),this.buttons.height()>Math.ceil(.5*this.uiSpinner.height())&&this.uiSpinner.height()>0&&this.uiSpinner.height(this.uiSpinner.height())},_keydown:function(e){var i=this.options,s=t.ui.keyCode;switch(e.keyCode){case s.UP:return this._repeat(null,1,e),!0;case s.DOWN:return this._repeat(null,-1,e),!0;case s.PAGE_UP:return this._repeat(null,i.page,e),!0;case s.PAGE_DOWN:return this._repeat(null,-i.page,e),!0}return!1},_start:function(t){return this.spinning||this._trigger("start",t)!==!1?(this.counter||(this.counter=1),this.spinning=!0,!0):!1},_repeat:function(t,e,i){t=t||500,clearTimeout(this.timer),this.timer=this._delay(function(){this._repeat(40,e,i)},t),this._spin(e*this.options.step,i)},_spin:function(t,e){var i=this.value()||0;this.counter||(this.counter=1),i=this._adjustValue(i+t*this._increment(this.counter)),this.spinning&&this._trigger("spin",e,{value:i})===!1||(this._value(i),this.counter++)},_increment:function(e){var i=this.options.incremental;return i?t.isFunction(i)?i(e):Math.floor(e*e*e/5e4-e*e/500+17*e/200+1):1},_precision:function(){var t=this._precisionOf(this.options.step);return null!==this.options.min&&(t=Math.max(t,this._precisionOf(this.options.min))),t},_precisionOf:function(t){var e=""+t,i=e.indexOf(".");return-1===i?0:e.length-i-1},_adjustValue:function(t){var e,i,s=this.options;return e=null!==s.min?s.min:0,i=t-e,i=Math.round(i/s.step)*s.step,t=e+i,t=parseFloat(t.toFixed(this._precision())),null!==s.max&&t>s.max?s.max:null!==s.min&&s.min>t?s.min:t},_stop:function(t){this.spinning&&(clearTimeout(this.timer),clearTimeout(this.mousewheelTimer),this.counter=0,this.spinning=!1,this._trigger("stop",t))},_setOption:function(t,e){var i,s,n;return"culture"===t||"numberFormat"===t?(i=this._parse(this.element.val()),this.options[t]=e,this.element.val(this._format(i)),void 0):(("max"===t||"min"===t||"step"===t)&&"string"==typeof e&&(e=this._parse(e)),"icons"===t&&(s=this.buttons.first().find(".ui-icon"),this._removeClass(s,null,this.options.icons.up),this._addClass(s,null,e.up),n=this.buttons.last().find(".ui-icon"),this._removeClass(n,null,this.options.icons.down),this._addClass(n,null,e.down)),this._super(t,e),void 0)},_setOptionDisabled:function(t){this._super(t),this._toggleClass(this.uiSpinner,null,"ui-state-disabled",!!t),this.element.prop("disabled",!!t),this.buttons.button(t?"disable":"enable")},_setOptions:r(function(t){this._super(t)}),_parse:function(t){return"string"==typeof t&&""!==t&&(t=window.Globalize&&this.options.numberFormat?Globalize.parseFloat(t,10,this.options.culture):+t),""===t||isNaN(t)?null:t},_format:function(t){return""===t?"":window.Globalize&&this.options.numberFormat?Globalize.format(t,this.options.numberFormat,this.options.culture):t},_refresh:function(){this.element.attr({"aria-valuemin":this.options.min,"aria-valuemax":this.options.max,"aria-valuenow":this._parse(this.element.val())})},isValid:function(){var t=this.value();return null===t?!1:t===this._adjustValue(t)},_value:function(t,e){var i;""!==t&&(i=this._parse(t),null!==i&&(e||(i=this._adjustValue(i)),t=this._format(i))),this.element.val(t),this._refresh()},_destroy:function(){this.element.prop("disabled",!1).removeAttr("autocomplete role aria-valuemin aria-valuemax aria-valuenow"),this.uiSpinner.replaceWith(this.element)},stepUp:r(function(t){this._stepUp(t)}),_stepUp:function(t){this._start()&&(this._spin((t||1)*this.options.step),this._stop())},stepDown:r(function(t){this._stepDown(t)}),_stepDown:function(t){this._start()&&(this._spin((t||1)*-this.options.step),this._stop())},pageUp:r(function(t){this._stepUp((t||1)*this.options.page)}),pageDown:r(function(t){this._stepDown((t||1)*this.options.page)}),value:function(t){return arguments.length?(r(this._value).call(this,t),void 0):this._parse(this.element.val())},widget:function(){return this.uiSpinner}}),t.uiBackCompat!==!1&&t.widget("ui.spinner",t.ui.spinner,{_enhance:function(){this.uiSpinner=this.element.attr("autocomplete","off").wrap(this._uiSpinnerHtml()).parent().append(this._buttonHtml())},_uiSpinnerHtml:function(){return"<span>"},_buttonHtml:function(){return"<a></a><a></a>"}}),t.ui.spinner,t.widget("ui.tabs",{version:"1.12.1",delay:300,options:{active:null,classes:{"ui-tabs":"ui-corner-all","ui-tabs-nav":"ui-corner-all","ui-tabs-panel":"ui-corner-bottom","ui-tabs-tab":"ui-corner-top"},collapsible:!1,event:"click",heightStyle:"content",hide:null,show:null,activate:null,beforeActivate:null,beforeLoad:null,load:null},_isLocal:function(){var t=/#.*$/;return function(e){var i,s;i=e.href.replace(t,""),s=location.href.replace(t,"");try{i=decodeURIComponent(i)}catch(n){}try{s=decodeURIComponent(s)}catch(n){}return e.hash.length>1&&i===s}}(),_create:function(){var e=this,i=this.options;this.running=!1,this._addClass("ui-tabs","ui-widget ui-widget-content"),this._toggleClass("ui-tabs-collapsible",null,i.collapsible),this._processTabs(),i.active=this._initialActive(),t.isArray(i.disabled)&&(i.disabled=t.unique(i.disabled.concat(t.map(this.tabs.filter(".ui-state-disabled"),function(t){return e.tabs.index(t)}))).sort()),this.active=this.options.active!==!1&&this.anchors.length?this._findActive(i.active):t(),this._refresh(),this.active.length&&this.load(i.active)},_initialActive:function(){var e=this.options.active,i=this.options.collapsible,s=location.hash.substring(1);return null===e&&(s&&this.tabs.each(function(i,n){return t(n).attr("aria-controls")===s?(e=i,!1):void 0}),null===e&&(e=this.tabs.index(this.tabs.filter(".ui-tabs-active"))),(null===e||-1===e)&&(e=this.tabs.length?0:!1)),e!==!1&&(e=this.tabs.index(this.tabs.eq(e)),-1===e&&(e=i?!1:0)),!i&&e===!1&&this.anchors.length&&(e=0),e},_getCreateEventData:function(){return{tab:this.active,panel:this.active.length?this._getPanelForTab(this.active):t()}},_tabKeydown:function(e){var i=t(t.ui.safeActiveElement(this.document[0])).closest("li"),s=this.tabs.index(i),n=!0;if(!this._handlePageNav(e)){switch(e.keyCode){case t.ui.keyCode.RIGHT:case t.ui.keyCode.DOWN:s++;break;case t.ui.keyCode.UP:case t.ui.keyCode.LEFT:n=!1,s--;break;case t.ui.keyCode.END:s=this.anchors.length-1;break;case t.ui.keyCode.HOME:s=0;break;case t.ui.keyCode.SPACE:return e.preventDefault(),clearTimeout(this.activating),this._activate(s),void 0;case t.ui.keyCode.ENTER:return e.preventDefault(),clearTimeout(this.activating),this._activate(s===this.options.active?!1:s),void 0;default:return}e.preventDefault(),clearTimeout(this.activating),s=this._focusNextTab(s,n),e.ctrlKey||e.metaKey||(i.attr("aria-selected","false"),this.tabs.eq(s).attr("aria-selected","true"),this.activating=this._delay(function(){this.option("active",s)},this.delay))}},_panelKeydown:function(e){this._handlePageNav(e)||e.ctrlKey&&e.keyCode===t.ui.keyCode.UP&&(e.preventDefault(),this.active.trigger("focus"))},_handlePageNav:function(e){return e.altKey&&e.keyCode===t.ui.keyCode.PAGE_UP?(this._activate(this._focusNextTab(this.options.active-1,!1)),!0):e.altKey&&e.keyCode===t.ui.keyCode.PAGE_DOWN?(this._activate(this._focusNextTab(this.options.active+1,!0)),!0):void 0},_findNextTab:function(e,i){function s(){return e>n&&(e=0),0>e&&(e=n),e}for(var n=this.tabs.length-1;-1!==t.inArray(s(),this.options.disabled);)e=i?e+1:e-1;return e},_focusNextTab:function(t,e){return t=this._findNextTab(t,e),this.tabs.eq(t).trigger("focus"),t},_setOption:function(t,e){return"active"===t?(this._activate(e),void 0):(this._super(t,e),"collapsible"===t&&(this._toggleClass("ui-tabs-collapsible",null,e),e||this.options.active!==!1||this._activate(0)),"event"===t&&this._setupEvents(e),"heightStyle"===t&&this._setupHeightStyle(e),void 0)},_sanitizeSelector:function(t){return t?t.replace(/[!"$%&'()*+,.\/:;<=>?@\[\]\^`{|}~]/g,"\\$&"):""},refresh:function(){var e=this.options,i=this.tablist.children(":has(a[href])");e.disabled=t.map(i.filter(".ui-state-disabled"),function(t){return i.index(t)}),this._processTabs(),e.active!==!1&&this.anchors.length?this.active.length&&!t.contains(this.tablist[0],this.active[0])?this.tabs.length===e.disabled.length?(e.active=!1,this.active=t()):this._activate(this._findNextTab(Math.max(0,e.active-1),!1)):e.active=this.tabs.index(this.active):(e.active=!1,this.active=t()),this._refresh()},_refresh:function(){this._setOptionDisabled(this.options.disabled),this._setupEvents(this.options.event),this._setupHeightStyle(this.options.heightStyle),this.tabs.not(this.active).attr({"aria-selected":"false","aria-expanded":"false",tabIndex:-1}),this.panels.not(this._getPanelForTab(this.active)).hide().attr({"aria-hidden":"true"}),this.active.length?(this.active.attr({"aria-selected":"true","aria-expanded":"true",tabIndex:0}),this._addClass(this.active,"ui-tabs-active","ui-state-active"),this._getPanelForTab(this.active).show().attr({"aria-hidden":"false"})):this.tabs.eq(0).attr("tabIndex",0)},_processTabs:function(){var e=this,i=this.tabs,s=this.anchors,n=this.panels;this.tablist=this._getList().attr("role","tablist"),this._addClass(this.tablist,"ui-tabs-nav","ui-helper-reset ui-helper-clearfix ui-widget-header"),this.tablist.on("mousedown"+this.eventNamespace,"> li",function(e){t(this).is(".ui-state-disabled")&&e.preventDefault()}).on("focus"+this.eventNamespace,".ui-tabs-anchor",function(){t(this).closest("li").is(".ui-state-disabled")&&this.blur()}),this.tabs=this.tablist.find("> li:has(a[href])").attr({role:"tab",tabIndex:-1}),this._addClass(this.tabs,"ui-tabs-tab","ui-state-default"),this.anchors=this.tabs.map(function(){return t("a",this)[0]}).attr({role:"presentation",tabIndex:-1}),this._addClass(this.anchors,"ui-tabs-anchor"),this.panels=t(),this.anchors.each(function(i,s){var n,o,a,r=t(s).uniqueId().attr("id"),h=t(s).closest("li"),l=h.attr("aria-controls");e._isLocal(s)?(n=s.hash,a=n.substring(1),o=e.element.find(e._sanitizeSelector(n))):(a=h.attr("aria-controls")||t({}).uniqueId()[0].id,n="#"+a,o=e.element.find(n),o.length||(o=e._createPanel(a),o.insertAfter(e.panels[i-1]||e.tablist)),o.attr("aria-live","polite")),o.length&&(e.panels=e.panels.add(o)),l&&h.data("ui-tabs-aria-controls",l),h.attr({"aria-controls":a,"aria-labelledby":r}),o.attr("aria-labelledby",r)}),this.panels.attr("role","tabpanel"),this._addClass(this.panels,"ui-tabs-panel","ui-widget-content"),i&&(this._off(i.not(this.tabs)),this._off(s.not(this.anchors)),this._off(n.not(this.panels)))},_getList:function(){return this.tablist||this.element.find("ol, ul").eq(0)},_createPanel:function(e){return t("<div>").attr("id",e).data("ui-tabs-destroy",!0)},_setOptionDisabled:function(e){var i,s,n;for(t.isArray(e)&&(e.length?e.length===this.anchors.length&&(e=!0):e=!1),n=0;s=this.tabs[n];n++)i=t(s),e===!0||-1!==t.inArray(n,e)?(i.attr("aria-disabled","true"),this._addClass(i,null,"ui-state-disabled")):(i.removeAttr("aria-disabled"),this._removeClass(i,null,"ui-state-disabled"));this.options.disabled=e,this._toggleClass(this.widget(),this.widgetFullName+"-disabled",null,e===!0)},_setupEvents:function(e){var i={};e&&t.each(e.split(" "),function(t,e){i[e]="_eventHandler"}),this._off(this.anchors.add(this.tabs).add(this.panels)),this._on(!0,this.anchors,{click:function(t){t.preventDefault()}}),this._on(this.anchors,i),this._on(this.tabs,{keydown:"_tabKeydown"}),this._on(this.panels,{keydown:"_panelKeydown"}),this._focusable(this.tabs),this._hoverable(this.tabs)},_setupHeightStyle:function(e){var i,s=this.element.parent();"fill"===e?(i=s.height(),i-=this.element.outerHeight()-this.element.height(),this.element.siblings(":visible").each(function(){var e=t(this),s=e.css("position");"absolute"!==s&&"fixed"!==s&&(i-=e.outerHeight(!0))}),this.element.children().not(this.panels).each(function(){i-=t(this).outerHeight(!0)}),this.panels.each(function(){t(this).height(Math.max(0,i-t(this).innerHeight()+t(this).height()))}).css("overflow","auto")):"auto"===e&&(i=0,this.panels.each(function(){i=Math.max(i,t(this).height("").height())}).height(i))},_eventHandler:function(e){var i=this.options,s=this.active,n=t(e.currentTarget),o=n.closest("li"),a=o[0]===s[0],r=a&&i.collapsible,h=r?t():this._getPanelForTab(o),l=s.length?this._getPanelForTab(s):t(),c={oldTab:s,oldPanel:l,newTab:r?t():o,newPanel:h};e.preventDefault(),o.hasClass("ui-state-disabled")||o.hasClass("ui-tabs-loading")||this.running||a&&!i.collapsible||this._trigger("beforeActivate",e,c)===!1||(i.active=r?!1:this.tabs.index(o),this.active=a?t():o,this.xhr&&this.xhr.abort(),l.length||h.length||t.error("jQuery UI Tabs: Mismatching fragment identifier."),h.length&&this.load(this.tabs.index(o),e),this._toggle(e,c))},_toggle:function(e,i){function s(){o.running=!1,o._trigger("activate",e,i)}function n(){o._addClass(i.newTab.closest("li"),"ui-tabs-active","ui-state-active"),a.length&&o.options.show?o._show(a,o.options.show,s):(a.show(),s())}var o=this,a=i.newPanel,r=i.oldPanel;this.running=!0,r.length&&this.options.hide?this._hide(r,this.options.hide,function(){o._removeClass(i.oldTab.closest("li"),"ui-tabs-active","ui-state-active"),n()}):(this._removeClass(i.oldTab.closest("li"),"ui-tabs-active","ui-state-active"),r.hide(),n()),r.attr("aria-hidden","true"),i.oldTab.attr({"aria-selected":"false","aria-expanded":"false"}),a.length&&r.length?i.oldTab.attr("tabIndex",-1):a.length&&this.tabs.filter(function(){return 0===t(this).attr("tabIndex")}).attr("tabIndex",-1),a.attr("aria-hidden","false"),i.newTab.attr({"aria-selected":"true","aria-expanded":"true",tabIndex:0})},_activate:function(e){var i,s=this._findActive(e);s[0]!==this.active[0]&&(s.length||(s=this.active),i=s.find(".ui-tabs-anchor")[0],this._eventHandler({target:i,currentTarget:i,preventDefault:t.noop}))},_findActive:function(e){return e===!1?t():this.tabs.eq(e)},_getIndex:function(e){return"string"==typeof e&&(e=this.anchors.index(this.anchors.filter("[href$='"+t.ui.escapeSelector(e)+"']"))),e},_destroy:function(){this.xhr&&this.xhr.abort(),this.tablist.removeAttr("role").off(this.eventNamespace),this.anchors.removeAttr("role tabIndex").removeUniqueId(),this.tabs.add(this.panels).each(function(){t.data(this,"ui-tabs-destroy")?t(this).remove():t(this).removeAttr("role tabIndex aria-live aria-busy aria-selected aria-labelledby aria-hidden aria-expanded")}),this.tabs.each(function(){var e=t(this),i=e.data("ui-tabs-aria-controls");i?e.attr("aria-controls",i).removeData("ui-tabs-aria-controls"):e.removeAttr("aria-controls")}),this.panels.show(),"content"!==this.options.heightStyle&&this.panels.css("height","")},enable:function(e){var i=this.options.disabled;i!==!1&&(void 0===e?i=!1:(e=this._getIndex(e),i=t.isArray(i)?t.map(i,function(t){return t!==e?t:null}):t.map(this.tabs,function(t,i){return i!==e?i:null})),this._setOptionDisabled(i))},disable:function(e){var i=this.options.disabled;if(i!==!0){if(void 0===e)i=!0;else{if(e=this._getIndex(e),-1!==t.inArray(e,i))return;i=t.isArray(i)?t.merge([e],i).sort():[e]}this._setOptionDisabled(i)}},load:function(e,i){e=this._getIndex(e);var s=this,n=this.tabs.eq(e),o=n.find(".ui-tabs-anchor"),a=this._getPanelForTab(n),r={tab:n,panel:a},h=function(t,e){"abort"===e&&s.panels.stop(!1,!0),s._removeClass(n,"ui-tabs-loading"),a.removeAttr("aria-busy"),t===s.xhr&&delete s.xhr};this._isLocal(o[0])||(this.xhr=t.ajax(this._ajaxSettings(o,i,r)),this.xhr&&"canceled"!==this.xhr.statusText&&(this._addClass(n,"ui-tabs-loading"),a.attr("aria-busy","true"),this.xhr.done(function(t,e,n){setTimeout(function(){a.html(t),s._trigger("load",i,r),h(n,e)},1)}).fail(function(t,e){setTimeout(function(){h(t,e)},1)})))},_ajaxSettings:function(e,i,s){var n=this;return{url:e.attr("href").replace(/#.*$/,""),beforeSend:function(e,o){return n._trigger("beforeLoad",i,t.extend({jqXHR:e,ajaxSettings:o},s))}}},_getPanelForTab:function(e){var i=t(e).attr("aria-controls");return this.element.find(this._sanitizeSelector("#"+i))}}),t.uiBackCompat!==!1&&t.widget("ui.tabs",t.ui.tabs,{_processTabs:function(){this._superApply(arguments),this._addClass(this.tabs,"ui-tab")}}),t.ui.tabs,t.widget("ui.tooltip",{version:"1.12.1",options:{classes:{"ui-tooltip":"ui-corner-all ui-widget-shadow"},content:function(){var e=t(this).attr("title")||"";return t("<a>").text(e).html()},hide:!0,items:"[title]:not([disabled])",position:{my:"left top+15",at:"left bottom",collision:"flipfit flip"},show:!0,track:!1,close:null,open:null},_addDescribedBy:function(e,i){var s=(e.attr("aria-describedby")||"").split(/\s+/);s.push(i),e.data("ui-tooltip-id",i).attr("aria-describedby",t.trim(s.join(" ")))},_removeDescribedBy:function(e){var i=e.data("ui-tooltip-id"),s=(e.attr("aria-describedby")||"").split(/\s+/),n=t.inArray(i,s);-1!==n&&s.splice(n,1),e.removeData("ui-tooltip-id"),s=t.trim(s.join(" ")),s?e.attr("aria-describedby",s):e.removeAttr("aria-describedby")},_create:function(){this._on({mouseover:"open",focusin:"open"}),this.tooltips={},this.parents={},this.liveRegion=t("<div>").attr({role:"log","aria-live":"assertive","aria-relevant":"additions"}).appendTo(this.document[0].body),this._addClass(this.liveRegion,null,"ui-helper-hidden-accessible"),this.disabledTitles=t([])},_setOption:function(e,i){var s=this;this._super(e,i),"content"===e&&t.each(this.tooltips,function(t,e){s._updateContent(e.element)})},_setOptionDisabled:function(t){this[t?"_disable":"_enable"]()},_disable:function(){var e=this;t.each(this.tooltips,function(i,s){var n=t.Event("blur");n.target=n.currentTarget=s.element[0],e.close(n,!0)}),this.disabledTitles=this.disabledTitles.add(this.element.find(this.options.items).addBack().filter(function(){var e=t(this);return e.is("[title]")?e.data("ui-tooltip-title",e.attr("title")).removeAttr("title"):void 0}))},_enable:function(){this.disabledTitles.each(function(){var e=t(this);e.data("ui-tooltip-title")&&e.attr("title",e.data("ui-tooltip-title"))}),this.disabledTitles=t([])},open:function(e){var i=this,s=t(e?e.target:this.element).closest(this.options.items);s.length&&!s.data("ui-tooltip-id")&&(s.attr("title")&&s.data("ui-tooltip-title",s.attr("title")),s.data("ui-tooltip-open",!0),e&&"mouseover"===e.type&&s.parents().each(function(){var e,s=t(this);s.data("ui-tooltip-open")&&(e=t.Event("blur"),e.target=e.currentTarget=this,i.close(e,!0)),s.attr("title")&&(s.uniqueId(),i.parents[this.id]={element:this,title:s.attr("title")},s.attr("title",""))}),this._registerCloseHandlers(e,s),this._updateContent(s,e))},_updateContent:function(t,e){var i,s=this.options.content,n=this,o=e?e.type:null;return"string"==typeof s||s.nodeType||s.jquery?this._open(e,t,s):(i=s.call(t[0],function(i){n._delay(function(){t.data("ui-tooltip-open")&&(e&&(e.type=o),this._open(e,t,i))})}),i&&this._open(e,t,i),void 0)},_open:function(e,i,s){function n(t){l.of=t,a.is(":hidden")||a.position(l)}var o,a,r,h,l=t.extend({},this.options.position);if(s){if(o=this._find(i))return o.tooltip.find(".ui-tooltip-content").html(s),void 0;i.is("[title]")&&(e&&"mouseover"===e.type?i.attr("title",""):i.removeAttr("title")),o=this._tooltip(i),a=o.tooltip,this._addDescribedBy(i,a.attr("id")),a.find(".ui-tooltip-content").html(s),this.liveRegion.children().hide(),h=t("<div>").html(a.find(".ui-tooltip-content").html()),h.removeAttr("name").find("[name]").removeAttr("name"),h.removeAttr("id").find("[id]").removeAttr("id"),h.appendTo(this.liveRegion),this.options.track&&e&&/^mouse/.test(e.type)?(this._on(this.document,{mousemove:n}),n(e)):a.position(t.extend({of:i},this.options.position)),a.hide(),this._show(a,this.options.show),this.options.track&&this.options.show&&this.options.show.delay&&(r=this.delayedShow=setInterval(function(){a.is(":visible")&&(n(l.of),clearInterval(r))},t.fx.interval)),this._trigger("open",e,{tooltip:a})}},_registerCloseHandlers:function(e,i){var s={keyup:function(e){if(e.keyCode===t.ui.keyCode.ESCAPE){var s=t.Event(e);s.currentTarget=i[0],this.close(s,!0)}}};i[0]!==this.element[0]&&(s.remove=function(){this._removeTooltip(this._find(i).tooltip)}),e&&"mouseover"!==e.type||(s.mouseleave="close"),e&&"focusin"!==e.type||(s.focusout="close"),this._on(!0,i,s)},close:function(e){var i,s=this,n=t(e?e.currentTarget:this.element),o=this._find(n);return o?(i=o.tooltip,o.closing||(clearInterval(this.delayedShow),n.data("ui-tooltip-title")&&!n.attr("title")&&n.attr("title",n.data("ui-tooltip-title")),this._removeDescribedBy(n),o.hiding=!0,i.stop(!0),this._hide(i,this.options.hide,function(){s._removeTooltip(t(this))}),n.removeData("ui-tooltip-open"),this._off(n,"mouseleave focusout keyup"),n[0]!==this.element[0]&&this._off(n,"remove"),this._off(this.document,"mousemove"),e&&"mouseleave"===e.type&&t.each(this.parents,function(e,i){t(i.element).attr("title",i.title),delete s.parents[e]}),o.closing=!0,this._trigger("close",e,{tooltip:i}),o.hiding||(o.closing=!1)),void 0):(n.removeData("ui-tooltip-open"),void 0)},_tooltip:function(e){var i=t("<div>").attr("role","tooltip"),s=t("<div>").appendTo(i),n=i.uniqueId().attr("id");return this._addClass(s,"ui-tooltip-content"),this._addClass(i,"ui-tooltip","ui-widget ui-widget-content"),i.appendTo(this._appendTo(e)),this.tooltips[n]={element:e,tooltip:i}},_find:function(t){var e=t.data("ui-tooltip-id");return e?this.tooltips[e]:null},_removeTooltip:function(t){t.remove(),delete this.tooltips[t.attr("id")]},_appendTo:function(t){var e=t.closest(".ui-front, dialog");return e.length||(e=this.document[0].body),e},_destroy:function(){var e=this;t.each(this.tooltips,function(i,s){var n=t.Event("blur"),o=s.element;n.target=n.currentTarget=o[0],e.close(n,!0),t("#"+i).remove(),o.data("ui-tooltip-title")&&(o.attr("title")||o.attr("title",o.data("ui-tooltip-title")),o.removeData("ui-tooltip-title"))}),this.liveRegion.remove()}}),t.uiBackCompat!==!1&&t.widget("ui.tooltip",t.ui.tooltip,{options:{tooltipClass:null},_tooltip:function(){var t=this._superApply(arguments);return this.options.tooltipClass&&t.tooltip.addClass(this.options.tooltipClass),t}}),t.ui.tooltip}); \ No newline at end of file
+!function(t){"use strict";"function"==typeof define&&define.amd?define(["jquery"],t):t(jQuery)}(function(V){"use strict";V.ui=V.ui||{};V.ui.version="1.13.1";var n,i=0,a=Array.prototype.hasOwnProperty,r=Array.prototype.slice;V.cleanData=(n=V.cleanData,function(t){for(var e,i,s=0;null!=(i=t[s]);s++)(e=V._data(i,"events"))&&e.remove&&V(i).triggerHandler("remove");n(t)}),V.widget=function(t,i,e){var s,n,o,a={},r=t.split(".")[0],l=r+"-"+(t=t.split(".")[1]);return e||(e=i,i=V.Widget),Array.isArray(e)&&(e=V.extend.apply(null,[{}].concat(e))),V.expr.pseudos[l.toLowerCase()]=function(t){return!!V.data(t,l)},V[r]=V[r]||{},s=V[r][t],n=V[r][t]=function(t,e){if(!this||!this._createWidget)return new n(t,e);arguments.length&&this._createWidget(t,e)},V.extend(n,s,{version:e.version,_proto:V.extend({},e),_childConstructors:[]}),(o=new i).options=V.widget.extend({},o.options),V.each(e,function(e,s){function n(){return i.prototype[e].apply(this,arguments)}function o(t){return i.prototype[e].apply(this,t)}a[e]="function"==typeof s?function(){var t,e=this._super,i=this._superApply;return this._super=n,this._superApply=o,t=s.apply(this,arguments),this._super=e,this._superApply=i,t}:s}),n.prototype=V.widget.extend(o,{widgetEventPrefix:s&&o.widgetEventPrefix||t},a,{constructor:n,namespace:r,widgetName:t,widgetFullName:l}),s?(V.each(s._childConstructors,function(t,e){var i=e.prototype;V.widget(i.namespace+"."+i.widgetName,n,e._proto)}),delete s._childConstructors):i._childConstructors.push(n),V.widget.bridge(t,n),n},V.widget.extend=function(t){for(var e,i,s=r.call(arguments,1),n=0,o=s.length;n<o;n++)for(e in s[n])i=s[n][e],a.call(s[n],e)&&void 0!==i&&(V.isPlainObject(i)?t[e]=V.isPlainObject(t[e])?V.widget.extend({},t[e],i):V.widget.extend({},i):t[e]=i);return t},V.widget.bridge=function(o,e){var a=e.prototype.widgetFullName||o;V.fn[o]=function(i){var t="string"==typeof i,s=r.call(arguments,1),n=this;return t?this.length||"instance"!==i?this.each(function(){var t,e=V.data(this,a);return"instance"===i?(n=e,!1):e?"function"!=typeof e[i]||"_"===i.charAt(0)?V.error("no such method '"+i+"' for "+o+" widget instance"):(t=e[i].apply(e,s))!==e&&void 0!==t?(n=t&&t.jquery?n.pushStack(t.get()):t,!1):void 0:V.error("cannot call methods on "+o+" prior to initialization; attempted to call method '"+i+"'")}):n=void 0:(s.length&&(i=V.widget.extend.apply(null,[i].concat(s))),this.each(function(){var t=V.data(this,a);t?(t.option(i||{}),t._init&&t._init()):V.data(this,a,new e(i,this))})),n}},V.Widget=function(){},V.Widget._childConstructors=[],V.Widget.prototype={widgetName:"widget",widgetEventPrefix:"",defaultElement:"<div>",options:{classes:{},disabled:!1,create:null},_createWidget:function(t,e){e=V(e||this.defaultElement||this)[0],this.element=V(e),this.uuid=i++,this.eventNamespace="."+this.widgetName+this.uuid,this.bindings=V(),this.hoverable=V(),this.focusable=V(),this.classesElementLookup={},e!==this&&(V.data(e,this.widgetFullName,this),this._on(!0,this.element,{remove:function(t){t.target===e&&this.destroy()}}),this.document=V(e.style?e.ownerDocument:e.document||e),this.window=V(this.document[0].defaultView||this.document[0].parentWindow)),this.options=V.widget.extend({},this.options,this._getCreateOptions(),t),this._create(),this.options.disabled&&this._setOptionDisabled(this.options.disabled),this._trigger("create",null,this._getCreateEventData()),this._init()},_getCreateOptions:function(){return{}},_getCreateEventData:V.noop,_create:V.noop,_init:V.noop,destroy:function(){var i=this;this._destroy(),V.each(this.classesElementLookup,function(t,e){i._removeClass(e,t)}),this.element.off(this.eventNamespace).removeData(this.widgetFullName),this.widget().off(this.eventNamespace).removeAttr("aria-disabled"),this.bindings.off(this.eventNamespace)},_destroy:V.noop,widget:function(){return this.element},option:function(t,e){var i,s,n,o=t;if(0===arguments.length)return V.widget.extend({},this.options);if("string"==typeof t)if(o={},t=(i=t.split(".")).shift(),i.length){for(s=o[t]=V.widget.extend({},this.options[t]),n=0;n<i.length-1;n++)s[i[n]]=s[i[n]]||{},s=s[i[n]];if(t=i.pop(),1===arguments.length)return void 0===s[t]?null:s[t];s[t]=e}else{if(1===arguments.length)return void 0===this.options[t]?null:this.options[t];o[t]=e}return this._setOptions(o),this},_setOptions:function(t){for(var e in t)this._setOption(e,t[e]);return this},_setOption:function(t,e){return"classes"===t&&this._setOptionClasses(e),this.options[t]=e,"disabled"===t&&this._setOptionDisabled(e),this},_setOptionClasses:function(t){var e,i,s;for(e in t)s=this.classesElementLookup[e],t[e]!==this.options.classes[e]&&s&&s.length&&(i=V(s.get()),this._removeClass(s,e),i.addClass(this._classes({element:i,keys:e,classes:t,add:!0})))},_setOptionDisabled:function(t){this._toggleClass(this.widget(),this.widgetFullName+"-disabled",null,!!t),t&&(this._removeClass(this.hoverable,null,"ui-state-hover"),this._removeClass(this.focusable,null,"ui-state-focus"))},enable:function(){return this._setOptions({disabled:!1})},disable:function(){return this._setOptions({disabled:!0})},_classes:function(n){var o=[],a=this;function t(t,e){for(var i,s=0;s<t.length;s++)i=a.classesElementLookup[t[s]]||V(),i=n.add?(function(){var i=[];n.element.each(function(t,e){V.map(a.classesElementLookup,function(t){return t}).some(function(t){return t.is(e)})||i.push(e)}),a._on(V(i),{remove:"_untrackClassesElement"})}(),V(V.uniqueSort(i.get().concat(n.element.get())))):V(i.not(n.element).get()),a.classesElementLookup[t[s]]=i,o.push(t[s]),e&&n.classes[t[s]]&&o.push(n.classes[t[s]])}return(n=V.extend({element:this.element,classes:this.options.classes||{}},n)).keys&&t(n.keys.match(/\S+/g)||[],!0),n.extra&&t(n.extra.match(/\S+/g)||[]),o.join(" ")},_untrackClassesElement:function(i){var s=this;V.each(s.classesElementLookup,function(t,e){-1!==V.inArray(i.target,e)&&(s.classesElementLookup[t]=V(e.not(i.target).get()))}),this._off(V(i.target))},_removeClass:function(t,e,i){return this._toggleClass(t,e,i,!1)},_addClass:function(t,e,i){return this._toggleClass(t,e,i,!0)},_toggleClass:function(t,e,i,s){var n="string"==typeof t||null===t,i={extra:n?e:i,keys:n?t:e,element:n?this.element:t,add:s="boolean"==typeof s?s:i};return i.element.toggleClass(this._classes(i),s),this},_on:function(n,o,t){var a,r=this;"boolean"!=typeof n&&(t=o,o=n,n=!1),t?(o=a=V(o),this.bindings=this.bindings.add(o)):(t=o,o=this.element,a=this.widget()),V.each(t,function(t,e){function i(){if(n||!0!==r.options.disabled&&!V(this).hasClass("ui-state-disabled"))return("string"==typeof e?r[e]:e).apply(r,arguments)}"string"!=typeof e&&(i.guid=e.guid=e.guid||i.guid||V.guid++);var s=t.match(/^([\w:-]*)\s*(.*)$/),t=s[1]+r.eventNamespace,s=s[2];s?a.on(t,s,i):o.on(t,i)})},_off:function(t,e){e=(e||"").split(" ").join(this.eventNamespace+" ")+this.eventNamespace,t.off(e),this.bindings=V(this.bindings.not(t).get()),this.focusable=V(this.focusable.not(t).get()),this.hoverable=V(this.hoverable.not(t).get())},_delay:function(t,e){var i=this;return setTimeout(function(){return("string"==typeof t?i[t]:t).apply(i,arguments)},e||0)},_hoverable:function(t){this.hoverable=this.hoverable.add(t),this._on(t,{mouseenter:function(t){this._addClass(V(t.currentTarget),null,"ui-state-hover")},mouseleave:function(t){this._removeClass(V(t.currentTarget),null,"ui-state-hover")}})},_focusable:function(t){this.focusable=this.focusable.add(t),this._on(t,{focusin:function(t){this._addClass(V(t.currentTarget),null,"ui-state-focus")},focusout:function(t){this._removeClass(V(t.currentTarget),null,"ui-state-focus")}})},_trigger:function(t,e,i){var s,n,o=this.options[t];if(i=i||{},(e=V.Event(e)).type=(t===this.widgetEventPrefix?t:this.widgetEventPrefix+t).toLowerCase(),e.target=this.element[0],n=e.originalEvent)for(s in n)s in e||(e[s]=n[s]);return this.element.trigger(e,i),!("function"==typeof o&&!1===o.apply(this.element[0],[e].concat(i))||e.isDefaultPrevented())}},V.each({show:"fadeIn",hide:"fadeOut"},function(o,a){V.Widget.prototype["_"+o]=function(e,t,i){var s,n=(t="string"==typeof t?{effect:t}:t)?!0!==t&&"number"!=typeof t&&t.effect||a:o;"number"==typeof(t=t||{})?t={duration:t}:!0===t&&(t={}),s=!V.isEmptyObject(t),t.complete=i,t.delay&&e.delay(t.delay),s&&V.effects&&V.effects.effect[n]?e[o](t):n!==o&&e[n]?e[n](t.duration,t.easing,i):e.queue(function(t){V(this)[o](),i&&i.call(e[0]),t()})}});var s,x,k,o,l,h,c,u,C;V.widget;function D(t,e,i){return[parseFloat(t[0])*(u.test(t[0])?e/100:1),parseFloat(t[1])*(u.test(t[1])?i/100:1)]}function I(t,e){return parseInt(V.css(t,e),10)||0}function T(t){return null!=t&&t===t.window}x=Math.max,k=Math.abs,o=/left|center|right/,l=/top|center|bottom/,h=/[\+\-]\d+(\.[\d]+)?%?/,c=/^\w+/,u=/%$/,C=V.fn.position,V.position={scrollbarWidth:function(){if(void 0!==s)return s;var t,e=V("<div style='display:block;position:absolute;width:200px;height:200px;overflow:hidden;'><div style='height:300px;width:auto;'></div></div>"),i=e.children()[0];return V("body").append(e),t=i.offsetWidth,e.css("overflow","scroll"),t===(i=i.offsetWidth)&&(i=e[0].clientWidth),e.remove(),s=t-i},getScrollInfo:function(t){var e=t.isWindow||t.isDocument?"":t.element.css("overflow-x"),i=t.isWindow||t.isDocument?"":t.element.css("overflow-y"),e="scroll"===e||"auto"===e&&t.width<t.element[0].scrollWidth;return{width:"scroll"===i||"auto"===i&&t.height<t.element[0].scrollHeight?V.position.scrollbarWidth():0,height:e?V.position.scrollbarWidth():0}},getWithinInfo:function(t){var e=V(t||window),i=T(e[0]),s=!!e[0]&&9===e[0].nodeType;return{element:e,isWindow:i,isDocument:s,offset:!i&&!s?V(t).offset():{left:0,top:0},scrollLeft:e.scrollLeft(),scrollTop:e.scrollTop(),width:e.outerWidth(),height:e.outerHeight()}}},V.fn.position=function(u){if(!u||!u.of)return C.apply(this,arguments);var d,p,f,g,m,t,_="string"==typeof(u=V.extend({},u)).of?V(document).find(u.of):V(u.of),v=V.position.getWithinInfo(u.within),b=V.position.getScrollInfo(v),y=(u.collision||"flip").split(" "),w={},e=9===(t=(e=_)[0]).nodeType?{width:e.width(),height:e.height(),offset:{top:0,left:0}}:T(t)?{width:e.width(),height:e.height(),offset:{top:e.scrollTop(),left:e.scrollLeft()}}:t.preventDefault?{width:0,height:0,offset:{top:t.pageY,left:t.pageX}}:{width:e.outerWidth(),height:e.outerHeight(),offset:e.offset()};return _[0].preventDefault&&(u.at="left top"),p=e.width,f=e.height,m=V.extend({},g=e.offset),V.each(["my","at"],function(){var t,e,i=(u[this]||"").split(" ");(i=1===i.length?o.test(i[0])?i.concat(["center"]):l.test(i[0])?["center"].concat(i):["center","center"]:i)[0]=o.test(i[0])?i[0]:"center",i[1]=l.test(i[1])?i[1]:"center",t=h.exec(i[0]),e=h.exec(i[1]),w[this]=[t?t[0]:0,e?e[0]:0],u[this]=[c.exec(i[0])[0],c.exec(i[1])[0]]}),1===y.length&&(y[1]=y[0]),"right"===u.at[0]?m.left+=p:"center"===u.at[0]&&(m.left+=p/2),"bottom"===u.at[1]?m.top+=f:"center"===u.at[1]&&(m.top+=f/2),d=D(w.at,p,f),m.left+=d[0],m.top+=d[1],this.each(function(){var i,t,a=V(this),r=a.outerWidth(),l=a.outerHeight(),e=I(this,"marginLeft"),s=I(this,"marginTop"),n=r+e+I(this,"marginRight")+b.width,o=l+s+I(this,"marginBottom")+b.height,h=V.extend({},m),c=D(w.my,a.outerWidth(),a.outerHeight());"right"===u.my[0]?h.left-=r:"center"===u.my[0]&&(h.left-=r/2),"bottom"===u.my[1]?h.top-=l:"center"===u.my[1]&&(h.top-=l/2),h.left+=c[0],h.top+=c[1],i={marginLeft:e,marginTop:s},V.each(["left","top"],function(t,e){V.ui.position[y[t]]&&V.ui.position[y[t]][e](h,{targetWidth:p,targetHeight:f,elemWidth:r,elemHeight:l,collisionPosition:i,collisionWidth:n,collisionHeight:o,offset:[d[0]+c[0],d[1]+c[1]],my:u.my,at:u.at,within:v,elem:a})}),u.using&&(t=function(t){var e=g.left-h.left,i=e+p-r,s=g.top-h.top,n=s+f-l,o={target:{element:_,left:g.left,top:g.top,width:p,height:f},element:{element:a,left:h.left,top:h.top,width:r,height:l},horizontal:i<0?"left":0<e?"right":"center",vertical:n<0?"top":0<s?"bottom":"middle"};p<r&&k(e+i)<p&&(o.horizontal="center"),f<l&&k(s+n)<f&&(o.vertical="middle"),x(k(e),k(i))>x(k(s),k(n))?o.important="horizontal":o.important="vertical",u.using.call(this,t,o)}),a.offset(V.extend(h,{using:t}))})},V.ui.position={fit:{left:function(t,e){var i=e.within,s=i.isWindow?i.scrollLeft:i.offset.left,n=i.width,o=t.left-e.collisionPosition.marginLeft,a=s-o,r=o+e.collisionWidth-n-s;e.collisionWidth>n?0<a&&r<=0?(i=t.left+a+e.collisionWidth-n-s,t.left+=a-i):t.left=!(0<r&&a<=0)&&r<a?s+n-e.collisionWidth:s:0<a?t.left+=a:0<r?t.left-=r:t.left=x(t.left-o,t.left)},top:function(t,e){var i=e.within,s=i.isWindow?i.scrollTop:i.offset.top,n=e.within.height,o=t.top-e.collisionPosition.marginTop,a=s-o,r=o+e.collisionHeight-n-s;e.collisionHeight>n?0<a&&r<=0?(i=t.top+a+e.collisionHeight-n-s,t.top+=a-i):t.top=!(0<r&&a<=0)&&r<a?s+n-e.collisionHeight:s:0<a?t.top+=a:0<r?t.top-=r:t.top=x(t.top-o,t.top)}},flip:{left:function(t,e){var i=e.within,s=i.offset.left+i.scrollLeft,n=i.width,o=i.isWindow?i.scrollLeft:i.offset.left,a=t.left-e.collisionPosition.marginLeft,r=a-o,l=a+e.collisionWidth-n-o,h="left"===e.my[0]?-e.elemWidth:"right"===e.my[0]?e.elemWidth:0,i="left"===e.at[0]?e.targetWidth:"right"===e.at[0]?-e.targetWidth:0,a=-2*e.offset[0];r<0?((s=t.left+h+i+a+e.collisionWidth-n-s)<0||s<k(r))&&(t.left+=h+i+a):0<l&&(0<(o=t.left-e.collisionPosition.marginLeft+h+i+a-o)||k(o)<l)&&(t.left+=h+i+a)},top:function(t,e){var i=e.within,s=i.offset.top+i.scrollTop,n=i.height,o=i.isWindow?i.scrollTop:i.offset.top,a=t.top-e.collisionPosition.marginTop,r=a-o,l=a+e.collisionHeight-n-o,h="top"===e.my[1]?-e.elemHeight:"bottom"===e.my[1]?e.elemHeight:0,i="top"===e.at[1]?e.targetHeight:"bottom"===e.at[1]?-e.targetHeight:0,a=-2*e.offset[1];r<0?((s=t.top+h+i+a+e.collisionHeight-n-s)<0||s<k(r))&&(t.top+=h+i+a):0<l&&(0<(o=t.top-e.collisionPosition.marginTop+h+i+a-o)||k(o)<l)&&(t.top+=h+i+a)}},flipfit:{left:function(){V.ui.position.flip.left.apply(this,arguments),V.ui.position.fit.left.apply(this,arguments)},top:function(){V.ui.position.flip.top.apply(this,arguments),V.ui.position.fit.top.apply(this,arguments)}}};V.ui.position,V.extend(V.expr.pseudos,{data:V.expr.createPseudo?V.expr.createPseudo(function(e){return function(t){return!!V.data(t,e)}}):function(t,e,i){return!!V.data(t,i[3])}}),V.fn.extend({disableSelection:(t="onselectstart"in document.createElement("div")?"selectstart":"mousedown",function(){return this.on(t+".ui-disableSelection",function(t){t.preventDefault()})}),enableSelection:function(){return this.off(".ui-disableSelection")}});var t,d=V,p={},e=p.toString,f=/^([\-+])=\s*(\d+\.?\d*)/,g=[{re:/rgba?\(\s*(\d{1,3})\s*,\s*(\d{1,3})\s*,\s*(\d{1,3})\s*(?:,\s*(\d?(?:\.\d+)?)\s*)?\)/,parse:function(t){return[t[1],t[2],t[3],t[4]]}},{re:/rgba?\(\s*(\d+(?:\.\d+)?)\%\s*,\s*(\d+(?:\.\d+)?)\%\s*,\s*(\d+(?:\.\d+)?)\%\s*(?:,\s*(\d?(?:\.\d+)?)\s*)?\)/,parse:function(t){return[2.55*t[1],2.55*t[2],2.55*t[3],t[4]]}},{re:/#([a-f0-9]{2})([a-f0-9]{2})([a-f0-9]{2})([a-f0-9]{2})?/,parse:function(t){return[parseInt(t[1],16),parseInt(t[2],16),parseInt(t[3],16),t[4]?(parseInt(t[4],16)/255).toFixed(2):1]}},{re:/#([a-f0-9])([a-f0-9])([a-f0-9])([a-f0-9])?/,parse:function(t){return[parseInt(t[1]+t[1],16),parseInt(t[2]+t[2],16),parseInt(t[3]+t[3],16),t[4]?(parseInt(t[4]+t[4],16)/255).toFixed(2):1]}},{re:/hsla?\(\s*(\d+(?:\.\d+)?)\s*,\s*(\d+(?:\.\d+)?)\%\s*,\s*(\d+(?:\.\d+)?)\%\s*(?:,\s*(\d?(?:\.\d+)?)\s*)?\)/,space:"hsla",parse:function(t){return[t[1],t[2]/100,t[3]/100,t[4]]}}],m=d.Color=function(t,e,i,s){return new d.Color.fn.parse(t,e,i,s)},_={rgba:{props:{red:{idx:0,type:"byte"},green:{idx:1,type:"byte"},blue:{idx:2,type:"byte"}}},hsla:{props:{hue:{idx:0,type:"degrees"},saturation:{idx:1,type:"percent"},lightness:{idx:2,type:"percent"}}}},v={byte:{floor:!0,max:255},percent:{max:1},degrees:{mod:360,floor:!0}},b=m.support={},y=d("<p>")[0],w=d.each;function P(t){return null==t?t+"":"object"==typeof t?p[e.call(t)]||"object":typeof t}function M(t,e,i){var s=v[e.type]||{};return null==t?i||!e.def?null:e.def:(t=s.floor?~~t:parseFloat(t),isNaN(t)?e.def:s.mod?(t+s.mod)%s.mod:Math.min(s.max,Math.max(0,t)))}function S(s){var n=m(),o=n._rgba=[];return s=s.toLowerCase(),w(g,function(t,e){var i=e.re.exec(s),i=i&&e.parse(i),e=e.space||"rgba";if(i)return i=n[e](i),n[_[e].cache]=i[_[e].cache],o=n._rgba=i._rgba,!1}),o.length?("0,0,0,0"===o.join()&&d.extend(o,B.transparent),n):B[s]}function H(t,e,i){return 6*(i=(i+1)%1)<1?t+(e-t)*i*6:2*i<1?e:3*i<2?t+(e-t)*(2/3-i)*6:t}y.style.cssText="background-color:rgba(1,1,1,.5)",b.rgba=-1<y.style.backgroundColor.indexOf("rgba"),w(_,function(t,e){e.cache="_"+t,e.props.alpha={idx:3,type:"percent",def:1}}),d.each("Boolean Number String Function Array Date RegExp Object Error Symbol".split(" "),function(t,e){p["[object "+e+"]"]=e.toLowerCase()}),(m.fn=d.extend(m.prototype,{parse:function(n,t,e,i){if(void 0===n)return this._rgba=[null,null,null,null],this;(n.jquery||n.nodeType)&&(n=d(n).css(t),t=void 0);var o=this,s=P(n),a=this._rgba=[];return void 0!==t&&(n=[n,t,e,i],s="array"),"string"===s?this.parse(S(n)||B._default):"array"===s?(w(_.rgba.props,function(t,e){a[e.idx]=M(n[e.idx],e)}),this):"object"===s?(w(_,n instanceof m?function(t,e){n[e.cache]&&(o[e.cache]=n[e.cache].slice())}:function(t,i){var s=i.cache;w(i.props,function(t,e){if(!o[s]&&i.to){if("alpha"===t||null==n[t])return;o[s]=i.to(o._rgba)}o[s][e.idx]=M(n[t],e,!0)}),o[s]&&d.inArray(null,o[s].slice(0,3))<0&&(null==o[s][3]&&(o[s][3]=1),i.from&&(o._rgba=i.from(o[s])))}),this):void 0},is:function(t){var n=m(t),o=!0,a=this;return w(_,function(t,e){var i,s=n[e.cache];return s&&(i=a[e.cache]||e.to&&e.to(a._rgba)||[],w(e.props,function(t,e){if(null!=s[e.idx])return o=s[e.idx]===i[e.idx]})),o}),o},_space:function(){var i=[],s=this;return w(_,function(t,e){s[e.cache]&&i.push(t)}),i.pop()},transition:function(t,a){var e=(h=m(t))._space(),i=_[e],t=0===this.alpha()?m("transparent"):this,r=t[i.cache]||i.to(t._rgba),l=r.slice(),h=h[i.cache];return w(i.props,function(t,e){var i=e.idx,s=r[i],n=h[i],o=v[e.type]||{};null!==n&&(null===s?l[i]=n:(o.mod&&(n-s>o.mod/2?s+=o.mod:s-n>o.mod/2&&(s-=o.mod)),l[i]=M((n-s)*a+s,e)))}),this[e](l)},blend:function(t){if(1===this._rgba[3])return this;var e=this._rgba.slice(),i=e.pop(),s=m(t)._rgba;return m(d.map(e,function(t,e){return(1-i)*s[e]+i*t}))},toRgbaString:function(){var t="rgba(",e=d.map(this._rgba,function(t,e){return null!=t?t:2<e?1:0});return 1===e[3]&&(e.pop(),t="rgb("),t+e.join()+")"},toHslaString:function(){var t="hsla(",e=d.map(this.hsla(),function(t,e){return null==t&&(t=2<e?1:0),t=e&&e<3?Math.round(100*t)+"%":t});return 1===e[3]&&(e.pop(),t="hsl("),t+e.join()+")"},toHexString:function(t){var e=this._rgba.slice(),i=e.pop();return t&&e.push(~~(255*i)),"#"+d.map(e,function(t){return 1===(t=(t||0).toString(16)).length?"0"+t:t}).join("")},toString:function(){return 0===this._rgba[3]?"transparent":this.toRgbaString()}})).parse.prototype=m.fn,_.hsla.to=function(t){if(null==t[0]||null==t[1]||null==t[2])return[null,null,null,t[3]];var e=t[0]/255,i=t[1]/255,s=t[2]/255,n=t[3],o=Math.max(e,i,s),a=Math.min(e,i,s),r=o-a,l=o+a,t=.5*l,i=a===o?0:e===o?60*(i-s)/r+360:i===o?60*(s-e)/r+120:60*(e-i)/r+240,l=0==r?0:t<=.5?r/l:r/(2-l);return[Math.round(i)%360,l,t,null==n?1:n]},_.hsla.from=function(t){if(null==t[0]||null==t[1]||null==t[2])return[null,null,null,t[3]];var e=t[0]/360,i=t[1],s=t[2],t=t[3],i=s<=.5?s*(1+i):s+i-s*i,s=2*s-i;return[Math.round(255*H(s,i,e+1/3)),Math.round(255*H(s,i,e)),Math.round(255*H(s,i,e-1/3)),t]},w(_,function(l,t){var e=t.props,o=t.cache,a=t.to,r=t.from;m.fn[l]=function(t){if(a&&!this[o]&&(this[o]=a(this._rgba)),void 0===t)return this[o].slice();var i=P(t),s="array"===i||"object"===i?t:arguments,n=this[o].slice();return w(e,function(t,e){t=s["object"===i?t:e.idx];null==t&&(t=n[e.idx]),n[e.idx]=M(t,e)}),r?((t=m(r(n)))[o]=n,t):m(n)},w(e,function(a,r){m.fn[a]||(m.fn[a]=function(t){var e,i=P(t),s="alpha"===a?this._hsla?"hsla":"rgba":l,n=this[s](),o=n[r.idx];return"undefined"===i?o:("function"===i&&(i=P(t=t.call(this,o))),null==t&&r.empty?this:("string"===i&&(e=f.exec(t))&&(t=o+parseFloat(e[2])*("+"===e[1]?1:-1)),n[r.idx]=t,this[s](n)))})})}),(m.hook=function(t){t=t.split(" ");w(t,function(t,o){d.cssHooks[o]={set:function(t,e){var i,s,n="";if("transparent"!==e&&("string"!==P(e)||(i=S(e)))){if(e=m(i||e),!b.rgba&&1!==e._rgba[3]){for(s="backgroundColor"===o?t.parentNode:t;(""===n||"transparent"===n)&&s&&s.style;)try{n=d.css(s,"backgroundColor"),s=s.parentNode}catch(t){}e=e.blend(n&&"transparent"!==n?n:"_default")}e=e.toRgbaString()}try{t.style[o]=e}catch(t){}}},d.fx.step[o]=function(t){t.colorInit||(t.start=m(t.elem,o),t.end=m(t.end),t.colorInit=!0),d.cssHooks[o].set(t.elem,t.start.transition(t.end,t.pos))}})})("backgroundColor borderBottomColor borderLeftColor borderRightColor borderTopColor color columnRuleColor outlineColor textDecorationColor textEmphasisColor"),d.cssHooks.borderColor={expand:function(i){var s={};return w(["Top","Right","Bottom","Left"],function(t,e){s["border"+e+"Color"]=i}),s}};var z,A,O,N,E,W,F,L,R,Y,B=d.Color.names={aqua:"#00ffff",black:"#000000",blue:"#0000ff",fuchsia:"#ff00ff",gray:"#808080",green:"#008000",lime:"#00ff00",maroon:"#800000",navy:"#000080",olive:"#808000",purple:"#800080",red:"#ff0000",silver:"#c0c0c0",teal:"#008080",white:"#ffffff",yellow:"#ffff00",transparent:[null,null,null,0],_default:"#ffffff"},j="ui-effects-",q="ui-effects-style",K="ui-effects-animated";function U(t){var e,i,s=t.ownerDocument.defaultView?t.ownerDocument.defaultView.getComputedStyle(t,null):t.currentStyle,n={};if(s&&s.length&&s[0]&&s[s[0]])for(i=s.length;i--;)"string"==typeof s[e=s[i]]&&(n[e.replace(/-([\da-z])/gi,function(t,e){return e.toUpperCase()})]=s[e]);else for(e in s)"string"==typeof s[e]&&(n[e]=s[e]);return n}function X(t,e,i,s){return t={effect:t=V.isPlainObject(t)?(e=t).effect:t},"function"==typeof(e=null==e?{}:e)&&(s=e,i=null,e={}),"number"!=typeof e&&!V.fx.speeds[e]||(s=i,i=e,e={}),"function"==typeof i&&(s=i,i=null),e&&V.extend(t,e),i=i||e.duration,t.duration=V.fx.off?0:"number"==typeof i?i:i in V.fx.speeds?V.fx.speeds[i]:V.fx.speeds._default,t.complete=s||e.complete,t}function $(t){return!t||"number"==typeof t||V.fx.speeds[t]||("string"==typeof t&&!V.effects.effect[t]||("function"==typeof t||"object"==typeof t&&!t.effect))}function G(t,e){var i=e.outerWidth(),e=e.outerHeight(),t=/^rect\((-?\d*\.?\d*px|-?\d+%|auto),?\s*(-?\d*\.?\d*px|-?\d+%|auto),?\s*(-?\d*\.?\d*px|-?\d+%|auto),?\s*(-?\d*\.?\d*px|-?\d+%|auto)\)$/.exec(t)||["",0,i,e,0];return{top:parseFloat(t[1])||0,right:"auto"===t[2]?i:parseFloat(t[2]),bottom:"auto"===t[3]?e:parseFloat(t[3]),left:parseFloat(t[4])||0}}V.effects={effect:{}},N=["add","remove","toggle"],E={border:1,borderBottom:1,borderColor:1,borderLeft:1,borderRight:1,borderTop:1,borderWidth:1,margin:1,padding:1},V.each(["borderLeftStyle","borderRightStyle","borderBottomStyle","borderTopStyle"],function(t,e){V.fx.step[e]=function(t){("none"!==t.end&&!t.setAttr||1===t.pos&&!t.setAttr)&&(d.style(t.elem,e,t.end),t.setAttr=!0)}}),V.fn.addBack||(V.fn.addBack=function(t){return this.add(null==t?this.prevObject:this.prevObject.filter(t))}),V.effects.animateClass=function(n,t,e,i){var o=V.speed(t,e,i);return this.queue(function(){var i=V(this),t=i.attr("class")||"",e=(e=o.children?i.find("*").addBack():i).map(function(){return{el:V(this),start:U(this)}}),s=function(){V.each(N,function(t,e){n[e]&&i[e+"Class"](n[e])})};s(),e=e.map(function(){return this.end=U(this.el[0]),this.diff=function(t,e){var i,s,n={};for(i in e)s=e[i],t[i]!==s&&(E[i]||!V.fx.step[i]&&isNaN(parseFloat(s))||(n[i]=s));return n}(this.start,this.end),this}),i.attr("class",t),e=e.map(function(){var t=this,e=V.Deferred(),i=V.extend({},o,{queue:!1,complete:function(){e.resolve(t)}});return this.el.animate(this.diff,i),e.promise()}),V.when.apply(V,e.get()).done(function(){s(),V.each(arguments,function(){var e=this.el;V.each(this.diff,function(t){e.css(t,"")})}),o.complete.call(i[0])})})},V.fn.extend({addClass:(O=V.fn.addClass,function(t,e,i,s){return e?V.effects.animateClass.call(this,{add:t},e,i,s):O.apply(this,arguments)}),removeClass:(A=V.fn.removeClass,function(t,e,i,s){return 1<arguments.length?V.effects.animateClass.call(this,{remove:t},e,i,s):A.apply(this,arguments)}),toggleClass:(z=V.fn.toggleClass,function(t,e,i,s,n){return"boolean"==typeof e||void 0===e?i?V.effects.animateClass.call(this,e?{add:t}:{remove:t},i,s,n):z.apply(this,arguments):V.effects.animateClass.call(this,{toggle:t},e,i,s)}),switchClass:function(t,e,i,s,n){return V.effects.animateClass.call(this,{add:e,remove:t},i,s,n)}}),V.expr&&V.expr.pseudos&&V.expr.pseudos.animated&&(V.expr.pseudos.animated=(W=V.expr.pseudos.animated,function(t){return!!V(t).data(K)||W(t)})),!1!==V.uiBackCompat&&V.extend(V.effects,{save:function(t,e){for(var i=0,s=e.length;i<s;i++)null!==e[i]&&t.data(j+e[i],t[0].style[e[i]])},restore:function(t,e){for(var i,s=0,n=e.length;s<n;s++)null!==e[s]&&(i=t.data(j+e[s]),t.css(e[s],i))},setMode:function(t,e){return e="toggle"===e?t.is(":hidden")?"show":"hide":e},createWrapper:function(i){if(i.parent().is(".ui-effects-wrapper"))return i.parent();var s={width:i.outerWidth(!0),height:i.outerHeight(!0),float:i.css("float")},t=V("<div></div>").addClass("ui-effects-wrapper").css({fontSize:"100%",background:"transparent",border:"none",margin:0,padding:0}),e={width:i.width(),height:i.height()},n=document.activeElement;try{n.id}catch(t){n=document.body}return i.wrap(t),i[0]!==n&&!V.contains(i[0],n)||V(n).trigger("focus"),t=i.parent(),"static"===i.css("position")?(t.css({position:"relative"}),i.css({position:"relative"})):(V.extend(s,{position:i.css("position"),zIndex:i.css("z-index")}),V.each(["top","left","bottom","right"],function(t,e){s[e]=i.css(e),isNaN(parseInt(s[e],10))&&(s[e]="auto")}),i.css({position:"relative",top:0,left:0,right:"auto",bottom:"auto"})),i.css(e),t.css(s).show()},removeWrapper:function(t){var e=document.activeElement;return t.parent().is(".ui-effects-wrapper")&&(t.parent().replaceWith(t),t[0]!==e&&!V.contains(t[0],e)||V(e).trigger("focus")),t}}),V.extend(V.effects,{version:"1.13.1",define:function(t,e,i){return i||(i=e,e="effect"),V.effects.effect[t]=i,V.effects.effect[t].mode=e,i},scaledDimensions:function(t,e,i){if(0===e)return{height:0,width:0,outerHeight:0,outerWidth:0};var s="horizontal"!==i?(e||100)/100:1,e="vertical"!==i?(e||100)/100:1;return{height:t.height()*e,width:t.width()*s,outerHeight:t.outerHeight()*e,outerWidth:t.outerWidth()*s}},clipToBox:function(t){return{width:t.clip.right-t.clip.left,height:t.clip.bottom-t.clip.top,left:t.clip.left,top:t.clip.top}},unshift:function(t,e,i){var s=t.queue();1<e&&s.splice.apply(s,[1,0].concat(s.splice(e,i))),t.dequeue()},saveStyle:function(t){t.data(q,t[0].style.cssText)},restoreStyle:function(t){t[0].style.cssText=t.data(q)||"",t.removeData(q)},mode:function(t,e){t=t.is(":hidden");return"toggle"===e&&(e=t?"show":"hide"),e=(t?"hide"===e:"show"===e)?"none":e},getBaseline:function(t,e){var i,s;switch(t[0]){case"top":i=0;break;case"middle":i=.5;break;case"bottom":i=1;break;default:i=t[0]/e.height}switch(t[1]){case"left":s=0;break;case"center":s=.5;break;case"right":s=1;break;default:s=t[1]/e.width}return{x:s,y:i}},createPlaceholder:function(t){var e,i=t.css("position"),s=t.position();return t.css({marginTop:t.css("marginTop"),marginBottom:t.css("marginBottom"),marginLeft:t.css("marginLeft"),marginRight:t.css("marginRight")}).outerWidth(t.outerWidth()).outerHeight(t.outerHeight()),/^(static|relative)/.test(i)&&(i="absolute",e=V("<"+t[0].nodeName+">").insertAfter(t).css({display:/^(inline|ruby)/.test(t.css("display"))?"inline-block":"block",visibility:"hidden",marginTop:t.css("marginTop"),marginBottom:t.css("marginBottom"),marginLeft:t.css("marginLeft"),marginRight:t.css("marginRight"),float:t.css("float")}).outerWidth(t.outerWidth()).outerHeight(t.outerHeight()).addClass("ui-effects-placeholder"),t.data(j+"placeholder",e)),t.css({position:i,left:s.left,top:s.top}),e},removePlaceholder:function(t){var e=j+"placeholder",i=t.data(e);i&&(i.remove(),t.removeData(e))},cleanUp:function(t){V.effects.restoreStyle(t),V.effects.removePlaceholder(t)},setTransition:function(s,t,n,o){return o=o||{},V.each(t,function(t,e){var i=s.cssUnit(e);0<i[0]&&(o[e]=i[0]*n+i[1])}),o}}),V.fn.extend({effect:function(){function t(t){var e=V(this),i=V.effects.mode(e,r)||o;e.data(K,!0),l.push(i),o&&("show"===i||i===o&&"hide"===i)&&e.show(),o&&"none"===i||V.effects.saveStyle(e),"function"==typeof t&&t()}var s=X.apply(this,arguments),n=V.effects.effect[s.effect],o=n.mode,e=s.queue,i=e||"fx",a=s.complete,r=s.mode,l=[];return V.fx.off||!n?r?this[r](s.duration,a):this.each(function(){a&&a.call(this)}):!1===e?this.each(t).each(h):this.queue(i,t).queue(i,h);function h(t){var e=V(this);function i(){"function"==typeof a&&a.call(e[0]),"function"==typeof t&&t()}s.mode=l.shift(),!1===V.uiBackCompat||o?"none"===s.mode?(e[r](),i()):n.call(e[0],s,function(){e.removeData(K),V.effects.cleanUp(e),"hide"===s.mode&&e.hide(),i()}):(e.is(":hidden")?"hide"===r:"show"===r)?(e[r](),i()):n.call(e[0],s,i)}},show:(R=V.fn.show,function(t){if($(t))return R.apply(this,arguments);t=X.apply(this,arguments);return t.mode="show",this.effect.call(this,t)}),hide:(L=V.fn.hide,function(t){if($(t))return L.apply(this,arguments);t=X.apply(this,arguments);return t.mode="hide",this.effect.call(this,t)}),toggle:(F=V.fn.toggle,function(t){if($(t)||"boolean"==typeof t)return F.apply(this,arguments);t=X.apply(this,arguments);return t.mode="toggle",this.effect.call(this,t)}),cssUnit:function(t){var i=this.css(t),s=[];return V.each(["em","px","%","pt"],function(t,e){0<i.indexOf(e)&&(s=[parseFloat(i),e])}),s},cssClip:function(t){return t?this.css("clip","rect("+t.top+"px "+t.right+"px "+t.bottom+"px "+t.left+"px)"):G(this.css("clip"),this)},transfer:function(t,e){var i=V(this),s=V(t.to),n="fixed"===s.css("position"),o=V("body"),a=n?o.scrollTop():0,r=n?o.scrollLeft():0,o=s.offset(),o={top:o.top-a,left:o.left-r,height:s.innerHeight(),width:s.innerWidth()},s=i.offset(),l=V("<div class='ui-effects-transfer'></div>");l.appendTo("body").addClass(t.className).css({top:s.top-a,left:s.left-r,height:i.innerHeight(),width:i.innerWidth(),position:n?"fixed":"absolute"}).animate(o,t.duration,t.easing,function(){l.remove(),"function"==typeof e&&e()})}}),V.fx.step.clip=function(t){t.clipInit||(t.start=V(t.elem).cssClip(),"string"==typeof t.end&&(t.end=G(t.end,t.elem)),t.clipInit=!0),V(t.elem).cssClip({top:t.pos*(t.end.top-t.start.top)+t.start.top,right:t.pos*(t.end.right-t.start.right)+t.start.right,bottom:t.pos*(t.end.bottom-t.start.bottom)+t.start.bottom,left:t.pos*(t.end.left-t.start.left)+t.start.left})},Y={},V.each(["Quad","Cubic","Quart","Quint","Expo"],function(e,t){Y[t]=function(t){return Math.pow(t,e+2)}}),V.extend(Y,{Sine:function(t){return 1-Math.cos(t*Math.PI/2)},Circ:function(t){return 1-Math.sqrt(1-t*t)},Elastic:function(t){return 0===t||1===t?t:-Math.pow(2,8*(t-1))*Math.sin((80*(t-1)-7.5)*Math.PI/15)},Back:function(t){return t*t*(3*t-2)},Bounce:function(t){for(var e,i=4;t<((e=Math.pow(2,--i))-1)/11;);return 1/Math.pow(4,3-i)-7.5625*Math.pow((3*e-2)/22-t,2)}}),V.each(Y,function(t,e){V.easing["easeIn"+t]=e,V.easing["easeOut"+t]=function(t){return 1-e(1-t)},V.easing["easeInOut"+t]=function(t){return t<.5?e(2*t)/2:1-e(-2*t+2)/2}});y=V.effects,V.effects.define("blind","hide",function(t,e){var i={up:["bottom","top"],vertical:["bottom","top"],down:["top","bottom"],left:["right","left"],horizontal:["right","left"],right:["left","right"]},s=V(this),n=t.direction||"up",o=s.cssClip(),a={clip:V.extend({},o)},r=V.effects.createPlaceholder(s);a.clip[i[n][0]]=a.clip[i[n][1]],"show"===t.mode&&(s.cssClip(a.clip),r&&r.css(V.effects.clipToBox(a)),a.clip=o),r&&r.animate(V.effects.clipToBox(a),t.duration,t.easing),s.animate(a,{queue:!1,duration:t.duration,easing:t.easing,complete:e})}),V.effects.define("bounce",function(t,e){var i,s,n=V(this),o=t.mode,a="hide"===o,r="show"===o,l=t.direction||"up",h=t.distance,c=t.times||5,o=2*c+(r||a?1:0),u=t.duration/o,d=t.easing,p="up"===l||"down"===l?"top":"left",f="up"===l||"left"===l,g=0,t=n.queue().length;for(V.effects.createPlaceholder(n),l=n.css(p),h=h||n["top"==p?"outerHeight":"outerWidth"]()/3,r&&((s={opacity:1})[p]=l,n.css("opacity",0).css(p,f?2*-h:2*h).animate(s,u,d)),a&&(h/=Math.pow(2,c-1)),(s={})[p]=l;g<c;g++)(i={})[p]=(f?"-=":"+=")+h,n.animate(i,u,d).animate(s,u,d),h=a?2*h:h/2;a&&((i={opacity:0})[p]=(f?"-=":"+=")+h,n.animate(i,u,d)),n.queue(e),V.effects.unshift(n,t,1+o)}),V.effects.define("clip","hide",function(t,e){var i={},s=V(this),n=t.direction||"vertical",o="both"===n,a=o||"horizontal"===n,o=o||"vertical"===n,n=s.cssClip();i.clip={top:o?(n.bottom-n.top)/2:n.top,right:a?(n.right-n.left)/2:n.right,bottom:o?(n.bottom-n.top)/2:n.bottom,left:a?(n.right-n.left)/2:n.left},V.effects.createPlaceholder(s),"show"===t.mode&&(s.cssClip(i.clip),i.clip=n),s.animate(i,{queue:!1,duration:t.duration,easing:t.easing,complete:e})}),V.effects.define("drop","hide",function(t,e){var i=V(this),s="show"===t.mode,n=t.direction||"left",o="up"===n||"down"===n?"top":"left",a="up"===n||"left"===n?"-=":"+=",r="+="==a?"-=":"+=",l={opacity:0};V.effects.createPlaceholder(i),n=t.distance||i["top"==o?"outerHeight":"outerWidth"](!0)/2,l[o]=a+n,s&&(i.css(l),l[o]=r+n,l.opacity=1),i.animate(l,{queue:!1,duration:t.duration,easing:t.easing,complete:e})}),V.effects.define("explode","hide",function(t,e){var i,s,n,o,a,r,l=t.pieces?Math.round(Math.sqrt(t.pieces)):3,h=l,c=V(this),u="show"===t.mode,d=c.show().css("visibility","hidden").offset(),p=Math.ceil(c.outerWidth()/h),f=Math.ceil(c.outerHeight()/l),g=[];function m(){g.push(this),g.length===l*h&&(c.css({visibility:"visible"}),V(g).remove(),e())}for(i=0;i<l;i++)for(o=d.top+i*f,r=i-(l-1)/2,s=0;s<h;s++)n=d.left+s*p,a=s-(h-1)/2,c.clone().appendTo("body").wrap("<div></div>").css({position:"absolute",visibility:"visible",left:-s*p,top:-i*f}).parent().addClass("ui-effects-explode").css({position:"absolute",overflow:"hidden",width:p,height:f,left:n+(u?a*p:0),top:o+(u?r*f:0),opacity:u?0:1}).animate({left:n+(u?0:a*p),top:o+(u?0:r*f),opacity:u?1:0},t.duration||500,t.easing,m)}),V.effects.define("fade","toggle",function(t,e){var i="show"===t.mode;V(this).css("opacity",i?0:1).animate({opacity:i?1:0},{queue:!1,duration:t.duration,easing:t.easing,complete:e})}),V.effects.define("fold","hide",function(e,t){var i=V(this),s=e.mode,n="show"===s,o="hide"===s,a=e.size||15,r=/([0-9]+)%/.exec(a),l=!!e.horizFirst?["right","bottom"]:["bottom","right"],h=e.duration/2,c=V.effects.createPlaceholder(i),u=i.cssClip(),d={clip:V.extend({},u)},p={clip:V.extend({},u)},f=[u[l[0]],u[l[1]]],s=i.queue().length;r&&(a=parseInt(r[1],10)/100*f[o?0:1]),d.clip[l[0]]=a,p.clip[l[0]]=a,p.clip[l[1]]=0,n&&(i.cssClip(p.clip),c&&c.css(V.effects.clipToBox(p)),p.clip=u),i.queue(function(t){c&&c.animate(V.effects.clipToBox(d),h,e.easing).animate(V.effects.clipToBox(p),h,e.easing),t()}).animate(d,h,e.easing).animate(p,h,e.easing).queue(t),V.effects.unshift(i,s,4)}),V.effects.define("highlight","show",function(t,e){var i=V(this),s={backgroundColor:i.css("backgroundColor")};"hide"===t.mode&&(s.opacity=0),V.effects.saveStyle(i),i.css({backgroundImage:"none",backgroundColor:t.color||"#ffff99"}).animate(s,{queue:!1,duration:t.duration,easing:t.easing,complete:e})}),V.effects.define("size",function(s,e){var n,i=V(this),t=["fontSize"],o=["borderTopWidth","borderBottomWidth","paddingTop","paddingBottom"],a=["borderLeftWidth","borderRightWidth","paddingLeft","paddingRight"],r=s.mode,l="effect"!==r,h=s.scale||"both",c=s.origin||["middle","center"],u=i.css("position"),d=i.position(),p=V.effects.scaledDimensions(i),f=s.from||p,g=s.to||V.effects.scaledDimensions(i,0);V.effects.createPlaceholder(i),"show"===r&&(r=f,f=g,g=r),n={from:{y:f.height/p.height,x:f.width/p.width},to:{y:g.height/p.height,x:g.width/p.width}},"box"!==h&&"both"!==h||(n.from.y!==n.to.y&&(f=V.effects.setTransition(i,o,n.from.y,f),g=V.effects.setTransition(i,o,n.to.y,g)),n.from.x!==n.to.x&&(f=V.effects.setTransition(i,a,n.from.x,f),g=V.effects.setTransition(i,a,n.to.x,g))),"content"!==h&&"both"!==h||n.from.y!==n.to.y&&(f=V.effects.setTransition(i,t,n.from.y,f),g=V.effects.setTransition(i,t,n.to.y,g)),c&&(c=V.effects.getBaseline(c,p),f.top=(p.outerHeight-f.outerHeight)*c.y+d.top,f.left=(p.outerWidth-f.outerWidth)*c.x+d.left,g.top=(p.outerHeight-g.outerHeight)*c.y+d.top,g.left=(p.outerWidth-g.outerWidth)*c.x+d.left),delete f.outerHeight,delete f.outerWidth,i.css(f),"content"!==h&&"both"!==h||(o=o.concat(["marginTop","marginBottom"]).concat(t),a=a.concat(["marginLeft","marginRight"]),i.find("*[width]").each(function(){var t=V(this),e=V.effects.scaledDimensions(t),i={height:e.height*n.from.y,width:e.width*n.from.x,outerHeight:e.outerHeight*n.from.y,outerWidth:e.outerWidth*n.from.x},e={height:e.height*n.to.y,width:e.width*n.to.x,outerHeight:e.height*n.to.y,outerWidth:e.width*n.to.x};n.from.y!==n.to.y&&(i=V.effects.setTransition(t,o,n.from.y,i),e=V.effects.setTransition(t,o,n.to.y,e)),n.from.x!==n.to.x&&(i=V.effects.setTransition(t,a,n.from.x,i),e=V.effects.setTransition(t,a,n.to.x,e)),l&&V.effects.saveStyle(t),t.css(i),t.animate(e,s.duration,s.easing,function(){l&&V.effects.restoreStyle(t)})})),i.animate(g,{queue:!1,duration:s.duration,easing:s.easing,complete:function(){var t=i.offset();0===g.opacity&&i.css("opacity",f.opacity),l||(i.css("position","static"===u?"relative":u).offset(t),V.effects.saveStyle(i)),e()}})}),V.effects.define("scale",function(t,e){var i=V(this),s=t.mode,s=parseInt(t.percent,10)||(0===parseInt(t.percent,10)||"effect"!==s?0:100),s=V.extend(!0,{from:V.effects.scaledDimensions(i),to:V.effects.scaledDimensions(i,s,t.direction||"both"),origin:t.origin||["middle","center"]},t);t.fade&&(s.from.opacity=1,s.to.opacity=0),V.effects.effect.size.call(this,s,e)}),V.effects.define("puff","hide",function(t,e){t=V.extend(!0,{},t,{fade:!0,percent:parseInt(t.percent,10)||150});V.effects.effect.scale.call(this,t,e)}),V.effects.define("pulsate","show",function(t,e){var i=V(this),s=t.mode,n="show"===s,o=2*(t.times||5)+(n||"hide"===s?1:0),a=t.duration/o,r=0,l=1,s=i.queue().length;for(!n&&i.is(":visible")||(i.css("opacity",0).show(),r=1);l<o;l++)i.animate({opacity:r},a,t.easing),r=1-r;i.animate({opacity:r},a,t.easing),i.queue(e),V.effects.unshift(i,s,1+o)}),V.effects.define("shake",function(t,e){var i=1,s=V(this),n=t.direction||"left",o=t.distance||20,a=t.times||3,r=2*a+1,l=Math.round(t.duration/r),h="up"===n||"down"===n?"top":"left",c="up"===n||"left"===n,u={},d={},p={},n=s.queue().length;for(V.effects.createPlaceholder(s),u[h]=(c?"-=":"+=")+o,d[h]=(c?"+=":"-=")+2*o,p[h]=(c?"-=":"+=")+2*o,s.animate(u,l,t.easing);i<a;i++)s.animate(d,l,t.easing).animate(p,l,t.easing);s.animate(d,l,t.easing).animate(u,l/2,t.easing).queue(e),V.effects.unshift(s,n,1+r)}),V.effects.define("slide","show",function(t,e){var i,s,n=V(this),o={up:["bottom","top"],down:["top","bottom"],left:["right","left"],right:["left","right"]},a=t.mode,r=t.direction||"left",l="up"===r||"down"===r?"top":"left",h="up"===r||"left"===r,c=t.distance||n["top"==l?"outerHeight":"outerWidth"](!0),u={};V.effects.createPlaceholder(n),i=n.cssClip(),s=n.position()[l],u[l]=(h?-1:1)*c+s,u.clip=n.cssClip(),u.clip[o[r][1]]=u.clip[o[r][0]],"show"===a&&(n.cssClip(u.clip),n.css(l,u[l]),u.clip=i,u[l]=s),n.animate(u,{queue:!1,duration:t.duration,easing:t.easing,complete:e})}),y=!1!==V.uiBackCompat?V.effects.define("transfer",function(t,e){V(this).transfer(t,e)}):y;V.ui.focusable=function(t,e){var i,s,n,o,a=t.nodeName.toLowerCase();return"area"===a?(s=(i=t.parentNode).name,!(!t.href||!s||"map"!==i.nodeName.toLowerCase())&&(0<(s=V("img[usemap='#"+s+"']")).length&&s.is(":visible"))):(/^(input|select|textarea|button|object)$/.test(a)?(n=!t.disabled)&&(o=V(t).closest("fieldset")[0])&&(n=!o.disabled):n="a"===a&&t.href||e,n&&V(t).is(":visible")&&function(t){var e=t.css("visibility");for(;"inherit"===e;)t=t.parent(),e=t.css("visibility");return"visible"===e}(V(t)))},V.extend(V.expr.pseudos,{focusable:function(t){return V.ui.focusable(t,null!=V.attr(t,"tabindex"))}});var Q,J;V.ui.focusable,V.fn._form=function(){return"string"==typeof this[0].form?this.closest("form"):V(this[0].form)},V.ui.formResetMixin={_formResetHandler:function(){var e=V(this);setTimeout(function(){var t=e.data("ui-form-reset-instances");V.each(t,function(){this.refresh()})})},_bindFormResetHandler:function(){var t;this.form=this.element._form(),this.form.length&&((t=this.form.data("ui-form-reset-instances")||[]).length||this.form.on("reset.ui-form-reset",this._formResetHandler),t.push(this),this.form.data("ui-form-reset-instances",t))},_unbindFormResetHandler:function(){var t;this.form.length&&((t=this.form.data("ui-form-reset-instances")).splice(V.inArray(this,t),1),t.length?this.form.data("ui-form-reset-instances",t):this.form.removeData("ui-form-reset-instances").off("reset.ui-form-reset"))}};V.expr.pseudos||(V.expr.pseudos=V.expr[":"]),V.uniqueSort||(V.uniqueSort=V.unique),V.escapeSelector||(Q=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\x80-\uFFFF\w-]/g,J=function(t,e){return e?"\0"===t?"�":t.slice(0,-1)+"\\"+t.charCodeAt(t.length-1).toString(16)+" ":"\\"+t},V.escapeSelector=function(t){return(t+"").replace(Q,J)}),V.fn.even&&V.fn.odd||V.fn.extend({even:function(){return this.filter(function(t){return t%2==0})},odd:function(){return this.filter(function(t){return t%2==1})}});var Z;V.ui.keyCode={BACKSPACE:8,COMMA:188,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,HOME:36,LEFT:37,PAGE_DOWN:34,PAGE_UP:33,PERIOD:190,RIGHT:39,SPACE:32,TAB:9,UP:38},V.fn.labels=function(){var t,e,i;return this.length?this[0].labels&&this[0].labels.length?this.pushStack(this[0].labels):(e=this.eq(0).parents("label"),(t=this.attr("id"))&&(i=(i=this.eq(0).parents().last()).add((i.length?i:this).siblings()),t="label[for='"+V.escapeSelector(t)+"']",e=e.add(i.find(t).addBack(t))),this.pushStack(e)):this.pushStack([])},V.fn.scrollParent=function(t){var e=this.css("position"),i="absolute"===e,s=t?/(auto|scroll|hidden)/:/(auto|scroll)/,t=this.parents().filter(function(){var t=V(this);return(!i||"static"!==t.css("position"))&&s.test(t.css("overflow")+t.css("overflow-y")+t.css("overflow-x"))}).eq(0);return"fixed"!==e&&t.length?t:V(this[0].ownerDocument||document)},V.extend(V.expr.pseudos,{tabbable:function(t){var e=V.attr(t,"tabindex"),i=null!=e;return(!i||0<=e)&&V.ui.focusable(t,i)}}),V.fn.extend({uniqueId:(Z=0,function(){return this.each(function(){this.id||(this.id="ui-id-"+ ++Z)})}),removeUniqueId:function(){return this.each(function(){/^ui-id-\d+$/.test(this.id)&&V(this).removeAttr("id")})}}),V.widget("ui.accordion",{version:"1.13.1",options:{active:0,animate:{},classes:{"ui-accordion-header":"ui-corner-top","ui-accordion-header-collapsed":"ui-corner-all","ui-accordion-content":"ui-corner-bottom"},collapsible:!1,event:"click",header:function(t){return t.find("> li > :first-child").add(t.find("> :not(li)").even())},heightStyle:"auto",icons:{activeHeader:"ui-icon-triangle-1-s",header:"ui-icon-triangle-1-e"},activate:null,beforeActivate:null},hideProps:{borderTopWidth:"hide",borderBottomWidth:"hide",paddingTop:"hide",paddingBottom:"hide",height:"hide"},showProps:{borderTopWidth:"show",borderBottomWidth:"show",paddingTop:"show",paddingBottom:"show",height:"show"},_create:function(){var t=this.options;this.prevShow=this.prevHide=V(),this._addClass("ui-accordion","ui-widget ui-helper-reset"),this.element.attr("role","tablist"),t.collapsible||!1!==t.active&&null!=t.active||(t.active=0),this._processPanels(),t.active<0&&(t.active+=this.headers.length),this._refresh()},_getCreateEventData:function(){return{header:this.active,panel:this.active.length?this.active.next():V()}},_createIcons:function(){var t,e=this.options.icons;e&&(t=V("<span>"),this._addClass(t,"ui-accordion-header-icon","ui-icon "+e.header),t.prependTo(this.headers),t=this.active.children(".ui-accordion-header-icon"),this._removeClass(t,e.header)._addClass(t,null,e.activeHeader)._addClass(this.headers,"ui-accordion-icons"))},_destroyIcons:function(){this._removeClass(this.headers,"ui-accordion-icons"),this.headers.children(".ui-accordion-header-icon").remove()},_destroy:function(){var t;this.element.removeAttr("role"),this.headers.removeAttr("role aria-expanded aria-selected aria-controls tabIndex").removeUniqueId(),this._destroyIcons(),t=this.headers.next().css("display","").removeAttr("role aria-hidden aria-labelledby").removeUniqueId(),"content"!==this.options.heightStyle&&t.css("height","")},_setOption:function(t,e){"active"!==t?("event"===t&&(this.options.event&&this._off(this.headers,this.options.event),this._setupEvents(e)),this._super(t,e),"collapsible"!==t||e||!1!==this.options.active||this._activate(0),"icons"===t&&(this._destroyIcons(),e&&this._createIcons())):this._activate(e)},_setOptionDisabled:function(t){this._super(t),this.element.attr("aria-disabled",t),this._toggleClass(null,"ui-state-disabled",!!t),this._toggleClass(this.headers.add(this.headers.next()),null,"ui-state-disabled",!!t)},_keydown:function(t){if(!t.altKey&&!t.ctrlKey){var e=V.ui.keyCode,i=this.headers.length,s=this.headers.index(t.target),n=!1;switch(t.keyCode){case e.RIGHT:case e.DOWN:n=this.headers[(s+1)%i];break;case e.LEFT:case e.UP:n=this.headers[(s-1+i)%i];break;case e.SPACE:case e.ENTER:this._eventHandler(t);break;case e.HOME:n=this.headers[0];break;case e.END:n=this.headers[i-1]}n&&(V(t.target).attr("tabIndex",-1),V(n).attr("tabIndex",0),V(n).trigger("focus"),t.preventDefault())}},_panelKeyDown:function(t){t.keyCode===V.ui.keyCode.UP&&t.ctrlKey&&V(t.currentTarget).prev().trigger("focus")},refresh:function(){var t=this.options;this._processPanels(),!1===t.active&&!0===t.collapsible||!this.headers.length?(t.active=!1,this.active=V()):!1===t.active?this._activate(0):this.active.length&&!V.contains(this.element[0],this.active[0])?this.headers.length===this.headers.find(".ui-state-disabled").length?(t.active=!1,this.active=V()):this._activate(Math.max(0,t.active-1)):t.active=this.headers.index(this.active),this._destroyIcons(),this._refresh()},_processPanels:function(){var t=this.headers,e=this.panels;"function"==typeof this.options.header?this.headers=this.options.header(this.element):this.headers=this.element.find(this.options.header),this._addClass(this.headers,"ui-accordion-header ui-accordion-header-collapsed","ui-state-default"),this.panels=this.headers.next().filter(":not(.ui-accordion-content-active)").hide(),this._addClass(this.panels,"ui-accordion-content","ui-helper-reset ui-widget-content"),e&&(this._off(t.not(this.headers)),this._off(e.not(this.panels)))},_refresh:function(){var i,t=this.options,e=t.heightStyle,s=this.element.parent();this.active=this._findActive(t.active),this._addClass(this.active,"ui-accordion-header-active","ui-state-active")._removeClass(this.active,"ui-accordion-header-collapsed"),this._addClass(this.active.next(),"ui-accordion-content-active"),this.active.next().show(),this.headers.attr("role","tab").each(function(){var t=V(this),e=t.uniqueId().attr("id"),i=t.next(),s=i.uniqueId().attr("id");t.attr("aria-controls",s),i.attr("aria-labelledby",e)}).next().attr("role","tabpanel"),this.headers.not(this.active).attr({"aria-selected":"false","aria-expanded":"false",tabIndex:-1}).next().attr({"aria-hidden":"true"}).hide(),this.active.length?this.active.attr({"aria-selected":"true","aria-expanded":"true",tabIndex:0}).next().attr({"aria-hidden":"false"}):this.headers.eq(0).attr("tabIndex",0),this._createIcons(),this._setupEvents(t.event),"fill"===e?(i=s.height(),this.element.siblings(":visible").each(function(){var t=V(this),e=t.css("position");"absolute"!==e&&"fixed"!==e&&(i-=t.outerHeight(!0))}),this.headers.each(function(){i-=V(this).outerHeight(!0)}),this.headers.next().each(function(){V(this).height(Math.max(0,i-V(this).innerHeight()+V(this).height()))}).css("overflow","auto")):"auto"===e&&(i=0,this.headers.next().each(function(){var t=V(this).is(":visible");t||V(this).show(),i=Math.max(i,V(this).css("height","").height()),t||V(this).hide()}).height(i))},_activate:function(t){t=this._findActive(t)[0];t!==this.active[0]&&(t=t||this.active[0],this._eventHandler({target:t,currentTarget:t,preventDefault:V.noop}))},_findActive:function(t){return"number"==typeof t?this.headers.eq(t):V()},_setupEvents:function(t){var i={keydown:"_keydown"};t&&V.each(t.split(" "),function(t,e){i[e]="_eventHandler"}),this._off(this.headers.add(this.headers.next())),this._on(this.headers,i),this._on(this.headers.next(),{keydown:"_panelKeyDown"}),this._hoverable(this.headers),this._focusable(this.headers)},_eventHandler:function(t){var e=this.options,i=this.active,s=V(t.currentTarget),n=s[0]===i[0],o=n&&e.collapsible,a=o?V():s.next(),r=i.next(),a={oldHeader:i,oldPanel:r,newHeader:o?V():s,newPanel:a};t.preventDefault(),n&&!e.collapsible||!1===this._trigger("beforeActivate",t,a)||(e.active=!o&&this.headers.index(s),this.active=n?V():s,this._toggle(a),this._removeClass(i,"ui-accordion-header-active","ui-state-active"),e.icons&&(i=i.children(".ui-accordion-header-icon"),this._removeClass(i,null,e.icons.activeHeader)._addClass(i,null,e.icons.header)),n||(this._removeClass(s,"ui-accordion-header-collapsed")._addClass(s,"ui-accordion-header-active","ui-state-active"),e.icons&&(n=s.children(".ui-accordion-header-icon"),this._removeClass(n,null,e.icons.header)._addClass(n,null,e.icons.activeHeader)),this._addClass(s.next(),"ui-accordion-content-active")))},_toggle:function(t){var e=t.newPanel,i=this.prevShow.length?this.prevShow:t.oldPanel;this.prevShow.add(this.prevHide).stop(!0,!0),this.prevShow=e,this.prevHide=i,this.options.animate?this._animate(e,i,t):(i.hide(),e.show(),this._toggleComplete(t)),i.attr({"aria-hidden":"true"}),i.prev().attr({"aria-selected":"false","aria-expanded":"false"}),e.length&&i.length?i.prev().attr({tabIndex:-1,"aria-expanded":"false"}):e.length&&this.headers.filter(function(){return 0===parseInt(V(this).attr("tabIndex"),10)}).attr("tabIndex",-1),e.attr("aria-hidden","false").prev().attr({"aria-selected":"true","aria-expanded":"true",tabIndex:0})},_animate:function(t,i,e){var s,n,o,a=this,r=0,l=t.css("box-sizing"),h=t.length&&(!i.length||t.index()<i.index()),c=this.options.animate||{},u=h&&c.down||c,h=function(){a._toggleComplete(e)};return n=(n="string"==typeof u?u:n)||u.easing||c.easing,o=(o="number"==typeof u?u:o)||u.duration||c.duration,i.length?t.length?(s=t.show().outerHeight(),i.animate(this.hideProps,{duration:o,easing:n,step:function(t,e){e.now=Math.round(t)}}),void t.hide().animate(this.showProps,{duration:o,easing:n,complete:h,step:function(t,e){e.now=Math.round(t),"height"!==e.prop?"content-box"===l&&(r+=e.now):"content"!==a.options.heightStyle&&(e.now=Math.round(s-i.outerHeight()-r),r=0)}})):i.animate(this.hideProps,o,n,h):t.animate(this.showProps,o,n,h)},_toggleComplete:function(t){var e=t.oldPanel,i=e.prev();this._removeClass(e,"ui-accordion-content-active"),this._removeClass(i,"ui-accordion-header-active")._addClass(i,"ui-accordion-header-collapsed"),e.length&&(e.parent()[0].className=e.parent()[0].className),this._trigger("activate",null,t)}}),V.ui.safeActiveElement=function(e){var i;try{i=e.activeElement}catch(t){i=e.body}return i=!(i=i||e.body).nodeName?e.body:i},V.widget("ui.menu",{version:"1.13.1",defaultElement:"<ul>",delay:300,options:{icons:{submenu:"ui-icon-caret-1-e"},items:"> *",menus:"ul",position:{my:"left top",at:"right top"},role:"menu",blur:null,focus:null,select:null},_create:function(){this.activeMenu=this.element,this.mouseHandled=!1,this.lastMousePosition={x:null,y:null},this.element.uniqueId().attr({role:this.options.role,tabIndex:0}),this._addClass("ui-menu","ui-widget ui-widget-content"),this._on({"mousedown .ui-menu-item":function(t){t.preventDefault(),this._activateItem(t)},"click .ui-menu-item":function(t){var e=V(t.target),i=V(V.ui.safeActiveElement(this.document[0]));!this.mouseHandled&&e.not(".ui-state-disabled").length&&(this.select(t),t.isPropagationStopped()||(this.mouseHandled=!0),e.has(".ui-menu").length?this.expand(t):!this.element.is(":focus")&&i.closest(".ui-menu").length&&(this.element.trigger("focus",[!0]),this.active&&1===this.active.parents(".ui-menu").length&&clearTimeout(this.timer)))},"mouseenter .ui-menu-item":"_activateItem","mousemove .ui-menu-item":"_activateItem",mouseleave:"collapseAll","mouseleave .ui-menu":"collapseAll",focus:function(t,e){var i=this.active||this._menuItems().first();e||this.focus(t,i)},blur:function(t){this._delay(function(){V.contains(this.element[0],V.ui.safeActiveElement(this.document[0]))||this.collapseAll(t)})},keydown:"_keydown"}),this.refresh(),this._on(this.document,{click:function(t){this._closeOnDocumentClick(t)&&this.collapseAll(t,!0),this.mouseHandled=!1}})},_activateItem:function(t){var e,i;this.previousFilter||t.clientX===this.lastMousePosition.x&&t.clientY===this.lastMousePosition.y||(this.lastMousePosition={x:t.clientX,y:t.clientY},e=V(t.target).closest(".ui-menu-item"),i=V(t.currentTarget),e[0]===i[0]&&(i.is(".ui-state-active")||(this._removeClass(i.siblings().children(".ui-state-active"),null,"ui-state-active"),this.focus(t,i))))},_destroy:function(){var t=this.element.find(".ui-menu-item").removeAttr("role aria-disabled").children(".ui-menu-item-wrapper").removeUniqueId().removeAttr("tabIndex role aria-haspopup");this.element.removeAttr("aria-activedescendant").find(".ui-menu").addBack().removeAttr("role aria-labelledby aria-expanded aria-hidden aria-disabled tabIndex").removeUniqueId().show(),t.children().each(function(){var t=V(this);t.data("ui-menu-submenu-caret")&&t.remove()})},_keydown:function(t){var e,i,s,n=!0;switch(t.keyCode){case V.ui.keyCode.PAGE_UP:this.previousPage(t);break;case V.ui.keyCode.PAGE_DOWN:this.nextPage(t);break;case V.ui.keyCode.HOME:this._move("first","first",t);break;case V.ui.keyCode.END:this._move("last","last",t);break;case V.ui.keyCode.UP:this.previous(t);break;case V.ui.keyCode.DOWN:this.next(t);break;case V.ui.keyCode.LEFT:this.collapse(t);break;case V.ui.keyCode.RIGHT:this.active&&!this.active.is(".ui-state-disabled")&&this.expand(t);break;case V.ui.keyCode.ENTER:case V.ui.keyCode.SPACE:this._activate(t);break;case V.ui.keyCode.ESCAPE:this.collapse(t);break;default:e=this.previousFilter||"",s=n=!1,i=96<=t.keyCode&&t.keyCode<=105?(t.keyCode-96).toString():String.fromCharCode(t.keyCode),clearTimeout(this.filterTimer),i===e?s=!0:i=e+i,e=this._filterMenuItems(i),(e=s&&-1!==e.index(this.active.next())?this.active.nextAll(".ui-menu-item"):e).length||(i=String.fromCharCode(t.keyCode),e=this._filterMenuItems(i)),e.length?(this.focus(t,e),this.previousFilter=i,this.filterTimer=this._delay(function(){delete this.previousFilter},1e3)):delete this.previousFilter}n&&t.preventDefault()},_activate:function(t){this.active&&!this.active.is(".ui-state-disabled")&&(this.active.children("[aria-haspopup='true']").length?this.expand(t):this.select(t))},refresh:function(){var t,e,s=this,n=this.options.icons.submenu,i=this.element.find(this.options.menus);this._toggleClass("ui-menu-icons",null,!!this.element.find(".ui-icon").length),e=i.filter(":not(.ui-menu)").hide().attr({role:this.options.role,"aria-hidden":"true","aria-expanded":"false"}).each(function(){var t=V(this),e=t.prev(),i=V("<span>").data("ui-menu-submenu-caret",!0);s._addClass(i,"ui-menu-icon","ui-icon "+n),e.attr("aria-haspopup","true").prepend(i),t.attr("aria-labelledby",e.attr("id"))}),this._addClass(e,"ui-menu","ui-widget ui-widget-content ui-front"),(t=i.add(this.element).find(this.options.items)).not(".ui-menu-item").each(function(){var t=V(this);s._isDivider(t)&&s._addClass(t,"ui-menu-divider","ui-widget-content")}),i=(e=t.not(".ui-menu-item, .ui-menu-divider")).children().not(".ui-menu").uniqueId().attr({tabIndex:-1,role:this._itemRole()}),this._addClass(e,"ui-menu-item")._addClass(i,"ui-menu-item-wrapper"),t.filter(".ui-state-disabled").attr("aria-disabled","true"),this.active&&!V.contains(this.element[0],this.active[0])&&this.blur()},_itemRole:function(){return{menu:"menuitem",listbox:"option"}[this.options.role]},_setOption:function(t,e){var i;"icons"===t&&(i=this.element.find(".ui-menu-icon"),this._removeClass(i,null,this.options.icons.submenu)._addClass(i,null,e.submenu)),this._super(t,e)},_setOptionDisabled:function(t){this._super(t),this.element.attr("aria-disabled",String(t)),this._toggleClass(null,"ui-state-disabled",!!t)},focus:function(t,e){var i;this.blur(t,t&&"focus"===t.type),this._scrollIntoView(e),this.active=e.first(),i=this.active.children(".ui-menu-item-wrapper"),this._addClass(i,null,"ui-state-active"),this.options.role&&this.element.attr("aria-activedescendant",i.attr("id")),i=this.active.parent().closest(".ui-menu-item").children(".ui-menu-item-wrapper"),this._addClass(i,null,"ui-state-active"),t&&"keydown"===t.type?this._close():this.timer=this._delay(function(){this._close()},this.delay),(i=e.children(".ui-menu")).length&&t&&/^mouse/.test(t.type)&&this._startOpening(i),this.activeMenu=e.parent(),this._trigger("focus",t,{item:e})},_scrollIntoView:function(t){var e,i,s;this._hasScroll()&&(i=parseFloat(V.css(this.activeMenu[0],"borderTopWidth"))||0,s=parseFloat(V.css(this.activeMenu[0],"paddingTop"))||0,e=t.offset().top-this.activeMenu.offset().top-i-s,i=this.activeMenu.scrollTop(),s=this.activeMenu.height(),t=t.outerHeight(),e<0?this.activeMenu.scrollTop(i+e):s<e+t&&this.activeMenu.scrollTop(i+e-s+t))},blur:function(t,e){e||clearTimeout(this.timer),this.active&&(this._removeClass(this.active.children(".ui-menu-item-wrapper"),null,"ui-state-active"),this._trigger("blur",t,{item:this.active}),this.active=null)},_startOpening:function(t){clearTimeout(this.timer),"true"===t.attr("aria-hidden")&&(this.timer=this._delay(function(){this._close(),this._open(t)},this.delay))},_open:function(t){var e=V.extend({of:this.active},this.options.position);clearTimeout(this.timer),this.element.find(".ui-menu").not(t.parents(".ui-menu")).hide().attr("aria-hidden","true"),t.show().removeAttr("aria-hidden").attr("aria-expanded","true").position(e)},collapseAll:function(e,i){clearTimeout(this.timer),this.timer=this._delay(function(){var t=i?this.element:V(e&&e.target).closest(this.element.find(".ui-menu"));t.length||(t=this.element),this._close(t),this.blur(e),this._removeClass(t.find(".ui-state-active"),null,"ui-state-active"),this.activeMenu=t},i?0:this.delay)},_close:function(t){(t=t||(this.active?this.active.parent():this.element)).find(".ui-menu").hide().attr("aria-hidden","true").attr("aria-expanded","false")},_closeOnDocumentClick:function(t){return!V(t.target).closest(".ui-menu").length},_isDivider:function(t){return!/[^\-\u2014\u2013\s]/.test(t.text())},collapse:function(t){var e=this.active&&this.active.parent().closest(".ui-menu-item",this.element);e&&e.length&&(this._close(),this.focus(t,e))},expand:function(t){var e=this.active&&this._menuItems(this.active.children(".ui-menu")).first();e&&e.length&&(this._open(e.parent()),this._delay(function(){this.focus(t,e)}))},next:function(t){this._move("next","first",t)},previous:function(t){this._move("prev","last",t)},isFirstItem:function(){return this.active&&!this.active.prevAll(".ui-menu-item").length},isLastItem:function(){return this.active&&!this.active.nextAll(".ui-menu-item").length},_menuItems:function(t){return(t||this.element).find(this.options.items).filter(".ui-menu-item")},_move:function(t,e,i){var s;(s=this.active?"first"===t||"last"===t?this.active["first"===t?"prevAll":"nextAll"](".ui-menu-item").last():this.active[t+"All"](".ui-menu-item").first():s)&&s.length&&this.active||(s=this._menuItems(this.activeMenu)[e]()),this.focus(i,s)},nextPage:function(t){var e,i,s;this.active?this.isLastItem()||(this._hasScroll()?(i=this.active.offset().top,s=this.element.innerHeight(),0===V.fn.jquery.indexOf("3.2.")&&(s+=this.element[0].offsetHeight-this.element.outerHeight()),this.active.nextAll(".ui-menu-item").each(function(){return(e=V(this)).offset().top-i-s<0}),this.focus(t,e)):this.focus(t,this._menuItems(this.activeMenu)[this.active?"last":"first"]())):this.next(t)},previousPage:function(t){var e,i,s;this.active?this.isFirstItem()||(this._hasScroll()?(i=this.active.offset().top,s=this.element.innerHeight(),0===V.fn.jquery.indexOf("3.2.")&&(s+=this.element[0].offsetHeight-this.element.outerHeight()),this.active.prevAll(".ui-menu-item").each(function(){return 0<(e=V(this)).offset().top-i+s}),this.focus(t,e)):this.focus(t,this._menuItems(this.activeMenu).first())):this.next(t)},_hasScroll:function(){return this.element.outerHeight()<this.element.prop("scrollHeight")},select:function(t){this.active=this.active||V(t.target).closest(".ui-menu-item");var e={item:this.active};this.active.has(".ui-menu").length||this.collapseAll(t,!0),this._trigger("select",t,e)},_filterMenuItems:function(t){var t=t.replace(/[\-\[\]{}()*+?.,\\\^$|#\s]/g,"\\$&"),e=new RegExp("^"+t,"i");return this.activeMenu.find(this.options.items).filter(".ui-menu-item").filter(function(){return e.test(String.prototype.trim.call(V(this).children(".ui-menu-item-wrapper").text()))})}});V.widget("ui.autocomplete",{version:"1.13.1",defaultElement:"<input>",options:{appendTo:null,autoFocus:!1,delay:300,minLength:1,position:{my:"left top",at:"left bottom",collision:"none"},source:null,change:null,close:null,focus:null,open:null,response:null,search:null,select:null},requestIndex:0,pending:0,liveRegionTimer:null,_create:function(){var i,s,n,t=this.element[0].nodeName.toLowerCase(),e="textarea"===t,t="input"===t;this.isMultiLine=e||!t&&this._isContentEditable(this.element),this.valueMethod=this.element[e||t?"val":"text"],this.isNewMenu=!0,this._addClass("ui-autocomplete-input"),this.element.attr("autocomplete","off"),this._on(this.element,{keydown:function(t){if(this.element.prop("readOnly"))s=n=i=!0;else{s=n=i=!1;var e=V.ui.keyCode;switch(t.keyCode){case e.PAGE_UP:i=!0,this._move("previousPage",t);break;case e.PAGE_DOWN:i=!0,this._move("nextPage",t);break;case e.UP:i=!0,this._keyEvent("previous",t);break;case e.DOWN:i=!0,this._keyEvent("next",t);break;case e.ENTER:this.menu.active&&(i=!0,t.preventDefault(),this.menu.select(t));break;case e.TAB:this.menu.active&&this.menu.select(t);break;case e.ESCAPE:this.menu.element.is(":visible")&&(this.isMultiLine||this._value(this.term),this.close(t),t.preventDefault());break;default:s=!0,this._searchTimeout(t)}}},keypress:function(t){if(i)return i=!1,void(this.isMultiLine&&!this.menu.element.is(":visible")||t.preventDefault());if(!s){var e=V.ui.keyCode;switch(t.keyCode){case e.PAGE_UP:this._move("previousPage",t);break;case e.PAGE_DOWN:this._move("nextPage",t);break;case e.UP:this._keyEvent("previous",t);break;case e.DOWN:this._keyEvent("next",t)}}},input:function(t){if(n)return n=!1,void t.preventDefault();this._searchTimeout(t)},focus:function(){this.selectedItem=null,this.previous=this._value()},blur:function(t){clearTimeout(this.searching),this.close(t),this._change(t)}}),this._initSource(),this.menu=V("<ul>").appendTo(this._appendTo()).menu({role:null}).hide().attr({unselectable:"on"}).menu("instance"),this._addClass(this.menu.element,"ui-autocomplete","ui-front"),this._on(this.menu.element,{mousedown:function(t){t.preventDefault()},menufocus:function(t,e){var i,s;if(this.isNewMenu&&(this.isNewMenu=!1,t.originalEvent&&/^mouse/.test(t.originalEvent.type)))return this.menu.blur(),void this.document.one("mousemove",function(){V(t.target).trigger(t.originalEvent)});s=e.item.data("ui-autocomplete-item"),!1!==this._trigger("focus",t,{item:s})&&t.originalEvent&&/^key/.test(t.originalEvent.type)&&this._value(s.value),(i=e.item.attr("aria-label")||s.value)&&String.prototype.trim.call(i).length&&(clearTimeout(this.liveRegionTimer),this.liveRegionTimer=this._delay(function(){this.liveRegion.html(V("<div>").text(i))},100))},menuselect:function(t,e){var i=e.item.data("ui-autocomplete-item"),s=this.previous;this.element[0]!==V.ui.safeActiveElement(this.document[0])&&(this.element.trigger("focus"),this.previous=s,this._delay(function(){this.previous=s,this.selectedItem=i})),!1!==this._trigger("select",t,{item:i})&&this._value(i.value),this.term=this._value(),this.close(t),this.selectedItem=i}}),this.liveRegion=V("<div>",{role:"status","aria-live":"assertive","aria-relevant":"additions"}).appendTo(this.document[0].body),this._addClass(this.liveRegion,null,"ui-helper-hidden-accessible"),this._on(this.window,{beforeunload:function(){this.element.removeAttr("autocomplete")}})},_destroy:function(){clearTimeout(this.searching),this.element.removeAttr("autocomplete"),this.menu.element.remove(),this.liveRegion.remove()},_setOption:function(t,e){this._super(t,e),"source"===t&&this._initSource(),"appendTo"===t&&this.menu.element.appendTo(this._appendTo()),"disabled"===t&&e&&this.xhr&&this.xhr.abort()},_isEventTargetInWidget:function(t){var e=this.menu.element[0];return t.target===this.element[0]||t.target===e||V.contains(e,t.target)},_closeOnClickOutside:function(t){this._isEventTargetInWidget(t)||this.close()},_appendTo:function(){var t=this.options.appendTo;return t=!(t=!(t=t&&(t.jquery||t.nodeType?V(t):this.document.find(t).eq(0)))||!t[0]?this.element.closest(".ui-front, dialog"):t).length?this.document[0].body:t},_initSource:function(){var i,s,n=this;Array.isArray(this.options.source)?(i=this.options.source,this.source=function(t,e){e(V.ui.autocomplete.filter(i,t.term))}):"string"==typeof this.options.source?(s=this.options.source,this.source=function(t,e){n.xhr&&n.xhr.abort(),n.xhr=V.ajax({url:s,data:t,dataType:"json",success:function(t){e(t)},error:function(){e([])}})}):this.source=this.options.source},_searchTimeout:function(s){clearTimeout(this.searching),this.searching=this._delay(function(){var t=this.term===this._value(),e=this.menu.element.is(":visible"),i=s.altKey||s.ctrlKey||s.metaKey||s.shiftKey;t&&(e||i)||(this.selectedItem=null,this.search(null,s))},this.options.delay)},search:function(t,e){return t=null!=t?t:this._value(),this.term=this._value(),t.length<this.options.minLength?this.close(e):!1!==this._trigger("search",e)?this._search(t):void 0},_search:function(t){this.pending++,this._addClass("ui-autocomplete-loading"),this.cancelSearch=!1,this.source({term:t},this._response())},_response:function(){var e=++this.requestIndex;return function(t){e===this.requestIndex&&this.__response(t),this.pending--,this.pending||this._removeClass("ui-autocomplete-loading")}.bind(this)},__response:function(t){t=t&&this._normalize(t),this._trigger("response",null,{content:t}),!this.options.disabled&&t&&t.length&&!this.cancelSearch?(this._suggest(t),this._trigger("open")):this._close()},close:function(t){this.cancelSearch=!0,this._close(t)},_close:function(t){this._off(this.document,"mousedown"),this.menu.element.is(":visible")&&(this.menu.element.hide(),this.menu.blur(),this.isNewMenu=!0,this._trigger("close",t))},_change:function(t){this.previous!==this._value()&&this._trigger("change",t,{item:this.selectedItem})},_normalize:function(t){return t.length&&t[0].label&&t[0].value?t:V.map(t,function(t){return"string"==typeof t?{label:t,value:t}:V.extend({},t,{label:t.label||t.value,value:t.value||t.label})})},_suggest:function(t){var e=this.menu.element.empty();this._renderMenu(e,t),this.isNewMenu=!0,this.menu.refresh(),e.show(),this._resizeMenu(),e.position(V.extend({of:this.element},this.options.position)),this.options.autoFocus&&this.menu.next(),this._on(this.document,{mousedown:"_closeOnClickOutside"})},_resizeMenu:function(){var t=this.menu.element;t.outerWidth(Math.max(t.width("").outerWidth()+1,this.element.outerWidth()))},_renderMenu:function(i,t){var s=this;V.each(t,function(t,e){s._renderItemData(i,e)})},_renderItemData:function(t,e){return this._renderItem(t,e).data("ui-autocomplete-item",e)},_renderItem:function(t,e){return V("<li>").append(V("<div>").text(e.label)).appendTo(t)},_move:function(t,e){if(this.menu.element.is(":visible"))return this.menu.isFirstItem()&&/^previous/.test(t)||this.menu.isLastItem()&&/^next/.test(t)?(this.isMultiLine||this._value(this.term),void this.menu.blur()):void this.menu[t](e);this.search(null,e)},widget:function(){return this.menu.element},_value:function(){return this.valueMethod.apply(this.element,arguments)},_keyEvent:function(t,e){this.isMultiLine&&!this.menu.element.is(":visible")||(this._move(t,e),e.preventDefault())},_isContentEditable:function(t){if(!t.length)return!1;var e=t.prop("contentEditable");return"inherit"===e?this._isContentEditable(t.parent()):"true"===e}}),V.extend(V.ui.autocomplete,{escapeRegex:function(t){return t.replace(/[\-\[\]{}()*+?.,\\\^$|#\s]/g,"\\$&")},filter:function(t,e){var i=new RegExp(V.ui.autocomplete.escapeRegex(e),"i");return V.grep(t,function(t){return i.test(t.label||t.value||t)})}}),V.widget("ui.autocomplete",V.ui.autocomplete,{options:{messages:{noResults:"No search results.",results:function(t){return t+(1<t?" results are":" result is")+" available, use up and down arrow keys to navigate."}}},__response:function(t){var e;this._superApply(arguments),this.options.disabled||this.cancelSearch||(e=t&&t.length?this.options.messages.results(t.length):this.options.messages.noResults,clearTimeout(this.liveRegionTimer),this.liveRegionTimer=this._delay(function(){this.liveRegion.html(V("<div>").text(e))},100))}});V.ui.autocomplete;var tt=/ui-corner-([a-z]){2,6}/g;V.widget("ui.controlgroup",{version:"1.13.1",defaultElement:"<div>",options:{direction:"horizontal",disabled:null,onlyVisible:!0,items:{button:"input[type=button], input[type=submit], input[type=reset], button, a",controlgroupLabel:".ui-controlgroup-label",checkboxradio:"input[type='checkbox'], input[type='radio']",selectmenu:"select",spinner:".ui-spinner-input"}},_create:function(){this._enhance()},_enhance:function(){this.element.attr("role","toolbar"),this.refresh()},_destroy:function(){this._callChildMethod("destroy"),this.childWidgets.removeData("ui-controlgroup-data"),this.element.removeAttr("role"),this.options.items.controlgroupLabel&&this.element.find(this.options.items.controlgroupLabel).find(".ui-controlgroup-label-contents").contents().unwrap()},_initWidgets:function(){var o=this,a=[];V.each(this.options.items,function(s,t){var e,n={};if(t)return"controlgroupLabel"===s?((e=o.element.find(t)).each(function(){var t=V(this);t.children(".ui-controlgroup-label-contents").length||t.contents().wrapAll("<span class='ui-controlgroup-label-contents'></span>")}),o._addClass(e,null,"ui-widget ui-widget-content ui-state-default"),void(a=a.concat(e.get()))):void(V.fn[s]&&(n=o["_"+s+"Options"]?o["_"+s+"Options"]("middle"):{classes:{}},o.element.find(t).each(function(){var t=V(this),e=t[s]("instance"),i=V.widget.extend({},n);"button"===s&&t.parent(".ui-spinner").length||((e=e||t[s]()[s]("instance"))&&(i.classes=o._resolveClassesValues(i.classes,e)),t[s](i),i=t[s]("widget"),V.data(i[0],"ui-controlgroup-data",e||t[s]("instance")),a.push(i[0]))})))}),this.childWidgets=V(V.uniqueSort(a)),this._addClass(this.childWidgets,"ui-controlgroup-item")},_callChildMethod:function(e){this.childWidgets.each(function(){var t=V(this).data("ui-controlgroup-data");t&&t[e]&&t[e]()})},_updateCornerClass:function(t,e){e=this._buildSimpleOptions(e,"label").classes.label;this._removeClass(t,null,"ui-corner-top ui-corner-bottom ui-corner-left ui-corner-right ui-corner-all"),this._addClass(t,null,e)},_buildSimpleOptions:function(t,e){var i="vertical"===this.options.direction,s={classes:{}};return s.classes[e]={middle:"",first:"ui-corner-"+(i?"top":"left"),last:"ui-corner-"+(i?"bottom":"right"),only:"ui-corner-all"}[t],s},_spinnerOptions:function(t){t=this._buildSimpleOptions(t,"ui-spinner");return t.classes["ui-spinner-up"]="",t.classes["ui-spinner-down"]="",t},_buttonOptions:function(t){return this._buildSimpleOptions(t,"ui-button")},_checkboxradioOptions:function(t){return this._buildSimpleOptions(t,"ui-checkboxradio-label")},_selectmenuOptions:function(t){var e="vertical"===this.options.direction;return{width:e&&"auto",classes:{middle:{"ui-selectmenu-button-open":"","ui-selectmenu-button-closed":""},first:{"ui-selectmenu-button-open":"ui-corner-"+(e?"top":"tl"),"ui-selectmenu-button-closed":"ui-corner-"+(e?"top":"left")},last:{"ui-selectmenu-button-open":e?"":"ui-corner-tr","ui-selectmenu-button-closed":"ui-corner-"+(e?"bottom":"right")},only:{"ui-selectmenu-button-open":"ui-corner-top","ui-selectmenu-button-closed":"ui-corner-all"}}[t]}},_resolveClassesValues:function(i,s){var n={};return V.each(i,function(t){var e=s.options.classes[t]||"",e=String.prototype.trim.call(e.replace(tt,""));n[t]=(e+" "+i[t]).replace(/\s+/g," ")}),n},_setOption:function(t,e){"direction"===t&&this._removeClass("ui-controlgroup-"+this.options.direction),this._super(t,e),"disabled"!==t?this.refresh():this._callChildMethod(e?"disable":"enable")},refresh:function(){var n,o=this;this._addClass("ui-controlgroup ui-controlgroup-"+this.options.direction),"horizontal"===this.options.direction&&this._addClass(null,"ui-helper-clearfix"),this._initWidgets(),n=this.childWidgets,(n=this.options.onlyVisible?n.filter(":visible"):n).length&&(V.each(["first","last"],function(t,e){var i,s=n[e]().data("ui-controlgroup-data");s&&o["_"+s.widgetName+"Options"]?((i=o["_"+s.widgetName+"Options"](1===n.length?"only":e)).classes=o._resolveClassesValues(i.classes,s),s.element[s.widgetName](i)):o._updateCornerClass(n[e](),e)}),this._callChildMethod("refresh"))}});V.widget("ui.checkboxradio",[V.ui.formResetMixin,{version:"1.13.1",options:{disabled:null,label:null,icon:!0,classes:{"ui-checkboxradio-label":"ui-corner-all","ui-checkboxradio-icon":"ui-corner-all"}},_getCreateOptions:function(){var t,e=this,i=this._super()||{};return this._readType(),t=this.element.labels(),this.label=V(t[t.length-1]),this.label.length||V.error("No label found for checkboxradio widget"),this.originalLabel="",this.label.contents().not(this.element[0]).each(function(){e.originalLabel+=3===this.nodeType?V(this).text():this.outerHTML}),this.originalLabel&&(i.label=this.originalLabel),null!=(t=this.element[0].disabled)&&(i.disabled=t),i},_create:function(){var t=this.element[0].checked;this._bindFormResetHandler(),null==this.options.disabled&&(this.options.disabled=this.element[0].disabled),this._setOption("disabled",this.options.disabled),this._addClass("ui-checkboxradio","ui-helper-hidden-accessible"),this._addClass(this.label,"ui-checkboxradio-label","ui-button ui-widget"),"radio"===this.type&&this._addClass(this.label,"ui-checkboxradio-radio-label"),this.options.label&&this.options.label!==this.originalLabel?this._updateLabel():this.originalLabel&&(this.options.label=this.originalLabel),this._enhance(),t&&this._addClass(this.label,"ui-checkboxradio-checked","ui-state-active"),this._on({change:"_toggleClasses",focus:function(){this._addClass(this.label,null,"ui-state-focus ui-visual-focus")},blur:function(){this._removeClass(this.label,null,"ui-state-focus ui-visual-focus")}})},_readType:function(){var t=this.element[0].nodeName.toLowerCase();this.type=this.element[0].type,"input"===t&&/radio|checkbox/.test(this.type)||V.error("Can't create checkboxradio on element.nodeName="+t+" and element.type="+this.type)},_enhance:function(){this._updateIcon(this.element[0].checked)},widget:function(){return this.label},_getRadioGroup:function(){var t=this.element[0].name,e="input[name='"+V.escapeSelector(t)+"']";return t?(this.form.length?V(this.form[0].elements).filter(e):V(e).filter(function(){return 0===V(this)._form().length})).not(this.element):V([])},_toggleClasses:function(){var t=this.element[0].checked;this._toggleClass(this.label,"ui-checkboxradio-checked","ui-state-active",t),this.options.icon&&"checkbox"===this.type&&this._toggleClass(this.icon,null,"ui-icon-check ui-state-checked",t)._toggleClass(this.icon,null,"ui-icon-blank",!t),"radio"===this.type&&this._getRadioGroup().each(function(){var t=V(this).checkboxradio("instance");t&&t._removeClass(t.label,"ui-checkboxradio-checked","ui-state-active")})},_destroy:function(){this._unbindFormResetHandler(),this.icon&&(this.icon.remove(),this.iconSpace.remove())},_setOption:function(t,e){if("label"!==t||e){if(this._super(t,e),"disabled"===t)return this._toggleClass(this.label,null,"ui-state-disabled",e),void(this.element[0].disabled=e);this.refresh()}},_updateIcon:function(t){var e="ui-icon ui-icon-background ";this.options.icon?(this.icon||(this.icon=V("<span>"),this.iconSpace=V("<span> </span>"),this._addClass(this.iconSpace,"ui-checkboxradio-icon-space")),"checkbox"===this.type?(e+=t?"ui-icon-check ui-state-checked":"ui-icon-blank",this._removeClass(this.icon,null,t?"ui-icon-blank":"ui-icon-check")):e+="ui-icon-blank",this._addClass(this.icon,"ui-checkboxradio-icon",e),t||this._removeClass(this.icon,null,"ui-icon-check ui-state-checked"),this.icon.prependTo(this.label).after(this.iconSpace)):void 0!==this.icon&&(this.icon.remove(),this.iconSpace.remove(),delete this.icon)},_updateLabel:function(){var t=this.label.contents().not(this.element[0]);this.icon&&(t=t.not(this.icon[0])),(t=this.iconSpace?t.not(this.iconSpace[0]):t).remove(),this.label.append(this.options.label)},refresh:function(){var t=this.element[0].checked,e=this.element[0].disabled;this._updateIcon(t),this._toggleClass(this.label,"ui-checkboxradio-checked","ui-state-active",t),null!==this.options.label&&this._updateLabel(),e!==this.options.disabled&&this._setOptions({disabled:e})}}]);var et;V.ui.checkboxradio;V.widget("ui.button",{version:"1.13.1",defaultElement:"<button>",options:{classes:{"ui-button":"ui-corner-all"},disabled:null,icon:null,iconPosition:"beginning",label:null,showLabel:!0},_getCreateOptions:function(){var t,e=this._super()||{};return this.isInput=this.element.is("input"),null!=(t=this.element[0].disabled)&&(e.disabled=t),this.originalLabel=this.isInput?this.element.val():this.element.html(),this.originalLabel&&(e.label=this.originalLabel),e},_create:function(){!this.option.showLabel&!this.options.icon&&(this.options.showLabel=!0),null==this.options.disabled&&(this.options.disabled=this.element[0].disabled||!1),this.hasTitle=!!this.element.attr("title"),this.options.label&&this.options.label!==this.originalLabel&&(this.isInput?this.element.val(this.options.label):this.element.html(this.options.label)),this._addClass("ui-button","ui-widget"),this._setOption("disabled",this.options.disabled),this._enhance(),this.element.is("a")&&this._on({keyup:function(t){t.keyCode===V.ui.keyCode.SPACE&&(t.preventDefault(),this.element[0].click?this.element[0].click():this.element.trigger("click"))}})},_enhance:function(){this.element.is("button")||this.element.attr("role","button"),this.options.icon&&(this._updateIcon("icon",this.options.icon),this._updateTooltip())},_updateTooltip:function(){this.title=this.element.attr("title"),this.options.showLabel||this.title||this.element.attr("title",this.options.label)},_updateIcon:function(t,e){var i="iconPosition"!==t,s=i?this.options.iconPosition:e,t="top"===s||"bottom"===s;this.icon?i&&this._removeClass(this.icon,null,this.options.icon):(this.icon=V("<span>"),this._addClass(this.icon,"ui-button-icon","ui-icon"),this.options.showLabel||this._addClass("ui-button-icon-only")),i&&this._addClass(this.icon,null,e),this._attachIcon(s),t?(this._addClass(this.icon,null,"ui-widget-icon-block"),this.iconSpace&&this.iconSpace.remove()):(this.iconSpace||(this.iconSpace=V("<span> </span>"),this._addClass(this.iconSpace,"ui-button-icon-space")),this._removeClass(this.icon,null,"ui-wiget-icon-block"),this._attachIconSpace(s))},_destroy:function(){this.element.removeAttr("role"),this.icon&&this.icon.remove(),this.iconSpace&&this.iconSpace.remove(),this.hasTitle||this.element.removeAttr("title")},_attachIconSpace:function(t){this.icon[/^(?:end|bottom)/.test(t)?"before":"after"](this.iconSpace)},_attachIcon:function(t){this.element[/^(?:end|bottom)/.test(t)?"append":"prepend"](this.icon)},_setOptions:function(t){var e=(void 0===t.showLabel?this.options:t).showLabel,i=(void 0===t.icon?this.options:t).icon;e||i||(t.showLabel=!0),this._super(t)},_setOption:function(t,e){"icon"===t&&(e?this._updateIcon(t,e):this.icon&&(this.icon.remove(),this.iconSpace&&this.iconSpace.remove())),"iconPosition"===t&&this._updateIcon(t,e),"showLabel"===t&&(this._toggleClass("ui-button-icon-only",null,!e),this._updateTooltip()),"label"===t&&(this.isInput?this.element.val(e):(this.element.html(e),this.icon&&(this._attachIcon(this.options.iconPosition),this._attachIconSpace(this.options.iconPosition)))),this._super(t,e),"disabled"===t&&(this._toggleClass(null,"ui-state-disabled",e),(this.element[0].disabled=e)&&this.element.trigger("blur"))},refresh:function(){var t=this.element.is("input, button")?this.element[0].disabled:this.element.hasClass("ui-button-disabled");t!==this.options.disabled&&this._setOptions({disabled:t}),this._updateTooltip()}}),!1!==V.uiBackCompat&&(V.widget("ui.button",V.ui.button,{options:{text:!0,icons:{primary:null,secondary:null}},_create:function(){this.options.showLabel&&!this.options.text&&(this.options.showLabel=this.options.text),!this.options.showLabel&&this.options.text&&(this.options.text=this.options.showLabel),this.options.icon||!this.options.icons.primary&&!this.options.icons.secondary?this.options.icon&&(this.options.icons.primary=this.options.icon):this.options.icons.primary?this.options.icon=this.options.icons.primary:(this.options.icon=this.options.icons.secondary,this.options.iconPosition="end"),this._super()},_setOption:function(t,e){"text"!==t?("showLabel"===t&&(this.options.text=e),"icon"===t&&(this.options.icons.primary=e),"icons"===t&&(e.primary?(this._super("icon",e.primary),this._super("iconPosition","beginning")):e.secondary&&(this._super("icon",e.secondary),this._super("iconPosition","end"))),this._superApply(arguments)):this._super("showLabel",e)}}),V.fn.button=(et=V.fn.button,function(i){var t="string"==typeof i,s=Array.prototype.slice.call(arguments,1),n=this;return t?this.length||"instance"!==i?this.each(function(){var t=V(this).attr("type"),e=V.data(this,"ui-"+("checkbox"!==t&&"radio"!==t?"button":"checkboxradio"));return"instance"===i?(n=e,!1):e?"function"!=typeof e[i]||"_"===i.charAt(0)?V.error("no such method '"+i+"' for button widget instance"):(t=e[i].apply(e,s))!==e&&void 0!==t?(n=t&&t.jquery?n.pushStack(t.get()):t,!1):void 0:V.error("cannot call methods on button prior to initialization; attempted to call method '"+i+"'")}):n=void 0:(s.length&&(i=V.widget.extend.apply(null,[i].concat(s))),this.each(function(){var t=V(this).attr("type"),e="checkbox"!==t&&"radio"!==t?"button":"checkboxradio",t=V.data(this,"ui-"+e);t?(t.option(i||{}),t._init&&t._init()):"button"!=e?V(this).checkboxradio(V.extend({icon:!1},i)):et.call(V(this),i)})),n}),V.fn.buttonset=function(){return V.ui.controlgroup||V.error("Controlgroup widget missing"),"option"===arguments[0]&&"items"===arguments[1]&&arguments[2]?this.controlgroup.apply(this,[arguments[0],"items.button",arguments[2]]):"option"===arguments[0]&&"items"===arguments[1]?this.controlgroup.apply(this,[arguments[0],"items.button"]):("object"==typeof arguments[0]&&arguments[0].items&&(arguments[0].items={button:arguments[0].items}),this.controlgroup.apply(this,arguments))});var it;V.ui.button;function st(){this._curInst=null,this._keyEvent=!1,this._disabledInputs=[],this._datepickerShowing=!1,this._inDialog=!1,this._mainDivId="ui-datepicker-div",this._inlineClass="ui-datepicker-inline",this._appendClass="ui-datepicker-append",this._triggerClass="ui-datepicker-trigger",this._dialogClass="ui-datepicker-dialog",this._disableClass="ui-datepicker-disabled",this._unselectableClass="ui-datepicker-unselectable",this._currentClass="ui-datepicker-current-day",this._dayOverClass="ui-datepicker-days-cell-over",this.regional=[],this.regional[""]={closeText:"Done",prevText:"Prev",nextText:"Next",currentText:"Today",monthNames:["January","February","March","April","May","June","July","August","September","October","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],dayNames:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],dayNamesShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],dayNamesMin:["Su","Mo","Tu","We","Th","Fr","Sa"],weekHeader:"Wk",dateFormat:"mm/dd/yy",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:"",selectMonthLabel:"Select month",selectYearLabel:"Select year"},this._defaults={showOn:"focus",showAnim:"fadeIn",showOptions:{},defaultDate:null,appendText:"",buttonText:"...",buttonImage:"",buttonImageOnly:!1,hideIfNoPrevNext:!1,navigationAsDateFormat:!1,gotoCurrent:!1,changeMonth:!1,changeYear:!1,yearRange:"c-10:c+10",showOtherMonths:!1,selectOtherMonths:!1,showWeek:!1,calculateWeek:this.iso8601Week,shortYearCutoff:"+10",minDate:null,maxDate:null,duration:"fast",beforeShowDay:null,beforeShow:null,onSelect:null,onChangeMonthYear:null,onClose:null,onUpdateDatepicker:null,numberOfMonths:1,showCurrentAtPos:0,stepMonths:1,stepBigMonths:12,altField:"",altFormat:"",constrainInput:!0,showButtonPanel:!1,autoSize:!1,disabled:!1},V.extend(this._defaults,this.regional[""]),this.regional.en=V.extend(!0,{},this.regional[""]),this.regional["en-US"]=V.extend(!0,{},this.regional.en),this.dpDiv=nt(V("<div id='"+this._mainDivId+"' class='ui-datepicker ui-widget ui-widget-content ui-helper-clearfix ui-corner-all'></div>"))}function nt(t){var e="button, .ui-datepicker-prev, .ui-datepicker-next, .ui-datepicker-calendar td a";return t.on("mouseout",e,function(){V(this).removeClass("ui-state-hover"),-1!==this.className.indexOf("ui-datepicker-prev")&&V(this).removeClass("ui-datepicker-prev-hover"),-1!==this.className.indexOf("ui-datepicker-next")&&V(this).removeClass("ui-datepicker-next-hover")}).on("mouseover",e,ot)}function ot(){V.datepicker._isDisabledDatepicker((it.inline?it.dpDiv.parent():it.input)[0])||(V(this).parents(".ui-datepicker-calendar").find("a").removeClass("ui-state-hover"),V(this).addClass("ui-state-hover"),-1!==this.className.indexOf("ui-datepicker-prev")&&V(this).addClass("ui-datepicker-prev-hover"),-1!==this.className.indexOf("ui-datepicker-next")&&V(this).addClass("ui-datepicker-next-hover"))}function at(t,e){for(var i in V.extend(t,e),e)null==e[i]&&(t[i]=e[i]);return t}V.extend(V.ui,{datepicker:{version:"1.13.1"}}),V.extend(st.prototype,{markerClassName:"hasDatepicker",maxRows:4,_widgetDatepicker:function(){return this.dpDiv},setDefaults:function(t){return at(this._defaults,t||{}),this},_attachDatepicker:function(t,e){var i,s=t.nodeName.toLowerCase(),n="div"===s||"span"===s;t.id||(this.uuid+=1,t.id="dp"+this.uuid),(i=this._newInst(V(t),n)).settings=V.extend({},e||{}),"input"===s?this._connectDatepicker(t,i):n&&this._inlineDatepicker(t,i)},_newInst:function(t,e){return{id:t[0].id.replace(/([^A-Za-z0-9_\-])/g,"\\\\$1"),input:t,selectedDay:0,selectedMonth:0,selectedYear:0,drawMonth:0,drawYear:0,inline:e,dpDiv:e?nt(V("<div class='"+this._inlineClass+" ui-datepicker ui-widget ui-widget-content ui-helper-clearfix ui-corner-all'></div>")):this.dpDiv}},_connectDatepicker:function(t,e){var i=V(t);e.append=V([]),e.trigger=V([]),i.hasClass(this.markerClassName)||(this._attachments(i,e),i.addClass(this.markerClassName).on("keydown",this._doKeyDown).on("keypress",this._doKeyPress).on("keyup",this._doKeyUp),this._autoSize(e),V.data(t,"datepicker",e),e.settings.disabled&&this._disableDatepicker(t))},_attachments:function(t,e){var i,s=this._get(e,"appendText"),n=this._get(e,"isRTL");e.append&&e.append.remove(),s&&(e.append=V("<span>").addClass(this._appendClass).text(s),t[n?"before":"after"](e.append)),t.off("focus",this._showDatepicker),e.trigger&&e.trigger.remove(),"focus"!==(i=this._get(e,"showOn"))&&"both"!==i||t.on("focus",this._showDatepicker),"button"!==i&&"both"!==i||(s=this._get(e,"buttonText"),i=this._get(e,"buttonImage"),this._get(e,"buttonImageOnly")?e.trigger=V("<img>").addClass(this._triggerClass).attr({src:i,alt:s,title:s}):(e.trigger=V("<button type='button'>").addClass(this._triggerClass),i?e.trigger.html(V("<img>").attr({src:i,alt:s,title:s})):e.trigger.text(s)),t[n?"before":"after"](e.trigger),e.trigger.on("click",function(){return V.datepicker._datepickerShowing&&V.datepicker._lastInput===t[0]?V.datepicker._hideDatepicker():(V.datepicker._datepickerShowing&&V.datepicker._lastInput!==t[0]&&V.datepicker._hideDatepicker(),V.datepicker._showDatepicker(t[0])),!1}))},_autoSize:function(t){var e,i,s,n,o,a;this._get(t,"autoSize")&&!t.inline&&(o=new Date(2009,11,20),(a=this._get(t,"dateFormat")).match(/[DM]/)&&(e=function(t){for(n=s=i=0;n<t.length;n++)t[n].length>i&&(i=t[n].length,s=n);return s},o.setMonth(e(this._get(t,a.match(/MM/)?"monthNames":"monthNamesShort"))),o.setDate(e(this._get(t,a.match(/DD/)?"dayNames":"dayNamesShort"))+20-o.getDay())),t.input.attr("size",this._formatDate(t,o).length))},_inlineDatepicker:function(t,e){var i=V(t);i.hasClass(this.markerClassName)||(i.addClass(this.markerClassName).append(e.dpDiv),V.data(t,"datepicker",e),this._setDate(e,this._getDefaultDate(e),!0),this._updateDatepicker(e),this._updateAlternate(e),e.settings.disabled&&this._disableDatepicker(t),e.dpDiv.css("display","block"))},_dialogDatepicker:function(t,e,i,s,n){var o,a=this._dialogInst;return a||(this.uuid+=1,o="dp"+this.uuid,this._dialogInput=V("<input type='text' id='"+o+"' style='position: absolute; top: -100px; width: 0px;'/>"),this._dialogInput.on("keydown",this._doKeyDown),V("body").append(this._dialogInput),(a=this._dialogInst=this._newInst(this._dialogInput,!1)).settings={},V.data(this._dialogInput[0],"datepicker",a)),at(a.settings,s||{}),e=e&&e.constructor===Date?this._formatDate(a,e):e,this._dialogInput.val(e),this._pos=n?n.length?n:[n.pageX,n.pageY]:null,this._pos||(o=document.documentElement.clientWidth,s=document.documentElement.clientHeight,e=document.documentElement.scrollLeft||document.body.scrollLeft,n=document.documentElement.scrollTop||document.body.scrollTop,this._pos=[o/2-100+e,s/2-150+n]),this._dialogInput.css("left",this._pos[0]+20+"px").css("top",this._pos[1]+"px"),a.settings.onSelect=i,this._inDialog=!0,this.dpDiv.addClass(this._dialogClass),this._showDatepicker(this._dialogInput[0]),V.blockUI&&V.blockUI(this.dpDiv),V.data(this._dialogInput[0],"datepicker",a),this},_destroyDatepicker:function(t){var e,i=V(t),s=V.data(t,"datepicker");i.hasClass(this.markerClassName)&&(e=t.nodeName.toLowerCase(),V.removeData(t,"datepicker"),"input"===e?(s.append.remove(),s.trigger.remove(),i.removeClass(this.markerClassName).off("focus",this._showDatepicker).off("keydown",this._doKeyDown).off("keypress",this._doKeyPress).off("keyup",this._doKeyUp)):"div"!==e&&"span"!==e||i.removeClass(this.markerClassName).empty(),it===s&&(it=null,this._curInst=null))},_enableDatepicker:function(e){var t,i=V(e),s=V.data(e,"datepicker");i.hasClass(this.markerClassName)&&("input"===(t=e.nodeName.toLowerCase())?(e.disabled=!1,s.trigger.filter("button").each(function(){this.disabled=!1}).end().filter("img").css({opacity:"1.0",cursor:""})):"div"!==t&&"span"!==t||((i=i.children("."+this._inlineClass)).children().removeClass("ui-state-disabled"),i.find("select.ui-datepicker-month, select.ui-datepicker-year").prop("disabled",!1)),this._disabledInputs=V.map(this._disabledInputs,function(t){return t===e?null:t}))},_disableDatepicker:function(e){var t,i=V(e),s=V.data(e,"datepicker");i.hasClass(this.markerClassName)&&("input"===(t=e.nodeName.toLowerCase())?(e.disabled=!0,s.trigger.filter("button").each(function(){this.disabled=!0}).end().filter("img").css({opacity:"0.5",cursor:"default"})):"div"!==t&&"span"!==t||((i=i.children("."+this._inlineClass)).children().addClass("ui-state-disabled"),i.find("select.ui-datepicker-month, select.ui-datepicker-year").prop("disabled",!0)),this._disabledInputs=V.map(this._disabledInputs,function(t){return t===e?null:t}),this._disabledInputs[this._disabledInputs.length]=e)},_isDisabledDatepicker:function(t){if(!t)return!1;for(var e=0;e<this._disabledInputs.length;e++)if(this._disabledInputs[e]===t)return!0;return!1},_getInst:function(t){try{return V.data(t,"datepicker")}catch(t){throw"Missing instance data for this datepicker"}},_optionDatepicker:function(t,e,i){var s,n,o=this._getInst(t);if(2===arguments.length&&"string"==typeof e)return"defaults"===e?V.extend({},V.datepicker._defaults):o?"all"===e?V.extend({},o.settings):this._get(o,e):null;s=e||{},"string"==typeof e&&((s={})[e]=i),o&&(this._curInst===o&&this._hideDatepicker(),n=this._getDateDatepicker(t,!0),e=this._getMinMaxDate(o,"min"),i=this._getMinMaxDate(o,"max"),at(o.settings,s),null!==e&&void 0!==s.dateFormat&&void 0===s.minDate&&(o.settings.minDate=this._formatDate(o,e)),null!==i&&void 0!==s.dateFormat&&void 0===s.maxDate&&(o.settings.maxDate=this._formatDate(o,i)),"disabled"in s&&(s.disabled?this._disableDatepicker(t):this._enableDatepicker(t)),this._attachments(V(t),o),this._autoSize(o),this._setDate(o,n),this._updateAlternate(o),this._updateDatepicker(o))},_changeDatepicker:function(t,e,i){this._optionDatepicker(t,e,i)},_refreshDatepicker:function(t){t=this._getInst(t);t&&this._updateDatepicker(t)},_setDateDatepicker:function(t,e){t=this._getInst(t);t&&(this._setDate(t,e),this._updateDatepicker(t),this._updateAlternate(t))},_getDateDatepicker:function(t,e){t=this._getInst(t);return t&&!t.inline&&this._setDateFromField(t,e),t?this._getDate(t):null},_doKeyDown:function(t){var e,i,s=V.datepicker._getInst(t.target),n=!0,o=s.dpDiv.is(".ui-datepicker-rtl");if(s._keyEvent=!0,V.datepicker._datepickerShowing)switch(t.keyCode){case 9:V.datepicker._hideDatepicker(),n=!1;break;case 13:return(i=V("td."+V.datepicker._dayOverClass+":not(."+V.datepicker._currentClass+")",s.dpDiv))[0]&&V.datepicker._selectDay(t.target,s.selectedMonth,s.selectedYear,i[0]),(e=V.datepicker._get(s,"onSelect"))?(i=V.datepicker._formatDate(s),e.apply(s.input?s.input[0]:null,[i,s])):V.datepicker._hideDatepicker(),!1;case 27:V.datepicker._hideDatepicker();break;case 33:V.datepicker._adjustDate(t.target,t.ctrlKey?-V.datepicker._get(s,"stepBigMonths"):-V.datepicker._get(s,"stepMonths"),"M");break;case 34:V.datepicker._adjustDate(t.target,t.ctrlKey?+V.datepicker._get(s,"stepBigMonths"):+V.datepicker._get(s,"stepMonths"),"M");break;case 35:(t.ctrlKey||t.metaKey)&&V.datepicker._clearDate(t.target),n=t.ctrlKey||t.metaKey;break;case 36:(t.ctrlKey||t.metaKey)&&V.datepicker._gotoToday(t.target),n=t.ctrlKey||t.metaKey;break;case 37:(t.ctrlKey||t.metaKey)&&V.datepicker._adjustDate(t.target,o?1:-1,"D"),n=t.ctrlKey||t.metaKey,t.originalEvent.altKey&&V.datepicker._adjustDate(t.target,t.ctrlKey?-V.datepicker._get(s,"stepBigMonths"):-V.datepicker._get(s,"stepMonths"),"M");break;case 38:(t.ctrlKey||t.metaKey)&&V.datepicker._adjustDate(t.target,-7,"D"),n=t.ctrlKey||t.metaKey;break;case 39:(t.ctrlKey||t.metaKey)&&V.datepicker._adjustDate(t.target,o?-1:1,"D"),n=t.ctrlKey||t.metaKey,t.originalEvent.altKey&&V.datepicker._adjustDate(t.target,t.ctrlKey?+V.datepicker._get(s,"stepBigMonths"):+V.datepicker._get(s,"stepMonths"),"M");break;case 40:(t.ctrlKey||t.metaKey)&&V.datepicker._adjustDate(t.target,7,"D"),n=t.ctrlKey||t.metaKey;break;default:n=!1}else 36===t.keyCode&&t.ctrlKey?V.datepicker._showDatepicker(this):n=!1;n&&(t.preventDefault(),t.stopPropagation())},_doKeyPress:function(t){var e,i=V.datepicker._getInst(t.target);if(V.datepicker._get(i,"constrainInput"))return e=V.datepicker._possibleChars(V.datepicker._get(i,"dateFormat")),i=String.fromCharCode(null==t.charCode?t.keyCode:t.charCode),t.ctrlKey||t.metaKey||i<" "||!e||-1<e.indexOf(i)},_doKeyUp:function(t){t=V.datepicker._getInst(t.target);if(t.input.val()!==t.lastVal)try{V.datepicker.parseDate(V.datepicker._get(t,"dateFormat"),t.input?t.input.val():null,V.datepicker._getFormatConfig(t))&&(V.datepicker._setDateFromField(t),V.datepicker._updateAlternate(t),V.datepicker._updateDatepicker(t))}catch(t){}return!0},_showDatepicker:function(t){var e,i,s,n;"input"!==(t=t.target||t).nodeName.toLowerCase()&&(t=V("input",t.parentNode)[0]),V.datepicker._isDisabledDatepicker(t)||V.datepicker._lastInput===t||(n=V.datepicker._getInst(t),V.datepicker._curInst&&V.datepicker._curInst!==n&&(V.datepicker._curInst.dpDiv.stop(!0,!0),n&&V.datepicker._datepickerShowing&&V.datepicker._hideDatepicker(V.datepicker._curInst.input[0])),!1!==(i=(s=V.datepicker._get(n,"beforeShow"))?s.apply(t,[t,n]):{})&&(at(n.settings,i),n.lastVal=null,V.datepicker._lastInput=t,V.datepicker._setDateFromField(n),V.datepicker._inDialog&&(t.value=""),V.datepicker._pos||(V.datepicker._pos=V.datepicker._findPos(t),V.datepicker._pos[1]+=t.offsetHeight),e=!1,V(t).parents().each(function(){return!(e|="fixed"===V(this).css("position"))}),s={left:V.datepicker._pos[0],top:V.datepicker._pos[1]},V.datepicker._pos=null,n.dpDiv.empty(),n.dpDiv.css({position:"absolute",display:"block",top:"-1000px"}),V.datepicker._updateDatepicker(n),s=V.datepicker._checkOffset(n,s,e),n.dpDiv.css({position:V.datepicker._inDialog&&V.blockUI?"static":e?"fixed":"absolute",display:"none",left:s.left+"px",top:s.top+"px"}),n.inline||(i=V.datepicker._get(n,"showAnim"),s=V.datepicker._get(n,"duration"),n.dpDiv.css("z-index",function(t){for(var e,i;t.length&&t[0]!==document;){if(("absolute"===(e=t.css("position"))||"relative"===e||"fixed"===e)&&(i=parseInt(t.css("zIndex"),10),!isNaN(i)&&0!==i))return i;t=t.parent()}return 0}(V(t))+1),V.datepicker._datepickerShowing=!0,V.effects&&V.effects.effect[i]?n.dpDiv.show(i,V.datepicker._get(n,"showOptions"),s):n.dpDiv[i||"show"](i?s:null),V.datepicker._shouldFocusInput(n)&&n.input.trigger("focus"),V.datepicker._curInst=n)))},_updateDatepicker:function(t){this.maxRows=4,(it=t).dpDiv.empty().append(this._generateHTML(t)),this._attachHandlers(t);var e,i=this._getNumberOfMonths(t),s=i[1],n=t.dpDiv.find("."+this._dayOverClass+" a"),o=V.datepicker._get(t,"onUpdateDatepicker");0<n.length&&ot.apply(n.get(0)),t.dpDiv.removeClass("ui-datepicker-multi-2 ui-datepicker-multi-3 ui-datepicker-multi-4").width(""),1<s&&t.dpDiv.addClass("ui-datepicker-multi-"+s).css("width",17*s+"em"),t.dpDiv[(1!==i[0]||1!==i[1]?"add":"remove")+"Class"]("ui-datepicker-multi"),t.dpDiv[(this._get(t,"isRTL")?"add":"remove")+"Class"]("ui-datepicker-rtl"),t===V.datepicker._curInst&&V.datepicker._datepickerShowing&&V.datepicker._shouldFocusInput(t)&&t.input.trigger("focus"),t.yearshtml&&(e=t.yearshtml,setTimeout(function(){e===t.yearshtml&&t.yearshtml&&t.dpDiv.find("select.ui-datepicker-year").first().replaceWith(t.yearshtml),e=t.yearshtml=null},0)),o&&o.apply(t.input?t.input[0]:null,[t])},_shouldFocusInput:function(t){return t.input&&t.input.is(":visible")&&!t.input.is(":disabled")&&!t.input.is(":focus")},_checkOffset:function(t,e,i){var s=t.dpDiv.outerWidth(),n=t.dpDiv.outerHeight(),o=t.input?t.input.outerWidth():0,a=t.input?t.input.outerHeight():0,r=document.documentElement.clientWidth+(i?0:V(document).scrollLeft()),l=document.documentElement.clientHeight+(i?0:V(document).scrollTop());return e.left-=this._get(t,"isRTL")?s-o:0,e.left-=i&&e.left===t.input.offset().left?V(document).scrollLeft():0,e.top-=i&&e.top===t.input.offset().top+a?V(document).scrollTop():0,e.left-=Math.min(e.left,e.left+s>r&&s<r?Math.abs(e.left+s-r):0),e.top-=Math.min(e.top,e.top+n>l&&n<l?Math.abs(n+a):0),e},_findPos:function(t){for(var e=this._getInst(t),i=this._get(e,"isRTL");t&&("hidden"===t.type||1!==t.nodeType||V.expr.pseudos.hidden(t));)t=t[i?"previousSibling":"nextSibling"];return[(e=V(t).offset()).left,e.top]},_hideDatepicker:function(t){var e,i,s=this._curInst;!s||t&&s!==V.data(t,"datepicker")||this._datepickerShowing&&(e=this._get(s,"showAnim"),i=this._get(s,"duration"),t=function(){V.datepicker._tidyDialog(s)},V.effects&&(V.effects.effect[e]||V.effects[e])?s.dpDiv.hide(e,V.datepicker._get(s,"showOptions"),i,t):s.dpDiv["slideDown"===e?"slideUp":"fadeIn"===e?"fadeOut":"hide"](e?i:null,t),e||t(),this._datepickerShowing=!1,(t=this._get(s,"onClose"))&&t.apply(s.input?s.input[0]:null,[s.input?s.input.val():"",s]),this._lastInput=null,this._inDialog&&(this._dialogInput.css({position:"absolute",left:"0",top:"-100px"}),V.blockUI&&(V.unblockUI(),V("body").append(this.dpDiv))),this._inDialog=!1)},_tidyDialog:function(t){t.dpDiv.removeClass(this._dialogClass).off(".ui-datepicker-calendar")},_checkExternalClick:function(t){var e;V.datepicker._curInst&&(e=V(t.target),t=V.datepicker._getInst(e[0]),(e[0].id===V.datepicker._mainDivId||0!==e.parents("#"+V.datepicker._mainDivId).length||e.hasClass(V.datepicker.markerClassName)||e.closest("."+V.datepicker._triggerClass).length||!V.datepicker._datepickerShowing||V.datepicker._inDialog&&V.blockUI)&&(!e.hasClass(V.datepicker.markerClassName)||V.datepicker._curInst===t)||V.datepicker._hideDatepicker())},_adjustDate:function(t,e,i){var s=V(t),t=this._getInst(s[0]);this._isDisabledDatepicker(s[0])||(this._adjustInstDate(t,e,i),this._updateDatepicker(t))},_gotoToday:function(t){var e=V(t),i=this._getInst(e[0]);this._get(i,"gotoCurrent")&&i.currentDay?(i.selectedDay=i.currentDay,i.drawMonth=i.selectedMonth=i.currentMonth,i.drawYear=i.selectedYear=i.currentYear):(t=new Date,i.selectedDay=t.getDate(),i.drawMonth=i.selectedMonth=t.getMonth(),i.drawYear=i.selectedYear=t.getFullYear()),this._notifyChange(i),this._adjustDate(e)},_selectMonthYear:function(t,e,i){var s=V(t),t=this._getInst(s[0]);t["selected"+("M"===i?"Month":"Year")]=t["draw"+("M"===i?"Month":"Year")]=parseInt(e.options[e.selectedIndex].value,10),this._notifyChange(t),this._adjustDate(s)},_selectDay:function(t,e,i,s){var n=V(t);V(s).hasClass(this._unselectableClass)||this._isDisabledDatepicker(n[0])||((n=this._getInst(n[0])).selectedDay=n.currentDay=parseInt(V("a",s).attr("data-date")),n.selectedMonth=n.currentMonth=e,n.selectedYear=n.currentYear=i,this._selectDate(t,this._formatDate(n,n.currentDay,n.currentMonth,n.currentYear)))},_clearDate:function(t){t=V(t);this._selectDate(t,"")},_selectDate:function(t,e){var i=V(t),t=this._getInst(i[0]);e=null!=e?e:this._formatDate(t),t.input&&t.input.val(e),this._updateAlternate(t),(i=this._get(t,"onSelect"))?i.apply(t.input?t.input[0]:null,[e,t]):t.input&&t.input.trigger("change"),t.inline?this._updateDatepicker(t):(this._hideDatepicker(),this._lastInput=t.input[0],"object"!=typeof t.input[0]&&t.input.trigger("focus"),this._lastInput=null)},_updateAlternate:function(t){var e,i,s=this._get(t,"altField");s&&(e=this._get(t,"altFormat")||this._get(t,"dateFormat"),i=this._getDate(t),t=this.formatDate(e,i,this._getFormatConfig(t)),V(document).find(s).val(t))},noWeekends:function(t){t=t.getDay();return[0<t&&t<6,""]},iso8601Week:function(t){var e=new Date(t.getTime());return e.setDate(e.getDate()+4-(e.getDay()||7)),t=e.getTime(),e.setMonth(0),e.setDate(1),Math.floor(Math.round((t-e)/864e5)/7)+1},parseDate:function(e,n,t){if(null==e||null==n)throw"Invalid arguments";if(""===(n="object"==typeof n?n.toString():n+""))return null;for(var i,s,o,a=0,r=(t?t.shortYearCutoff:null)||this._defaults.shortYearCutoff,r="string"!=typeof r?r:(new Date).getFullYear()%100+parseInt(r,10),l=(t?t.dayNamesShort:null)||this._defaults.dayNamesShort,h=(t?t.dayNames:null)||this._defaults.dayNames,c=(t?t.monthNamesShort:null)||this._defaults.monthNamesShort,u=(t?t.monthNames:null)||this._defaults.monthNames,d=-1,p=-1,f=-1,g=-1,m=!1,_=function(t){t=w+1<e.length&&e.charAt(w+1)===t;return t&&w++,t},v=function(t){var e=_(t),e="@"===t?14:"!"===t?20:"y"===t&&e?4:"o"===t?3:2,e=new RegExp("^\\d{"+("y"===t?e:1)+","+e+"}"),e=n.substring(a).match(e);if(!e)throw"Missing number at position "+a;return a+=e[0].length,parseInt(e[0],10)},b=function(t,e,i){var s=-1,e=V.map(_(t)?i:e,function(t,e){return[[e,t]]}).sort(function(t,e){return-(t[1].length-e[1].length)});if(V.each(e,function(t,e){var i=e[1];if(n.substr(a,i.length).toLowerCase()===i.toLowerCase())return s=e[0],a+=i.length,!1}),-1!==s)return s+1;throw"Unknown name at position "+a},y=function(){if(n.charAt(a)!==e.charAt(w))throw"Unexpected literal at position "+a;a++},w=0;w<e.length;w++)if(m)"'"!==e.charAt(w)||_("'")?y():m=!1;else switch(e.charAt(w)){case"d":f=v("d");break;case"D":b("D",l,h);break;case"o":g=v("o");break;case"m":p=v("m");break;case"M":p=b("M",c,u);break;case"y":d=v("y");break;case"@":d=(o=new Date(v("@"))).getFullYear(),p=o.getMonth()+1,f=o.getDate();break;case"!":d=(o=new Date((v("!")-this._ticksTo1970)/1e4)).getFullYear(),p=o.getMonth()+1,f=o.getDate();break;case"'":_("'")?y():m=!0;break;default:y()}if(a<n.length&&(s=n.substr(a),!/^\s+/.test(s)))throw"Extra/unparsed characters found in date: "+s;if(-1===d?d=(new Date).getFullYear():d<100&&(d+=(new Date).getFullYear()-(new Date).getFullYear()%100+(d<=r?0:-100)),-1<g)for(p=1,f=g;;){if(f<=(i=this._getDaysInMonth(d,p-1)))break;p++,f-=i}if((o=this._daylightSavingAdjust(new Date(d,p-1,f))).getFullYear()!==d||o.getMonth()+1!==p||o.getDate()!==f)throw"Invalid date";return o},ATOM:"yy-mm-dd",COOKIE:"D, dd M yy",ISO_8601:"yy-mm-dd",RFC_822:"D, d M y",RFC_850:"DD, dd-M-y",RFC_1036:"D, d M y",RFC_1123:"D, d M yy",RFC_2822:"D, d M yy",RSS:"D, d M y",TICKS:"!",TIMESTAMP:"@",W3C:"yy-mm-dd",_ticksTo1970:24*(718685+Math.floor(492.5)-Math.floor(19.7)+Math.floor(4.925))*60*60*1e7,formatDate:function(e,t,i){if(!t)return"";function s(t,e,i){var s=""+e;if(c(t))for(;s.length<i;)s="0"+s;return s}function n(t,e,i,s){return(c(t)?s:i)[e]}var o,a=(i?i.dayNamesShort:null)||this._defaults.dayNamesShort,r=(i?i.dayNames:null)||this._defaults.dayNames,l=(i?i.monthNamesShort:null)||this._defaults.monthNamesShort,h=(i?i.monthNames:null)||this._defaults.monthNames,c=function(t){t=o+1<e.length&&e.charAt(o+1)===t;return t&&o++,t},u="",d=!1;if(t)for(o=0;o<e.length;o++)if(d)"'"!==e.charAt(o)||c("'")?u+=e.charAt(o):d=!1;else switch(e.charAt(o)){case"d":u+=s("d",t.getDate(),2);break;case"D":u+=n("D",t.getDay(),a,r);break;case"o":u+=s("o",Math.round((new Date(t.getFullYear(),t.getMonth(),t.getDate()).getTime()-new Date(t.getFullYear(),0,0).getTime())/864e5),3);break;case"m":u+=s("m",t.getMonth()+1,2);break;case"M":u+=n("M",t.getMonth(),l,h);break;case"y":u+=c("y")?t.getFullYear():(t.getFullYear()%100<10?"0":"")+t.getFullYear()%100;break;case"@":u+=t.getTime();break;case"!":u+=1e4*t.getTime()+this._ticksTo1970;break;case"'":c("'")?u+="'":d=!0;break;default:u+=e.charAt(o)}return u},_possibleChars:function(e){for(var t="",i=!1,s=function(t){t=n+1<e.length&&e.charAt(n+1)===t;return t&&n++,t},n=0;n<e.length;n++)if(i)"'"!==e.charAt(n)||s("'")?t+=e.charAt(n):i=!1;else switch(e.charAt(n)){case"d":case"m":case"y":case"@":t+="0123456789";break;case"D":case"M":return null;case"'":s("'")?t+="'":i=!0;break;default:t+=e.charAt(n)}return t},_get:function(t,e){return(void 0!==t.settings[e]?t.settings:this._defaults)[e]},_setDateFromField:function(t,e){if(t.input.val()!==t.lastVal){var i=this._get(t,"dateFormat"),s=t.lastVal=t.input?t.input.val():null,n=this._getDefaultDate(t),o=n,a=this._getFormatConfig(t);try{o=this.parseDate(i,s,a)||n}catch(t){s=e?"":s}t.selectedDay=o.getDate(),t.drawMonth=t.selectedMonth=o.getMonth(),t.drawYear=t.selectedYear=o.getFullYear(),t.currentDay=s?o.getDate():0,t.currentMonth=s?o.getMonth():0,t.currentYear=s?o.getFullYear():0,this._adjustInstDate(t)}},_getDefaultDate:function(t){return this._restrictMinMax(t,this._determineDate(t,this._get(t,"defaultDate"),new Date))},_determineDate:function(r,t,e){var i,s,t=null==t||""===t?e:"string"==typeof t?function(t){try{return V.datepicker.parseDate(V.datepicker._get(r,"dateFormat"),t,V.datepicker._getFormatConfig(r))}catch(t){}for(var e=(t.toLowerCase().match(/^c/)?V.datepicker._getDate(r):null)||new Date,i=e.getFullYear(),s=e.getMonth(),n=e.getDate(),o=/([+\-]?[0-9]+)\s*(d|D|w|W|m|M|y|Y)?/g,a=o.exec(t);a;){switch(a[2]||"d"){case"d":case"D":n+=parseInt(a[1],10);break;case"w":case"W":n+=7*parseInt(a[1],10);break;case"m":case"M":s+=parseInt(a[1],10),n=Math.min(n,V.datepicker._getDaysInMonth(i,s));break;case"y":case"Y":i+=parseInt(a[1],10),n=Math.min(n,V.datepicker._getDaysInMonth(i,s))}a=o.exec(t)}return new Date(i,s,n)}(t):"number"==typeof t?isNaN(t)?e:(i=t,(s=new Date).setDate(s.getDate()+i),s):new Date(t.getTime());return(t=t&&"Invalid Date"===t.toString()?e:t)&&(t.setHours(0),t.setMinutes(0),t.setSeconds(0),t.setMilliseconds(0)),this._daylightSavingAdjust(t)},_daylightSavingAdjust:function(t){return t?(t.setHours(12<t.getHours()?t.getHours()+2:0),t):null},_setDate:function(t,e,i){var s=!e,n=t.selectedMonth,o=t.selectedYear,e=this._restrictMinMax(t,this._determineDate(t,e,new Date));t.selectedDay=t.currentDay=e.getDate(),t.drawMonth=t.selectedMonth=t.currentMonth=e.getMonth(),t.drawYear=t.selectedYear=t.currentYear=e.getFullYear(),n===t.selectedMonth&&o===t.selectedYear||i||this._notifyChange(t),this._adjustInstDate(t),t.input&&t.input.val(s?"":this._formatDate(t))},_getDate:function(t){return!t.currentYear||t.input&&""===t.input.val()?null:this._daylightSavingAdjust(new Date(t.currentYear,t.currentMonth,t.currentDay))},_attachHandlers:function(t){var e=this._get(t,"stepMonths"),i="#"+t.id.replace(/\\\\/g,"\\");t.dpDiv.find("[data-handler]").map(function(){var t={prev:function(){V.datepicker._adjustDate(i,-e,"M")},next:function(){V.datepicker._adjustDate(i,+e,"M")},hide:function(){V.datepicker._hideDatepicker()},today:function(){V.datepicker._gotoToday(i)},selectDay:function(){return V.datepicker._selectDay(i,+this.getAttribute("data-month"),+this.getAttribute("data-year"),this),!1},selectMonth:function(){return V.datepicker._selectMonthYear(i,this,"M"),!1},selectYear:function(){return V.datepicker._selectMonthYear(i,this,"Y"),!1}};V(this).on(this.getAttribute("data-event"),t[this.getAttribute("data-handler")])})},_generateHTML:function(t){var e,i,s,n,o,a,r,l,h,c,u,d,p,f,g,m,_,v,b,y,w,x,k,C,D,I,T,P,M,S,H,z,A=new Date,O=this._daylightSavingAdjust(new Date(A.getFullYear(),A.getMonth(),A.getDate())),N=this._get(t,"isRTL"),E=this._get(t,"showButtonPanel"),W=this._get(t,"hideIfNoPrevNext"),F=this._get(t,"navigationAsDateFormat"),L=this._getNumberOfMonths(t),R=this._get(t,"showCurrentAtPos"),A=this._get(t,"stepMonths"),Y=1!==L[0]||1!==L[1],B=this._daylightSavingAdjust(t.currentDay?new Date(t.currentYear,t.currentMonth,t.currentDay):new Date(9999,9,9)),j=this._getMinMaxDate(t,"min"),q=this._getMinMaxDate(t,"max"),K=t.drawMonth-R,U=t.drawYear;if(K<0&&(K+=12,U--),q)for(e=this._daylightSavingAdjust(new Date(q.getFullYear(),q.getMonth()-L[0]*L[1]+1,q.getDate())),e=j&&e<j?j:e;this._daylightSavingAdjust(new Date(U,K,1))>e;)--K<0&&(K=11,U--);for(t.drawMonth=K,t.drawYear=U,R=this._get(t,"prevText"),R=F?this.formatDate(R,this._daylightSavingAdjust(new Date(U,K-A,1)),this._getFormatConfig(t)):R,i=this._canAdjustMonth(t,-1,U,K)?V("<a>").attr({class:"ui-datepicker-prev ui-corner-all","data-handler":"prev","data-event":"click",title:R}).append(V("<span>").addClass("ui-icon ui-icon-circle-triangle-"+(N?"e":"w")).text(R))[0].outerHTML:W?"":V("<a>").attr({class:"ui-datepicker-prev ui-corner-all ui-state-disabled",title:R}).append(V("<span>").addClass("ui-icon ui-icon-circle-triangle-"+(N?"e":"w")).text(R))[0].outerHTML,R=this._get(t,"nextText"),R=F?this.formatDate(R,this._daylightSavingAdjust(new Date(U,K+A,1)),this._getFormatConfig(t)):R,s=this._canAdjustMonth(t,1,U,K)?V("<a>").attr({class:"ui-datepicker-next ui-corner-all","data-handler":"next","data-event":"click",title:R}).append(V("<span>").addClass("ui-icon ui-icon-circle-triangle-"+(N?"w":"e")).text(R))[0].outerHTML:W?"":V("<a>").attr({class:"ui-datepicker-next ui-corner-all ui-state-disabled",title:R}).append(V("<span>").attr("class","ui-icon ui-icon-circle-triangle-"+(N?"w":"e")).text(R))[0].outerHTML,A=this._get(t,"currentText"),W=this._get(t,"gotoCurrent")&&t.currentDay?B:O,A=F?this.formatDate(A,W,this._getFormatConfig(t)):A,R="",t.inline||(R=V("<button>").attr({type:"button",class:"ui-datepicker-close ui-state-default ui-priority-primary ui-corner-all","data-handler":"hide","data-event":"click"}).text(this._get(t,"closeText"))[0].outerHTML),F="",E&&(F=V("<div class='ui-datepicker-buttonpane ui-widget-content'>").append(N?R:"").append(this._isInRange(t,W)?V("<button>").attr({type:"button",class:"ui-datepicker-current ui-state-default ui-priority-secondary ui-corner-all","data-handler":"today","data-event":"click"}).text(A):"").append(N?"":R)[0].outerHTML),n=parseInt(this._get(t,"firstDay"),10),n=isNaN(n)?0:n,o=this._get(t,"showWeek"),a=this._get(t,"dayNames"),r=this._get(t,"dayNamesMin"),l=this._get(t,"monthNames"),h=this._get(t,"monthNamesShort"),c=this._get(t,"beforeShowDay"),u=this._get(t,"showOtherMonths"),d=this._get(t,"selectOtherMonths"),p=this._getDefaultDate(t),f="",m=0;m<L[0];m++){for(_="",this.maxRows=4,v=0;v<L[1];v++){if(b=this._daylightSavingAdjust(new Date(U,K,t.selectedDay)),y=" ui-corner-all",w="",Y){if(w+="<div class='ui-datepicker-group",1<L[1])switch(v){case 0:w+=" ui-datepicker-group-first",y=" ui-corner-"+(N?"right":"left");break;case L[1]-1:w+=" ui-datepicker-group-last",y=" ui-corner-"+(N?"left":"right");break;default:w+=" ui-datepicker-group-middle",y=""}w+="'>"}for(w+="<div class='ui-datepicker-header ui-widget-header ui-helper-clearfix"+y+"'>"+(/all|left/.test(y)&&0===m?N?s:i:"")+(/all|right/.test(y)&&0===m?N?i:s:"")+this._generateMonthYearHeader(t,K,U,j,q,0<m||0<v,l,h)+"</div><table class='ui-datepicker-calendar'><thead><tr>",x=o?"<th class='ui-datepicker-week-col'>"+this._get(t,"weekHeader")+"</th>":"",g=0;g<7;g++)x+="<th scope='col'"+(5<=(g+n+6)%7?" class='ui-datepicker-week-end'":"")+"><span title='"+a[k=(g+n)%7]+"'>"+r[k]+"</span></th>";for(w+=x+"</tr></thead><tbody>",D=this._getDaysInMonth(U,K),U===t.selectedYear&&K===t.selectedMonth&&(t.selectedDay=Math.min(t.selectedDay,D)),C=(this._getFirstDayOfMonth(U,K)-n+7)%7,D=Math.ceil((C+D)/7),I=Y&&this.maxRows>D?this.maxRows:D,this.maxRows=I,T=this._daylightSavingAdjust(new Date(U,K,1-C)),P=0;P<I;P++){for(w+="<tr>",M=o?"<td class='ui-datepicker-week-col'>"+this._get(t,"calculateWeek")(T)+"</td>":"",g=0;g<7;g++)S=c?c.apply(t.input?t.input[0]:null,[T]):[!0,""],z=(H=T.getMonth()!==K)&&!d||!S[0]||j&&T<j||q&&q<T,M+="<td class='"+(5<=(g+n+6)%7?" ui-datepicker-week-end":"")+(H?" ui-datepicker-other-month":"")+(T.getTime()===b.getTime()&&K===t.selectedMonth&&t._keyEvent||p.getTime()===T.getTime()&&p.getTime()===b.getTime()?" "+this._dayOverClass:"")+(z?" "+this._unselectableClass+" ui-state-disabled":"")+(H&&!u?"":" "+S[1]+(T.getTime()===B.getTime()?" "+this._currentClass:"")+(T.getTime()===O.getTime()?" ui-datepicker-today":""))+"'"+(H&&!u||!S[2]?"":" title='"+S[2].replace(/'/g,"&#39;")+"'")+(z?"":" data-handler='selectDay' data-event='click' data-month='"+T.getMonth()+"' data-year='"+T.getFullYear()+"'")+">"+(H&&!u?"&#xa0;":z?"<span class='ui-state-default'>"+T.getDate()+"</span>":"<a class='ui-state-default"+(T.getTime()===O.getTime()?" ui-state-highlight":"")+(T.getTime()===B.getTime()?" ui-state-active":"")+(H?" ui-priority-secondary":"")+"' href='#' aria-current='"+(T.getTime()===B.getTime()?"true":"false")+"' data-date='"+T.getDate()+"'>"+T.getDate()+"</a>")+"</td>",T.setDate(T.getDate()+1),T=this._daylightSavingAdjust(T);w+=M+"</tr>"}11<++K&&(K=0,U++),_+=w+="</tbody></table>"+(Y?"</div>"+(0<L[0]&&v===L[1]-1?"<div class='ui-datepicker-row-break'></div>":""):"")}f+=_}return f+=F,t._keyEvent=!1,f},_generateMonthYearHeader:function(t,e,i,s,n,o,a,r){var l,h,c,u,d,p,f=this._get(t,"changeMonth"),g=this._get(t,"changeYear"),m=this._get(t,"showMonthAfterYear"),_=this._get(t,"selectMonthLabel"),v=this._get(t,"selectYearLabel"),b="<div class='ui-datepicker-title'>",y="";if(o||!f)y+="<span class='ui-datepicker-month'>"+a[e]+"</span>";else{for(l=s&&s.getFullYear()===i,h=n&&n.getFullYear()===i,y+="<select class='ui-datepicker-month' aria-label='"+_+"' data-handler='selectMonth' data-event='change'>",c=0;c<12;c++)(!l||c>=s.getMonth())&&(!h||c<=n.getMonth())&&(y+="<option value='"+c+"'"+(c===e?" selected='selected'":"")+">"+r[c]+"</option>");y+="</select>"}if(m||(b+=y+(!o&&f&&g?"":"&#xa0;")),!t.yearshtml)if(t.yearshtml="",o||!g)b+="<span class='ui-datepicker-year'>"+i+"</span>";else{for(a=this._get(t,"yearRange").split(":"),u=(new Date).getFullYear(),d=(_=function(t){t=t.match(/c[+\-].*/)?i+parseInt(t.substring(1),10):t.match(/[+\-].*/)?u+parseInt(t,10):parseInt(t,10);return isNaN(t)?u:t})(a[0]),p=Math.max(d,_(a[1]||"")),d=s?Math.max(d,s.getFullYear()):d,p=n?Math.min(p,n.getFullYear()):p,t.yearshtml+="<select class='ui-datepicker-year' aria-label='"+v+"' data-handler='selectYear' data-event='change'>";d<=p;d++)t.yearshtml+="<option value='"+d+"'"+(d===i?" selected='selected'":"")+">"+d+"</option>";t.yearshtml+="</select>",b+=t.yearshtml,t.yearshtml=null}return b+=this._get(t,"yearSuffix"),m&&(b+=(!o&&f&&g?"":"&#xa0;")+y),b+="</div>"},_adjustInstDate:function(t,e,i){var s=t.selectedYear+("Y"===i?e:0),n=t.selectedMonth+("M"===i?e:0),e=Math.min(t.selectedDay,this._getDaysInMonth(s,n))+("D"===i?e:0),e=this._restrictMinMax(t,this._daylightSavingAdjust(new Date(s,n,e)));t.selectedDay=e.getDate(),t.drawMonth=t.selectedMonth=e.getMonth(),t.drawYear=t.selectedYear=e.getFullYear(),"M"!==i&&"Y"!==i||this._notifyChange(t)},_restrictMinMax:function(t,e){var i=this._getMinMaxDate(t,"min"),t=this._getMinMaxDate(t,"max"),e=i&&e<i?i:e;return t&&t<e?t:e},_notifyChange:function(t){var e=this._get(t,"onChangeMonthYear");e&&e.apply(t.input?t.input[0]:null,[t.selectedYear,t.selectedMonth+1,t])},_getNumberOfMonths:function(t){t=this._get(t,"numberOfMonths");return null==t?[1,1]:"number"==typeof t?[1,t]:t},_getMinMaxDate:function(t,e){return this._determineDate(t,this._get(t,e+"Date"),null)},_getDaysInMonth:function(t,e){return 32-this._daylightSavingAdjust(new Date(t,e,32)).getDate()},_getFirstDayOfMonth:function(t,e){return new Date(t,e,1).getDay()},_canAdjustMonth:function(t,e,i,s){var n=this._getNumberOfMonths(t),n=this._daylightSavingAdjust(new Date(i,s+(e<0?e:n[0]*n[1]),1));return e<0&&n.setDate(this._getDaysInMonth(n.getFullYear(),n.getMonth())),this._isInRange(t,n)},_isInRange:function(t,e){var i=this._getMinMaxDate(t,"min"),s=this._getMinMaxDate(t,"max"),n=null,o=null,a=this._get(t,"yearRange");return a&&(t=a.split(":"),a=(new Date).getFullYear(),n=parseInt(t[0],10),o=parseInt(t[1],10),t[0].match(/[+\-].*/)&&(n+=a),t[1].match(/[+\-].*/)&&(o+=a)),(!i||e.getTime()>=i.getTime())&&(!s||e.getTime()<=s.getTime())&&(!n||e.getFullYear()>=n)&&(!o||e.getFullYear()<=o)},_getFormatConfig:function(t){var e=this._get(t,"shortYearCutoff");return{shortYearCutoff:e="string"!=typeof e?e:(new Date).getFullYear()%100+parseInt(e,10),dayNamesShort:this._get(t,"dayNamesShort"),dayNames:this._get(t,"dayNames"),monthNamesShort:this._get(t,"monthNamesShort"),monthNames:this._get(t,"monthNames")}},_formatDate:function(t,e,i,s){e||(t.currentDay=t.selectedDay,t.currentMonth=t.selectedMonth,t.currentYear=t.selectedYear);e=e?"object"==typeof e?e:this._daylightSavingAdjust(new Date(s,i,e)):this._daylightSavingAdjust(new Date(t.currentYear,t.currentMonth,t.currentDay));return this.formatDate(this._get(t,"dateFormat"),e,this._getFormatConfig(t))}}),V.fn.datepicker=function(t){if(!this.length)return this;V.datepicker.initialized||(V(document).on("mousedown",V.datepicker._checkExternalClick),V.datepicker.initialized=!0),0===V("#"+V.datepicker._mainDivId).length&&V("body").append(V.datepicker.dpDiv);var e=Array.prototype.slice.call(arguments,1);return"string"==typeof t&&("isDisabled"===t||"getDate"===t||"widget"===t)||"option"===t&&2===arguments.length&&"string"==typeof arguments[1]?V.datepicker["_"+t+"Datepicker"].apply(V.datepicker,[this[0]].concat(e)):this.each(function(){"string"==typeof t?V.datepicker["_"+t+"Datepicker"].apply(V.datepicker,[this].concat(e)):V.datepicker._attachDatepicker(this,t)})},V.datepicker=new st,V.datepicker.initialized=!1,V.datepicker.uuid=(new Date).getTime(),V.datepicker.version="1.13.1";V.datepicker,V.ui.ie=!!/msie [\w.]+/.exec(navigator.userAgent.toLowerCase());var rt=!1;V(document).on("mouseup",function(){rt=!1});V.widget("ui.mouse",{version:"1.13.1",options:{cancel:"input, textarea, button, select, option",distance:1,delay:0},_mouseInit:function(){var e=this;this.element.on("mousedown."+this.widgetName,function(t){return e._mouseDown(t)}).on("click."+this.widgetName,function(t){if(!0===V.data(t.target,e.widgetName+".preventClickEvent"))return V.removeData(t.target,e.widgetName+".preventClickEvent"),t.stopImmediatePropagation(),!1}),this.started=!1},_mouseDestroy:function(){this.element.off("."+this.widgetName),this._mouseMoveDelegate&&this.document.off("mousemove."+this.widgetName,this._mouseMoveDelegate).off("mouseup."+this.widgetName,this._mouseUpDelegate)},_mouseDown:function(t){if(!rt){this._mouseMoved=!1,this._mouseStarted&&this._mouseUp(t),this._mouseDownEvent=t;var e=this,i=1===t.which,s=!("string"!=typeof this.options.cancel||!t.target.nodeName)&&V(t.target).closest(this.options.cancel).length;return i&&!s&&this._mouseCapture(t)?(this.mouseDelayMet=!this.options.delay,this.mouseDelayMet||(this._mouseDelayTimer=setTimeout(function(){e.mouseDelayMet=!0},this.options.delay)),this._mouseDistanceMet(t)&&this._mouseDelayMet(t)&&(this._mouseStarted=!1!==this._mouseStart(t),!this._mouseStarted)?(t.preventDefault(),!0):(!0===V.data(t.target,this.widgetName+".preventClickEvent")&&V.removeData(t.target,this.widgetName+".preventClickEvent"),this._mouseMoveDelegate=function(t){return e._mouseMove(t)},this._mouseUpDelegate=function(t){return e._mouseUp(t)},this.document.on("mousemove."+this.widgetName,this._mouseMoveDelegate).on("mouseup."+this.widgetName,this._mouseUpDelegate),t.preventDefault(),rt=!0)):!0}},_mouseMove:function(t){if(this._mouseMoved){if(V.ui.ie&&(!document.documentMode||document.documentMode<9)&&!t.button)return this._mouseUp(t);if(!t.which)if(t.originalEvent.altKey||t.originalEvent.ctrlKey||t.originalEvent.metaKey||t.originalEvent.shiftKey)this.ignoreMissingWhich=!0;else if(!this.ignoreMissingWhich)return this._mouseUp(t)}return(t.which||t.button)&&(this._mouseMoved=!0),this._mouseStarted?(this._mouseDrag(t),t.preventDefault()):(this._mouseDistanceMet(t)&&this._mouseDelayMet(t)&&(this._mouseStarted=!1!==this._mouseStart(this._mouseDownEvent,t),this._mouseStarted?this._mouseDrag(t):this._mouseUp(t)),!this._mouseStarted)},_mouseUp:function(t){this.document.off("mousemove."+this.widgetName,this._mouseMoveDelegate).off("mouseup."+this.widgetName,this._mouseUpDelegate),this._mouseStarted&&(this._mouseStarted=!1,t.target===this._mouseDownEvent.target&&V.data(t.target,this.widgetName+".preventClickEvent",!0),this._mouseStop(t)),this._mouseDelayTimer&&(clearTimeout(this._mouseDelayTimer),delete this._mouseDelayTimer),this.ignoreMissingWhich=!1,rt=!1,t.preventDefault()},_mouseDistanceMet:function(t){return Math.max(Math.abs(this._mouseDownEvent.pageX-t.pageX),Math.abs(this._mouseDownEvent.pageY-t.pageY))>=this.options.distance},_mouseDelayMet:function(){return this.mouseDelayMet},_mouseStart:function(){},_mouseDrag:function(){},_mouseStop:function(){},_mouseCapture:function(){return!0}}),V.ui.plugin={add:function(t,e,i){var s,n=V.ui[t].prototype;for(s in i)n.plugins[s]=n.plugins[s]||[],n.plugins[s].push([e,i[s]])},call:function(t,e,i,s){var n,o=t.plugins[e];if(o&&(s||t.element[0].parentNode&&11!==t.element[0].parentNode.nodeType))for(n=0;n<o.length;n++)t.options[o[n][0]]&&o[n][1].apply(t.element,i)}},V.ui.safeBlur=function(t){t&&"body"!==t.nodeName.toLowerCase()&&V(t).trigger("blur")};V.widget("ui.draggable",V.ui.mouse,{version:"1.13.1",widgetEventPrefix:"drag",options:{addClasses:!0,appendTo:"parent",axis:!1,connectToSortable:!1,containment:!1,cursor:"auto",cursorAt:!1,grid:!1,handle:!1,helper:"original",iframeFix:!1,opacity:!1,refreshPositions:!1,revert:!1,revertDuration:500,scope:"default",scroll:!0,scrollSensitivity:20,scrollSpeed:20,snap:!1,snapMode:"both",snapTolerance:20,stack:!1,zIndex:!1,drag:null,start:null,stop:null},_create:function(){"original"===this.options.helper&&this._setPositionRelative(),this.options.addClasses&&this._addClass("ui-draggable"),this._setHandleClassName(),this._mouseInit()},_setOption:function(t,e){this._super(t,e),"handle"===t&&(this._removeHandleClassName(),this._setHandleClassName())},_destroy:function(){(this.helper||this.element).is(".ui-draggable-dragging")?this.destroyOnClear=!0:(this._removeHandleClassName(),this._mouseDestroy())},_mouseCapture:function(t){var e=this.options;return!(this.helper||e.disabled||0<V(t.target).closest(".ui-resizable-handle").length)&&(this.handle=this._getHandle(t),!!this.handle&&(this._blurActiveElement(t),this._blockFrames(!0===e.iframeFix?"iframe":e.iframeFix),!0))},_blockFrames:function(t){this.iframeBlocks=this.document.find(t).map(function(){var t=V(this);return V("<div>").css("position","absolute").appendTo(t.parent()).outerWidth(t.outerWidth()).outerHeight(t.outerHeight()).offset(t.offset())[0]})},_unblockFrames:function(){this.iframeBlocks&&(this.iframeBlocks.remove(),delete this.iframeBlocks)},_blurActiveElement:function(t){var e=V.ui.safeActiveElement(this.document[0]);V(t.target).closest(e).length||V.ui.safeBlur(e)},_mouseStart:function(t){var e=this.options;return this.helper=this._createHelper(t),this._addClass(this.helper,"ui-draggable-dragging"),this._cacheHelperProportions(),V.ui.ddmanager&&(V.ui.ddmanager.current=this),this._cacheMargins(),this.cssPosition=this.helper.css("position"),this.scrollParent=this.helper.scrollParent(!0),this.offsetParent=this.helper.offsetParent(),this.hasFixedAncestor=0<this.helper.parents().filter(function(){return"fixed"===V(this).css("position")}).length,this.positionAbs=this.element.offset(),this._refreshOffsets(t),this.originalPosition=this.position=this._generatePosition(t,!1),this.originalPageX=t.pageX,this.originalPageY=t.pageY,e.cursorAt&&this._adjustOffsetFromHelper(e.cursorAt),this._setContainment(),!1===this._trigger("start",t)?(this._clear(),!1):(this._cacheHelperProportions(),V.ui.ddmanager&&!e.dropBehaviour&&V.ui.ddmanager.prepareOffsets(this,t),this._mouseDrag(t,!0),V.ui.ddmanager&&V.ui.ddmanager.dragStart(this,t),!0)},_refreshOffsets:function(t){this.offset={top:this.positionAbs.top-this.margins.top,left:this.positionAbs.left-this.margins.left,scroll:!1,parent:this._getParentOffset(),relative:this._getRelativeOffset()},this.offset.click={left:t.pageX-this.offset.left,top:t.pageY-this.offset.top}},_mouseDrag:function(t,e){if(this.hasFixedAncestor&&(this.offset.parent=this._getParentOffset()),this.position=this._generatePosition(t,!0),this.positionAbs=this._convertPositionTo("absolute"),!e){e=this._uiHash();if(!1===this._trigger("drag",t,e))return this._mouseUp(new V.Event("mouseup",t)),!1;this.position=e.position}return this.helper[0].style.left=this.position.left+"px",this.helper[0].style.top=this.position.top+"px",V.ui.ddmanager&&V.ui.ddmanager.drag(this,t),!1},_mouseStop:function(t){var e=this,i=!1;return V.ui.ddmanager&&!this.options.dropBehaviour&&(i=V.ui.ddmanager.drop(this,t)),this.dropped&&(i=this.dropped,this.dropped=!1),"invalid"===this.options.revert&&!i||"valid"===this.options.revert&&i||!0===this.options.revert||"function"==typeof this.options.revert&&this.options.revert.call(this.element,i)?V(this.helper).animate(this.originalPosition,parseInt(this.options.revertDuration,10),function(){!1!==e._trigger("stop",t)&&e._clear()}):!1!==this._trigger("stop",t)&&this._clear(),!1},_mouseUp:function(t){return this._unblockFrames(),V.ui.ddmanager&&V.ui.ddmanager.dragStop(this,t),this.handleElement.is(t.target)&&this.element.trigger("focus"),V.ui.mouse.prototype._mouseUp.call(this,t)},cancel:function(){return this.helper.is(".ui-draggable-dragging")?this._mouseUp(new V.Event("mouseup",{target:this.element[0]})):this._clear(),this},_getHandle:function(t){return!this.options.handle||!!V(t.target).closest(this.element.find(this.options.handle)).length},_setHandleClassName:function(){this.handleElement=this.options.handle?this.element.find(this.options.handle):this.element,this._addClass(this.handleElement,"ui-draggable-handle")},_removeHandleClassName:function(){this._removeClass(this.handleElement,"ui-draggable-handle")},_createHelper:function(t){var e=this.options,i="function"==typeof e.helper,t=i?V(e.helper.apply(this.element[0],[t])):"clone"===e.helper?this.element.clone().removeAttr("id"):this.element;return t.parents("body").length||t.appendTo("parent"===e.appendTo?this.element[0].parentNode:e.appendTo),i&&t[0]===this.element[0]&&this._setPositionRelative(),t[0]===this.element[0]||/(fixed|absolute)/.test(t.css("position"))||t.css("position","absolute"),t},_setPositionRelative:function(){/^(?:r|a|f)/.test(this.element.css("position"))||(this.element[0].style.position="relative")},_adjustOffsetFromHelper:function(t){"string"==typeof t&&(t=t.split(" ")),"left"in(t=Array.isArray(t)?{left:+t[0],top:+t[1]||0}:t)&&(this.offset.click.left=t.left+this.margins.left),"right"in t&&(this.offset.click.left=this.helperProportions.width-t.right+this.margins.left),"top"in t&&(this.offset.click.top=t.top+this.margins.top),"bottom"in t&&(this.offset.click.top=this.helperProportions.height-t.bottom+this.margins.top)},_isRootNode:function(t){return/(html|body)/i.test(t.tagName)||t===this.document[0]},_getParentOffset:function(){var t=this.offsetParent.offset(),e=this.document[0];return"absolute"===this.cssPosition&&this.scrollParent[0]!==e&&V.contains(this.scrollParent[0],this.offsetParent[0])&&(t.left+=this.scrollParent.scrollLeft(),t.top+=this.scrollParent.scrollTop()),{top:(t=this._isRootNode(this.offsetParent[0])?{top:0,left:0}:t).top+(parseInt(this.offsetParent.css("borderTopWidth"),10)||0),left:t.left+(parseInt(this.offsetParent.css("borderLeftWidth"),10)||0)}},_getRelativeOffset:function(){if("relative"!==this.cssPosition)return{top:0,left:0};var t=this.element.position(),e=this._isRootNode(this.scrollParent[0]);return{top:t.top-(parseInt(this.helper.css("top"),10)||0)+(e?0:this.scrollParent.scrollTop()),left:t.left-(parseInt(this.helper.css("left"),10)||0)+(e?0:this.scrollParent.scrollLeft())}},_cacheMargins:function(){this.margins={left:parseInt(this.element.css("marginLeft"),10)||0,top:parseInt(this.element.css("marginTop"),10)||0,right:parseInt(this.element.css("marginRight"),10)||0,bottom:parseInt(this.element.css("marginBottom"),10)||0}},_cacheHelperProportions:function(){this.helperProportions={width:this.helper.outerWidth(),height:this.helper.outerHeight()}},_setContainment:function(){var t,e,i,s=this.options,n=this.document[0];this.relativeContainer=null,s.containment?"window"!==s.containment?"document"!==s.containment?s.containment.constructor!==Array?("parent"===s.containment&&(s.containment=this.helper[0].parentNode),(i=(e=V(s.containment))[0])&&(t=/(scroll|auto)/.test(e.css("overflow")),this.containment=[(parseInt(e.css("borderLeftWidth"),10)||0)+(parseInt(e.css("paddingLeft"),10)||0),(parseInt(e.css("borderTopWidth"),10)||0)+(parseInt(e.css("paddingTop"),10)||0),(t?Math.max(i.scrollWidth,i.offsetWidth):i.offsetWidth)-(parseInt(e.css("borderRightWidth"),10)||0)-(parseInt(e.css("paddingRight"),10)||0)-this.helperProportions.width-this.margins.left-this.margins.right,(t?Math.max(i.scrollHeight,i.offsetHeight):i.offsetHeight)-(parseInt(e.css("borderBottomWidth"),10)||0)-(parseInt(e.css("paddingBottom"),10)||0)-this.helperProportions.height-this.margins.top-this.margins.bottom],this.relativeContainer=e)):this.containment=s.containment:this.containment=[0,0,V(n).width()-this.helperProportions.width-this.margins.left,(V(n).height()||n.body.parentNode.scrollHeight)-this.helperProportions.height-this.margins.top]:this.containment=[V(window).scrollLeft()-this.offset.relative.left-this.offset.parent.left,V(window).scrollTop()-this.offset.relative.top-this.offset.parent.top,V(window).scrollLeft()+V(window).width()-this.helperProportions.width-this.margins.left,V(window).scrollTop()+(V(window).height()||n.body.parentNode.scrollHeight)-this.helperProportions.height-this.margins.top]:this.containment=null},_convertPositionTo:function(t,e){e=e||this.position;var i="absolute"===t?1:-1,t=this._isRootNode(this.scrollParent[0]);return{top:e.top+this.offset.relative.top*i+this.offset.parent.top*i-("fixed"===this.cssPosition?-this.offset.scroll.top:t?0:this.offset.scroll.top)*i,left:e.left+this.offset.relative.left*i+this.offset.parent.left*i-("fixed"===this.cssPosition?-this.offset.scroll.left:t?0:this.offset.scroll.left)*i}},_generatePosition:function(t,e){var i,s=this.options,n=this._isRootNode(this.scrollParent[0]),o=t.pageX,a=t.pageY;return n&&this.offset.scroll||(this.offset.scroll={top:this.scrollParent.scrollTop(),left:this.scrollParent.scrollLeft()}),e&&(this.containment&&(i=this.relativeContainer?(i=this.relativeContainer.offset(),[this.containment[0]+i.left,this.containment[1]+i.top,this.containment[2]+i.left,this.containment[3]+i.top]):this.containment,t.pageX-this.offset.click.left<i[0]&&(o=i[0]+this.offset.click.left),t.pageY-this.offset.click.top<i[1]&&(a=i[1]+this.offset.click.top),t.pageX-this.offset.click.left>i[2]&&(o=i[2]+this.offset.click.left),t.pageY-this.offset.click.top>i[3]&&(a=i[3]+this.offset.click.top)),s.grid&&(t=s.grid[1]?this.originalPageY+Math.round((a-this.originalPageY)/s.grid[1])*s.grid[1]:this.originalPageY,a=!i||t-this.offset.click.top>=i[1]||t-this.offset.click.top>i[3]?t:t-this.offset.click.top>=i[1]?t-s.grid[1]:t+s.grid[1],t=s.grid[0]?this.originalPageX+Math.round((o-this.originalPageX)/s.grid[0])*s.grid[0]:this.originalPageX,o=!i||t-this.offset.click.left>=i[0]||t-this.offset.click.left>i[2]?t:t-this.offset.click.left>=i[0]?t-s.grid[0]:t+s.grid[0]),"y"===s.axis&&(o=this.originalPageX),"x"===s.axis&&(a=this.originalPageY)),{top:a-this.offset.click.top-this.offset.relative.top-this.offset.parent.top+("fixed"===this.cssPosition?-this.offset.scroll.top:n?0:this.offset.scroll.top),left:o-this.offset.click.left-this.offset.relative.left-this.offset.parent.left+("fixed"===this.cssPosition?-this.offset.scroll.left:n?0:this.offset.scroll.left)}},_clear:function(){this._removeClass(this.helper,"ui-draggable-dragging"),this.helper[0]===this.element[0]||this.cancelHelperRemoval||this.helper.remove(),this.helper=null,this.cancelHelperRemoval=!1,this.destroyOnClear&&this.destroy()},_trigger:function(t,e,i){return i=i||this._uiHash(),V.ui.plugin.call(this,t,[e,i,this],!0),/^(drag|start|stop)/.test(t)&&(this.positionAbs=this._convertPositionTo("absolute"),i.offset=this.positionAbs),V.Widget.prototype._trigger.call(this,t,e,i)},plugins:{},_uiHash:function(){return{helper:this.helper,position:this.position,originalPosition:this.originalPosition,offset:this.positionAbs}}}),V.ui.plugin.add("draggable","connectToSortable",{start:function(e,t,i){var s=V.extend({},t,{item:i.element});i.sortables=[],V(i.options.connectToSortable).each(function(){var t=V(this).sortable("instance");t&&!t.options.disabled&&(i.sortables.push(t),t.refreshPositions(),t._trigger("activate",e,s))})},stop:function(e,t,i){var s=V.extend({},t,{item:i.element});i.cancelHelperRemoval=!1,V.each(i.sortables,function(){var t=this;t.isOver?(t.isOver=0,i.cancelHelperRemoval=!0,t.cancelHelperRemoval=!1,t._storedCSS={position:t.placeholder.css("position"),top:t.placeholder.css("top"),left:t.placeholder.css("left")},t._mouseStop(e),t.options.helper=t.options._helper):(t.cancelHelperRemoval=!0,t._trigger("deactivate",e,s))})},drag:function(i,s,n){V.each(n.sortables,function(){var t=!1,e=this;e.positionAbs=n.positionAbs,e.helperProportions=n.helperProportions,e.offset.click=n.offset.click,e._intersectsWith(e.containerCache)&&(t=!0,V.each(n.sortables,function(){return this.positionAbs=n.positionAbs,this.helperProportions=n.helperProportions,this.offset.click=n.offset.click,t=this!==e&&this._intersectsWith(this.containerCache)&&V.contains(e.element[0],this.element[0])?!1:t})),t?(e.isOver||(e.isOver=1,n._parent=s.helper.parent(),e.currentItem=s.helper.appendTo(e.element).data("ui-sortable-item",!0),e.options._helper=e.options.helper,e.options.helper=function(){return s.helper[0]},i.target=e.currentItem[0],e._mouseCapture(i,!0),e._mouseStart(i,!0,!0),e.offset.click.top=n.offset.click.top,e.offset.click.left=n.offset.click.left,e.offset.parent.left-=n.offset.parent.left-e.offset.parent.left,e.offset.parent.top-=n.offset.parent.top-e.offset.parent.top,n._trigger("toSortable",i),n.dropped=e.element,V.each(n.sortables,function(){this.refreshPositions()}),n.currentItem=n.element,e.fromOutside=n),e.currentItem&&(e._mouseDrag(i),s.position=e.position)):e.isOver&&(e.isOver=0,e.cancelHelperRemoval=!0,e.options._revert=e.options.revert,e.options.revert=!1,e._trigger("out",i,e._uiHash(e)),e._mouseStop(i,!0),e.options.revert=e.options._revert,e.options.helper=e.options._helper,e.placeholder&&e.placeholder.remove(),s.helper.appendTo(n._parent),n._refreshOffsets(i),s.position=n._generatePosition(i,!0),n._trigger("fromSortable",i),n.dropped=!1,V.each(n.sortables,function(){this.refreshPositions()}))})}}),V.ui.plugin.add("draggable","cursor",{start:function(t,e,i){var s=V("body"),i=i.options;s.css("cursor")&&(i._cursor=s.css("cursor")),s.css("cursor",i.cursor)},stop:function(t,e,i){i=i.options;i._cursor&&V("body").css("cursor",i._cursor)}}),V.ui.plugin.add("draggable","opacity",{start:function(t,e,i){e=V(e.helper),i=i.options;e.css("opacity")&&(i._opacity=e.css("opacity")),e.css("opacity",i.opacity)},stop:function(t,e,i){i=i.options;i._opacity&&V(e.helper).css("opacity",i._opacity)}}),V.ui.plugin.add("draggable","scroll",{start:function(t,e,i){i.scrollParentNotHidden||(i.scrollParentNotHidden=i.helper.scrollParent(!1)),i.scrollParentNotHidden[0]!==i.document[0]&&"HTML"!==i.scrollParentNotHidden[0].tagName&&(i.overflowOffset=i.scrollParentNotHidden.offset())},drag:function(t,e,i){var s=i.options,n=!1,o=i.scrollParentNotHidden[0],a=i.document[0];o!==a&&"HTML"!==o.tagName?(s.axis&&"x"===s.axis||(i.overflowOffset.top+o.offsetHeight-t.pageY<s.scrollSensitivity?o.scrollTop=n=o.scrollTop+s.scrollSpeed:t.pageY-i.overflowOffset.top<s.scrollSensitivity&&(o.scrollTop=n=o.scrollTop-s.scrollSpeed)),s.axis&&"y"===s.axis||(i.overflowOffset.left+o.offsetWidth-t.pageX<s.scrollSensitivity?o.scrollLeft=n=o.scrollLeft+s.scrollSpeed:t.pageX-i.overflowOffset.left<s.scrollSensitivity&&(o.scrollLeft=n=o.scrollLeft-s.scrollSpeed))):(s.axis&&"x"===s.axis||(t.pageY-V(a).scrollTop()<s.scrollSensitivity?n=V(a).scrollTop(V(a).scrollTop()-s.scrollSpeed):V(window).height()-(t.pageY-V(a).scrollTop())<s.scrollSensitivity&&(n=V(a).scrollTop(V(a).scrollTop()+s.scrollSpeed))),s.axis&&"y"===s.axis||(t.pageX-V(a).scrollLeft()<s.scrollSensitivity?n=V(a).scrollLeft(V(a).scrollLeft()-s.scrollSpeed):V(window).width()-(t.pageX-V(a).scrollLeft())<s.scrollSensitivity&&(n=V(a).scrollLeft(V(a).scrollLeft()+s.scrollSpeed)))),!1!==n&&V.ui.ddmanager&&!s.dropBehaviour&&V.ui.ddmanager.prepareOffsets(i,t)}}),V.ui.plugin.add("draggable","snap",{start:function(t,e,i){var s=i.options;i.snapElements=[],V(s.snap.constructor!==String?s.snap.items||":data(ui-draggable)":s.snap).each(function(){var t=V(this),e=t.offset();this!==i.element[0]&&i.snapElements.push({item:this,width:t.outerWidth(),height:t.outerHeight(),top:e.top,left:e.left})})},drag:function(t,e,i){for(var s,n,o,a,r,l,h,c,u,d=i.options,p=d.snapTolerance,f=e.offset.left,g=f+i.helperProportions.width,m=e.offset.top,_=m+i.helperProportions.height,v=i.snapElements.length-1;0<=v;v--)l=(r=i.snapElements[v].left-i.margins.left)+i.snapElements[v].width,c=(h=i.snapElements[v].top-i.margins.top)+i.snapElements[v].height,g<r-p||l+p<f||_<h-p||c+p<m||!V.contains(i.snapElements[v].item.ownerDocument,i.snapElements[v].item)?(i.snapElements[v].snapping&&i.options.snap.release&&i.options.snap.release.call(i.element,t,V.extend(i._uiHash(),{snapItem:i.snapElements[v].item})),i.snapElements[v].snapping=!1):("inner"!==d.snapMode&&(s=Math.abs(h-_)<=p,n=Math.abs(c-m)<=p,o=Math.abs(r-g)<=p,a=Math.abs(l-f)<=p,s&&(e.position.top=i._convertPositionTo("relative",{top:h-i.helperProportions.height,left:0}).top),n&&(e.position.top=i._convertPositionTo("relative",{top:c,left:0}).top),o&&(e.position.left=i._convertPositionTo("relative",{top:0,left:r-i.helperProportions.width}).left),a&&(e.position.left=i._convertPositionTo("relative",{top:0,left:l}).left)),u=s||n||o||a,"outer"!==d.snapMode&&(s=Math.abs(h-m)<=p,n=Math.abs(c-_)<=p,o=Math.abs(r-f)<=p,a=Math.abs(l-g)<=p,s&&(e.position.top=i._convertPositionTo("relative",{top:h,left:0}).top),n&&(e.position.top=i._convertPositionTo("relative",{top:c-i.helperProportions.height,left:0}).top),o&&(e.position.left=i._convertPositionTo("relative",{top:0,left:r}).left),a&&(e.position.left=i._convertPositionTo("relative",{top:0,left:l-i.helperProportions.width}).left)),!i.snapElements[v].snapping&&(s||n||o||a||u)&&i.options.snap.snap&&i.options.snap.snap.call(i.element,t,V.extend(i._uiHash(),{snapItem:i.snapElements[v].item})),i.snapElements[v].snapping=s||n||o||a||u)}}),V.ui.plugin.add("draggable","stack",{start:function(t,e,i){var s,i=i.options,i=V.makeArray(V(i.stack)).sort(function(t,e){return(parseInt(V(t).css("zIndex"),10)||0)-(parseInt(V(e).css("zIndex"),10)||0)});i.length&&(s=parseInt(V(i[0]).css("zIndex"),10)||0,V(i).each(function(t){V(this).css("zIndex",s+t)}),this.css("zIndex",s+i.length))}}),V.ui.plugin.add("draggable","zIndex",{start:function(t,e,i){e=V(e.helper),i=i.options;e.css("zIndex")&&(i._zIndex=e.css("zIndex")),e.css("zIndex",i.zIndex)},stop:function(t,e,i){i=i.options;i._zIndex&&V(e.helper).css("zIndex",i._zIndex)}});V.ui.draggable;V.widget("ui.resizable",V.ui.mouse,{version:"1.13.1",widgetEventPrefix:"resize",options:{alsoResize:!1,animate:!1,animateDuration:"slow",animateEasing:"swing",aspectRatio:!1,autoHide:!1,classes:{"ui-resizable-se":"ui-icon ui-icon-gripsmall-diagonal-se"},containment:!1,ghost:!1,grid:!1,handles:"e,s,se",helper:!1,maxHeight:null,maxWidth:null,minHeight:10,minWidth:10,zIndex:90,resize:null,start:null,stop:null},_num:function(t){return parseFloat(t)||0},_isNumber:function(t){return!isNaN(parseFloat(t))},_hasScroll:function(t,e){if("hidden"===V(t).css("overflow"))return!1;var i=e&&"left"===e?"scrollLeft":"scrollTop",e=!1;if(0<t[i])return!0;try{t[i]=1,e=0<t[i],t[i]=0}catch(t){}return e},_create:function(){var t,e=this.options,i=this;this._addClass("ui-resizable"),V.extend(this,{_aspectRatio:!!e.aspectRatio,aspectRatio:e.aspectRatio,originalElement:this.element,_proportionallyResizeElements:[],_helper:e.helper||e.ghost||e.animate?e.helper||"ui-resizable-helper":null}),this.element[0].nodeName.match(/^(canvas|textarea|input|select|button|img)$/i)&&(this.element.wrap(V("<div class='ui-wrapper'></div>").css({overflow:"hidden",position:this.element.css("position"),width:this.element.outerWidth(),height:this.element.outerHeight(),top:this.element.css("top"),left:this.element.css("left")})),this.element=this.element.parent().data("ui-resizable",this.element.resizable("instance")),this.elementIsWrapper=!0,t={marginTop:this.originalElement.css("marginTop"),marginRight:this.originalElement.css("marginRight"),marginBottom:this.originalElement.css("marginBottom"),marginLeft:this.originalElement.css("marginLeft")},this.element.css(t),this.originalElement.css("margin",0),this.originalResizeStyle=this.originalElement.css("resize"),this.originalElement.css("resize","none"),this._proportionallyResizeElements.push(this.originalElement.css({position:"static",zoom:1,display:"block"})),this.originalElement.css(t),this._proportionallyResize()),this._setupHandles(),e.autoHide&&V(this.element).on("mouseenter",function(){e.disabled||(i._removeClass("ui-resizable-autohide"),i._handles.show())}).on("mouseleave",function(){e.disabled||i.resizing||(i._addClass("ui-resizable-autohide"),i._handles.hide())}),this._mouseInit()},_destroy:function(){this._mouseDestroy(),this._addedHandles.remove();function t(t){V(t).removeData("resizable").removeData("ui-resizable").off(".resizable")}var e;return this.elementIsWrapper&&(t(this.element),e=this.element,this.originalElement.css({position:e.css("position"),width:e.outerWidth(),height:e.outerHeight(),top:e.css("top"),left:e.css("left")}).insertAfter(e),e.remove()),this.originalElement.css("resize",this.originalResizeStyle),t(this.originalElement),this},_setOption:function(t,e){switch(this._super(t,e),t){case"handles":this._removeHandles(),this._setupHandles();break;case"aspectRatio":this._aspectRatio=!!e}},_setupHandles:function(){var t,e,i,s,n,o=this.options,a=this;if(this.handles=o.handles||(V(".ui-resizable-handle",this.element).length?{n:".ui-resizable-n",e:".ui-resizable-e",s:".ui-resizable-s",w:".ui-resizable-w",se:".ui-resizable-se",sw:".ui-resizable-sw",ne:".ui-resizable-ne",nw:".ui-resizable-nw"}:"e,s,se"),this._handles=V(),this._addedHandles=V(),this.handles.constructor===String)for("all"===this.handles&&(this.handles="n,e,s,w,se,sw,ne,nw"),i=this.handles.split(","),this.handles={},e=0;e<i.length;e++)s="ui-resizable-"+(t=String.prototype.trim.call(i[e])),n=V("<div>"),this._addClass(n,"ui-resizable-handle "+s),n.css({zIndex:o.zIndex}),this.handles[t]=".ui-resizable-"+t,this.element.children(this.handles[t]).length||(this.element.append(n),this._addedHandles=this._addedHandles.add(n));this._renderAxis=function(t){var e,i,s;for(e in t=t||this.element,this.handles)this.handles[e].constructor===String?this.handles[e]=this.element.children(this.handles[e]).first().show():(this.handles[e].jquery||this.handles[e].nodeType)&&(this.handles[e]=V(this.handles[e]),this._on(this.handles[e],{mousedown:a._mouseDown})),this.elementIsWrapper&&this.originalElement[0].nodeName.match(/^(textarea|input|select|button)$/i)&&(i=V(this.handles[e],this.element),s=/sw|ne|nw|se|n|s/.test(e)?i.outerHeight():i.outerWidth(),i=["padding",/ne|nw|n/.test(e)?"Top":/se|sw|s/.test(e)?"Bottom":/^e$/.test(e)?"Right":"Left"].join(""),t.css(i,s),this._proportionallyResize()),this._handles=this._handles.add(this.handles[e])},this._renderAxis(this.element),this._handles=this._handles.add(this.element.find(".ui-resizable-handle")),this._handles.disableSelection(),this._handles.on("mouseover",function(){a.resizing||(this.className&&(n=this.className.match(/ui-resizable-(se|sw|ne|nw|n|e|s|w)/i)),a.axis=n&&n[1]?n[1]:"se")}),o.autoHide&&(this._handles.hide(),this._addClass("ui-resizable-autohide"))},_removeHandles:function(){this._addedHandles.remove()},_mouseCapture:function(t){var e,i,s=!1;for(e in this.handles)(i=V(this.handles[e])[0])!==t.target&&!V.contains(i,t.target)||(s=!0);return!this.options.disabled&&s},_mouseStart:function(t){var e,i,s=this.options,n=this.element;return this.resizing=!0,this._renderProxy(),e=this._num(this.helper.css("left")),i=this._num(this.helper.css("top")),s.containment&&(e+=V(s.containment).scrollLeft()||0,i+=V(s.containment).scrollTop()||0),this.offset=this.helper.offset(),this.position={left:e,top:i},this.size=this._helper?{width:this.helper.width(),height:this.helper.height()}:{width:n.width(),height:n.height()},this.originalSize=this._helper?{width:n.outerWidth(),height:n.outerHeight()}:{width:n.width(),height:n.height()},this.sizeDiff={width:n.outerWidth()-n.width(),height:n.outerHeight()-n.height()},this.originalPosition={left:e,top:i},this.originalMousePosition={left:t.pageX,top:t.pageY},this.aspectRatio="number"==typeof s.aspectRatio?s.aspectRatio:this.originalSize.width/this.originalSize.height||1,s=V(".ui-resizable-"+this.axis).css("cursor"),V("body").css("cursor","auto"===s?this.axis+"-resize":s),this._addClass("ui-resizable-resizing"),this._propagate("start",t),!0},_mouseDrag:function(t){var e=this.originalMousePosition,i=this.axis,s=t.pageX-e.left||0,e=t.pageY-e.top||0,i=this._change[i];return this._updatePrevProperties(),i&&(e=i.apply(this,[t,s,e]),this._updateVirtualBoundaries(t.shiftKey),(this._aspectRatio||t.shiftKey)&&(e=this._updateRatio(e,t)),e=this._respectSize(e,t),this._updateCache(e),this._propagate("resize",t),e=this._applyChanges(),!this._helper&&this._proportionallyResizeElements.length&&this._proportionallyResize(),V.isEmptyObject(e)||(this._updatePrevProperties(),this._trigger("resize",t,this.ui()),this._applyChanges())),!1},_mouseStop:function(t){this.resizing=!1;var e,i,s,n=this.options,o=this;return this._helper&&(s=(e=(i=this._proportionallyResizeElements).length&&/textarea/i.test(i[0].nodeName))&&this._hasScroll(i[0],"left")?0:o.sizeDiff.height,i=e?0:o.sizeDiff.width,e={width:o.helper.width()-i,height:o.helper.height()-s},i=parseFloat(o.element.css("left"))+(o.position.left-o.originalPosition.left)||null,s=parseFloat(o.element.css("top"))+(o.position.top-o.originalPosition.top)||null,n.animate||this.element.css(V.extend(e,{top:s,left:i})),o.helper.height(o.size.height),o.helper.width(o.size.width),this._helper&&!n.animate&&this._proportionallyResize()),V("body").css("cursor","auto"),this._removeClass("ui-resizable-resizing"),this._propagate("stop",t),this._helper&&this.helper.remove(),!1},_updatePrevProperties:function(){this.prevPosition={top:this.position.top,left:this.position.left},this.prevSize={width:this.size.width,height:this.size.height}},_applyChanges:function(){var t={};return this.position.top!==this.prevPosition.top&&(t.top=this.position.top+"px"),this.position.left!==this.prevPosition.left&&(t.left=this.position.left+"px"),this.size.width!==this.prevSize.width&&(t.width=this.size.width+"px"),this.size.height!==this.prevSize.height&&(t.height=this.size.height+"px"),this.helper.css(t),t},_updateVirtualBoundaries:function(t){var e,i,s=this.options,n={minWidth:this._isNumber(s.minWidth)?s.minWidth:0,maxWidth:this._isNumber(s.maxWidth)?s.maxWidth:1/0,minHeight:this._isNumber(s.minHeight)?s.minHeight:0,maxHeight:this._isNumber(s.maxHeight)?s.maxHeight:1/0};(this._aspectRatio||t)&&(e=n.minHeight*this.aspectRatio,i=n.minWidth/this.aspectRatio,s=n.maxHeight*this.aspectRatio,t=n.maxWidth/this.aspectRatio,e>n.minWidth&&(n.minWidth=e),i>n.minHeight&&(n.minHeight=i),s<n.maxWidth&&(n.maxWidth=s),t<n.maxHeight&&(n.maxHeight=t)),this._vBoundaries=n},_updateCache:function(t){this.offset=this.helper.offset(),this._isNumber(t.left)&&(this.position.left=t.left),this._isNumber(t.top)&&(this.position.top=t.top),this._isNumber(t.height)&&(this.size.height=t.height),this._isNumber(t.width)&&(this.size.width=t.width)},_updateRatio:function(t){var e=this.position,i=this.size,s=this.axis;return this._isNumber(t.height)?t.width=t.height*this.aspectRatio:this._isNumber(t.width)&&(t.height=t.width/this.aspectRatio),"sw"===s&&(t.left=e.left+(i.width-t.width),t.top=null),"nw"===s&&(t.top=e.top+(i.height-t.height),t.left=e.left+(i.width-t.width)),t},_respectSize:function(t){var e=this._vBoundaries,i=this.axis,s=this._isNumber(t.width)&&e.maxWidth&&e.maxWidth<t.width,n=this._isNumber(t.height)&&e.maxHeight&&e.maxHeight<t.height,o=this._isNumber(t.width)&&e.minWidth&&e.minWidth>t.width,a=this._isNumber(t.height)&&e.minHeight&&e.minHeight>t.height,r=this.originalPosition.left+this.originalSize.width,l=this.originalPosition.top+this.originalSize.height,h=/sw|nw|w/.test(i),i=/nw|ne|n/.test(i);return o&&(t.width=e.minWidth),a&&(t.height=e.minHeight),s&&(t.width=e.maxWidth),n&&(t.height=e.maxHeight),o&&h&&(t.left=r-e.minWidth),s&&h&&(t.left=r-e.maxWidth),a&&i&&(t.top=l-e.minHeight),n&&i&&(t.top=l-e.maxHeight),t.width||t.height||t.left||!t.top?t.width||t.height||t.top||!t.left||(t.left=null):t.top=null,t},_getPaddingPlusBorderDimensions:function(t){for(var e=0,i=[],s=[t.css("borderTopWidth"),t.css("borderRightWidth"),t.css("borderBottomWidth"),t.css("borderLeftWidth")],n=[t.css("paddingTop"),t.css("paddingRight"),t.css("paddingBottom"),t.css("paddingLeft")];e<4;e++)i[e]=parseFloat(s[e])||0,i[e]+=parseFloat(n[e])||0;return{height:i[0]+i[2],width:i[1]+i[3]}},_proportionallyResize:function(){if(this._proportionallyResizeElements.length)for(var t,e=0,i=this.helper||this.element;e<this._proportionallyResizeElements.length;e++)t=this._proportionallyResizeElements[e],this.outerDimensions||(this.outerDimensions=this._getPaddingPlusBorderDimensions(t)),t.css({height:i.height()-this.outerDimensions.height||0,width:i.width()-this.outerDimensions.width||0})},_renderProxy:function(){var t=this.element,e=this.options;this.elementOffset=t.offset(),this._helper?(this.helper=this.helper||V("<div></div>").css({overflow:"hidden"}),this._addClass(this.helper,this._helper),this.helper.css({width:this.element.outerWidth(),height:this.element.outerHeight(),position:"absolute",left:this.elementOffset.left+"px",top:this.elementOffset.top+"px",zIndex:++e.zIndex}),this.helper.appendTo("body").disableSelection()):this.helper=this.element},_change:{e:function(t,e){return{width:this.originalSize.width+e}},w:function(t,e){var i=this.originalSize;return{left:this.originalPosition.left+e,width:i.width-e}},n:function(t,e,i){var s=this.originalSize;return{top:this.originalPosition.top+i,height:s.height-i}},s:function(t,e,i){return{height:this.originalSize.height+i}},se:function(t,e,i){return V.extend(this._change.s.apply(this,arguments),this._change.e.apply(this,[t,e,i]))},sw:function(t,e,i){return V.extend(this._change.s.apply(this,arguments),this._change.w.apply(this,[t,e,i]))},ne:function(t,e,i){return V.extend(this._change.n.apply(this,arguments),this._change.e.apply(this,[t,e,i]))},nw:function(t,e,i){return V.extend(this._change.n.apply(this,arguments),this._change.w.apply(this,[t,e,i]))}},_propagate:function(t,e){V.ui.plugin.call(this,t,[e,this.ui()]),"resize"!==t&&this._trigger(t,e,this.ui())},plugins:{},ui:function(){return{originalElement:this.originalElement,element:this.element,helper:this.helper,position:this.position,size:this.size,originalSize:this.originalSize,originalPosition:this.originalPosition}}}),V.ui.plugin.add("resizable","animate",{stop:function(e){var i=V(this).resizable("instance"),t=i.options,s=i._proportionallyResizeElements,n=s.length&&/textarea/i.test(s[0].nodeName),o=n&&i._hasScroll(s[0],"left")?0:i.sizeDiff.height,a=n?0:i.sizeDiff.width,n={width:i.size.width-a,height:i.size.height-o},a=parseFloat(i.element.css("left"))+(i.position.left-i.originalPosition.left)||null,o=parseFloat(i.element.css("top"))+(i.position.top-i.originalPosition.top)||null;i.element.animate(V.extend(n,o&&a?{top:o,left:a}:{}),{duration:t.animateDuration,easing:t.animateEasing,step:function(){var t={width:parseFloat(i.element.css("width")),height:parseFloat(i.element.css("height")),top:parseFloat(i.element.css("top")),left:parseFloat(i.element.css("left"))};s&&s.length&&V(s[0]).css({width:t.width,height:t.height}),i._updateCache(t),i._propagate("resize",e)}})}}),V.ui.plugin.add("resizable","containment",{start:function(){var i,s,n=V(this).resizable("instance"),t=n.options,e=n.element,o=t.containment,a=o instanceof V?o.get(0):/parent/.test(o)?e.parent().get(0):o;a&&(n.containerElement=V(a),/document/.test(o)||o===document?(n.containerOffset={left:0,top:0},n.containerPosition={left:0,top:0},n.parentData={element:V(document),left:0,top:0,width:V(document).width(),height:V(document).height()||document.body.parentNode.scrollHeight}):(i=V(a),s=[],V(["Top","Right","Left","Bottom"]).each(function(t,e){s[t]=n._num(i.css("padding"+e))}),n.containerOffset=i.offset(),n.containerPosition=i.position(),n.containerSize={height:i.innerHeight()-s[3],width:i.innerWidth()-s[1]},t=n.containerOffset,e=n.containerSize.height,o=n.containerSize.width,o=n._hasScroll(a,"left")?a.scrollWidth:o,e=n._hasScroll(a)?a.scrollHeight:e,n.parentData={element:a,left:t.left,top:t.top,width:o,height:e}))},resize:function(t){var e=V(this).resizable("instance"),i=e.options,s=e.containerOffset,n=e.position,o=e._aspectRatio||t.shiftKey,a={top:0,left:0},r=e.containerElement,t=!0;r[0]!==document&&/static/.test(r.css("position"))&&(a=s),n.left<(e._helper?s.left:0)&&(e.size.width=e.size.width+(e._helper?e.position.left-s.left:e.position.left-a.left),o&&(e.size.height=e.size.width/e.aspectRatio,t=!1),e.position.left=i.helper?s.left:0),n.top<(e._helper?s.top:0)&&(e.size.height=e.size.height+(e._helper?e.position.top-s.top:e.position.top),o&&(e.size.width=e.size.height*e.aspectRatio,t=!1),e.position.top=e._helper?s.top:0),i=e.containerElement.get(0)===e.element.parent().get(0),n=/relative|absolute/.test(e.containerElement.css("position")),i&&n?(e.offset.left=e.parentData.left+e.position.left,e.offset.top=e.parentData.top+e.position.top):(e.offset.left=e.element.offset().left,e.offset.top=e.element.offset().top),n=Math.abs(e.sizeDiff.width+(e._helper?e.offset.left-a.left:e.offset.left-s.left)),s=Math.abs(e.sizeDiff.height+(e._helper?e.offset.top-a.top:e.offset.top-s.top)),n+e.size.width>=e.parentData.width&&(e.size.width=e.parentData.width-n,o&&(e.size.height=e.size.width/e.aspectRatio,t=!1)),s+e.size.height>=e.parentData.height&&(e.size.height=e.parentData.height-s,o&&(e.size.width=e.size.height*e.aspectRatio,t=!1)),t||(e.position.left=e.prevPosition.left,e.position.top=e.prevPosition.top,e.size.width=e.prevSize.width,e.size.height=e.prevSize.height)},stop:function(){var t=V(this).resizable("instance"),e=t.options,i=t.containerOffset,s=t.containerPosition,n=t.containerElement,o=V(t.helper),a=o.offset(),r=o.outerWidth()-t.sizeDiff.width,o=o.outerHeight()-t.sizeDiff.height;t._helper&&!e.animate&&/relative/.test(n.css("position"))&&V(this).css({left:a.left-s.left-i.left,width:r,height:o}),t._helper&&!e.animate&&/static/.test(n.css("position"))&&V(this).css({left:a.left-s.left-i.left,width:r,height:o})}}),V.ui.plugin.add("resizable","alsoResize",{start:function(){var t=V(this).resizable("instance").options;V(t.alsoResize).each(function(){var t=V(this);t.data("ui-resizable-alsoresize",{width:parseFloat(t.width()),height:parseFloat(t.height()),left:parseFloat(t.css("left")),top:parseFloat(t.css("top"))})})},resize:function(t,i){var e=V(this).resizable("instance"),s=e.options,n=e.originalSize,o=e.originalPosition,a={height:e.size.height-n.height||0,width:e.size.width-n.width||0,top:e.position.top-o.top||0,left:e.position.left-o.left||0};V(s.alsoResize).each(function(){var t=V(this),s=V(this).data("ui-resizable-alsoresize"),n={},e=t.parents(i.originalElement[0]).length?["width","height"]:["width","height","top","left"];V.each(e,function(t,e){var i=(s[e]||0)+(a[e]||0);i&&0<=i&&(n[e]=i||null)}),t.css(n)})},stop:function(){V(this).removeData("ui-resizable-alsoresize")}}),V.ui.plugin.add("resizable","ghost",{start:function(){var t=V(this).resizable("instance"),e=t.size;t.ghost=t.originalElement.clone(),t.ghost.css({opacity:.25,display:"block",position:"relative",height:e.height,width:e.width,margin:0,left:0,top:0}),t._addClass(t.ghost,"ui-resizable-ghost"),!1!==V.uiBackCompat&&"string"==typeof t.options.ghost&&t.ghost.addClass(this.options.ghost),t.ghost.appendTo(t.helper)},resize:function(){var t=V(this).resizable("instance");t.ghost&&t.ghost.css({position:"relative",height:t.size.height,width:t.size.width})},stop:function(){var t=V(this).resizable("instance");t.ghost&&t.helper&&t.helper.get(0).removeChild(t.ghost.get(0))}}),V.ui.plugin.add("resizable","grid",{resize:function(){var t,e=V(this).resizable("instance"),i=e.options,s=e.size,n=e.originalSize,o=e.originalPosition,a=e.axis,r="number"==typeof i.grid?[i.grid,i.grid]:i.grid,l=r[0]||1,h=r[1]||1,c=Math.round((s.width-n.width)/l)*l,u=Math.round((s.height-n.height)/h)*h,d=n.width+c,p=n.height+u,f=i.maxWidth&&i.maxWidth<d,g=i.maxHeight&&i.maxHeight<p,m=i.minWidth&&i.minWidth>d,s=i.minHeight&&i.minHeight>p;i.grid=r,m&&(d+=l),s&&(p+=h),f&&(d-=l),g&&(p-=h),/^(se|s|e)$/.test(a)?(e.size.width=d,e.size.height=p):/^(ne)$/.test(a)?(e.size.width=d,e.size.height=p,e.position.top=o.top-u):/^(sw)$/.test(a)?(e.size.width=d,e.size.height=p,e.position.left=o.left-c):((p-h<=0||d-l<=0)&&(t=e._getPaddingPlusBorderDimensions(this)),0<p-h?(e.size.height=p,e.position.top=o.top-u):(p=h-t.height,e.size.height=p,e.position.top=o.top+n.height-p),0<d-l?(e.size.width=d,e.position.left=o.left-c):(d=l-t.width,e.size.width=d,e.position.left=o.left+n.width-d))}});V.ui.resizable;V.widget("ui.dialog",{version:"1.13.1",options:{appendTo:"body",autoOpen:!0,buttons:[],classes:{"ui-dialog":"ui-corner-all","ui-dialog-titlebar":"ui-corner-all"},closeOnEscape:!0,closeText:"Close",draggable:!0,hide:null,height:"auto",maxHeight:null,maxWidth:null,minHeight:150,minWidth:150,modal:!1,position:{my:"center",at:"center",of:window,collision:"fit",using:function(t){var e=V(this).css(t).offset().top;e<0&&V(this).css("top",t.top-e)}},resizable:!0,show:null,title:null,width:300,beforeClose:null,close:null,drag:null,dragStart:null,dragStop:null,focus:null,open:null,resize:null,resizeStart:null,resizeStop:null},sizeRelatedOptions:{buttons:!0,height:!0,maxHeight:!0,maxWidth:!0,minHeight:!0,minWidth:!0,width:!0},resizableRelatedOptions:{maxHeight:!0,maxWidth:!0,minHeight:!0,minWidth:!0},_create:function(){this.originalCss={display:this.element[0].style.display,width:this.element[0].style.width,minHeight:this.element[0].style.minHeight,maxHeight:this.element[0].style.maxHeight,height:this.element[0].style.height},this.originalPosition={parent:this.element.parent(),index:this.element.parent().children().index(this.element)},this.originalTitle=this.element.attr("title"),null==this.options.title&&null!=this.originalTitle&&(this.options.title=this.originalTitle),this.options.disabled&&(this.options.disabled=!1),this._createWrapper(),this.element.show().removeAttr("title").appendTo(this.uiDialog),this._addClass("ui-dialog-content","ui-widget-content"),this._createTitlebar(),this._createButtonPane(),this.options.draggable&&V.fn.draggable&&this._makeDraggable(),this.options.resizable&&V.fn.resizable&&this._makeResizable(),this._isOpen=!1,this._trackFocus()},_init:function(){this.options.autoOpen&&this.open()},_appendTo:function(){var t=this.options.appendTo;return t&&(t.jquery||t.nodeType)?V(t):this.document.find(t||"body").eq(0)},_destroy:function(){var t,e=this.originalPosition;this._untrackInstance(),this._destroyOverlay(),this.element.removeUniqueId().css(this.originalCss).detach(),this.uiDialog.remove(),this.originalTitle&&this.element.attr("title",this.originalTitle),(t=e.parent.children().eq(e.index)).length&&t[0]!==this.element[0]?t.before(this.element):e.parent.append(this.element)},widget:function(){return this.uiDialog},disable:V.noop,enable:V.noop,close:function(t){var e=this;this._isOpen&&!1!==this._trigger("beforeClose",t)&&(this._isOpen=!1,this._focusedElement=null,this._destroyOverlay(),this._untrackInstance(),this.opener.filter(":focusable").trigger("focus").length||V.ui.safeBlur(V.ui.safeActiveElement(this.document[0])),this._hide(this.uiDialog,this.options.hide,function(){e._trigger("close",t)}))},isOpen:function(){return this._isOpen},moveToTop:function(){this._moveToTop()},_moveToTop:function(t,e){var i=!1,s=this.uiDialog.siblings(".ui-front:visible").map(function(){return+V(this).css("z-index")}).get(),s=Math.max.apply(null,s);return s>=+this.uiDialog.css("z-index")&&(this.uiDialog.css("z-index",s+1),i=!0),i&&!e&&this._trigger("focus",t),i},open:function(){var t=this;this._isOpen?this._moveToTop()&&this._focusTabbable():(this._isOpen=!0,this.opener=V(V.ui.safeActiveElement(this.document[0])),this._size(),this._position(),this._createOverlay(),this._moveToTop(null,!0),this.overlay&&this.overlay.css("z-index",this.uiDialog.css("z-index")-1),this._show(this.uiDialog,this.options.show,function(){t._focusTabbable(),t._trigger("focus")}),this._makeFocusTarget(),this._trigger("open"))},_focusTabbable:function(){var t=this._focusedElement;(t=!(t=!(t=!(t=!(t=t||this.element.find("[autofocus]")).length?this.element.find(":tabbable"):t).length?this.uiDialogButtonPane.find(":tabbable"):t).length?this.uiDialogTitlebarClose.filter(":tabbable"):t).length?this.uiDialog:t).eq(0).trigger("focus")},_restoreTabbableFocus:function(){var t=V.ui.safeActiveElement(this.document[0]);this.uiDialog[0]===t||V.contains(this.uiDialog[0],t)||this._focusTabbable()},_keepFocus:function(t){t.preventDefault(),this._restoreTabbableFocus(),this._delay(this._restoreTabbableFocus)},_createWrapper:function(){this.uiDialog=V("<div>").hide().attr({tabIndex:-1,role:"dialog"}).appendTo(this._appendTo()),this._addClass(this.uiDialog,"ui-dialog","ui-widget ui-widget-content ui-front"),this._on(this.uiDialog,{keydown:function(t){if(this.options.closeOnEscape&&!t.isDefaultPrevented()&&t.keyCode&&t.keyCode===V.ui.keyCode.ESCAPE)return t.preventDefault(),void this.close(t);var e,i,s;t.keyCode!==V.ui.keyCode.TAB||t.isDefaultPrevented()||(e=this.uiDialog.find(":tabbable"),i=e.first(),s=e.last(),t.target!==s[0]&&t.target!==this.uiDialog[0]||t.shiftKey?t.target!==i[0]&&t.target!==this.uiDialog[0]||!t.shiftKey||(this._delay(function(){s.trigger("focus")}),t.preventDefault()):(this._delay(function(){i.trigger("focus")}),t.preventDefault()))},mousedown:function(t){this._moveToTop(t)&&this._focusTabbable()}}),this.element.find("[aria-describedby]").length||this.uiDialog.attr({"aria-describedby":this.element.uniqueId().attr("id")})},_createTitlebar:function(){var t;this.uiDialogTitlebar=V("<div>"),this._addClass(this.uiDialogTitlebar,"ui-dialog-titlebar","ui-widget-header ui-helper-clearfix"),this._on(this.uiDialogTitlebar,{mousedown:function(t){V(t.target).closest(".ui-dialog-titlebar-close")||this.uiDialog.trigger("focus")}}),this.uiDialogTitlebarClose=V("<button type='button'></button>").button({label:V("<a>").text(this.options.closeText).html(),icon:"ui-icon-closethick",showLabel:!1}).appendTo(this.uiDialogTitlebar),this._addClass(this.uiDialogTitlebarClose,"ui-dialog-titlebar-close"),this._on(this.uiDialogTitlebarClose,{click:function(t){t.preventDefault(),this.close(t)}}),t=V("<span>").uniqueId().prependTo(this.uiDialogTitlebar),this._addClass(t,"ui-dialog-title"),this._title(t),this.uiDialogTitlebar.prependTo(this.uiDialog),this.uiDialog.attr({"aria-labelledby":t.attr("id")})},_title:function(t){this.options.title?t.text(this.options.title):t.html("&#160;")},_createButtonPane:function(){this.uiDialogButtonPane=V("<div>"),this._addClass(this.uiDialogButtonPane,"ui-dialog-buttonpane","ui-widget-content ui-helper-clearfix"),this.uiButtonSet=V("<div>").appendTo(this.uiDialogButtonPane),this._addClass(this.uiButtonSet,"ui-dialog-buttonset"),this._createButtons()},_createButtons:function(){var s=this,t=this.options.buttons;this.uiDialogButtonPane.remove(),this.uiButtonSet.empty(),V.isEmptyObject(t)||Array.isArray(t)&&!t.length?this._removeClass(this.uiDialog,"ui-dialog-buttons"):(V.each(t,function(t,e){var i;e=V.extend({type:"button"},e="function"==typeof e?{click:e,text:t}:e),i=e.click,t={icon:e.icon,iconPosition:e.iconPosition,showLabel:e.showLabel,icons:e.icons,text:e.text},delete e.click,delete e.icon,delete e.iconPosition,delete e.showLabel,delete e.icons,"boolean"==typeof e.text&&delete e.text,V("<button></button>",e).button(t).appendTo(s.uiButtonSet).on("click",function(){i.apply(s.element[0],arguments)})}),this._addClass(this.uiDialog,"ui-dialog-buttons"),this.uiDialogButtonPane.appendTo(this.uiDialog))},_makeDraggable:function(){var n=this,o=this.options;function a(t){return{position:t.position,offset:t.offset}}this.uiDialog.draggable({cancel:".ui-dialog-content, .ui-dialog-titlebar-close",handle:".ui-dialog-titlebar",containment:"document",start:function(t,e){n._addClass(V(this),"ui-dialog-dragging"),n._blockFrames(),n._trigger("dragStart",t,a(e))},drag:function(t,e){n._trigger("drag",t,a(e))},stop:function(t,e){var i=e.offset.left-n.document.scrollLeft(),s=e.offset.top-n.document.scrollTop();o.position={my:"left top",at:"left"+(0<=i?"+":"")+i+" top"+(0<=s?"+":"")+s,of:n.window},n._removeClass(V(this),"ui-dialog-dragging"),n._unblockFrames(),n._trigger("dragStop",t,a(e))}})},_makeResizable:function(){var n=this,o=this.options,t=o.resizable,e=this.uiDialog.css("position"),t="string"==typeof t?t:"n,e,s,w,se,sw,ne,nw";function a(t){return{originalPosition:t.originalPosition,originalSize:t.originalSize,position:t.position,size:t.size}}this.uiDialog.resizable({cancel:".ui-dialog-content",containment:"document",alsoResize:this.element,maxWidth:o.maxWidth,maxHeight:o.maxHeight,minWidth:o.minWidth,minHeight:this._minHeight(),handles:t,start:function(t,e){n._addClass(V(this),"ui-dialog-resizing"),n._blockFrames(),n._trigger("resizeStart",t,a(e))},resize:function(t,e){n._trigger("resize",t,a(e))},stop:function(t,e){var i=n.uiDialog.offset(),s=i.left-n.document.scrollLeft(),i=i.top-n.document.scrollTop();o.height=n.uiDialog.height(),o.width=n.uiDialog.width(),o.position={my:"left top",at:"left"+(0<=s?"+":"")+s+" top"+(0<=i?"+":"")+i,of:n.window},n._removeClass(V(this),"ui-dialog-resizing"),n._unblockFrames(),n._trigger("resizeStop",t,a(e))}}).css("position",e)},_trackFocus:function(){this._on(this.widget(),{focusin:function(t){this._makeFocusTarget(),this._focusedElement=V(t.target)}})},_makeFocusTarget:function(){this._untrackInstance(),this._trackingInstances().unshift(this)},_untrackInstance:function(){var t=this._trackingInstances(),e=V.inArray(this,t);-1!==e&&t.splice(e,1)},_trackingInstances:function(){var t=this.document.data("ui-dialog-instances");return t||this.document.data("ui-dialog-instances",t=[]),t},_minHeight:function(){var t=this.options;return"auto"===t.height?t.minHeight:Math.min(t.minHeight,t.height)},_position:function(){var t=this.uiDialog.is(":visible");t||this.uiDialog.show(),this.uiDialog.position(this.options.position),t||this.uiDialog.hide()},_setOptions:function(t){var i=this,s=!1,n={};V.each(t,function(t,e){i._setOption(t,e),t in i.sizeRelatedOptions&&(s=!0),t in i.resizableRelatedOptions&&(n[t]=e)}),s&&(this._size(),this._position()),this.uiDialog.is(":data(ui-resizable)")&&this.uiDialog.resizable("option",n)},_setOption:function(t,e){var i,s=this.uiDialog;"disabled"!==t&&(this._super(t,e),"appendTo"===t&&this.uiDialog.appendTo(this._appendTo()),"buttons"===t&&this._createButtons(),"closeText"===t&&this.uiDialogTitlebarClose.button({label:V("<a>").text(""+this.options.closeText).html()}),"draggable"===t&&((i=s.is(":data(ui-draggable)"))&&!e&&s.draggable("destroy"),!i&&e&&this._makeDraggable()),"position"===t&&this._position(),"resizable"===t&&((i=s.is(":data(ui-resizable)"))&&!e&&s.resizable("destroy"),i&&"string"==typeof e&&s.resizable("option","handles",e),i||!1===e||this._makeResizable()),"title"===t&&this._title(this.uiDialogTitlebar.find(".ui-dialog-title")))},_size:function(){var t,e,i,s=this.options;this.element.show().css({width:"auto",minHeight:0,maxHeight:"none",height:0}),s.minWidth>s.width&&(s.width=s.minWidth),t=this.uiDialog.css({height:"auto",width:s.width}).outerHeight(),e=Math.max(0,s.minHeight-t),i="number"==typeof s.maxHeight?Math.max(0,s.maxHeight-t):"none","auto"===s.height?this.element.css({minHeight:e,maxHeight:i,height:"auto"}):this.element.height(Math.max(0,s.height-t)),this.uiDialog.is(":data(ui-resizable)")&&this.uiDialog.resizable("option","minHeight",this._minHeight())},_blockFrames:function(){this.iframeBlocks=this.document.find("iframe").map(function(){var t=V(this);return V("<div>").css({position:"absolute",width:t.outerWidth(),height:t.outerHeight()}).appendTo(t.parent()).offset(t.offset())[0]})},_unblockFrames:function(){this.iframeBlocks&&(this.iframeBlocks.remove(),delete this.iframeBlocks)},_allowInteraction:function(t){return!!V(t.target).closest(".ui-dialog").length||!!V(t.target).closest(".ui-datepicker").length},_createOverlay:function(){var i,s;this.options.modal&&(i=V.fn.jquery.substring(0,4),s=!0,this._delay(function(){s=!1}),this.document.data("ui-dialog-overlays")||this.document.on("focusin.ui-dialog",function(t){var e;s||((e=this._trackingInstances()[0])._allowInteraction(t)||(t.preventDefault(),e._focusTabbable(),"3.4."!==i&&"3.5."!==i||e._delay(e._restoreTabbableFocus)))}.bind(this)),this.overlay=V("<div>").appendTo(this._appendTo()),this._addClass(this.overlay,null,"ui-widget-overlay ui-front"),this._on(this.overlay,{mousedown:"_keepFocus"}),this.document.data("ui-dialog-overlays",(this.document.data("ui-dialog-overlays")||0)+1))},_destroyOverlay:function(){var t;this.options.modal&&this.overlay&&((t=this.document.data("ui-dialog-overlays")-1)?this.document.data("ui-dialog-overlays",t):(this.document.off("focusin.ui-dialog"),this.document.removeData("ui-dialog-overlays")),this.overlay.remove(),this.overlay=null)}}),!1!==V.uiBackCompat&&V.widget("ui.dialog",V.ui.dialog,{options:{dialogClass:""},_createWrapper:function(){this._super(),this.uiDialog.addClass(this.options.dialogClass)},_setOption:function(t,e){"dialogClass"===t&&this.uiDialog.removeClass(this.options.dialogClass).addClass(e),this._superApply(arguments)}});V.ui.dialog;function lt(t,e,i){return e<=t&&t<e+i}V.widget("ui.droppable",{version:"1.13.1",widgetEventPrefix:"drop",options:{accept:"*",addClasses:!0,greedy:!1,scope:"default",tolerance:"intersect",activate:null,deactivate:null,drop:null,out:null,over:null},_create:function(){var t,e=this.options,i=e.accept;this.isover=!1,this.isout=!0,this.accept="function"==typeof i?i:function(t){return t.is(i)},this.proportions=function(){if(!arguments.length)return t=t||{width:this.element[0].offsetWidth,height:this.element[0].offsetHeight};t=arguments[0]},this._addToManager(e.scope),e.addClasses&&this._addClass("ui-droppable")},_addToManager:function(t){V.ui.ddmanager.droppables[t]=V.ui.ddmanager.droppables[t]||[],V.ui.ddmanager.droppables[t].push(this)},_splice:function(t){for(var e=0;e<t.length;e++)t[e]===this&&t.splice(e,1)},_destroy:function(){var t=V.ui.ddmanager.droppables[this.options.scope];this._splice(t)},_setOption:function(t,e){var i;"accept"===t?this.accept="function"==typeof e?e:function(t){return t.is(e)}:"scope"===t&&(i=V.ui.ddmanager.droppables[this.options.scope],this._splice(i),this._addToManager(e)),this._super(t,e)},_activate:function(t){var e=V.ui.ddmanager.current;this._addActiveClass(),e&&this._trigger("activate",t,this.ui(e))},_deactivate:function(t){var e=V.ui.ddmanager.current;this._removeActiveClass(),e&&this._trigger("deactivate",t,this.ui(e))},_over:function(t){var e=V.ui.ddmanager.current;e&&(e.currentItem||e.element)[0]!==this.element[0]&&this.accept.call(this.element[0],e.currentItem||e.element)&&(this._addHoverClass(),this._trigger("over",t,this.ui(e)))},_out:function(t){var e=V.ui.ddmanager.current;e&&(e.currentItem||e.element)[0]!==this.element[0]&&this.accept.call(this.element[0],e.currentItem||e.element)&&(this._removeHoverClass(),this._trigger("out",t,this.ui(e)))},_drop:function(e,t){var i=t||V.ui.ddmanager.current,s=!1;return!(!i||(i.currentItem||i.element)[0]===this.element[0])&&(this.element.find(":data(ui-droppable)").not(".ui-draggable-dragging").each(function(){var t=V(this).droppable("instance");if(t.options.greedy&&!t.options.disabled&&t.options.scope===i.options.scope&&t.accept.call(t.element[0],i.currentItem||i.element)&&V.ui.intersect(i,V.extend(t,{offset:t.element.offset()}),t.options.tolerance,e))return!(s=!0)}),!s&&(!!this.accept.call(this.element[0],i.currentItem||i.element)&&(this._removeActiveClass(),this._removeHoverClass(),this._trigger("drop",e,this.ui(i)),this.element)))},ui:function(t){return{draggable:t.currentItem||t.element,helper:t.helper,position:t.position,offset:t.positionAbs}},_addHoverClass:function(){this._addClass("ui-droppable-hover")},_removeHoverClass:function(){this._removeClass("ui-droppable-hover")},_addActiveClass:function(){this._addClass("ui-droppable-active")},_removeActiveClass:function(){this._removeClass("ui-droppable-active")}}),V.ui.intersect=function(t,e,i,s){if(!e.offset)return!1;var n=(t.positionAbs||t.position.absolute).left+t.margins.left,o=(t.positionAbs||t.position.absolute).top+t.margins.top,a=n+t.helperProportions.width,r=o+t.helperProportions.height,l=e.offset.left,h=e.offset.top,c=l+e.proportions().width,u=h+e.proportions().height;switch(i){case"fit":return l<=n&&a<=c&&h<=o&&r<=u;case"intersect":return l<n+t.helperProportions.width/2&&a-t.helperProportions.width/2<c&&h<o+t.helperProportions.height/2&&r-t.helperProportions.height/2<u;case"pointer":return lt(s.pageY,h,e.proportions().height)&&lt(s.pageX,l,e.proportions().width);case"touch":return(h<=o&&o<=u||h<=r&&r<=u||o<h&&u<r)&&(l<=n&&n<=c||l<=a&&a<=c||n<l&&c<a);default:return!1}},!(V.ui.ddmanager={current:null,droppables:{default:[]},prepareOffsets:function(t,e){var i,s,n=V.ui.ddmanager.droppables[t.options.scope]||[],o=e?e.type:null,a=(t.currentItem||t.element).find(":data(ui-droppable)").addBack();t:for(i=0;i<n.length;i++)if(!(n[i].options.disabled||t&&!n[i].accept.call(n[i].element[0],t.currentItem||t.element))){for(s=0;s<a.length;s++)if(a[s]===n[i].element[0]){n[i].proportions().height=0;continue t}n[i].visible="none"!==n[i].element.css("display"),n[i].visible&&("mousedown"===o&&n[i]._activate.call(n[i],e),n[i].offset=n[i].element.offset(),n[i].proportions({width:n[i].element[0].offsetWidth,height:n[i].element[0].offsetHeight}))}},drop:function(t,e){var i=!1;return V.each((V.ui.ddmanager.droppables[t.options.scope]||[]).slice(),function(){this.options&&(!this.options.disabled&&this.visible&&V.ui.intersect(t,this,this.options.tolerance,e)&&(i=this._drop.call(this,e)||i),!this.options.disabled&&this.visible&&this.accept.call(this.element[0],t.currentItem||t.element)&&(this.isout=!0,this.isover=!1,this._deactivate.call(this,e)))}),i},dragStart:function(t,e){t.element.parentsUntil("body").on("scroll.droppable",function(){t.options.refreshPositions||V.ui.ddmanager.prepareOffsets(t,e)})},drag:function(n,o){n.options.refreshPositions&&V.ui.ddmanager.prepareOffsets(n,o),V.each(V.ui.ddmanager.droppables[n.options.scope]||[],function(){var t,e,i,s;this.options.disabled||this.greedyChild||!this.visible||(s=!(i=V.ui.intersect(n,this,this.options.tolerance,o))&&this.isover?"isout":i&&!this.isover?"isover":null)&&(this.options.greedy&&(e=this.options.scope,(i=this.element.parents(":data(ui-droppable)").filter(function(){return V(this).droppable("instance").options.scope===e})).length&&((t=V(i[0]).droppable("instance")).greedyChild="isover"===s)),t&&"isover"===s&&(t.isover=!1,t.isout=!0,t._out.call(t,o)),this[s]=!0,this["isout"===s?"isover":"isout"]=!1,this["isover"===s?"_over":"_out"].call(this,o),t&&"isout"===s&&(t.isout=!1,t.isover=!0,t._over.call(t,o)))})},dragStop:function(t,e){t.element.parentsUntil("body").off("scroll.droppable"),t.options.refreshPositions||V.ui.ddmanager.prepareOffsets(t,e)}})!==V.uiBackCompat&&V.widget("ui.droppable",V.ui.droppable,{options:{hoverClass:!1,activeClass:!1},_addActiveClass:function(){this._super(),this.options.activeClass&&this.element.addClass(this.options.activeClass)},_removeActiveClass:function(){this._super(),this.options.activeClass&&this.element.removeClass(this.options.activeClass)},_addHoverClass:function(){this._super(),this.options.hoverClass&&this.element.addClass(this.options.hoverClass)},_removeHoverClass:function(){this._super(),this.options.hoverClass&&this.element.removeClass(this.options.hoverClass)}});V.ui.droppable,V.widget("ui.progressbar",{version:"1.13.1",options:{classes:{"ui-progressbar":"ui-corner-all","ui-progressbar-value":"ui-corner-left","ui-progressbar-complete":"ui-corner-right"},max:100,value:0,change:null,complete:null},min:0,_create:function(){this.oldValue=this.options.value=this._constrainedValue(),this.element.attr({role:"progressbar","aria-valuemin":this.min}),this._addClass("ui-progressbar","ui-widget ui-widget-content"),this.valueDiv=V("<div>").appendTo(this.element),this._addClass(this.valueDiv,"ui-progressbar-value","ui-widget-header"),this._refreshValue()},_destroy:function(){this.element.removeAttr("role aria-valuemin aria-valuemax aria-valuenow"),this.valueDiv.remove()},value:function(t){if(void 0===t)return this.options.value;this.options.value=this._constrainedValue(t),this._refreshValue()},_constrainedValue:function(t){return void 0===t&&(t=this.options.value),this.indeterminate=!1===t,"number"!=typeof t&&(t=0),!this.indeterminate&&Math.min(this.options.max,Math.max(this.min,t))},_setOptions:function(t){var e=t.value;delete t.value,this._super(t),this.options.value=this._constrainedValue(e),this._refreshValue()},_setOption:function(t,e){"max"===t&&(e=Math.max(this.min,e)),this._super(t,e)},_setOptionDisabled:function(t){this._super(t),this.element.attr("aria-disabled",t),this._toggleClass(null,"ui-state-disabled",!!t)},_percentage:function(){return this.indeterminate?100:100*(this.options.value-this.min)/(this.options.max-this.min)},_refreshValue:function(){var t=this.options.value,e=this._percentage();this.valueDiv.toggle(this.indeterminate||t>this.min).width(e.toFixed(0)+"%"),this._toggleClass(this.valueDiv,"ui-progressbar-complete",null,t===this.options.max)._toggleClass("ui-progressbar-indeterminate",null,this.indeterminate),this.indeterminate?(this.element.removeAttr("aria-valuenow"),this.overlayDiv||(this.overlayDiv=V("<div>").appendTo(this.valueDiv),this._addClass(this.overlayDiv,"ui-progressbar-overlay"))):(this.element.attr({"aria-valuemax":this.options.max,"aria-valuenow":t}),this.overlayDiv&&(this.overlayDiv.remove(),this.overlayDiv=null)),this.oldValue!==t&&(this.oldValue=t,this._trigger("change")),t===this.options.max&&this._trigger("complete")}}),V.widget("ui.selectable",V.ui.mouse,{version:"1.13.1",options:{appendTo:"body",autoRefresh:!0,distance:0,filter:"*",tolerance:"touch",selected:null,selecting:null,start:null,stop:null,unselected:null,unselecting:null},_create:function(){var i=this;this._addClass("ui-selectable"),this.dragged=!1,this.refresh=function(){i.elementPos=V(i.element[0]).offset(),i.selectees=V(i.options.filter,i.element[0]),i._addClass(i.selectees,"ui-selectee"),i.selectees.each(function(){var t=V(this),e=t.offset(),e={left:e.left-i.elementPos.left,top:e.top-i.elementPos.top};V.data(this,"selectable-item",{element:this,$element:t,left:e.left,top:e.top,right:e.left+t.outerWidth(),bottom:e.top+t.outerHeight(),startselected:!1,selected:t.hasClass("ui-selected"),selecting:t.hasClass("ui-selecting"),unselecting:t.hasClass("ui-unselecting")})})},this.refresh(),this._mouseInit(),this.helper=V("<div>"),this._addClass(this.helper,"ui-selectable-helper")},_destroy:function(){this.selectees.removeData("selectable-item"),this._mouseDestroy()},_mouseStart:function(i){var s=this,t=this.options;this.opos=[i.pageX,i.pageY],this.elementPos=V(this.element[0]).offset(),this.options.disabled||(this.selectees=V(t.filter,this.element[0]),this._trigger("start",i),V(t.appendTo).append(this.helper),this.helper.css({left:i.pageX,top:i.pageY,width:0,height:0}),t.autoRefresh&&this.refresh(),this.selectees.filter(".ui-selected").each(function(){var t=V.data(this,"selectable-item");t.startselected=!0,i.metaKey||i.ctrlKey||(s._removeClass(t.$element,"ui-selected"),t.selected=!1,s._addClass(t.$element,"ui-unselecting"),t.unselecting=!0,s._trigger("unselecting",i,{unselecting:t.element}))}),V(i.target).parents().addBack().each(function(){var t,e=V.data(this,"selectable-item");if(e)return t=!i.metaKey&&!i.ctrlKey||!e.$element.hasClass("ui-selected"),s._removeClass(e.$element,t?"ui-unselecting":"ui-selected")._addClass(e.$element,t?"ui-selecting":"ui-unselecting"),e.unselecting=!t,e.selecting=t,(e.selected=t)?s._trigger("selecting",i,{selecting:e.element}):s._trigger("unselecting",i,{unselecting:e.element}),!1}))},_mouseDrag:function(s){if(this.dragged=!0,!this.options.disabled){var t,n=this,o=this.options,a=this.opos[0],r=this.opos[1],l=s.pageX,h=s.pageY;return l<a&&(t=l,l=a,a=t),h<r&&(t=h,h=r,r=t),this.helper.css({left:a,top:r,width:l-a,height:h-r}),this.selectees.each(function(){var t=V.data(this,"selectable-item"),e=!1,i={};t&&t.element!==n.element[0]&&(i.left=t.left+n.elementPos.left,i.right=t.right+n.elementPos.left,i.top=t.top+n.elementPos.top,i.bottom=t.bottom+n.elementPos.top,"touch"===o.tolerance?e=!(i.left>l||i.right<a||i.top>h||i.bottom<r):"fit"===o.tolerance&&(e=i.left>a&&i.right<l&&i.top>r&&i.bottom<h),e?(t.selected&&(n._removeClass(t.$element,"ui-selected"),t.selected=!1),t.unselecting&&(n._removeClass(t.$element,"ui-unselecting"),t.unselecting=!1),t.selecting||(n._addClass(t.$element,"ui-selecting"),t.selecting=!0,n._trigger("selecting",s,{selecting:t.element}))):(t.selecting&&((s.metaKey||s.ctrlKey)&&t.startselected?(n._removeClass(t.$element,"ui-selecting"),t.selecting=!1,n._addClass(t.$element,"ui-selected"),t.selected=!0):(n._removeClass(t.$element,"ui-selecting"),t.selecting=!1,t.startselected&&(n._addClass(t.$element,"ui-unselecting"),t.unselecting=!0),n._trigger("unselecting",s,{unselecting:t.element}))),t.selected&&(s.metaKey||s.ctrlKey||t.startselected||(n._removeClass(t.$element,"ui-selected"),t.selected=!1,n._addClass(t.$element,"ui-unselecting"),t.unselecting=!0,n._trigger("unselecting",s,{unselecting:t.element})))))}),!1}},_mouseStop:function(e){var i=this;return this.dragged=!1,V(".ui-unselecting",this.element[0]).each(function(){var t=V.data(this,"selectable-item");i._removeClass(t.$element,"ui-unselecting"),t.unselecting=!1,t.startselected=!1,i._trigger("unselected",e,{unselected:t.element})}),V(".ui-selecting",this.element[0]).each(function(){var t=V.data(this,"selectable-item");i._removeClass(t.$element,"ui-selecting")._addClass(t.$element,"ui-selected"),t.selecting=!1,t.selected=!0,t.startselected=!0,i._trigger("selected",e,{selected:t.element})}),this._trigger("stop",e),this.helper.remove(),!1}}),V.widget("ui.selectmenu",[V.ui.formResetMixin,{version:"1.13.1",defaultElement:"<select>",options:{appendTo:null,classes:{"ui-selectmenu-button-open":"ui-corner-top","ui-selectmenu-button-closed":"ui-corner-all"},disabled:null,icons:{button:"ui-icon-triangle-1-s"},position:{my:"left top",at:"left bottom",collision:"none"},width:!1,change:null,close:null,focus:null,open:null,select:null},_create:function(){var t=this.element.uniqueId().attr("id");this.ids={element:t,button:t+"-button",menu:t+"-menu"},this._drawButton(),this._drawMenu(),this._bindFormResetHandler(),this._rendered=!1,this.menuItems=V()},_drawButton:function(){var t,e=this,i=this._parseOption(this.element.find("option:selected"),this.element[0].selectedIndex);this.labels=this.element.labels().attr("for",this.ids.button),this._on(this.labels,{click:function(t){this.button.trigger("focus"),t.preventDefault()}}),this.element.hide(),this.button=V("<span>",{tabindex:this.options.disabled?-1:0,id:this.ids.button,role:"combobox","aria-expanded":"false","aria-autocomplete":"list","aria-owns":this.ids.menu,"aria-haspopup":"true",title:this.element.attr("title")}).insertAfter(this.element),this._addClass(this.button,"ui-selectmenu-button ui-selectmenu-button-closed","ui-button ui-widget"),t=V("<span>").appendTo(this.button),this._addClass(t,"ui-selectmenu-icon","ui-icon "+this.options.icons.button),this.buttonItem=this._renderButtonItem(i).appendTo(this.button),!1!==this.options.width&&this._resizeButton(),this._on(this.button,this._buttonEvents),this.button.one("focusin",function(){e._rendered||e._refreshMenu()})},_drawMenu:function(){var i=this;this.menu=V("<ul>",{"aria-hidden":"true","aria-labelledby":this.ids.button,id:this.ids.menu}),this.menuWrap=V("<div>").append(this.menu),this._addClass(this.menuWrap,"ui-selectmenu-menu","ui-front"),this.menuWrap.appendTo(this._appendTo()),this.menuInstance=this.menu.menu({classes:{"ui-menu":"ui-corner-bottom"},role:"listbox",select:function(t,e){t.preventDefault(),i._setSelection(),i._select(e.item.data("ui-selectmenu-item"),t)},focus:function(t,e){e=e.item.data("ui-selectmenu-item");null!=i.focusIndex&&e.index!==i.focusIndex&&(i._trigger("focus",t,{item:e}),i.isOpen||i._select(e,t)),i.focusIndex=e.index,i.button.attr("aria-activedescendant",i.menuItems.eq(e.index).attr("id"))}}).menu("instance"),this.menuInstance._off(this.menu,"mouseleave"),this.menuInstance._closeOnDocumentClick=function(){return!1},this.menuInstance._isDivider=function(){return!1}},refresh:function(){this._refreshMenu(),this.buttonItem.replaceWith(this.buttonItem=this._renderButtonItem(this._getSelectedItem().data("ui-selectmenu-item")||{})),null===this.options.width&&this._resizeButton()},_refreshMenu:function(){var t=this.element.find("option");this.menu.empty(),this._parseOptions(t),this._renderMenu(this.menu,this.items),this.menuInstance.refresh(),this.menuItems=this.menu.find("li").not(".ui-selectmenu-optgroup").find(".ui-menu-item-wrapper"),this._rendered=!0,t.length&&(t=this._getSelectedItem(),this.menuInstance.focus(null,t),this._setAria(t.data("ui-selectmenu-item")),this._setOption("disabled",this.element.prop("disabled")))},open:function(t){this.options.disabled||(this._rendered?(this._removeClass(this.menu.find(".ui-state-active"),null,"ui-state-active"),this.menuInstance.focus(null,this._getSelectedItem())):this._refreshMenu(),this.menuItems.length&&(this.isOpen=!0,this._toggleAttr(),this._resizeMenu(),this._position(),this._on(this.document,this._documentClick),this._trigger("open",t)))},_position:function(){this.menuWrap.position(V.extend({of:this.button},this.options.position))},close:function(t){this.isOpen&&(this.isOpen=!1,this._toggleAttr(),this.range=null,this._off(this.document),this._trigger("close",t))},widget:function(){return this.button},menuWidget:function(){return this.menu},_renderButtonItem:function(t){var e=V("<span>");return this._setText(e,t.label),this._addClass(e,"ui-selectmenu-text"),e},_renderMenu:function(s,t){var n=this,o="";V.each(t,function(t,e){var i;e.optgroup!==o&&(i=V("<li>",{text:e.optgroup}),n._addClass(i,"ui-selectmenu-optgroup","ui-menu-divider"+(e.element.parent("optgroup").prop("disabled")?" ui-state-disabled":"")),i.appendTo(s),o=e.optgroup),n._renderItemData(s,e)})},_renderItemData:function(t,e){return this._renderItem(t,e).data("ui-selectmenu-item",e)},_renderItem:function(t,e){var i=V("<li>"),s=V("<div>",{title:e.element.attr("title")});return e.disabled&&this._addClass(i,null,"ui-state-disabled"),this._setText(s,e.label),i.append(s).appendTo(t)},_setText:function(t,e){e?t.text(e):t.html("&#160;")},_move:function(t,e){var i,s=".ui-menu-item";this.isOpen?i=this.menuItems.eq(this.focusIndex).parent("li"):(i=this.menuItems.eq(this.element[0].selectedIndex).parent("li"),s+=":not(.ui-state-disabled)"),(s="first"===t||"last"===t?i["first"===t?"prevAll":"nextAll"](s).eq(-1):i[t+"All"](s).eq(0)).length&&this.menuInstance.focus(e,s)},_getSelectedItem:function(){return this.menuItems.eq(this.element[0].selectedIndex).parent("li")},_toggle:function(t){this[this.isOpen?"close":"open"](t)},_setSelection:function(){var t;this.range&&(window.getSelection?((t=window.getSelection()).removeAllRanges(),t.addRange(this.range)):this.range.select(),this.button.focus())},_documentClick:{mousedown:function(t){this.isOpen&&(V(t.target).closest(".ui-selectmenu-menu, #"+V.escapeSelector(this.ids.button)).length||this.close(t))}},_buttonEvents:{mousedown:function(){var t;window.getSelection?(t=window.getSelection()).rangeCount&&(this.range=t.getRangeAt(0)):this.range=document.selection.createRange()},click:function(t){this._setSelection(),this._toggle(t)},keydown:function(t){var e=!0;switch(t.keyCode){case V.ui.keyCode.TAB:case V.ui.keyCode.ESCAPE:this.close(t),e=!1;break;case V.ui.keyCode.ENTER:this.isOpen&&this._selectFocusedItem(t);break;case V.ui.keyCode.UP:t.altKey?this._toggle(t):this._move("prev",t);break;case V.ui.keyCode.DOWN:t.altKey?this._toggle(t):this._move("next",t);break;case V.ui.keyCode.SPACE:this.isOpen?this._selectFocusedItem(t):this._toggle(t);break;case V.ui.keyCode.LEFT:this._move("prev",t);break;case V.ui.keyCode.RIGHT:this._move("next",t);break;case V.ui.keyCode.HOME:case V.ui.keyCode.PAGE_UP:this._move("first",t);break;case V.ui.keyCode.END:case V.ui.keyCode.PAGE_DOWN:this._move("last",t);break;default:this.menu.trigger(t),e=!1}e&&t.preventDefault()}},_selectFocusedItem:function(t){var e=this.menuItems.eq(this.focusIndex).parent("li");e.hasClass("ui-state-disabled")||this._select(e.data("ui-selectmenu-item"),t)},_select:function(t,e){var i=this.element[0].selectedIndex;this.element[0].selectedIndex=t.index,this.buttonItem.replaceWith(this.buttonItem=this._renderButtonItem(t)),this._setAria(t),this._trigger("select",e,{item:t}),t.index!==i&&this._trigger("change",e,{item:t}),this.close(e)},_setAria:function(t){t=this.menuItems.eq(t.index).attr("id");this.button.attr({"aria-labelledby":t,"aria-activedescendant":t}),this.menu.attr("aria-activedescendant",t)},_setOption:function(t,e){var i;"icons"===t&&(i=this.button.find("span.ui-icon"),this._removeClass(i,null,this.options.icons.button)._addClass(i,null,e.button)),this._super(t,e),"appendTo"===t&&this.menuWrap.appendTo(this._appendTo()),"width"===t&&this._resizeButton()},_setOptionDisabled:function(t){this._super(t),this.menuInstance.option("disabled",t),this.button.attr("aria-disabled",t),this._toggleClass(this.button,null,"ui-state-disabled",t),this.element.prop("disabled",t),t?(this.button.attr("tabindex",-1),this.close()):this.button.attr("tabindex",0)},_appendTo:function(){var t=this.options.appendTo;return t=!(t=!(t=t&&(t.jquery||t.nodeType?V(t):this.document.find(t).eq(0)))||!t[0]?this.element.closest(".ui-front, dialog"):t).length?this.document[0].body:t},_toggleAttr:function(){this.button.attr("aria-expanded",this.isOpen),this._removeClass(this.button,"ui-selectmenu-button-"+(this.isOpen?"closed":"open"))._addClass(this.button,"ui-selectmenu-button-"+(this.isOpen?"open":"closed"))._toggleClass(this.menuWrap,"ui-selectmenu-open",null,this.isOpen),this.menu.attr("aria-hidden",!this.isOpen)},_resizeButton:function(){var t=this.options.width;!1!==t?(null===t&&(t=this.element.show().outerWidth(),this.element.hide()),this.button.outerWidth(t)):this.button.css("width","")},_resizeMenu:function(){this.menu.outerWidth(Math.max(this.button.outerWidth(),this.menu.width("").outerWidth()+1))},_getCreateOptions:function(){var t=this._super();return t.disabled=this.element.prop("disabled"),t},_parseOptions:function(t){var i=this,s=[];t.each(function(t,e){e.hidden||s.push(i._parseOption(V(e),t))}),this.items=s},_parseOption:function(t,e){var i=t.parent("optgroup");return{element:t,index:e,value:t.val(),label:t.text(),optgroup:i.attr("label")||"",disabled:i.prop("disabled")||t.prop("disabled")}},_destroy:function(){this._unbindFormResetHandler(),this.menuWrap.remove(),this.button.remove(),this.element.show(),this.element.removeUniqueId(),this.labels.attr("for",this.ids.element)}}]),V.widget("ui.slider",V.ui.mouse,{version:"1.13.1",widgetEventPrefix:"slide",options:{animate:!1,classes:{"ui-slider":"ui-corner-all","ui-slider-handle":"ui-corner-all","ui-slider-range":"ui-corner-all ui-widget-header"},distance:0,max:100,min:0,orientation:"horizontal",range:!1,step:1,value:0,values:null,change:null,slide:null,start:null,stop:null},numPages:5,_create:function(){this._keySliding=!1,this._mouseSliding=!1,this._animateOff=!0,this._handleIndex=null,this._detectOrientation(),this._mouseInit(),this._calculateNewMax(),this._addClass("ui-slider ui-slider-"+this.orientation,"ui-widget ui-widget-content"),this._refresh(),this._animateOff=!1},_refresh:function(){this._createRange(),this._createHandles(),this._setupEvents(),this._refreshValue()},_createHandles:function(){var t,e=this.options,i=this.element.find(".ui-slider-handle"),s=[],n=e.values&&e.values.length||1;for(i.length>n&&(i.slice(n).remove(),i=i.slice(0,n)),t=i.length;t<n;t++)s.push("<span tabindex='0'></span>");this.handles=i.add(V(s.join("")).appendTo(this.element)),this._addClass(this.handles,"ui-slider-handle","ui-state-default"),this.handle=this.handles.eq(0),this.handles.each(function(t){V(this).data("ui-slider-handle-index",t).attr("tabIndex",0)})},_createRange:function(){var t=this.options;t.range?(!0===t.range&&(t.values?t.values.length&&2!==t.values.length?t.values=[t.values[0],t.values[0]]:Array.isArray(t.values)&&(t.values=t.values.slice(0)):t.values=[this._valueMin(),this._valueMin()]),this.range&&this.range.length?(this._removeClass(this.range,"ui-slider-range-min ui-slider-range-max"),this.range.css({left:"",bottom:""})):(this.range=V("<div>").appendTo(this.element),this._addClass(this.range,"ui-slider-range")),"min"!==t.range&&"max"!==t.range||this._addClass(this.range,"ui-slider-range-"+t.range)):(this.range&&this.range.remove(),this.range=null)},_setupEvents:function(){this._off(this.handles),this._on(this.handles,this._handleEvents),this._hoverable(this.handles),this._focusable(this.handles)},_destroy:function(){this.handles.remove(),this.range&&this.range.remove(),this._mouseDestroy()},_mouseCapture:function(t){var i,s,n,o,e,a,r=this,l=this.options;return!l.disabled&&(this.elementSize={width:this.element.outerWidth(),height:this.element.outerHeight()},this.elementOffset=this.element.offset(),a={x:t.pageX,y:t.pageY},i=this._normValueFromMouse(a),s=this._valueMax()-this._valueMin()+1,this.handles.each(function(t){var e=Math.abs(i-r.values(t));(e<s||s===e&&(t===r._lastChangedValue||r.values(t)===l.min))&&(s=e,n=V(this),o=t)}),!1!==this._start(t,o)&&(this._mouseSliding=!0,this._handleIndex=o,this._addClass(n,null,"ui-state-active"),n.trigger("focus"),e=n.offset(),a=!V(t.target).parents().addBack().is(".ui-slider-handle"),this._clickOffset=a?{left:0,top:0}:{left:t.pageX-e.left-n.width()/2,top:t.pageY-e.top-n.height()/2-(parseInt(n.css("borderTopWidth"),10)||0)-(parseInt(n.css("borderBottomWidth"),10)||0)+(parseInt(n.css("marginTop"),10)||0)},this.handles.hasClass("ui-state-hover")||this._slide(t,o,i),this._animateOff=!0))},_mouseStart:function(){return!0},_mouseDrag:function(t){var e={x:t.pageX,y:t.pageY},e=this._normValueFromMouse(e);return this._slide(t,this._handleIndex,e),!1},_mouseStop:function(t){return this._removeClass(this.handles,null,"ui-state-active"),this._mouseSliding=!1,this._stop(t,this._handleIndex),this._change(t,this._handleIndex),this._handleIndex=null,this._clickOffset=null,this._animateOff=!1},_detectOrientation:function(){this.orientation="vertical"===this.options.orientation?"vertical":"horizontal"},_normValueFromMouse:function(t){var e,t="horizontal"===this.orientation?(e=this.elementSize.width,t.x-this.elementOffset.left-(this._clickOffset?this._clickOffset.left:0)):(e=this.elementSize.height,t.y-this.elementOffset.top-(this._clickOffset?this._clickOffset.top:0)),t=t/e;return(t=1<t?1:t)<0&&(t=0),"vertical"===this.orientation&&(t=1-t),e=this._valueMax()-this._valueMin(),e=this._valueMin()+t*e,this._trimAlignValue(e)},_uiHash:function(t,e,i){var s={handle:this.handles[t],handleIndex:t,value:void 0!==e?e:this.value()};return this._hasMultipleValues()&&(s.value=void 0!==e?e:this.values(t),s.values=i||this.values()),s},_hasMultipleValues:function(){return this.options.values&&this.options.values.length},_start:function(t,e){return this._trigger("start",t,this._uiHash(e))},_slide:function(t,e,i){var s,n=this.value(),o=this.values();this._hasMultipleValues()&&(s=this.values(e?0:1),n=this.values(e),2===this.options.values.length&&!0===this.options.range&&(i=0===e?Math.min(s,i):Math.max(s,i)),o[e]=i),i!==n&&!1!==this._trigger("slide",t,this._uiHash(e,i,o))&&(this._hasMultipleValues()?this.values(e,i):this.value(i))},_stop:function(t,e){this._trigger("stop",t,this._uiHash(e))},_change:function(t,e){this._keySliding||this._mouseSliding||(this._lastChangedValue=e,this._trigger("change",t,this._uiHash(e)))},value:function(t){return arguments.length?(this.options.value=this._trimAlignValue(t),this._refreshValue(),void this._change(null,0)):this._value()},values:function(t,e){var i,s,n;if(1<arguments.length)return this.options.values[t]=this._trimAlignValue(e),this._refreshValue(),void this._change(null,t);if(!arguments.length)return this._values();if(!Array.isArray(t))return this._hasMultipleValues()?this._values(t):this.value();for(i=this.options.values,s=t,n=0;n<i.length;n+=1)i[n]=this._trimAlignValue(s[n]),this._change(null,n);this._refreshValue()},_setOption:function(t,e){var i,s=0;switch("range"===t&&!0===this.options.range&&("min"===e?(this.options.value=this._values(0),this.options.values=null):"max"===e&&(this.options.value=this._values(this.options.values.length-1),this.options.values=null)),Array.isArray(this.options.values)&&(s=this.options.values.length),this._super(t,e),t){case"orientation":this._detectOrientation(),this._removeClass("ui-slider-horizontal ui-slider-vertical")._addClass("ui-slider-"+this.orientation),this._refreshValue(),this.options.range&&this._refreshRange(e),this.handles.css("horizontal"===e?"bottom":"left","");break;case"value":this._animateOff=!0,this._refreshValue(),this._change(null,0),this._animateOff=!1;break;case"values":for(this._animateOff=!0,this._refreshValue(),i=s-1;0<=i;i--)this._change(null,i);this._animateOff=!1;break;case"step":case"min":case"max":this._animateOff=!0,this._calculateNewMax(),this._refreshValue(),this._animateOff=!1;break;case"range":this._animateOff=!0,this._refresh(),this._animateOff=!1}},_setOptionDisabled:function(t){this._super(t),this._toggleClass(null,"ui-state-disabled",!!t)},_value:function(){var t=this.options.value;return t=this._trimAlignValue(t)},_values:function(t){var e,i;if(arguments.length)return t=this.options.values[t],t=this._trimAlignValue(t);if(this._hasMultipleValues()){for(e=this.options.values.slice(),i=0;i<e.length;i+=1)e[i]=this._trimAlignValue(e[i]);return e}return[]},_trimAlignValue:function(t){if(t<=this._valueMin())return this._valueMin();if(t>=this._valueMax())return this._valueMax();var e=0<this.options.step?this.options.step:1,i=(t-this._valueMin())%e,t=t-i;return 2*Math.abs(i)>=e&&(t+=0<i?e:-e),parseFloat(t.toFixed(5))},_calculateNewMax:function(){var t=this.options.max,e=this._valueMin(),i=this.options.step;(t=Math.round((t-e)/i)*i+e)>this.options.max&&(t-=i),this.max=parseFloat(t.toFixed(this._precision()))},_precision:function(){var t=this._precisionOf(this.options.step);return t=null!==this.options.min?Math.max(t,this._precisionOf(this.options.min)):t},_precisionOf:function(t){var e=t.toString(),t=e.indexOf(".");return-1===t?0:e.length-t-1},_valueMin:function(){return this.options.min},_valueMax:function(){return this.max},_refreshRange:function(t){"vertical"===t&&this.range.css({width:"",left:""}),"horizontal"===t&&this.range.css({height:"",bottom:""})},_refreshValue:function(){var e,i,t,s,n,o=this.options.range,a=this.options,r=this,l=!this._animateOff&&a.animate,h={};this._hasMultipleValues()?this.handles.each(function(t){i=(r.values(t)-r._valueMin())/(r._valueMax()-r._valueMin())*100,h["horizontal"===r.orientation?"left":"bottom"]=i+"%",V(this).stop(1,1)[l?"animate":"css"](h,a.animate),!0===r.options.range&&("horizontal"===r.orientation?(0===t&&r.range.stop(1,1)[l?"animate":"css"]({left:i+"%"},a.animate),1===t&&r.range[l?"animate":"css"]({width:i-e+"%"},{queue:!1,duration:a.animate})):(0===t&&r.range.stop(1,1)[l?"animate":"css"]({bottom:i+"%"},a.animate),1===t&&r.range[l?"animate":"css"]({height:i-e+"%"},{queue:!1,duration:a.animate}))),e=i}):(t=this.value(),s=this._valueMin(),n=this._valueMax(),i=n!==s?(t-s)/(n-s)*100:0,h["horizontal"===this.orientation?"left":"bottom"]=i+"%",this.handle.stop(1,1)[l?"animate":"css"](h,a.animate),"min"===o&&"horizontal"===this.orientation&&this.range.stop(1,1)[l?"animate":"css"]({width:i+"%"},a.animate),"max"===o&&"horizontal"===this.orientation&&this.range.stop(1,1)[l?"animate":"css"]({width:100-i+"%"},a.animate),"min"===o&&"vertical"===this.orientation&&this.range.stop(1,1)[l?"animate":"css"]({height:i+"%"},a.animate),"max"===o&&"vertical"===this.orientation&&this.range.stop(1,1)[l?"animate":"css"]({height:100-i+"%"},a.animate))},_handleEvents:{keydown:function(t){var e,i,s,n=V(t.target).data("ui-slider-handle-index");switch(t.keyCode){case V.ui.keyCode.HOME:case V.ui.keyCode.END:case V.ui.keyCode.PAGE_UP:case V.ui.keyCode.PAGE_DOWN:case V.ui.keyCode.UP:case V.ui.keyCode.RIGHT:case V.ui.keyCode.DOWN:case V.ui.keyCode.LEFT:if(t.preventDefault(),!this._keySliding&&(this._keySliding=!0,this._addClass(V(t.target),null,"ui-state-active"),!1===this._start(t,n)))return}switch(s=this.options.step,e=i=this._hasMultipleValues()?this.values(n):this.value(),t.keyCode){case V.ui.keyCode.HOME:i=this._valueMin();break;case V.ui.keyCode.END:i=this._valueMax();break;case V.ui.keyCode.PAGE_UP:i=this._trimAlignValue(e+(this._valueMax()-this._valueMin())/this.numPages);break;case V.ui.keyCode.PAGE_DOWN:i=this._trimAlignValue(e-(this._valueMax()-this._valueMin())/this.numPages);break;case V.ui.keyCode.UP:case V.ui.keyCode.RIGHT:if(e===this._valueMax())return;i=this._trimAlignValue(e+s);break;case V.ui.keyCode.DOWN:case V.ui.keyCode.LEFT:if(e===this._valueMin())return;i=this._trimAlignValue(e-s)}this._slide(t,n,i)},keyup:function(t){var e=V(t.target).data("ui-slider-handle-index");this._keySliding&&(this._keySliding=!1,this._stop(t,e),this._change(t,e),this._removeClass(V(t.target),null,"ui-state-active"))}}}),V.widget("ui.sortable",V.ui.mouse,{version:"1.13.1",widgetEventPrefix:"sort",ready:!1,options:{appendTo:"parent",axis:!1,connectWith:!1,containment:!1,cursor:"auto",cursorAt:!1,dropOnEmpty:!0,forcePlaceholderSize:!1,forceHelperSize:!1,grid:!1,handle:!1,helper:"original",items:"> *",opacity:!1,placeholder:!1,revert:!1,scroll:!0,scrollSensitivity:20,scrollSpeed:20,scope:"default",tolerance:"intersect",zIndex:1e3,activate:null,beforeStop:null,change:null,deactivate:null,out:null,over:null,receive:null,remove:null,sort:null,start:null,stop:null,update:null},_isOverAxis:function(t,e,i){return e<=t&&t<e+i},_isFloating:function(t){return/left|right/.test(t.css("float"))||/inline|table-cell/.test(t.css("display"))},_create:function(){this.containerCache={},this._addClass("ui-sortable"),this.refresh(),this.offset=this.element.offset(),this._mouseInit(),this._setHandleClassName(),this.ready=!0},_setOption:function(t,e){this._super(t,e),"handle"===t&&this._setHandleClassName()},_setHandleClassName:function(){var t=this;this._removeClass(this.element.find(".ui-sortable-handle"),"ui-sortable-handle"),V.each(this.items,function(){t._addClass(this.instance.options.handle?this.item.find(this.instance.options.handle):this.item,"ui-sortable-handle")})},_destroy:function(){this._mouseDestroy();for(var t=this.items.length-1;0<=t;t--)this.items[t].item.removeData(this.widgetName+"-item");return this},_mouseCapture:function(t,e){var i=null,s=!1,n=this;return!this.reverting&&(!this.options.disabled&&"static"!==this.options.type&&(this._refreshItems(t),V(t.target).parents().each(function(){if(V.data(this,n.widgetName+"-item")===n)return i=V(this),!1}),!!(i=V.data(t.target,n.widgetName+"-item")===n?V(t.target):i)&&(!(this.options.handle&&!e&&(V(this.options.handle,i).find("*").addBack().each(function(){this===t.target&&(s=!0)}),!s))&&(this.currentItem=i,this._removeCurrentsFromItems(),!0))))},_mouseStart:function(t,e,i){var s,n,o=this.options;if((this.currentContainer=this).refreshPositions(),this.appendTo=V("parent"!==o.appendTo?o.appendTo:this.currentItem.parent()),this.helper=this._createHelper(t),this._cacheHelperProportions(),this._cacheMargins(),this.offset=this.currentItem.offset(),this.offset={top:this.offset.top-this.margins.top,left:this.offset.left-this.margins.left},V.extend(this.offset,{click:{left:t.pageX-this.offset.left,top:t.pageY-this.offset.top},relative:this._getRelativeOffset()}),this.helper.css("position","absolute"),this.cssPosition=this.helper.css("position"),o.cursorAt&&this._adjustOffsetFromHelper(o.cursorAt),this.domPosition={prev:this.currentItem.prev()[0],parent:this.currentItem.parent()[0]},this.helper[0]!==this.currentItem[0]&&this.currentItem.hide(),this._createPlaceholder(),this.scrollParent=this.placeholder.scrollParent(),V.extend(this.offset,{parent:this._getParentOffset()}),o.containment&&this._setContainment(),o.cursor&&"auto"!==o.cursor&&(n=this.document.find("body"),this.storedCursor=n.css("cursor"),n.css("cursor",o.cursor),this.storedStylesheet=V("<style>*{ cursor: "+o.cursor+" !important; }</style>").appendTo(n)),o.zIndex&&(this.helper.css("zIndex")&&(this._storedZIndex=this.helper.css("zIndex")),this.helper.css("zIndex",o.zIndex)),o.opacity&&(this.helper.css("opacity")&&(this._storedOpacity=this.helper.css("opacity")),this.helper.css("opacity",o.opacity)),this.scrollParent[0]!==this.document[0]&&"HTML"!==this.scrollParent[0].tagName&&(this.overflowOffset=this.scrollParent.offset()),this._trigger("start",t,this._uiHash()),this._preserveHelperProportions||this._cacheHelperProportions(),!i)for(s=this.containers.length-1;0<=s;s--)this.containers[s]._trigger("activate",t,this._uiHash(this));return V.ui.ddmanager&&(V.ui.ddmanager.current=this),V.ui.ddmanager&&!o.dropBehaviour&&V.ui.ddmanager.prepareOffsets(this,t),this.dragging=!0,this._addClass(this.helper,"ui-sortable-helper"),this.helper.parent().is(this.appendTo)||(this.helper.detach().appendTo(this.appendTo),this.offset.parent=this._getParentOffset()),this.position=this.originalPosition=this._generatePosition(t),this.originalPageX=t.pageX,this.originalPageY=t.pageY,this.lastPositionAbs=this.positionAbs=this._convertPositionTo("absolute"),this._mouseDrag(t),!0},_scroll:function(t){var e=this.options,i=!1;return this.scrollParent[0]!==this.document[0]&&"HTML"!==this.scrollParent[0].tagName?(this.overflowOffset.top+this.scrollParent[0].offsetHeight-t.pageY<e.scrollSensitivity?this.scrollParent[0].scrollTop=i=this.scrollParent[0].scrollTop+e.scrollSpeed:t.pageY-this.overflowOffset.top<e.scrollSensitivity&&(this.scrollParent[0].scrollTop=i=this.scrollParent[0].scrollTop-e.scrollSpeed),this.overflowOffset.left+this.scrollParent[0].offsetWidth-t.pageX<e.scrollSensitivity?this.scrollParent[0].scrollLeft=i=this.scrollParent[0].scrollLeft+e.scrollSpeed:t.pageX-this.overflowOffset.left<e.scrollSensitivity&&(this.scrollParent[0].scrollLeft=i=this.scrollParent[0].scrollLeft-e.scrollSpeed)):(t.pageY-this.document.scrollTop()<e.scrollSensitivity?i=this.document.scrollTop(this.document.scrollTop()-e.scrollSpeed):this.window.height()-(t.pageY-this.document.scrollTop())<e.scrollSensitivity&&(i=this.document.scrollTop(this.document.scrollTop()+e.scrollSpeed)),t.pageX-this.document.scrollLeft()<e.scrollSensitivity?i=this.document.scrollLeft(this.document.scrollLeft()-e.scrollSpeed):this.window.width()-(t.pageX-this.document.scrollLeft())<e.scrollSensitivity&&(i=this.document.scrollLeft(this.document.scrollLeft()+e.scrollSpeed))),i},_mouseDrag:function(t){var e,i,s,n,o=this.options;for(this.position=this._generatePosition(t),this.positionAbs=this._convertPositionTo("absolute"),this.options.axis&&"y"===this.options.axis||(this.helper[0].style.left=this.position.left+"px"),this.options.axis&&"x"===this.options.axis||(this.helper[0].style.top=this.position.top+"px"),o.scroll&&!1!==this._scroll(t)&&(this._refreshItemPositions(!0),V.ui.ddmanager&&!o.dropBehaviour&&V.ui.ddmanager.prepareOffsets(this,t)),this.dragDirection={vertical:this._getDragVerticalDirection(),horizontal:this._getDragHorizontalDirection()},e=this.items.length-1;0<=e;e--)if(s=(i=this.items[e]).item[0],(n=this._intersectsWithPointer(i))&&i.instance===this.currentContainer&&!(s===this.currentItem[0]||this.placeholder[1===n?"next":"prev"]()[0]===s||V.contains(this.placeholder[0],s)||"semi-dynamic"===this.options.type&&V.contains(this.element[0],s))){if(this.direction=1===n?"down":"up","pointer"!==this.options.tolerance&&!this._intersectsWithSides(i))break;this._rearrange(t,i),this._trigger("change",t,this._uiHash());break}return this._contactContainers(t),V.ui.ddmanager&&V.ui.ddmanager.drag(this,t),this._trigger("sort",t,this._uiHash()),this.lastPositionAbs=this.positionAbs,!1},_mouseStop:function(t,e){var i,s,n,o;if(t)return V.ui.ddmanager&&!this.options.dropBehaviour&&V.ui.ddmanager.drop(this,t),this.options.revert?(s=(i=this).placeholder.offset(),o={},(n=this.options.axis)&&"x"!==n||(o.left=s.left-this.offset.parent.left-this.margins.left+(this.offsetParent[0]===this.document[0].body?0:this.offsetParent[0].scrollLeft)),n&&"y"!==n||(o.top=s.top-this.offset.parent.top-this.margins.top+(this.offsetParent[0]===this.document[0].body?0:this.offsetParent[0].scrollTop)),this.reverting=!0,V(this.helper).animate(o,parseInt(this.options.revert,10)||500,function(){i._clear(t)})):this._clear(t,e),!1},cancel:function(){if(this.dragging){this._mouseUp(new V.Event("mouseup",{target:null})),"original"===this.options.helper?(this.currentItem.css(this._storedCSS),this._removeClass(this.currentItem,"ui-sortable-helper")):this.currentItem.show();for(var t=this.containers.length-1;0<=t;t--)this.containers[t]._trigger("deactivate",null,this._uiHash(this)),this.containers[t].containerCache.over&&(this.containers[t]._trigger("out",null,this._uiHash(this)),this.containers[t].containerCache.over=0)}return this.placeholder&&(this.placeholder[0].parentNode&&this.placeholder[0].parentNode.removeChild(this.placeholder[0]),"original"!==this.options.helper&&this.helper&&this.helper[0].parentNode&&this.helper.remove(),V.extend(this,{helper:null,dragging:!1,reverting:!1,_noFinalSort:null}),this.domPosition.prev?V(this.domPosition.prev).after(this.currentItem):V(this.domPosition.parent).prepend(this.currentItem)),this},serialize:function(e){var t=this._getItemsAsjQuery(e&&e.connected),i=[];return e=e||{},V(t).each(function(){var t=(V(e.item||this).attr(e.attribute||"id")||"").match(e.expression||/(.+)[\-=_](.+)/);t&&i.push((e.key||t[1]+"[]")+"="+(e.key&&e.expression?t[1]:t[2]))}),!i.length&&e.key&&i.push(e.key+"="),i.join("&")},toArray:function(t){var e=this._getItemsAsjQuery(t&&t.connected),i=[];return t=t||{},e.each(function(){i.push(V(t.item||this).attr(t.attribute||"id")||"")}),i},_intersectsWith:function(t){var e=this.positionAbs.left,i=e+this.helperProportions.width,s=this.positionAbs.top,n=s+this.helperProportions.height,o=t.left,a=o+t.width,r=t.top,l=r+t.height,h=this.offset.click.top,c=this.offset.click.left,h="x"===this.options.axis||r<s+h&&s+h<l,c="y"===this.options.axis||o<e+c&&e+c<a;return"pointer"===this.options.tolerance||this.options.forcePointerForContainers||"pointer"!==this.options.tolerance&&this.helperProportions[this.floating?"width":"height"]>t[this.floating?"width":"height"]?h&&c:o<e+this.helperProportions.width/2&&i-this.helperProportions.width/2<a&&r<s+this.helperProportions.height/2&&n-this.helperProportions.height/2<l},_intersectsWithPointer:function(t){var e="x"===this.options.axis||this._isOverAxis(this.positionAbs.top+this.offset.click.top,t.top,t.height),t="y"===this.options.axis||this._isOverAxis(this.positionAbs.left+this.offset.click.left,t.left,t.width);return!(!e||!t)&&(e=this.dragDirection.vertical,t=this.dragDirection.horizontal,this.floating?"right"===t||"down"===e?2:1:e&&("down"===e?2:1))},_intersectsWithSides:function(t){var e=this._isOverAxis(this.positionAbs.top+this.offset.click.top,t.top+t.height/2,t.height),i=this._isOverAxis(this.positionAbs.left+this.offset.click.left,t.left+t.width/2,t.width),s=this.dragDirection.vertical,t=this.dragDirection.horizontal;return this.floating&&t?"right"===t&&i||"left"===t&&!i:s&&("down"===s&&e||"up"===s&&!e)},_getDragVerticalDirection:function(){var t=this.positionAbs.top-this.lastPositionAbs.top;return 0!=t&&(0<t?"down":"up")},_getDragHorizontalDirection:function(){var t=this.positionAbs.left-this.lastPositionAbs.left;return 0!=t&&(0<t?"right":"left")},refresh:function(t){return this._refreshItems(t),this._setHandleClassName(),this.refreshPositions(),this},_connectWith:function(){var t=this.options;return t.connectWith.constructor===String?[t.connectWith]:t.connectWith},_getItemsAsjQuery:function(t){var e,i,s,n,o=[],a=[],r=this._connectWith();if(r&&t)for(e=r.length-1;0<=e;e--)for(i=(s=V(r[e],this.document[0])).length-1;0<=i;i--)(n=V.data(s[i],this.widgetFullName))&&n!==this&&!n.options.disabled&&a.push(["function"==typeof n.options.items?n.options.items.call(n.element):V(n.options.items,n.element).not(".ui-sortable-helper").not(".ui-sortable-placeholder"),n]);function l(){o.push(this)}for(a.push(["function"==typeof this.options.items?this.options.items.call(this.element,null,{options:this.options,item:this.currentItem}):V(this.options.items,this.element).not(".ui-sortable-helper").not(".ui-sortable-placeholder"),this]),e=a.length-1;0<=e;e--)a[e][0].each(l);return V(o)},_removeCurrentsFromItems:function(){var i=this.currentItem.find(":data("+this.widgetName+"-item)");this.items=V.grep(this.items,function(t){for(var e=0;e<i.length;e++)if(i[e]===t.item[0])return!1;return!0})},_refreshItems:function(t){this.items=[],this.containers=[this];var e,i,s,n,o,a,r,l,h=this.items,c=[["function"==typeof this.options.items?this.options.items.call(this.element[0],t,{item:this.currentItem}):V(this.options.items,this.element),this]],u=this._connectWith();if(u&&this.ready)for(e=u.length-1;0<=e;e--)for(i=(s=V(u[e],this.document[0])).length-1;0<=i;i--)(n=V.data(s[i],this.widgetFullName))&&n!==this&&!n.options.disabled&&(c.push(["function"==typeof n.options.items?n.options.items.call(n.element[0],t,{item:this.currentItem}):V(n.options.items,n.element),n]),this.containers.push(n));for(e=c.length-1;0<=e;e--)for(o=c[e][1],l=(a=c[e][i=0]).length;i<l;i++)(r=V(a[i])).data(this.widgetName+"-item",o),h.push({item:r,instance:o,width:0,height:0,left:0,top:0})},_refreshItemPositions:function(t){for(var e,i,s=this.items.length-1;0<=s;s--)e=this.items[s],this.currentContainer&&e.instance!==this.currentContainer&&e.item[0]!==this.currentItem[0]||(i=this.options.toleranceElement?V(this.options.toleranceElement,e.item):e.item,t||(e.width=i.outerWidth(),e.height=i.outerHeight()),i=i.offset(),e.left=i.left,e.top=i.top)},refreshPositions:function(t){var e,i;if(this.floating=!!this.items.length&&("x"===this.options.axis||this._isFloating(this.items[0].item)),this.offsetParent&&this.helper&&(this.offset.parent=this._getParentOffset()),this._refreshItemPositions(t),this.options.custom&&this.options.custom.refreshContainers)this.options.custom.refreshContainers.call(this);else for(e=this.containers.length-1;0<=e;e--)i=this.containers[e].element.offset(),this.containers[e].containerCache.left=i.left,this.containers[e].containerCache.top=i.top,this.containers[e].containerCache.width=this.containers[e].element.outerWidth(),this.containers[e].containerCache.height=this.containers[e].element.outerHeight();return this},_createPlaceholder:function(i){var s,n,o=(i=i||this).options;o.placeholder&&o.placeholder.constructor!==String||(s=o.placeholder,n=i.currentItem[0].nodeName.toLowerCase(),o.placeholder={element:function(){var t=V("<"+n+">",i.document[0]);return i._addClass(t,"ui-sortable-placeholder",s||i.currentItem[0].className)._removeClass(t,"ui-sortable-helper"),"tbody"===n?i._createTrPlaceholder(i.currentItem.find("tr").eq(0),V("<tr>",i.document[0]).appendTo(t)):"tr"===n?i._createTrPlaceholder(i.currentItem,t):"img"===n&&t.attr("src",i.currentItem.attr("src")),s||t.css("visibility","hidden"),t},update:function(t,e){s&&!o.forcePlaceholderSize||(e.height()&&(!o.forcePlaceholderSize||"tbody"!==n&&"tr"!==n)||e.height(i.currentItem.innerHeight()-parseInt(i.currentItem.css("paddingTop")||0,10)-parseInt(i.currentItem.css("paddingBottom")||0,10)),e.width()||e.width(i.currentItem.innerWidth()-parseInt(i.currentItem.css("paddingLeft")||0,10)-parseInt(i.currentItem.css("paddingRight")||0,10)))}}),i.placeholder=V(o.placeholder.element.call(i.element,i.currentItem)),i.currentItem.after(i.placeholder),o.placeholder.update(i,i.placeholder)},_createTrPlaceholder:function(t,e){var i=this;t.children().each(function(){V("<td>&#160;</td>",i.document[0]).attr("colspan",V(this).attr("colspan")||1).appendTo(e)})},_contactContainers:function(t){for(var e,i,s,n,o,a,r,l,h,c=null,u=null,d=this.containers.length-1;0<=d;d--)V.contains(this.currentItem[0],this.containers[d].element[0])||(this._intersectsWith(this.containers[d].containerCache)?c&&V.contains(this.containers[d].element[0],c.element[0])||(c=this.containers[d],u=d):this.containers[d].containerCache.over&&(this.containers[d]._trigger("out",t,this._uiHash(this)),this.containers[d].containerCache.over=0));if(c)if(1===this.containers.length)this.containers[u].containerCache.over||(this.containers[u]._trigger("over",t,this._uiHash(this)),this.containers[u].containerCache.over=1);else{for(i=1e4,s=null,n=(l=c.floating||this._isFloating(this.currentItem))?"left":"top",o=l?"width":"height",h=l?"pageX":"pageY",e=this.items.length-1;0<=e;e--)V.contains(this.containers[u].element[0],this.items[e].item[0])&&this.items[e].item[0]!==this.currentItem[0]&&(a=this.items[e].item.offset()[n],r=!1,t[h]-a>this.items[e][o]/2&&(r=!0),Math.abs(t[h]-a)<i&&(i=Math.abs(t[h]-a),s=this.items[e],this.direction=r?"up":"down"));(s||this.options.dropOnEmpty)&&(this.currentContainer!==this.containers[u]?(s?this._rearrange(t,s,null,!0):this._rearrange(t,null,this.containers[u].element,!0),this._trigger("change",t,this._uiHash()),this.containers[u]._trigger("change",t,this._uiHash(this)),this.currentContainer=this.containers[u],this.options.placeholder.update(this.currentContainer,this.placeholder),this.scrollParent=this.placeholder.scrollParent(),this.scrollParent[0]!==this.document[0]&&"HTML"!==this.scrollParent[0].tagName&&(this.overflowOffset=this.scrollParent.offset()),this.containers[u]._trigger("over",t,this._uiHash(this)),this.containers[u].containerCache.over=1):this.currentContainer.containerCache.over||(this.containers[u]._trigger("over",t,this._uiHash()),this.currentContainer.containerCache.over=1))}},_createHelper:function(t){var e=this.options,t="function"==typeof e.helper?V(e.helper.apply(this.element[0],[t,this.currentItem])):"clone"===e.helper?this.currentItem.clone():this.currentItem;return t.parents("body").length||this.appendTo[0].appendChild(t[0]),t[0]===this.currentItem[0]&&(this._storedCSS={width:this.currentItem[0].style.width,height:this.currentItem[0].style.height,position:this.currentItem.css("position"),top:this.currentItem.css("top"),left:this.currentItem.css("left")}),t[0].style.width&&!e.forceHelperSize||t.width(this.currentItem.width()),t[0].style.height&&!e.forceHelperSize||t.height(this.currentItem.height()),t},_adjustOffsetFromHelper:function(t){"string"==typeof t&&(t=t.split(" ")),"left"in(t=Array.isArray(t)?{left:+t[0],top:+t[1]||0}:t)&&(this.offset.click.left=t.left+this.margins.left),"right"in t&&(this.offset.click.left=this.helperProportions.width-t.right+this.margins.left),"top"in t&&(this.offset.click.top=t.top+this.margins.top),"bottom"in t&&(this.offset.click.top=this.helperProportions.height-t.bottom+this.margins.top)},_getParentOffset:function(){this.offsetParent=this.helper.offsetParent();var t=this.offsetParent.offset();return"absolute"===this.cssPosition&&this.scrollParent[0]!==this.document[0]&&V.contains(this.scrollParent[0],this.offsetParent[0])&&(t.left+=this.scrollParent.scrollLeft(),t.top+=this.scrollParent.scrollTop()),{top:(t=this.offsetParent[0]===this.document[0].body||this.offsetParent[0].tagName&&"html"===this.offsetParent[0].tagName.toLowerCase()&&V.ui.ie?{top:0,left:0}:t).top+(parseInt(this.offsetParent.css("borderTopWidth"),10)||0),left:t.left+(parseInt(this.offsetParent.css("borderLeftWidth"),10)||0)}},_getRelativeOffset:function(){if("relative"!==this.cssPosition)return{top:0,left:0};var t=this.currentItem.position();return{top:t.top-(parseInt(this.helper.css("top"),10)||0)+this.scrollParent.scrollTop(),left:t.left-(parseInt(this.helper.css("left"),10)||0)+this.scrollParent.scrollLeft()}},_cacheMargins:function(){this.margins={left:parseInt(this.currentItem.css("marginLeft"),10)||0,top:parseInt(this.currentItem.css("marginTop"),10)||0}},_cacheHelperProportions:function(){this.helperProportions={width:this.helper.outerWidth(),height:this.helper.outerHeight()}},_setContainment:function(){var t,e,i=this.options;"parent"===i.containment&&(i.containment=this.helper[0].parentNode),"document"!==i.containment&&"window"!==i.containment||(this.containment=[0-this.offset.relative.left-this.offset.parent.left,0-this.offset.relative.top-this.offset.parent.top,"document"===i.containment?this.document.width():this.window.width()-this.helperProportions.width-this.margins.left,("document"===i.containment?this.document.height()||document.body.parentNode.scrollHeight:this.window.height()||this.document[0].body.parentNode.scrollHeight)-this.helperProportions.height-this.margins.top]),/^(document|window|parent)$/.test(i.containment)||(t=V(i.containment)[0],e=V(i.containment).offset(),i="hidden"!==V(t).css("overflow"),this.containment=[e.left+(parseInt(V(t).css("borderLeftWidth"),10)||0)+(parseInt(V(t).css("paddingLeft"),10)||0)-this.margins.left,e.top+(parseInt(V(t).css("borderTopWidth"),10)||0)+(parseInt(V(t).css("paddingTop"),10)||0)-this.margins.top,e.left+(i?Math.max(t.scrollWidth,t.offsetWidth):t.offsetWidth)-(parseInt(V(t).css("borderLeftWidth"),10)||0)-(parseInt(V(t).css("paddingRight"),10)||0)-this.helperProportions.width-this.margins.left,e.top+(i?Math.max(t.scrollHeight,t.offsetHeight):t.offsetHeight)-(parseInt(V(t).css("borderTopWidth"),10)||0)-(parseInt(V(t).css("paddingBottom"),10)||0)-this.helperProportions.height-this.margins.top])},_convertPositionTo:function(t,e){e=e||this.position;var i="absolute"===t?1:-1,s="absolute"!==this.cssPosition||this.scrollParent[0]!==this.document[0]&&V.contains(this.scrollParent[0],this.offsetParent[0])?this.scrollParent:this.offsetParent,t=/(html|body)/i.test(s[0].tagName);return{top:e.top+this.offset.relative.top*i+this.offset.parent.top*i-("fixed"===this.cssPosition?-this.scrollParent.scrollTop():t?0:s.scrollTop())*i,left:e.left+this.offset.relative.left*i+this.offset.parent.left*i-("fixed"===this.cssPosition?-this.scrollParent.scrollLeft():t?0:s.scrollLeft())*i}},_generatePosition:function(t){var e=this.options,i=t.pageX,s=t.pageY,n="absolute"!==this.cssPosition||this.scrollParent[0]!==this.document[0]&&V.contains(this.scrollParent[0],this.offsetParent[0])?this.scrollParent:this.offsetParent,o=/(html|body)/i.test(n[0].tagName);return"relative"!==this.cssPosition||this.scrollParent[0]!==this.document[0]&&this.scrollParent[0]!==this.offsetParent[0]||(this.offset.relative=this._getRelativeOffset()),this.originalPosition&&(this.containment&&(t.pageX-this.offset.click.left<this.containment[0]&&(i=this.containment[0]+this.offset.click.left),t.pageY-this.offset.click.top<this.containment[1]&&(s=this.containment[1]+this.offset.click.top),t.pageX-this.offset.click.left>this.containment[2]&&(i=this.containment[2]+this.offset.click.left),t.pageY-this.offset.click.top>this.containment[3]&&(s=this.containment[3]+this.offset.click.top)),e.grid&&(t=this.originalPageY+Math.round((s-this.originalPageY)/e.grid[1])*e.grid[1],s=!this.containment||t-this.offset.click.top>=this.containment[1]&&t-this.offset.click.top<=this.containment[3]?t:t-this.offset.click.top>=this.containment[1]?t-e.grid[1]:t+e.grid[1],t=this.originalPageX+Math.round((i-this.originalPageX)/e.grid[0])*e.grid[0],i=!this.containment||t-this.offset.click.left>=this.containment[0]&&t-this.offset.click.left<=this.containment[2]?t:t-this.offset.click.left>=this.containment[0]?t-e.grid[0]:t+e.grid[0])),{top:s-this.offset.click.top-this.offset.relative.top-this.offset.parent.top+("fixed"===this.cssPosition?-this.scrollParent.scrollTop():o?0:n.scrollTop()),left:i-this.offset.click.left-this.offset.relative.left-this.offset.parent.left+("fixed"===this.cssPosition?-this.scrollParent.scrollLeft():o?0:n.scrollLeft())}},_rearrange:function(t,e,i,s){i?i[0].appendChild(this.placeholder[0]):e.item[0].parentNode.insertBefore(this.placeholder[0],"down"===this.direction?e.item[0]:e.item[0].nextSibling),this.counter=this.counter?++this.counter:1;var n=this.counter;this._delay(function(){n===this.counter&&this.refreshPositions(!s)})},_clear:function(t,e){this.reverting=!1;var i,s=[];if(!this._noFinalSort&&this.currentItem.parent().length&&this.placeholder.before(this.currentItem),this._noFinalSort=null,this.helper[0]===this.currentItem[0]){for(i in this._storedCSS)"auto"!==this._storedCSS[i]&&"static"!==this._storedCSS[i]||(this._storedCSS[i]="");this.currentItem.css(this._storedCSS),this._removeClass(this.currentItem,"ui-sortable-helper")}else this.currentItem.show();function n(e,i,s){return function(t){s._trigger(e,t,i._uiHash(i))}}for(this.fromOutside&&!e&&s.push(function(t){this._trigger("receive",t,this._uiHash(this.fromOutside))}),!this.fromOutside&&this.domPosition.prev===this.currentItem.prev().not(".ui-sortable-helper")[0]&&this.domPosition.parent===this.currentItem.parent()[0]||e||s.push(function(t){this._trigger("update",t,this._uiHash())}),this!==this.currentContainer&&(e||(s.push(function(t){this._trigger("remove",t,this._uiHash())}),s.push(function(e){return function(t){e._trigger("receive",t,this._uiHash(this))}}.call(this,this.currentContainer)),s.push(function(e){return function(t){e._trigger("update",t,this._uiHash(this))}}.call(this,this.currentContainer)))),i=this.containers.length-1;0<=i;i--)e||s.push(n("deactivate",this,this.containers[i])),this.containers[i].containerCache.over&&(s.push(n("out",this,this.containers[i])),this.containers[i].containerCache.over=0);if(this.storedCursor&&(this.document.find("body").css("cursor",this.storedCursor),this.storedStylesheet.remove()),this._storedOpacity&&this.helper.css("opacity",this._storedOpacity),this._storedZIndex&&this.helper.css("zIndex","auto"===this._storedZIndex?"":this._storedZIndex),this.dragging=!1,e||this._trigger("beforeStop",t,this._uiHash()),this.placeholder[0].parentNode.removeChild(this.placeholder[0]),this.cancelHelperRemoval||(this.helper[0]!==this.currentItem[0]&&this.helper.remove(),this.helper=null),!e){for(i=0;i<s.length;i++)s[i].call(this,t);this._trigger("stop",t,this._uiHash())}return this.fromOutside=!1,!this.cancelHelperRemoval},_trigger:function(){!1===V.Widget.prototype._trigger.apply(this,arguments)&&this.cancel()},_uiHash:function(t){var e=t||this;return{helper:e.helper,placeholder:e.placeholder||V([]),position:e.position,originalPosition:e.originalPosition,offset:e.positionAbs,item:e.currentItem,sender:t?t.element:null}}});function ht(e){return function(){var t=this.element.val();e.apply(this,arguments),this._refresh(),t!==this.element.val()&&this._trigger("change")}}V.widget("ui.spinner",{version:"1.13.1",defaultElement:"<input>",widgetEventPrefix:"spin",options:{classes:{"ui-spinner":"ui-corner-all","ui-spinner-down":"ui-corner-br","ui-spinner-up":"ui-corner-tr"},culture:null,icons:{down:"ui-icon-triangle-1-s",up:"ui-icon-triangle-1-n"},incremental:!0,max:null,min:null,numberFormat:null,page:10,step:1,change:null,spin:null,start:null,stop:null},_create:function(){this._setOption("max",this.options.max),this._setOption("min",this.options.min),this._setOption("step",this.options.step),""!==this.value()&&this._value(this.element.val(),!0),this._draw(),this._on(this._events),this._refresh(),this._on(this.window,{beforeunload:function(){this.element.removeAttr("autocomplete")}})},_getCreateOptions:function(){var s=this._super(),n=this.element;return V.each(["min","max","step"],function(t,e){var i=n.attr(e);null!=i&&i.length&&(s[e]=i)}),s},_events:{keydown:function(t){this._start(t)&&this._keydown(t)&&t.preventDefault()},keyup:"_stop",focus:function(){this.previous=this.element.val()},blur:function(t){this.cancelBlur?delete this.cancelBlur:(this._stop(),this._refresh(),this.previous!==this.element.val()&&this._trigger("change",t))},mousewheel:function(t,e){var i=V.ui.safeActiveElement(this.document[0]);if(this.element[0]===i&&e){if(!this.spinning&&!this._start(t))return!1;this._spin((0<e?1:-1)*this.options.step,t),clearTimeout(this.mousewheelTimer),this.mousewheelTimer=this._delay(function(){this.spinning&&this._stop(t)},100),t.preventDefault()}},"mousedown .ui-spinner-button":function(t){var e;function i(){this.element[0]===V.ui.safeActiveElement(this.document[0])||(this.element.trigger("focus"),this.previous=e,this._delay(function(){this.previous=e}))}e=this.element[0]===V.ui.safeActiveElement(this.document[0])?this.previous:this.element.val(),t.preventDefault(),i.call(this),this.cancelBlur=!0,this._delay(function(){delete this.cancelBlur,i.call(this)}),!1!==this._start(t)&&this._repeat(null,V(t.currentTarget).hasClass("ui-spinner-up")?1:-1,t)},"mouseup .ui-spinner-button":"_stop","mouseenter .ui-spinner-button":function(t){if(V(t.currentTarget).hasClass("ui-state-active"))return!1!==this._start(t)&&void this._repeat(null,V(t.currentTarget).hasClass("ui-spinner-up")?1:-1,t)},"mouseleave .ui-spinner-button":"_stop"},_enhance:function(){this.uiSpinner=this.element.attr("autocomplete","off").wrap("<span>").parent().append("<a></a><a></a>")},_draw:function(){this._enhance(),this._addClass(this.uiSpinner,"ui-spinner","ui-widget ui-widget-content"),this._addClass("ui-spinner-input"),this.element.attr("role","spinbutton"),this.buttons=this.uiSpinner.children("a").attr("tabIndex",-1).attr("aria-hidden",!0).button({classes:{"ui-button":""}}),this._removeClass(this.buttons,"ui-corner-all"),this._addClass(this.buttons.first(),"ui-spinner-button ui-spinner-up"),this._addClass(this.buttons.last(),"ui-spinner-button ui-spinner-down"),this.buttons.first().button({icon:this.options.icons.up,showLabel:!1}),this.buttons.last().button({icon:this.options.icons.down,showLabel:!1}),this.buttons.height()>Math.ceil(.5*this.uiSpinner.height())&&0<this.uiSpinner.height()&&this.uiSpinner.height(this.uiSpinner.height())},_keydown:function(t){var e=this.options,i=V.ui.keyCode;switch(t.keyCode){case i.UP:return this._repeat(null,1,t),!0;case i.DOWN:return this._repeat(null,-1,t),!0;case i.PAGE_UP:return this._repeat(null,e.page,t),!0;case i.PAGE_DOWN:return this._repeat(null,-e.page,t),!0}return!1},_start:function(t){return!(!this.spinning&&!1===this._trigger("start",t))&&(this.counter||(this.counter=1),this.spinning=!0)},_repeat:function(t,e,i){t=t||500,clearTimeout(this.timer),this.timer=this._delay(function(){this._repeat(40,e,i)},t),this._spin(e*this.options.step,i)},_spin:function(t,e){var i=this.value()||0;this.counter||(this.counter=1),i=this._adjustValue(i+t*this._increment(this.counter)),this.spinning&&!1===this._trigger("spin",e,{value:i})||(this._value(i),this.counter++)},_increment:function(t){var e=this.options.incremental;return e?"function"==typeof e?e(t):Math.floor(t*t*t/5e4-t*t/500+17*t/200+1):1},_precision:function(){var t=this._precisionOf(this.options.step);return t=null!==this.options.min?Math.max(t,this._precisionOf(this.options.min)):t},_precisionOf:function(t){var e=t.toString(),t=e.indexOf(".");return-1===t?0:e.length-t-1},_adjustValue:function(t){var e=this.options,i=null!==e.min?e.min:0,s=t-i;return t=i+Math.round(s/e.step)*e.step,t=parseFloat(t.toFixed(this._precision())),null!==e.max&&t>e.max?e.max:null!==e.min&&t<e.min?e.min:t},_stop:function(t){this.spinning&&(clearTimeout(this.timer),clearTimeout(this.mousewheelTimer),this.counter=0,this.spinning=!1,this._trigger("stop",t))},_setOption:function(t,e){var i;if("culture"===t||"numberFormat"===t)return i=this._parse(this.element.val()),this.options[t]=e,void this.element.val(this._format(i));"max"!==t&&"min"!==t&&"step"!==t||"string"==typeof e&&(e=this._parse(e)),"icons"===t&&(i=this.buttons.first().find(".ui-icon"),this._removeClass(i,null,this.options.icons.up),this._addClass(i,null,e.up),i=this.buttons.last().find(".ui-icon"),this._removeClass(i,null,this.options.icons.down),this._addClass(i,null,e.down)),this._super(t,e)},_setOptionDisabled:function(t){this._super(t),this._toggleClass(this.uiSpinner,null,"ui-state-disabled",!!t),this.element.prop("disabled",!!t),this.buttons.button(t?"disable":"enable")},_setOptions:ht(function(t){this._super(t)}),_parse:function(t){return""===(t="string"==typeof t&&""!==t?window.Globalize&&this.options.numberFormat?Globalize.parseFloat(t,10,this.options.culture):+t:t)||isNaN(t)?null:t},_format:function(t){return""===t?"":window.Globalize&&this.options.numberFormat?Globalize.format(t,this.options.numberFormat,this.options.culture):t},_refresh:function(){this.element.attr({"aria-valuemin":this.options.min,"aria-valuemax":this.options.max,"aria-valuenow":this._parse(this.element.val())})},isValid:function(){var t=this.value();return null!==t&&t===this._adjustValue(t)},_value:function(t,e){var i;""!==t&&null!==(i=this._parse(t))&&(e||(i=this._adjustValue(i)),t=this._format(i)),this.element.val(t),this._refresh()},_destroy:function(){this.element.prop("disabled",!1).removeAttr("autocomplete role aria-valuemin aria-valuemax aria-valuenow"),this.uiSpinner.replaceWith(this.element)},stepUp:ht(function(t){this._stepUp(t)}),_stepUp:function(t){this._start()&&(this._spin((t||1)*this.options.step),this._stop())},stepDown:ht(function(t){this._stepDown(t)}),_stepDown:function(t){this._start()&&(this._spin((t||1)*-this.options.step),this._stop())},pageUp:ht(function(t){this._stepUp((t||1)*this.options.page)}),pageDown:ht(function(t){this._stepDown((t||1)*this.options.page)}),value:function(t){if(!arguments.length)return this._parse(this.element.val());ht(this._value).call(this,t)},widget:function(){return this.uiSpinner}}),!1!==V.uiBackCompat&&V.widget("ui.spinner",V.ui.spinner,{_enhance:function(){this.uiSpinner=this.element.attr("autocomplete","off").wrap(this._uiSpinnerHtml()).parent().append(this._buttonHtml())},_uiSpinnerHtml:function(){return"<span>"},_buttonHtml:function(){return"<a></a><a></a>"}});var ct;V.ui.spinner;V.widget("ui.tabs",{version:"1.13.1",delay:300,options:{active:null,classes:{"ui-tabs":"ui-corner-all","ui-tabs-nav":"ui-corner-all","ui-tabs-panel":"ui-corner-bottom","ui-tabs-tab":"ui-corner-top"},collapsible:!1,event:"click",heightStyle:"content",hide:null,show:null,activate:null,beforeActivate:null,beforeLoad:null,load:null},_isLocal:(ct=/#.*$/,function(t){var e=t.href.replace(ct,""),i=location.href.replace(ct,"");try{e=decodeURIComponent(e)}catch(t){}try{i=decodeURIComponent(i)}catch(t){}return 1<t.hash.length&&e===i}),_create:function(){var e=this,t=this.options;this.running=!1,this._addClass("ui-tabs","ui-widget ui-widget-content"),this._toggleClass("ui-tabs-collapsible",null,t.collapsible),this._processTabs(),t.active=this._initialActive(),Array.isArray(t.disabled)&&(t.disabled=V.uniqueSort(t.disabled.concat(V.map(this.tabs.filter(".ui-state-disabled"),function(t){return e.tabs.index(t)}))).sort()),!1!==this.options.active&&this.anchors.length?this.active=this._findActive(t.active):this.active=V(),this._refresh(),this.active.length&&this.load(t.active)},_initialActive:function(){var i=this.options.active,t=this.options.collapsible,s=location.hash.substring(1);return null===i&&(s&&this.tabs.each(function(t,e){if(V(e).attr("aria-controls")===s)return i=t,!1}),null!==(i=null===i?this.tabs.index(this.tabs.filter(".ui-tabs-active")):i)&&-1!==i||(i=!!this.tabs.length&&0)),!1!==i&&-1===(i=this.tabs.index(this.tabs.eq(i)))&&(i=!t&&0),i=!t&&!1===i&&this.anchors.length?0:i},_getCreateEventData:function(){return{tab:this.active,panel:this.active.length?this._getPanelForTab(this.active):V()}},_tabKeydown:function(t){var e=V(V.ui.safeActiveElement(this.document[0])).closest("li"),i=this.tabs.index(e),s=!0;if(!this._handlePageNav(t)){switch(t.keyCode){case V.ui.keyCode.RIGHT:case V.ui.keyCode.DOWN:i++;break;case V.ui.keyCode.UP:case V.ui.keyCode.LEFT:s=!1,i--;break;case V.ui.keyCode.END:i=this.anchors.length-1;break;case V.ui.keyCode.HOME:i=0;break;case V.ui.keyCode.SPACE:return t.preventDefault(),clearTimeout(this.activating),void this._activate(i);case V.ui.keyCode.ENTER:return t.preventDefault(),clearTimeout(this.activating),void this._activate(i!==this.options.active&&i);default:return}t.preventDefault(),clearTimeout(this.activating),i=this._focusNextTab(i,s),t.ctrlKey||t.metaKey||(e.attr("aria-selected","false"),this.tabs.eq(i).attr("aria-selected","true"),this.activating=this._delay(function(){this.option("active",i)},this.delay))}},_panelKeydown:function(t){this._handlePageNav(t)||t.ctrlKey&&t.keyCode===V.ui.keyCode.UP&&(t.preventDefault(),this.active.trigger("focus"))},_handlePageNav:function(t){return t.altKey&&t.keyCode===V.ui.keyCode.PAGE_UP?(this._activate(this._focusNextTab(this.options.active-1,!1)),!0):t.altKey&&t.keyCode===V.ui.keyCode.PAGE_DOWN?(this._activate(this._focusNextTab(this.options.active+1,!0)),!0):void 0},_findNextTab:function(t,e){var i=this.tabs.length-1;for(;-1!==V.inArray(t=(t=i<t?0:t)<0?i:t,this.options.disabled);)t=e?t+1:t-1;return t},_focusNextTab:function(t,e){return t=this._findNextTab(t,e),this.tabs.eq(t).trigger("focus"),t},_setOption:function(t,e){"active"!==t?(this._super(t,e),"collapsible"===t&&(this._toggleClass("ui-tabs-collapsible",null,e),e||!1!==this.options.active||this._activate(0)),"event"===t&&this._setupEvents(e),"heightStyle"===t&&this._setupHeightStyle(e)):this._activate(e)},_sanitizeSelector:function(t){return t?t.replace(/[!"$%&'()*+,.\/:;<=>?@\[\]\^`{|}~]/g,"\\$&"):""},refresh:function(){var t=this.options,e=this.tablist.children(":has(a[href])");t.disabled=V.map(e.filter(".ui-state-disabled"),function(t){return e.index(t)}),this._processTabs(),!1!==t.active&&this.anchors.length?this.active.length&&!V.contains(this.tablist[0],this.active[0])?this.tabs.length===t.disabled.length?(t.active=!1,this.active=V()):this._activate(this._findNextTab(Math.max(0,t.active-1),!1)):t.active=this.tabs.index(this.active):(t.active=!1,this.active=V()),this._refresh()},_refresh:function(){this._setOptionDisabled(this.options.disabled),this._setupEvents(this.options.event),this._setupHeightStyle(this.options.heightStyle),this.tabs.not(this.active).attr({"aria-selected":"false","aria-expanded":"false",tabIndex:-1}),this.panels.not(this._getPanelForTab(this.active)).hide().attr({"aria-hidden":"true"}),this.active.length?(this.active.attr({"aria-selected":"true","aria-expanded":"true",tabIndex:0}),this._addClass(this.active,"ui-tabs-active","ui-state-active"),this._getPanelForTab(this.active).show().attr({"aria-hidden":"false"})):this.tabs.eq(0).attr("tabIndex",0)},_processTabs:function(){var l=this,t=this.tabs,e=this.anchors,i=this.panels;this.tablist=this._getList().attr("role","tablist"),this._addClass(this.tablist,"ui-tabs-nav","ui-helper-reset ui-helper-clearfix ui-widget-header"),this.tablist.on("mousedown"+this.eventNamespace,"> li",function(t){V(this).is(".ui-state-disabled")&&t.preventDefault()}).on("focus"+this.eventNamespace,".ui-tabs-anchor",function(){V(this).closest("li").is(".ui-state-disabled")&&this.blur()}),this.tabs=this.tablist.find("> li:has(a[href])").attr({role:"tab",tabIndex:-1}),this._addClass(this.tabs,"ui-tabs-tab","ui-state-default"),this.anchors=this.tabs.map(function(){return V("a",this)[0]}).attr({tabIndex:-1}),this._addClass(this.anchors,"ui-tabs-anchor"),this.panels=V(),this.anchors.each(function(t,e){var i,s,n,o=V(e).uniqueId().attr("id"),a=V(e).closest("li"),r=a.attr("aria-controls");l._isLocal(e)?(n=(i=e.hash).substring(1),s=l.element.find(l._sanitizeSelector(i))):(n=a.attr("aria-controls")||V({}).uniqueId()[0].id,(s=l.element.find(i="#"+n)).length||(s=l._createPanel(n)).insertAfter(l.panels[t-1]||l.tablist),s.attr("aria-live","polite")),s.length&&(l.panels=l.panels.add(s)),r&&a.data("ui-tabs-aria-controls",r),a.attr({"aria-controls":n,"aria-labelledby":o}),s.attr("aria-labelledby",o)}),this.panels.attr("role","tabpanel"),this._addClass(this.panels,"ui-tabs-panel","ui-widget-content"),t&&(this._off(t.not(this.tabs)),this._off(e.not(this.anchors)),this._off(i.not(this.panels)))},_getList:function(){return this.tablist||this.element.find("ol, ul").eq(0)},_createPanel:function(t){return V("<div>").attr("id",t).data("ui-tabs-destroy",!0)},_setOptionDisabled:function(t){var e,i;for(Array.isArray(t)&&(t.length?t.length===this.anchors.length&&(t=!0):t=!1),i=0;e=this.tabs[i];i++)e=V(e),!0===t||-1!==V.inArray(i,t)?(e.attr("aria-disabled","true"),this._addClass(e,null,"ui-state-disabled")):(e.removeAttr("aria-disabled"),this._removeClass(e,null,"ui-state-disabled"));this.options.disabled=t,this._toggleClass(this.widget(),this.widgetFullName+"-disabled",null,!0===t)},_setupEvents:function(t){var i={};t&&V.each(t.split(" "),function(t,e){i[e]="_eventHandler"}),this._off(this.anchors.add(this.tabs).add(this.panels)),this._on(!0,this.anchors,{click:function(t){t.preventDefault()}}),this._on(this.anchors,i),this._on(this.tabs,{keydown:"_tabKeydown"}),this._on(this.panels,{keydown:"_panelKeydown"}),this._focusable(this.tabs),this._hoverable(this.tabs)},_setupHeightStyle:function(t){var i,e=this.element.parent();"fill"===t?(i=e.height(),i-=this.element.outerHeight()-this.element.height(),this.element.siblings(":visible").each(function(){var t=V(this),e=t.css("position");"absolute"!==e&&"fixed"!==e&&(i-=t.outerHeight(!0))}),this.element.children().not(this.panels).each(function(){i-=V(this).outerHeight(!0)}),this.panels.each(function(){V(this).height(Math.max(0,i-V(this).innerHeight()+V(this).height()))}).css("overflow","auto")):"auto"===t&&(i=0,this.panels.each(function(){i=Math.max(i,V(this).height("").height())}).height(i))},_eventHandler:function(t){var e=this.options,i=this.active,s=V(t.currentTarget).closest("li"),n=s[0]===i[0],o=n&&e.collapsible,a=o?V():this._getPanelForTab(s),r=i.length?this._getPanelForTab(i):V(),i={oldTab:i,oldPanel:r,newTab:o?V():s,newPanel:a};t.preventDefault(),s.hasClass("ui-state-disabled")||s.hasClass("ui-tabs-loading")||this.running||n&&!e.collapsible||!1===this._trigger("beforeActivate",t,i)||(e.active=!o&&this.tabs.index(s),this.active=n?V():s,this.xhr&&this.xhr.abort(),r.length||a.length||V.error("jQuery UI Tabs: Mismatching fragment identifier."),a.length&&this.load(this.tabs.index(s),t),this._toggle(t,i))},_toggle:function(t,e){var i=this,s=e.newPanel,n=e.oldPanel;function o(){i.running=!1,i._trigger("activate",t,e)}function a(){i._addClass(e.newTab.closest("li"),"ui-tabs-active","ui-state-active"),s.length&&i.options.show?i._show(s,i.options.show,o):(s.show(),o())}this.running=!0,n.length&&this.options.hide?this._hide(n,this.options.hide,function(){i._removeClass(e.oldTab.closest("li"),"ui-tabs-active","ui-state-active"),a()}):(this._removeClass(e.oldTab.closest("li"),"ui-tabs-active","ui-state-active"),n.hide(),a()),n.attr("aria-hidden","true"),e.oldTab.attr({"aria-selected":"false","aria-expanded":"false"}),s.length&&n.length?e.oldTab.attr("tabIndex",-1):s.length&&this.tabs.filter(function(){return 0===V(this).attr("tabIndex")}).attr("tabIndex",-1),s.attr("aria-hidden","false"),e.newTab.attr({"aria-selected":"true","aria-expanded":"true",tabIndex:0})},_activate:function(t){var t=this._findActive(t);t[0]!==this.active[0]&&(t=(t=!t.length?this.active:t).find(".ui-tabs-anchor")[0],this._eventHandler({target:t,currentTarget:t,preventDefault:V.noop}))},_findActive:function(t){return!1===t?V():this.tabs.eq(t)},_getIndex:function(t){return t="string"==typeof t?this.anchors.index(this.anchors.filter("[href$='"+V.escapeSelector(t)+"']")):t},_destroy:function(){this.xhr&&this.xhr.abort(),this.tablist.removeAttr("role").off(this.eventNamespace),this.anchors.removeAttr("role tabIndex").removeUniqueId(),this.tabs.add(this.panels).each(function(){V.data(this,"ui-tabs-destroy")?V(this).remove():V(this).removeAttr("role tabIndex aria-live aria-busy aria-selected aria-labelledby aria-hidden aria-expanded")}),this.tabs.each(function(){var t=V(this),e=t.data("ui-tabs-aria-controls");e?t.attr("aria-controls",e).removeData("ui-tabs-aria-controls"):t.removeAttr("aria-controls")}),this.panels.show(),"content"!==this.options.heightStyle&&this.panels.css("height","")},enable:function(i){var t=this.options.disabled;!1!==t&&(t=void 0!==i&&(i=this._getIndex(i),Array.isArray(t)?V.map(t,function(t){return t!==i?t:null}):V.map(this.tabs,function(t,e){return e!==i?e:null})),this._setOptionDisabled(t))},disable:function(t){var e=this.options.disabled;if(!0!==e){if(void 0===t)e=!0;else{if(t=this._getIndex(t),-1!==V.inArray(t,e))return;e=Array.isArray(e)?V.merge([t],e).sort():[t]}this._setOptionDisabled(e)}},load:function(t,s){t=this._getIndex(t);function n(t,e){"abort"===e&&o.panels.stop(!1,!0),o._removeClass(i,"ui-tabs-loading"),a.removeAttr("aria-busy"),t===o.xhr&&delete o.xhr}var o=this,i=this.tabs.eq(t),t=i.find(".ui-tabs-anchor"),a=this._getPanelForTab(i),r={tab:i,panel:a};this._isLocal(t[0])||(this.xhr=V.ajax(this._ajaxSettings(t,s,r)),this.xhr&&"canceled"!==this.xhr.statusText&&(this._addClass(i,"ui-tabs-loading"),a.attr("aria-busy","true"),this.xhr.done(function(t,e,i){setTimeout(function(){a.html(t),o._trigger("load",s,r),n(i,e)},1)}).fail(function(t,e){setTimeout(function(){n(t,e)},1)})))},_ajaxSettings:function(t,i,s){var n=this;return{url:t.attr("href").replace(/#.*$/,""),beforeSend:function(t,e){return n._trigger("beforeLoad",i,V.extend({jqXHR:t,ajaxSettings:e},s))}}},_getPanelForTab:function(t){t=V(t).attr("aria-controls");return this.element.find(this._sanitizeSelector("#"+t))}}),!1!==V.uiBackCompat&&V.widget("ui.tabs",V.ui.tabs,{_processTabs:function(){this._superApply(arguments),this._addClass(this.tabs,"ui-tab")}});V.ui.tabs;V.widget("ui.tooltip",{version:"1.13.1",options:{classes:{"ui-tooltip":"ui-corner-all ui-widget-shadow"},content:function(){var t=V(this).attr("title");return V("<a>").text(t).html()},hide:!0,items:"[title]:not([disabled])",position:{my:"left top+15",at:"left bottom",collision:"flipfit flip"},show:!0,track:!1,close:null,open:null},_addDescribedBy:function(t,e){var i=(t.attr("aria-describedby")||"").split(/\s+/);i.push(e),t.data("ui-tooltip-id",e).attr("aria-describedby",String.prototype.trim.call(i.join(" ")))},_removeDescribedBy:function(t){var e=t.data("ui-tooltip-id"),i=(t.attr("aria-describedby")||"").split(/\s+/),e=V.inArray(e,i);-1!==e&&i.splice(e,1),t.removeData("ui-tooltip-id"),(i=String.prototype.trim.call(i.join(" ")))?t.attr("aria-describedby",i):t.removeAttr("aria-describedby")},_create:function(){this._on({mouseover:"open",focusin:"open"}),this.tooltips={},this.parents={},this.liveRegion=V("<div>").attr({role:"log","aria-live":"assertive","aria-relevant":"additions"}).appendTo(this.document[0].body),this._addClass(this.liveRegion,null,"ui-helper-hidden-accessible"),this.disabledTitles=V([])},_setOption:function(t,e){var i=this;this._super(t,e),"content"===t&&V.each(this.tooltips,function(t,e){i._updateContent(e.element)})},_setOptionDisabled:function(t){this[t?"_disable":"_enable"]()},_disable:function(){var s=this;V.each(this.tooltips,function(t,e){var i=V.Event("blur");i.target=i.currentTarget=e.element[0],s.close(i,!0)}),this.disabledTitles=this.disabledTitles.add(this.element.find(this.options.items).addBack().filter(function(){var t=V(this);if(t.is("[title]"))return t.data("ui-tooltip-title",t.attr("title")).removeAttr("title")}))},_enable:function(){this.disabledTitles.each(function(){var t=V(this);t.data("ui-tooltip-title")&&t.attr("title",t.data("ui-tooltip-title"))}),this.disabledTitles=V([])},open:function(t){var i=this,e=V(t?t.target:this.element).closest(this.options.items);e.length&&!e.data("ui-tooltip-id")&&(e.attr("title")&&e.data("ui-tooltip-title",e.attr("title")),e.data("ui-tooltip-open",!0),t&&"mouseover"===t.type&&e.parents().each(function(){var t,e=V(this);e.data("ui-tooltip-open")&&((t=V.Event("blur")).target=t.currentTarget=this,i.close(t,!0)),e.attr("title")&&(e.uniqueId(),i.parents[this.id]={element:this,title:e.attr("title")},e.attr("title",""))}),this._registerCloseHandlers(t,e),this._updateContent(e,t))},_updateContent:function(e,i){var t=this.options.content,s=this,n=i?i.type:null;if("string"==typeof t||t.nodeType||t.jquery)return this._open(i,e,t);(t=t.call(e[0],function(t){s._delay(function(){e.data("ui-tooltip-open")&&(i&&(i.type=n),this._open(i,e,t))})}))&&this._open(i,e,t)},_open:function(t,e,i){var s,n,o,a=V.extend({},this.options.position);function r(t){a.of=t,n.is(":hidden")||n.position(a)}i&&((s=this._find(e))?s.tooltip.find(".ui-tooltip-content").html(i):(e.is("[title]")&&(t&&"mouseover"===t.type?e.attr("title",""):e.removeAttr("title")),s=this._tooltip(e),n=s.tooltip,this._addDescribedBy(e,n.attr("id")),n.find(".ui-tooltip-content").html(i),this.liveRegion.children().hide(),(i=V("<div>").html(n.find(".ui-tooltip-content").html())).removeAttr("name").find("[name]").removeAttr("name"),i.removeAttr("id").find("[id]").removeAttr("id"),i.appendTo(this.liveRegion),this.options.track&&t&&/^mouse/.test(t.type)?(this._on(this.document,{mousemove:r}),r(t)):n.position(V.extend({of:e},this.options.position)),n.hide(),this._show(n,this.options.show),this.options.track&&this.options.show&&this.options.show.delay&&(o=this.delayedShow=setInterval(function(){n.is(":visible")&&(r(a.of),clearInterval(o))},13)),this._trigger("open",t,{tooltip:n})))},_registerCloseHandlers:function(t,e){var i={keyup:function(t){t.keyCode===V.ui.keyCode.ESCAPE&&((t=V.Event(t)).currentTarget=e[0],this.close(t,!0))}};e[0]!==this.element[0]&&(i.remove=function(){var t=this._find(e);t&&this._removeTooltip(t.tooltip)}),t&&"mouseover"!==t.type||(i.mouseleave="close"),t&&"focusin"!==t.type||(i.focusout="close"),this._on(!0,e,i)},close:function(t){var e,i=this,s=V(t?t.currentTarget:this.element),n=this._find(s);n?(e=n.tooltip,n.closing||(clearInterval(this.delayedShow),s.data("ui-tooltip-title")&&!s.attr("title")&&s.attr("title",s.data("ui-tooltip-title")),this._removeDescribedBy(s),n.hiding=!0,e.stop(!0),this._hide(e,this.options.hide,function(){i._removeTooltip(V(this))}),s.removeData("ui-tooltip-open"),this._off(s,"mouseleave focusout keyup"),s[0]!==this.element[0]&&this._off(s,"remove"),this._off(this.document,"mousemove"),t&&"mouseleave"===t.type&&V.each(this.parents,function(t,e){V(e.element).attr("title",e.title),delete i.parents[t]}),n.closing=!0,this._trigger("close",t,{tooltip:e}),n.hiding||(n.closing=!1))):s.removeData("ui-tooltip-open")},_tooltip:function(t){var e=V("<div>").attr("role","tooltip"),i=V("<div>").appendTo(e),s=e.uniqueId().attr("id");return this._addClass(i,"ui-tooltip-content"),this._addClass(e,"ui-tooltip","ui-widget ui-widget-content"),e.appendTo(this._appendTo(t)),this.tooltips[s]={element:t,tooltip:e}},_find:function(t){t=t.data("ui-tooltip-id");return t?this.tooltips[t]:null},_removeTooltip:function(t){clearInterval(this.delayedShow),t.remove(),delete this.tooltips[t.attr("id")]},_appendTo:function(t){t=t.closest(".ui-front, dialog");return t=!t.length?this.document[0].body:t},_destroy:function(){var s=this;V.each(this.tooltips,function(t,e){var i=V.Event("blur"),e=e.element;i.target=i.currentTarget=e[0],s.close(i,!0),V("#"+t).remove(),e.data("ui-tooltip-title")&&(e.attr("title")||e.attr("title",e.data("ui-tooltip-title")),e.removeData("ui-tooltip-title"))}),this.liveRegion.remove()}}),!1!==V.uiBackCompat&&V.widget("ui.tooltip",V.ui.tooltip,{options:{tooltipClass:null},_tooltip:function(){var t=this._superApply(arguments);return this.options.tooltipClass&&t.tooltip.addClass(this.options.tooltipClass),t}});V.ui.tooltip}); \ No newline at end of file
diff --git a/js/vendor/openlayers/OpenLayers.js b/js/vendor/openlayers/OpenLayers.js
index 9b2ae75df5..0cf513fa51 100644
--- a/js/vendor/openlayers/OpenLayers.js
+++ b/js/vendor/openlayers/OpenLayers.js
@@ -1,9 +1,9 @@
/*!
- * OpenLayers v6.13.0 (https://openlayers.org/)
+ * OpenLayers v6.14.1 (https://openlayers.org/)
* Copyright 2005-present, OpenLayers Contributors All rights reserved.
* Licensed under BSD 2-Clause License (https://github.com/openlayers/openlayers/blob/main/LICENSE.md)
*
* @license BSD-2-Clause
*/
-!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define([],e):"object"==typeof exports?exports.ol=e():t.ol=e()}(self,(function(){return function(){var t={582:function(t){t.exports=function(){"use strict";function t(t,i,o,r,s){!function t(n,i,o,r,s){for(;r>o;){if(r-o>600){var a=r-o+1,l=i-o+1,h=Math.log(a),u=.5*Math.exp(2*h/3),c=.5*Math.sqrt(h*u*(a-u)/a)*(l-a/2<0?-1:1);t(n,i,Math.max(o,Math.floor(i-l*u/a+c)),Math.min(r,Math.floor(i+(a-l)*u/a+c)),s)}var p=n[i],f=o,d=r;for(e(n,o,i),s(n[r],p)>0&&e(n,o,r);f<d;){for(e(n,f,d),f++,d--;s(n[f],p)<0;)f++;for(;s(n[d],p)>0;)d--}0===s(n[o],p)?e(n,o,d):e(n,++d,r),d<=i&&(o=d+1),i<=d&&(r=d-1)}}(t,i,o||0,r||t.length-1,s||n)}function e(t,e,n){var i=t[e];t[e]=t[n],t[n]=i}function n(t,e){return t<e?-1:t>e?1:0}var i=function(t){void 0===t&&(t=9),this._maxEntries=Math.max(4,t),this._minEntries=Math.max(2,Math.ceil(.4*this._maxEntries)),this.clear()};function o(t,e,n){if(!n)return e.indexOf(t);for(var i=0;i<e.length;i++)if(n(t,e[i]))return i;return-1}function r(t,e){s(t,0,t.children.length,e,t)}function s(t,e,n,i,o){o||(o=d(null)),o.minX=1/0,o.minY=1/0,o.maxX=-1/0,o.maxY=-1/0;for(var r=e;r<n;r++){var s=t.children[r];a(o,t.leaf?i(s):s)}return o}function a(t,e){return t.minX=Math.min(t.minX,e.minX),t.minY=Math.min(t.minY,e.minY),t.maxX=Math.max(t.maxX,e.maxX),t.maxY=Math.max(t.maxY,e.maxY),t}function l(t,e){return t.minX-e.minX}function h(t,e){return t.minY-e.minY}function u(t){return(t.maxX-t.minX)*(t.maxY-t.minY)}function c(t){return t.maxX-t.minX+(t.maxY-t.minY)}function p(t,e){return t.minX<=e.minX&&t.minY<=e.minY&&e.maxX<=t.maxX&&e.maxY<=t.maxY}function f(t,e){return e.minX<=t.maxX&&e.minY<=t.maxY&&e.maxX>=t.minX&&e.maxY>=t.minY}function d(t){return{children:t,height:1,leaf:!0,minX:1/0,minY:1/0,maxX:-1/0,maxY:-1/0}}function _(e,n,i,o,r){for(var s=[n,i];s.length;)if(!((i=s.pop())-(n=s.pop())<=o)){var a=n+Math.ceil((i-n)/o/2)*o;t(e,a,n,i,r),s.push(n,a,a,i)}}return i.prototype.all=function(){return this._all(this.data,[])},i.prototype.search=function(t){var e=this.data,n=[];if(!f(t,e))return n;for(var i=this.toBBox,o=[];e;){for(var r=0;r<e.children.length;r++){var s=e.children[r],a=e.leaf?i(s):s;f(t,a)&&(e.leaf?n.push(s):p(t,a)?this._all(s,n):o.push(s))}e=o.pop()}return n},i.prototype.collides=function(t){var e=this.data;if(!f(t,e))return!1;for(var n=[];e;){for(var i=0;i<e.children.length;i++){var o=e.children[i],r=e.leaf?this.toBBox(o):o;if(f(t,r)){if(e.leaf||p(t,r))return!0;n.push(o)}}e=n.pop()}return!1},i.prototype.load=function(t){if(!t||!t.length)return this;if(t.length<this._minEntries){for(var e=0;e<t.length;e++)this.insert(t[e]);return this}var n=this._build(t.slice(),0,t.length-1,0);if(this.data.children.length)if(this.data.height===n.height)this._splitRoot(this.data,n);else{if(this.data.height<n.height){var i=this.data;this.data=n,n=i}this._insert(n,this.data.height-n.height-1,!0)}else this.data=n;return this},i.prototype.insert=function(t){return t&&this._insert(t,this.data.height-1),this},i.prototype.clear=function(){return this.data=d([]),this},i.prototype.remove=function(t,e){if(!t)return this;for(var n,i,r,s=this.data,a=this.toBBox(t),l=[],h=[];s||l.length;){if(s||(s=l.pop(),i=l[l.length-1],n=h.pop(),r=!0),s.leaf){var u=o(t,s.children,e);if(-1!==u)return s.children.splice(u,1),l.push(s),this._condense(l),this}r||s.leaf||!p(s,a)?i?(n++,s=i.children[n],r=!1):s=null:(l.push(s),h.push(n),n=0,i=s,s=s.children[0])}return this},i.prototype.toBBox=function(t){return t},i.prototype.compareMinX=function(t,e){return t.minX-e.minX},i.prototype.compareMinY=function(t,e){return t.minY-e.minY},i.prototype.toJSON=function(){return this.data},i.prototype.fromJSON=function(t){return this.data=t,this},i.prototype._all=function(t,e){for(var n=[];t;)t.leaf?e.push.apply(e,t.children):n.push.apply(n,t.children),t=n.pop();return e},i.prototype._build=function(t,e,n,i){var o,s=n-e+1,a=this._maxEntries;if(s<=a)return r(o=d(t.slice(e,n+1)),this.toBBox),o;i||(i=Math.ceil(Math.log(s)/Math.log(a)),a=Math.ceil(s/Math.pow(a,i-1))),(o=d([])).leaf=!1,o.height=i;var l=Math.ceil(s/a),h=l*Math.ceil(Math.sqrt(a));_(t,e,n,h,this.compareMinX);for(var u=e;u<=n;u+=h){var c=Math.min(u+h-1,n);_(t,u,c,l,this.compareMinY);for(var p=u;p<=c;p+=l){var f=Math.min(p+l-1,c);o.children.push(this._build(t,p,f,i-1))}}return r(o,this.toBBox),o},i.prototype._chooseSubtree=function(t,e,n,i){for(;i.push(e),!e.leaf&&i.length-1!==n;){for(var o=1/0,r=1/0,s=void 0,a=0;a<e.children.length;a++){var l=e.children[a],h=u(l),c=(p=t,f=l,(Math.max(f.maxX,p.maxX)-Math.min(f.minX,p.minX))*(Math.max(f.maxY,p.maxY)-Math.min(f.minY,p.minY))-h);c<r?(r=c,o=h<o?h:o,s=l):c===r&&h<o&&(o=h,s=l)}e=s||e.children[0]}var p,f;return e},i.prototype._insert=function(t,e,n){var i=n?t:this.toBBox(t),o=[],r=this._chooseSubtree(i,this.data,e,o);for(r.children.push(t),a(r,i);e>=0&&o[e].children.length>this._maxEntries;)this._split(o,e),e--;this._adjustParentBBoxes(i,o,e)},i.prototype._split=function(t,e){var n=t[e],i=n.children.length,o=this._minEntries;this._chooseSplitAxis(n,o,i);var s=this._chooseSplitIndex(n,o,i),a=d(n.children.splice(s,n.children.length-s));a.height=n.height,a.leaf=n.leaf,r(n,this.toBBox),r(a,this.toBBox),e?t[e-1].children.push(a):this._splitRoot(n,a)},i.prototype._splitRoot=function(t,e){this.data=d([t,e]),this.data.height=t.height+1,this.data.leaf=!1,r(this.data,this.toBBox)},i.prototype._chooseSplitIndex=function(t,e,n){for(var i,o,r,a,l,h,c,p=1/0,f=1/0,d=e;d<=n-e;d++){var _=s(t,0,d,this.toBBox),g=s(t,d,n,this.toBBox),y=(o=_,r=g,void 0,void 0,void 0,void 0,a=Math.max(o.minX,r.minX),l=Math.max(o.minY,r.minY),h=Math.min(o.maxX,r.maxX),c=Math.min(o.maxY,r.maxY),Math.max(0,h-a)*Math.max(0,c-l)),v=u(_)+u(g);y<p?(p=y,i=d,f=v<f?v:f):y===p&&v<f&&(f=v,i=d)}return i||n-e},i.prototype._chooseSplitAxis=function(t,e,n){var i=t.leaf?this.compareMinX:l,o=t.leaf?this.compareMinY:h;this._allDistMargin(t,e,n,i)<this._allDistMargin(t,e,n,o)&&t.children.sort(i)},i.prototype._allDistMargin=function(t,e,n,i){t.children.sort(i);for(var o=this.toBBox,r=s(t,0,e,o),l=s(t,n-e,n,o),h=c(r)+c(l),u=e;u<n-e;u++){var p=t.children[u];a(r,t.leaf?o(p):p),h+=c(r)}for(var f=n-e-1;f>=e;f--){var d=t.children[f];a(l,t.leaf?o(d):d),h+=c(l)}return h},i.prototype._adjustParentBBoxes=function(t,e,n){for(var i=n;i>=0;i--)a(e[i],t)},i.prototype._condense=function(t){for(var e=t.length-1,n=void 0;e>=0;e--)0===t[e].children.length?e>0?(n=t[e-1].children).splice(n.indexOf(t[e]),1):this.clear():r(t[e],this.toBBox)},i}()}},e={};function n(i){var o=e[i];if(void 0!==o)return o.exports;var r=e[i]={exports:{}};return t[i].call(r.exports,r,r.exports,n),r.exports}n.d=function(t,e){for(var i in e)n.o(e,i)&&!n.o(t,i)&&Object.defineProperty(t,i,{enumerable:!0,get:e[i]})},n.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)};var i={};return function(){"use strict";n.d(i,{default:function(){return ch}});var t=function(){function t(t){this.propagationStopped,this.defaultPrevented,this.type=t,this.target=null}return t.prototype.preventDefault=function(){this.defaultPrevented=!0},t.prototype.stopPropagation=function(){this.propagationStopped=!0},t}(),e="propertychange",o=function(){function t(){this.disposed=!1}return t.prototype.dispose=function(){this.disposed||(this.disposed=!0,this.disposeInternal())},t.prototype.disposeInternal=function(){},t}();function r(t,e){return t>e?1:t<e?-1:0}function s(t,e,n){var i=t.length;if(t[0]<=e)return 0;if(e<=t[i-1])return i-1;var o=void 0;if(n>0){for(o=1;o<i;++o)if(t[o]<e)return o-1}else if(n<0){for(o=1;o<i;++o)if(t[o]<=e)return o}else for(o=1;o<i;++o){if(t[o]==e)return o;if(t[o]<e)return"function"==typeof n?n(e,t[o-1],t[o])>0?o-1:o:t[o-1]-e<e-t[o]?o-1:o}return i-1}function a(t,e,n){for(;e<n;){var i=t[e];t[e]=t[n],t[n]=i,++e,--n}}function l(t,e){for(var n=Array.isArray(e)?e:[e],i=n.length,o=0;o<i;o++)t[t.length]=n[o]}function h(t,e){var n=t.length;if(n!==e.length)return!1;for(var i=0;i<n;i++)if(t[i]!==e[i])return!1;return!0}function u(){return!0}function c(){return!1}function p(){}var f="function"==typeof Object.assign?Object.assign:function(t,e){if(null==t)throw new TypeError("Cannot convert undefined or null to object");for(var n=Object(t),i=1,o=arguments.length;i<o;++i){var r=arguments[i];if(null!=r)for(var s in r)r.hasOwnProperty(s)&&(n[s]=r[s])}return n};function d(t){for(var e in t)delete t[e]}var _="function"==typeof Object.values?Object.values:function(t){var e=[];for(var n in t)e.push(t[n]);return e};function g(t){var e;for(e in t)return!1;return!e}var y,v=(y=function(t,e){return y=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},y(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function n(){this.constructor=t}y(t,e),t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)}),m=function(e){function n(t){var n=e.call(this)||this;return n.eventTarget_=t,n.pendingRemovals_=null,n.dispatching_=null,n.listeners_=null,n}return v(n,e),n.prototype.addEventListener=function(t,e){if(t&&e){var n=this.listeners_||(this.listeners_={}),i=n[t]||(n[t]=[]);-1===i.indexOf(e)&&i.push(e)}},n.prototype.dispatchEvent=function(e){var n="string"==typeof e?new t(e):e,i=n.type;n.target||(n.target=this.eventTarget_||this);var o,r=this.listeners_&&this.listeners_[i];if(r){var s=this.dispatching_||(this.dispatching_={}),a=this.pendingRemovals_||(this.pendingRemovals_={});i in s||(s[i]=0,a[i]=0),++s[i];for(var l=0,h=r.length;l<h;++l)if(!1===(o="handleEvent"in r[l]?r[l].handleEvent(n):r[l].call(this,n))||n.propagationStopped){o=!1;break}if(--s[i],0===s[i]){var u=a[i];for(delete a[i];u--;)this.removeEventListener(i,p);delete s[i]}return o}},n.prototype.disposeInternal=function(){this.listeners_&&d(this.listeners_)},n.prototype.getListeners=function(t){return this.listeners_&&this.listeners_[t]||void 0},n.prototype.hasListener=function(t){return!!this.listeners_&&(t?t in this.listeners_:Object.keys(this.listeners_).length>0)},n.prototype.removeEventListener=function(t,e){var n=this.listeners_&&this.listeners_[t];if(n){var i=n.indexOf(e);-1!==i&&(this.pendingRemovals_&&t in this.pendingRemovals_?(n[i]=p,++this.pendingRemovals_[t]):(n.splice(i,1),0===n.length&&delete this.listeners_[t]))}},n}(o),x="change",C="contextmenu",w="click",S="keydown",E="keypress",T="resize",b="touchmove",O="wheel";function R(t,e,n,i,o){if(i&&i!==t&&(n=n.bind(i)),o){var r=n;n=function(){t.removeEventListener(e,n),r.apply(this,arguments)}}var s={target:t,type:e,listener:n};return t.addEventListener(e,n),s}function P(t,e,n,i){return R(t,e,n,i,!0)}function I(t){t&&t.target&&(t.target.removeEventListener(t.type,t.listener),d(t))}var M=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),F=function(t){function e(){var e=t.call(this)||this;return e.on=e.onInternal,e.once=e.onceInternal,e.un=e.unInternal,e.revision_=0,e}return M(e,t),e.prototype.changed=function(){++this.revision_,this.dispatchEvent(x)},e.prototype.getRevision=function(){return this.revision_},e.prototype.onInternal=function(t,e){if(Array.isArray(t)){for(var n=t.length,i=new Array(n),o=0;o<n;++o)i[o]=R(this,t[o],e);return i}return R(this,t,e)},e.prototype.onceInternal=function(t,e){var n;if(Array.isArray(t)){var i=t.length;n=new Array(i);for(var o=0;o<i;++o)n[o]=P(this,t[o],e)}else n=P(this,t,e);return e.ol_key=n,n},e.prototype.unInternal=function(t,e){var n=e.ol_key;if(n)!function(t){if(Array.isArray(t))for(var e=0,n=t.length;e<n;++e)I(t[e]);else I(t)}(n);else if(Array.isArray(t))for(var i=0,o=t.length;i<o;++i)this.removeEventListener(t[i],e);else this.removeEventListener(t,e)},e}(m);F.prototype.on,F.prototype.once,F.prototype.un;var L=F;function A(){return function(){throw new Error("Unimplemented abstract method.")}()}var D=0;function k(t){return t.ol_uid||(t.ol_uid=String(++D))}var j=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),G=function(t){function e(e,n,i){var o=t.call(this,e)||this;return o.key=n,o.oldValue=i,o}return j(e,t),e}(t),z=function(t){function n(e){var n=t.call(this)||this;return n.on,n.once,n.un,k(n),n.values_=null,void 0!==e&&n.setProperties(e),n}return j(n,t),n.prototype.get=function(t){var e;return this.values_&&this.values_.hasOwnProperty(t)&&(e=this.values_[t]),e},n.prototype.getKeys=function(){return this.values_&&Object.keys(this.values_)||[]},n.prototype.getProperties=function(){return this.values_&&f({},this.values_)||{}},n.prototype.hasProperties=function(){return!!this.values_},n.prototype.notify=function(t,n){var i;i="change:"+t,this.dispatchEvent(new G(i,t,n)),i=e,this.dispatchEvent(new G(i,t,n))},n.prototype.addChangeListener=function(t,e){this.addEventListener("change:"+t,e)},n.prototype.removeChangeListener=function(t,e){this.removeEventListener("change:"+t,e)},n.prototype.set=function(t,e,n){var i=this.values_||(this.values_={});if(n)i[t]=e;else{var o=i[t];i[t]=e,o!==e&&this.notify(t,o)}},n.prototype.setProperties=function(t,e){for(var n in t)this.set(n,t[n],e)},n.prototype.applyProperties=function(t){t.values_&&f(this.values_||(this.values_={}),t.values_)},n.prototype.unset=function(t,e){if(this.values_&&t in this.values_){var n=this.values_[t];delete this.values_[t],g(this.values_)&&(this.values_=null),e||this.notify(t,n)}},n}(L),W="postrender",X="undefined"!=typeof navigator&&void 0!==navigator.userAgent?navigator.userAgent.toLowerCase():"",N=-1!==X.indexOf("firefox"),Y=(-1!==X.indexOf("safari")&&X.indexOf("chrom"),-1!==X.indexOf("webkit")&&-1==X.indexOf("edge")),K=-1!==X.indexOf("macintosh"),B="undefined"!=typeof devicePixelRatio?devicePixelRatio:1,Z="undefined"!=typeof WorkerGlobalScope&&"undefined"!=typeof OffscreenCanvas&&self instanceof WorkerGlobalScope,V="undefined"!=typeof Image&&Image.prototype.decode,U=function(){var t=!1;try{var e=Object.defineProperty({},"passive",{get:function(){t=!0}});window.addEventListener("_",null,e),window.removeEventListener("_",null,e)}catch(t){}return t}();function H(t,e,n,i){var o;return n&&n.length?o=n.shift():Z?o=new OffscreenCanvas(t||300,e||300):(o=document.createElement("canvas")).style.all="unset",t&&(o.width=t),e&&(o.height=e),o.getContext("2d",i)}function q(t,e){var n=e.parentNode;n&&n.replaceChild(t,e)}function J(t){return t&&t.parentNode?t.parentNode.removeChild(t):null}var Q=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),$=function(t){function e(e){var n=t.call(this)||this,i=e.element;return!i||e.target||i.style.pointerEvents||(i.style.pointerEvents="auto"),n.element=i||null,n.target_=null,n.map_=null,n.listenerKeys=[],e.render&&(n.render=e.render),e.target&&n.setTarget(e.target),n}return Q(e,t),e.prototype.disposeInternal=function(){J(this.element),t.prototype.disposeInternal.call(this)},e.prototype.getMap=function(){return this.map_},e.prototype.setMap=function(t){this.map_&&J(this.element);for(var e=0,n=this.listenerKeys.length;e<n;++e)I(this.listenerKeys[e]);this.listenerKeys.length=0,this.map_=t,this.map_&&((this.target_?this.target_:t.getOverlayContainerStopEvent()).appendChild(this.element),this.render!==p&&this.listenerKeys.push(R(t,W,this.render,this)),t.render())},e.prototype.render=function(t){},e.prototype.setTarget=function(t){this.target_="string"==typeof t?document.getElementById(t):t},e}(z),tt="ol-hidden",et="ol-control",nt=new RegExp(["^\\s*(?=(?:(?:[-a-z]+\\s*){0,2}(italic|oblique))?)","(?=(?:(?:[-a-z]+\\s*){0,2}(small-caps))?)","(?=(?:(?:[-a-z]+\\s*){0,2}(bold(?:er)?|lighter|[1-9]00 ))?)","(?:(?:normal|\\1|\\2|\\3)\\s*){0,3}((?:xx?-)?","(?:small|large)|medium|smaller|larger|[\\.\\d]+(?:\\%|in|[cem]m|ex|p[ctx]))","(?:\\s*\\/\\s*(normal|[\\.\\d]+(?:\\%|in|[cem]m|ex|p[ctx])?))","?\\s*([-,\\\"\\'\\sa-z]+?)\\s*$"].join(""),"i"),it=["style","variant","weight","size","lineHeight","family"],ot=function(t){var e=t.match(nt);if(!e)return null;for(var n={lineHeight:"normal",size:"1.2em",style:"normal",weight:"normal",variant:"normal"},i=0,o=it.length;i<o;++i){var r=e[i+1];void 0!==r&&(n[it[i]]=r)}return n.families=n.family.split(/,\s?/),n};function rt(t){return 1===t?"":String(Math.round(100*t)/100)}var st="opacity",at="visible",lt="extent",ht="zIndex",ut="maxResolution",ct="minResolution",pt="maxZoom",ft="minZoom",dt="source",_t=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),gt=function(t){function e(e){var n=this,i="Assertion failed. See https://openlayers.org/en/v"+"6.9.0".split("-")[0]+"/doc/errors/#"+e+" for details.";return(n=t.call(this,i)||this).code=e,n.name="AssertionError",n.message=i,n}return _t(e,t),e}(Error);function yt(t,e){if(!t)throw new gt(e)}function vt(t,e,n){return Math.min(Math.max(t,e),n)}var mt="cosh"in Math?Math.cosh:function(t){var e=Math.exp(t);return(e+1/e)/2},xt="log2"in Math?Math.log2:function(t){return Math.log(t)*Math.LOG2E};function Ct(t,e,n,i,o,r){var s=o-n,a=r-i;if(0!==s||0!==a){var l=((t-n)*s+(e-i)*a)/(s*s+a*a);l>1?(n=o,i=r):l>0&&(n+=s*l,i+=a*l)}return wt(t,e,n,i)}function wt(t,e,n,i){var o=n-t,r=i-e;return o*o+r*r}function St(t){return t*Math.PI/180}function Et(t,e){var n=t%e;return n*e<0?n+e:n}function Tt(t,e,n){return t+n*(e-t)}var bt=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),Ot=function(t){function e(e){var n=t.call(this)||this;n.on,n.once,n.un;var i=f({},e);return"object"==typeof e.properties&&(delete i.properties,f(i,e.properties)),i.opacity=void 0!==e.opacity?e.opacity:1,yt("number"==typeof i.opacity,64),i.visible=void 0===e.visible||e.visible,i.zIndex=e.zIndex,i.maxResolution=void 0!==e.maxResolution?e.maxResolution:1/0,i.minResolution=void 0!==e.minResolution?e.minResolution:0,i.minZoom=void 0!==e.minZoom?e.minZoom:-1/0,i.maxZoom=void 0!==e.maxZoom?e.maxZoom:1/0,n.className_=void 0!==i.className?e.className:"ol-layer",delete i.className,n.setProperties(i),n.state_=null,n}return bt(e,t),e.prototype.getClassName=function(){return this.className_},e.prototype.getLayerState=function(t){var e=this.state_||{layer:this,managed:void 0===t||t},n=this.getZIndex();return e.opacity=vt(Math.round(100*this.getOpacity())/100,0,1),e.sourceState=this.getSourceState(),e.visible=this.getVisible(),e.extent=this.getExtent(),e.zIndex=void 0!==n||e.managed?n:1/0,e.maxResolution=this.getMaxResolution(),e.minResolution=Math.max(this.getMinResolution(),0),e.minZoom=this.getMinZoom(),e.maxZoom=this.getMaxZoom(),this.state_=e,e},e.prototype.getLayersArray=function(t){return A()},e.prototype.getLayerStatesArray=function(t){return A()},e.prototype.getExtent=function(){return this.get(lt)},e.prototype.getMaxResolution=function(){return this.get(ut)},e.prototype.getMinResolution=function(){return this.get(ct)},e.prototype.getMinZoom=function(){return this.get(ft)},e.prototype.getMaxZoom=function(){return this.get(pt)},e.prototype.getOpacity=function(){return this.get(st)},e.prototype.getSourceState=function(){return A()},e.prototype.getVisible=function(){return this.get(at)},e.prototype.getZIndex=function(){return this.get(ht)},e.prototype.setExtent=function(t){this.set(lt,t)},e.prototype.setMaxResolution=function(t){this.set(ut,t)},e.prototype.setMinResolution=function(t){this.set(ct,t)},e.prototype.setMaxZoom=function(t){this.set(pt,t)},e.prototype.setMinZoom=function(t){this.set(ft,t)},e.prototype.setOpacity=function(t){yt("number"==typeof t,64),this.set(st,t)},e.prototype.setVisible=function(t){this.set(at,t)},e.prototype.setZIndex=function(t){this.set(ht,t)},e.prototype.disposeInternal=function(){this.state_&&(this.state_.layer=null,this.state_=null),t.prototype.disposeInternal.call(this)},e}(z),Rt="precompose",Pt="rendercomplete",It="undefined",Mt="ready",Ft=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}();function Lt(t,e){if(!t.visible)return!1;var n=e.resolution;if(n<t.minResolution||n>=t.maxResolution)return!1;var i=e.zoom;return i>t.minZoom&&i<=t.maxZoom}var At=function(t){function e(e){var n=this,i=f({},e);delete i.source,(n=t.call(this,i)||this).on,n.once,n.un,n.mapPrecomposeKey_=null,n.mapRenderKey_=null,n.sourceChangeKey_=null,n.renderer_=null,e.render&&(n.render=e.render),e.map&&n.setMap(e.map),n.addChangeListener(dt,n.handleSourcePropertyChange_);var o=e.source?e.source:null;return n.setSource(o),n}return Ft(e,t),e.prototype.getLayersArray=function(t){var e=t||[];return e.push(this),e},e.prototype.getLayerStatesArray=function(t){var e=t||[];return e.push(this.getLayerState()),e},e.prototype.getSource=function(){return this.get(dt)||null},e.prototype.getSourceState=function(){var t=this.getSource();return t?t.getState():It},e.prototype.handleSourceChange_=function(){this.changed()},e.prototype.handleSourcePropertyChange_=function(){this.sourceChangeKey_&&(I(this.sourceChangeKey_),this.sourceChangeKey_=null);var t=this.getSource();t&&(this.sourceChangeKey_=R(t,x,this.handleSourceChange_,this)),this.changed()},e.prototype.getFeatures=function(t){return this.renderer_?this.renderer_.getFeatures(t):new Promise((function(t){return t([])}))},e.prototype.render=function(t,e){var n=this.getRenderer();if(n.prepareFrame(t))return n.renderFrame(t,e)},e.prototype.setMap=function(t){this.mapPrecomposeKey_&&(I(this.mapPrecomposeKey_),this.mapPrecomposeKey_=null),t||this.changed(),this.mapRenderKey_&&(I(this.mapRenderKey_),this.mapRenderKey_=null),t&&(this.mapPrecomposeKey_=R(t,Rt,(function(t){var e=t.frameState.layerStatesArray,n=this.getLayerState(!1);yt(!e.some((function(t){return t.layer===n.layer})),67),e.push(n)}),this),this.mapRenderKey_=R(this,x,t.render,t),this.changed())},e.prototype.setSource=function(t){this.set(dt,t)},e.prototype.getRenderer=function(){return this.renderer_||(this.renderer_=this.createRenderer()),this.renderer_},e.prototype.hasRenderer=function(){return!!this.renderer_},e.prototype.createRenderer=function(){return null},e.prototype.disposeInternal=function(){this.renderer_&&(this.renderer_.dispose(),delete this.renderer_),this.setSource(null),t.prototype.disposeInternal.call(this)},e}(Ot),Dt=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),kt=function(t){function e(e){var n=this,i=e||{};(n=t.call(this,{element:document.createElement("div"),render:i.render,target:i.target})||this).ulElement_=document.createElement("ul"),n.collapsed_=void 0===i.collapsed||i.collapsed,n.userCollapsed_=n.collapsed_,n.overrideCollapsible_=void 0!==i.collapsible,n.collapsible_=void 0===i.collapsible||i.collapsible,n.collapsible_||(n.collapsed_=!1);var o=void 0!==i.className?i.className:"ol-attribution",r=void 0!==i.tipLabel?i.tipLabel:"Attributions",s=void 0!==i.expandClassName?i.expandClassName:o+"-expand",a=void 0!==i.collapseLabel?i.collapseLabel:"›",l=void 0!==i.collapseClassName?i.collapseClassName:o+"-collpase";"string"==typeof a?(n.collapseLabel_=document.createElement("span"),n.collapseLabel_.textContent=a,n.collapseLabel_.className=l):n.collapseLabel_=a;var h=void 0!==i.label?i.label:"i";"string"==typeof h?(n.label_=document.createElement("span"),n.label_.textContent=h,n.label_.className=s):n.label_=h;var u=n.collapsible_&&!n.collapsed_?n.collapseLabel_:n.label_;n.toggleButton_=document.createElement("button"),n.toggleButton_.setAttribute("type","button"),n.toggleButton_.setAttribute("aria-expanded",String(!n.collapsed_)),n.toggleButton_.title=r,n.toggleButton_.appendChild(u),n.toggleButton_.addEventListener(w,n.handleClick_.bind(n),!1);var c=o+" ol-unselectable "+et+(n.collapsed_&&n.collapsible_?" ol-collapsed":"")+(n.collapsible_?"":" ol-uncollapsible"),p=n.element;return p.className=c,p.appendChild(n.toggleButton_),p.appendChild(n.ulElement_),n.renderedAttributions_=[],n.renderedVisible_=!0,n}return Dt(e,t),e.prototype.collectSourceAttributions_=function(t){for(var e={},n=[],i=!0,o=t.layerStatesArray,r=0,s=o.length;r<s;++r){var a=o[r];if(Lt(a,t.viewState)){var l=a.layer.getSource();if(l){var h=l.getAttributions();if(h){var u=h(t);if(u)if(i=i&&!1!==l.getAttributionsCollapsible(),Array.isArray(u))for(var c=0,p=u.length;c<p;++c)u[c]in e||(n.push(u[c]),e[u[c]]=!0);else u in e||(n.push(u),e[u]=!0)}}}}return this.overrideCollapsible_||this.setCollapsible(i),n},e.prototype.updateElement_=function(t){if(t){var e=this.collectSourceAttributions_(t),n=e.length>0;if(this.renderedVisible_!=n&&(this.element.style.display=n?"":"none",this.renderedVisible_=n),!h(e,this.renderedAttributions_)){!function(t){for(;t.lastChild;)t.removeChild(t.lastChild)}(this.ulElement_);for(var i=0,o=e.length;i<o;++i){var r=document.createElement("li");r.innerHTML=e[i],this.ulElement_.appendChild(r)}this.renderedAttributions_=e}}else this.renderedVisible_&&(this.element.style.display="none",this.renderedVisible_=!1)},e.prototype.handleClick_=function(t){t.preventDefault(),this.handleToggle_(),this.userCollapsed_=this.collapsed_},e.prototype.handleToggle_=function(){this.element.classList.toggle("ol-collapsed"),this.collapsed_?q(this.collapseLabel_,this.label_):q(this.label_,this.collapseLabel_),this.collapsed_=!this.collapsed_,this.toggleButton_.setAttribute("aria-expanded",String(!this.collapsed_))},e.prototype.getCollapsible=function(){return this.collapsible_},e.prototype.setCollapsible=function(t){this.collapsible_!==t&&(this.collapsible_=t,this.element.classList.toggle("ol-uncollapsible"),this.userCollapsed_&&this.handleToggle_())},e.prototype.setCollapsed=function(t){this.userCollapsed_=t,this.collapsible_&&this.collapsed_!==t&&this.handleToggle_()},e.prototype.getCollapsed=function(){return this.collapsed_},e.prototype.render=function(t){this.updateElement_(t.frameState)},e}($),jt="pointermove",Gt="pointerdown",zt={RADIANS:"radians",DEGREES:"degrees",FEET:"ft",METERS:"m",PIXELS:"pixels",TILE_PIXELS:"tile-pixels",USFEET:"us-ft"},Wt={};Wt[zt.RADIANS]=6370997/(2*Math.PI),Wt[zt.DEGREES]=2*Math.PI*6370997/360,Wt[zt.FEET]=.3048,Wt[zt.METERS]=1,Wt[zt.USFEET]=1200/3937;var Xt=zt,Nt=function(){function t(t){this.code_=t.code,this.units_=t.units,this.extent_=void 0!==t.extent?t.extent:null,this.worldExtent_=void 0!==t.worldExtent?t.worldExtent:null,this.axisOrientation_=void 0!==t.axisOrientation?t.axisOrientation:"enu",this.global_=void 0!==t.global&&t.global,this.canWrapX_=!(!this.global_||!this.extent_),this.getPointResolutionFunc_=t.getPointResolution,this.defaultTileGrid_=null,this.metersPerUnit_=t.metersPerUnit}return t.prototype.canWrapX=function(){return this.canWrapX_},t.prototype.getCode=function(){return this.code_},t.prototype.getExtent=function(){return this.extent_},t.prototype.getUnits=function(){return this.units_},t.prototype.getMetersPerUnit=function(){return this.metersPerUnit_||Wt[this.units_]},t.prototype.getWorldExtent=function(){return this.worldExtent_},t.prototype.getAxisOrientation=function(){return this.axisOrientation_},t.prototype.isGlobal=function(){return this.global_},t.prototype.setGlobal=function(t){this.global_=t,this.canWrapX_=!(!t||!this.extent_)},t.prototype.getDefaultTileGrid=function(){return this.defaultTileGrid_},t.prototype.setDefaultTileGrid=function(t){this.defaultTileGrid_=t},t.prototype.setExtent=function(t){this.extent_=t,this.canWrapX_=!(!this.global_||!t)},t.prototype.setWorldExtent=function(t){this.worldExtent_=t},t.prototype.setGetPointResolution=function(t){this.getPointResolutionFunc_=t},t.prototype.getPointResolutionFunc=function(){return this.getPointResolutionFunc_},t}(),Yt=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),Kt=6378137,Bt=Math.PI*Kt,Zt=[-Bt,-Bt,Bt,Bt],Vt=[-180,-85,180,85],Ut=Kt*Math.log(Math.tan(Math.PI/2)),Ht=function(t){function e(e){return t.call(this,{code:e,units:Xt.METERS,extent:Zt,global:!0,worldExtent:Vt,getPointResolution:function(t,e){return t/mt(e[1]/Kt)}})||this}return Yt(e,t),e}(Nt),qt=[new Ht("EPSG:3857"),new Ht("EPSG:102100"),new Ht("EPSG:102113"),new Ht("EPSG:900913"),new Ht("http://www.opengis.net/def/crs/EPSG/0/3857"),new Ht("http://www.opengis.net/gml/srs/epsg.xml#3857")];var Jt=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),Qt=[-180,-90,180,90],$t=6378137*Math.PI/180,te=function(t){function e(e,n){return t.call(this,{code:e,units:Xt.DEGREES,extent:Qt,axisOrientation:n,global:!0,metersPerUnit:$t,worldExtent:Qt})||this}return Jt(e,t),e}(Nt),ee=[new te("CRS:84"),new te("EPSG:4326","neu"),new te("urn:ogc:def:crs:OGC:1.3:CRS84"),new te("urn:ogc:def:crs:OGC:2:84"),new te("http://www.opengis.net/def/crs/OGC/1.3/CRS84","neu"),new te("http://www.opengis.net/gml/srs/epsg.xml#4326","neu"),new te("http://www.opengis.net/def/crs/EPSG/0/4326","neu")],ne={},ie={};function oe(t,e,n){var i=t.getCode(),o=e.getCode();i in ie||(ie[i]={}),ie[i][o]=n}var re="top-left";function se(t){for(var e=[1/0,1/0,-1/0,-1/0],n=0,i=t.length;n<i;++n)ve(e,t[n]);return e}function ae(t,e,n){return n?(n[0]=t[0]-e,n[1]=t[1]-e,n[2]=t[2]+e,n[3]=t[3]+e,n):[t[0]-e,t[1]-e,t[2]+e,t[3]+e]}function le(t,e){return e?(e[0]=t[0],e[1]=t[1],e[2]=t[2],e[3]=t[3],e):t.slice()}function he(t,e,n){var i,o;return(i=e<t[0]?t[0]-e:t[2]<e?e-t[2]:0)*i+(o=n<t[1]?t[1]-n:t[3]<n?n-t[3]:0)*o}function ue(t,e){return pe(t,e[0],e[1])}function ce(t,e){return t[0]<=e[0]&&e[2]<=t[2]&&t[1]<=e[1]&&e[3]<=t[3]}function pe(t,e,n){return t[0]<=e&&e<=t[2]&&t[1]<=n&&n<=t[3]}function fe(t,e){var n=t[0],i=t[1],o=t[2],r=t[3],s=e[0],a=e[1],l=0;return s<n?l|=16:s>o&&(l|=4),a<i?l|=8:a>r&&(l|=2),0===l&&(l=1),l}function de(t,e,n,i,o){return o?(o[0]=t,o[1]=e,o[2]=n,o[3]=i,o):[t,e,n,i]}function _e(t){return de(1/0,1/0,-1/0,-1/0,t)}function ge(t,e,n,i,o){return me(_e(o),t,e,n,i)}function ye(t,e){return t[0]==e[0]&&t[2]==e[2]&&t[1]==e[1]&&t[3]==e[3]}function ve(t,e){e[0]<t[0]&&(t[0]=e[0]),e[0]>t[2]&&(t[2]=e[0]),e[1]<t[1]&&(t[1]=e[1]),e[1]>t[3]&&(t[3]=e[1])}function me(t,e,n,i,o){for(;n<i;n+=o)xe(t,e[n],e[n+1]);return t}function xe(t,e,n){t[0]=Math.min(t[0],e),t[1]=Math.min(t[1],n),t[2]=Math.max(t[2],e),t[3]=Math.max(t[3],n)}function Ce(t,e){var n;return(n=e(Se(t)))||(n=e(Ee(t)))||(n=e(Me(t)))?n:(n=e(Ie(t)))||!1}function we(t){var e=0;return Ae(t)||(e=Fe(t)*Re(t)),e}function Se(t){return[t[0],t[1]]}function Ee(t){return[t[2],t[1]]}function Te(t){return[(t[0]+t[2])/2,(t[1]+t[3])/2]}function be(t,e){var n;return"bottom-left"===e?n=Se(t):"bottom-right"===e?n=Ee(t):e===re?n=Ie(t):"top-right"===e?n=Me(t):yt(!1,13),n}function Oe(t,e,n,i,o){var r=e*i[0]/2,s=e*i[1]/2,a=Math.cos(n),l=Math.sin(n),h=r*a,u=r*l,c=s*a,p=s*l,f=t[0],d=t[1],_=f-h+p,g=f-h-p,y=f+h-p,v=f+h+p,m=d-u-c,x=d-u+c,C=d+u+c,w=d+u-c;return de(Math.min(_,g,y,v),Math.min(m,x,C,w),Math.max(_,g,y,v),Math.max(m,x,C,w),o)}function Re(t){return t[3]-t[1]}function Pe(t,e,n){var i=n||[1/0,1/0,-1/0,-1/0];return Le(t,e)?(t[0]>e[0]?i[0]=t[0]:i[0]=e[0],t[1]>e[1]?i[1]=t[1]:i[1]=e[1],t[2]<e[2]?i[2]=t[2]:i[2]=e[2],t[3]<e[3]?i[3]=t[3]:i[3]=e[3]):_e(i),i}function Ie(t){return[t[0],t[3]]}function Me(t){return[t[2],t[3]]}function Fe(t){return t[2]-t[0]}function Le(t,e){return t[0]<=e[2]&&t[2]>=e[0]&&t[1]<=e[3]&&t[3]>=e[1]}function Ae(t){return t[2]<t[0]||t[3]<t[1]}function De(t,e,n){var i=n||6371008.8,o=St(t[1]),r=St(e[1]),s=(r-o)/2,a=St(e[0]-t[0])/2,l=Math.sin(s)*Math.sin(s)+Math.sin(a)*Math.sin(a)*Math.cos(o)*Math.cos(r);return 2*i*Math.atan2(Math.sqrt(l),Math.sqrt(1-l))}function ke(t,e,n){var i;if(void 0!==e){for(var o=0,r=t.length;o<r;++o)e[o]=t[o];i=e}else i=t.slice();return i}function je(t,e,n){if(void 0!==e&&t!==e){for(var i=0,o=t.length;i<o;++i)e[i]=t[i];t=e}return t}function Ge(t){!function(t,e){ne[t]=e}(t.getCode(),t),oe(t,t,ke)}function ze(t){return"string"==typeof t?ne[e=t]||ne[e.replace(/urn:(x-)?ogc:def:crs:EPSG:(.*:)?(\w+)$/,"EPSG:$3")]||null:t||null;var e}function We(t,e,n,i){var o,r=(t=ze(t)).getPointResolutionFunc();if(r)o=r(e,n),i&&i!==t.getUnits()&&(a=t.getMetersPerUnit())&&(o=o*a/Wt[i]);else{var s=t.getUnits();if(s==Xt.DEGREES&&!i||i==Xt.DEGREES)o=e;else{var a,l=Ke(t,ze("EPSG:4326"));if(l===je&&s!==Xt.DEGREES)o=e*t.getMetersPerUnit();else{var h=[n[0]-e/2,n[1],n[0]+e/2,n[1],n[0],n[1]-e/2,n[0],n[1]+e/2];o=(De((h=l(h,h,2)).slice(0,2),h.slice(2,4))+De(h.slice(4,6),h.slice(6,8)))/2}void 0!==(a=i?Wt[i]:t.getMetersPerUnit())&&(o/=a)}}return o}function Xe(t){!function(t){t.forEach(Ge)}(t),t.forEach((function(e){t.forEach((function(t){e!==t&&oe(e,t,ke)}))}))}function Ne(t,e){return t?"string"==typeof t?ze(t):t:ze(e)}function Ye(t,e){if(t===e)return!0;var n=t.getUnits()===e.getUnits();return(t.getCode()===e.getCode()||Ke(t,e)===ke)&&n}function Ke(t,e){var n=function(t,e){var n;return t in ie&&e in ie[t]&&(n=ie[t][e]),n}(t.getCode(),e.getCode());return n||(n=je),n}function Be(t,e){return Ke(ze(t),ze(e))}function Ze(t,e,n){return Be(e,n)(t,void 0,t.length)}function Ve(t,e,n,i){return function(t,e,n,i){var o=[];if(i>1)for(var r=t[2]-t[0],s=t[3]-t[1],a=0;a<i;++a)o.push(t[0]+r*a/i,t[1],t[2],t[1]+s*a/i,t[2]-r*a/i,t[3],t[0],t[3]-s*a/i);else o=[t[0],t[1],t[2],t[1],t[2],t[3],t[0],t[3]];e(o,o,2);for(var l=[],h=[],u=(a=0,o.length);a<u;a+=2)l.push(o[a]),h.push(o[a+1]);return function(t,e,n){return de(Math.min.apply(null,t),Math.min.apply(null,e),Math.max.apply(null,t),Math.max.apply(null,e),n)}(l,h,n)}(t,Be(e,n),void 0,i)}var Ue,He,qe,Je=null;function Qe(){return Je}function $e(t,e){return t}function tn(t,e){return t}function en(t,e){return t}function nn(t,e){return t}function on(t,e){return t}Xe(qt),Xe(ee),Ue=qt,He=function(t,e,n){var i=t.length,o=n>1?n:2,r=e;void 0===r&&(r=o>2?t.slice():new Array(i));for(var s=0;s<i;s+=o){r[s]=Bt*t[s]/180;var a=Kt*Math.log(Math.tan(Math.PI*(+t[s+1]+90)/360));a>Ut?a=Ut:a<-Ut&&(a=-Ut),r[s+1]=a}return r},qe=function(t,e,n){var i=t.length,o=n>1?n:2,r=e;void 0===r&&(r=o>2?t.slice():new Array(i));for(var s=0;s<i;s+=o)r[s]=180*t[s]/Bt,r[s+1]=360*Math.atan(Math.exp(t[s+1]/Kt))/Math.PI-90;return r},ee.forEach((function(t){Ue.forEach((function(e){oe(t,e,He),oe(e,t,qe)}))}));var rn=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),sn="projection",an="coordinateFormat",ln=function(t){function e(e){var n=this,i=e||{},o=document.createElement("div");o.className=void 0!==i.className?i.className:"ol-mouse-position",(n=t.call(this,{element:o,render:i.render,target:i.target})||this).on,n.once,n.un,n.addChangeListener(sn,n.handleProjectionChanged_),i.coordinateFormat&&n.setCoordinateFormat(i.coordinateFormat),i.projection&&n.setProjection(i.projection);var r=!0,s="&#160;";return"undefinedHTML"in i?(void 0!==i.undefinedHTML&&(s=i.undefinedHTML),r=!!s):"placeholder"in i&&(!1===i.placeholder?r=!1:s=String(i.placeholder)),n.placeholder_=s,n.renderOnMouseOut_=r,n.renderedHTML_=o.innerHTML,n.mapProjection_=null,n.transform_=null,n}return rn(e,t),e.prototype.handleProjectionChanged_=function(){this.transform_=null},e.prototype.getCoordinateFormat=function(){return this.get(an)},e.prototype.getProjection=function(){return this.get(sn)},e.prototype.handleMouseMove=function(t){var e=this.getMap();this.updateHTML_(e.getEventPixel(t))},e.prototype.handleMouseOut=function(t){this.updateHTML_(null)},e.prototype.setMap=function(e){if(t.prototype.setMap.call(this,e),e){var n=e.getViewport();this.listenerKeys.push(R(n,jt,this.handleMouseMove,this)),this.renderOnMouseOut_&&this.listenerKeys.push(R(n,"pointerout",this.handleMouseOut,this)),this.updateHTML_(null)}},e.prototype.setCoordinateFormat=function(t){this.set(an,t)},e.prototype.setProjection=function(t){this.set(sn,ze(t))},e.prototype.updateHTML_=function(t){var e=this.placeholder_;if(t&&this.mapProjection_){if(!this.transform_){var n=this.getProjection();this.transform_=n?Ke(this.mapProjection_,n):je}var i=this.getMap().getCoordinateFromPixelInternal(t);if(i){var o=Qe();o&&(this.transform_=Ke(this.mapProjection_,o)),this.transform_(i,i);var r=this.getCoordinateFormat();e=r?r(i):i.toString()}}this.renderedHTML_&&e===this.renderedHTML_||(this.element.innerHTML=e,this.renderedHTML_=e)},e.prototype.render=function(t){var e=t.frameState;e?this.mapProjection_!=e.viewState.projection&&(this.mapProjection_=e.viewState.projection,this.transform_=null):this.mapProjection_=null},e}($),hn=ln;function un(t){return Math.pow(t,3)}function cn(t){return 1-un(1-t)}function pn(t){return 3*t*t-2*t*t*t}function fn(t){return t}var dn=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),_n=function(t){function e(e){var n=this,i=e||{};n=t.call(this,{element:document.createElement("div"),target:i.target})||this;var o=void 0!==i.className?i.className:"ol-zoom",r=void 0!==i.delta?i.delta:1,s=void 0!==i.zoomInClassName?i.zoomInClassName:o+"-in",a=void 0!==i.zoomOutClassName?i.zoomOutClassName:o+"-out",l=void 0!==i.zoomInLabel?i.zoomInLabel:"+",h=void 0!==i.zoomOutLabel?i.zoomOutLabel:"–",u=void 0!==i.zoomInTipLabel?i.zoomInTipLabel:"Zoom in",c=void 0!==i.zoomOutTipLabel?i.zoomOutTipLabel:"Zoom out",p=document.createElement("button");p.className=s,p.setAttribute("type","button"),p.title=u,p.appendChild("string"==typeof l?document.createTextNode(l):l),p.addEventListener(w,n.handleClick_.bind(n,r),!1);var f=document.createElement("button");f.className=a,f.setAttribute("type","button"),f.title=c,f.appendChild("string"==typeof h?document.createTextNode(h):h),f.addEventListener(w,n.handleClick_.bind(n,-r),!1);var d=o+" ol-unselectable "+et,_=n.element;return _.className=d,_.appendChild(p),_.appendChild(f),n.duration_=void 0!==i.duration?i.duration:250,n}return dn(e,t),e.prototype.handleClick_=function(t,e){e.preventDefault(),this.zoomByDelta_(t)},e.prototype.zoomByDelta_=function(t){var e=this.getMap().getView();if(e){var n=e.getZoom();if(void 0!==n){var i=e.getConstrainedZoom(n+t);this.duration_>0?(e.getAnimating()&&e.cancelAnimations(),e.animate({zoom:i,duration:this.duration_,easing:cn})):e.setZoom(i)}}},e}($);function gn(t,e){for(var n=!0,i=t.length-1;i>=0;--i)if(t[i]!=e[i]){n=!1;break}return n}function yn(t,e){var n=Math.cos(e),i=Math.sin(e),o=t[0]*n-t[1]*i,r=t[1]*n+t[0]*i;return t[0]=o,t[1]=r,t}function vn(t,e){if(e.canWrapX()){var n=Fe(e.getExtent()),i=function(t,e,n){var i=e.getExtent(),o=0;if(e.canWrapX()&&(t[0]<i[0]||t[0]>i[2])){var r=n||Fe(i);o=Math.floor((t[0]-i[0])/r)}return o}(t,e,n);i&&(t[0]-=i*n)}return t}var mn,xn="XY",Cn="XYM",wn="XYZM",Sn="Point",En="LineString",Tn="Polygon",bn="MultiPoint",On="MultiLineString",Rn="MultiPolygon",Pn="GeometryCollection",In="Circle";function Mn(t,e){var n=e[0],i=e[1];return e[0]=t[0]*n+t[2]*i+t[4],e[1]=t[1]*n+t[3]*i+t[5],e}function Fn(t,e,n,i,o,r,s,a){var l=Math.sin(r),h=Math.cos(r);return t[0]=i*h,t[1]=o*l,t[2]=-i*l,t[3]=o*h,t[4]=s*i*h-a*i*l+e,t[5]=s*o*l+a*o*h+n,t}function Ln(t,e){var n,i=(n=e)[0]*n[3]-n[1]*n[2];yt(0!==i,32);var o=e[0],r=e[1],s=e[2],a=e[3],l=e[4],h=e[5];return t[0]=a/i,t[1]=-r/i,t[2]=-s/i,t[3]=o/i,t[4]=(s*h-a*l)/i,t[5]=-(o*h-r*l)/i,t}function An(t){var e="matrix("+t.join(", ")+")";if(Z)return e;var n=mn||(mn=document.createElement("div"));return n.style.transform=e,n.style.transform}function Dn(t,e,n,i,o,r){for(var s=r||[],a=0,l=e;l<n;l+=i){var h=t[l],u=t[l+1];s[a++]=o[0]*h+o[2]*u+o[4],s[a++]=o[1]*h+o[3]*u+o[5]}return r&&s.length!=a&&(s.length=a),s}function kn(t,e,n,i,o,r,s){for(var a=s||[],l=Math.cos(o),h=Math.sin(o),u=r[0],c=r[1],p=0,f=e;f<n;f+=i){var d=t[f]-u,_=t[f+1]-c;a[p++]=u+d*l-_*h,a[p++]=c+d*h+_*l;for(var g=f+2;g<f+i;++g)a[p++]=t[g]}return s&&a.length!=p&&(a.length=p),a}new Array(6);var jn=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),Gn=[1,0,0,1,0,0],zn=function(t){function e(){var e,n,i,o,r,s=t.call(this)||this;return s.extent_=[1/0,1/0,-1/0,-1/0],s.extentRevision_=-1,s.simplifiedGeometryMaxMinSquaredTolerance=0,s.simplifiedGeometryRevision=0,s.simplifyTransformedInternal=(e=function(t,e,n){if(!n)return this.getSimplifiedGeometry(e);var i=this.clone();return i.applyTransform(n),i.getSimplifiedGeometry(e)},r=!1,function(){var t=Array.prototype.slice.call(arguments);return r&&this===o&&h(t,i)||(r=!0,o=this,i=t,n=e.apply(this,arguments)),n}),s}return jn(e,t),e.prototype.simplifyTransformed=function(t,e){return this.simplifyTransformedInternal(this.getRevision(),t,e)},e.prototype.clone=function(){return A()},e.prototype.closestPointXY=function(t,e,n,i){return A()},e.prototype.containsXY=function(t,e){var n=this.getClosestPoint([t,e]);return n[0]===t&&n[1]===e},e.prototype.getClosestPoint=function(t,e){var n=e||[NaN,NaN];return this.closestPointXY(t[0],t[1],n,1/0),n},e.prototype.intersectsCoordinate=function(t){return this.containsXY(t[0],t[1])},e.prototype.computeExtent=function(t){return A()},e.prototype.getExtent=function(t){if(this.extentRevision_!=this.getRevision()){var e=this.computeExtent(this.extent_);(isNaN(e[0])||isNaN(e[1]))&&_e(e),this.extentRevision_=this.getRevision()}return function(t,e){return e?(e[0]=t[0],e[1]=t[1],e[2]=t[2],e[3]=t[3],e):t}(this.extent_,t)},e.prototype.rotate=function(t,e){A()},e.prototype.scale=function(t,e,n){A()},e.prototype.simplify=function(t){return this.getSimplifiedGeometry(t*t)},e.prototype.getSimplifiedGeometry=function(t){return A()},e.prototype.getType=function(){return A()},e.prototype.applyTransform=function(t){A()},e.prototype.intersectsExtent=function(t){return A()},e.prototype.translate=function(t,e){A()},e.prototype.transform=function(t,e){var n=ze(t),i=n.getUnits()==Xt.TILE_PIXELS?function(t,i,o){var r=n.getExtent(),s=n.getWorldExtent(),a=Re(s)/Re(r);return Fn(Gn,s[0],s[3],a,-a,0,0,0),Dn(t,0,t.length,o,Gn,i),Be(n,e)(t,i,o)}:Be(n,e);return this.applyTransform(i),this},e}(z),Wn=zn,Xn=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),Nn=function(t){function e(){var e=t.call(this)||this;return e.layout=xn,e.stride=2,e.flatCoordinates=null,e}return Xn(e,t),e.prototype.computeExtent=function(t){return ge(this.flatCoordinates,0,this.flatCoordinates.length,this.stride,t)},e.prototype.getCoordinates=function(){return A()},e.prototype.getFirstCoordinate=function(){return this.flatCoordinates.slice(0,this.stride)},e.prototype.getFlatCoordinates=function(){return this.flatCoordinates},e.prototype.getLastCoordinate=function(){return this.flatCoordinates.slice(this.flatCoordinates.length-this.stride)},e.prototype.getLayout=function(){return this.layout},e.prototype.getSimplifiedGeometry=function(t){if(this.simplifiedGeometryRevision!==this.getRevision()&&(this.simplifiedGeometryMaxMinSquaredTolerance=0,this.simplifiedGeometryRevision=this.getRevision()),t<0||0!==this.simplifiedGeometryMaxMinSquaredTolerance&&t<=this.simplifiedGeometryMaxMinSquaredTolerance)return this;var e=this.getSimplifiedGeometryInternal(t);return e.getFlatCoordinates().length<this.flatCoordinates.length?e:(this.simplifiedGeometryMaxMinSquaredTolerance=t,this)},e.prototype.getSimplifiedGeometryInternal=function(t){return this},e.prototype.getStride=function(){return this.stride},e.prototype.setFlatCoordinates=function(t,e){this.stride=Yn(t),this.layout=t,this.flatCoordinates=e},e.prototype.setCoordinates=function(t,e){A()},e.prototype.setLayout=function(t,e,n){var i;if(t)i=Yn(t);else{for(var o=0;o<n;++o){if(0===e.length)return this.layout=xn,void(this.stride=2);e=e[0]}t=function(t){var e;return 2==t?e=xn:3==t?e="XYZ":4==t&&(e=wn),e}(i=e.length)}this.layout=t,this.stride=i},e.prototype.applyTransform=function(t){this.flatCoordinates&&(t(this.flatCoordinates,this.flatCoordinates,this.stride),this.changed())},e.prototype.rotate=function(t,e){var n=this.getFlatCoordinates();if(n){var i=this.getStride();kn(n,0,n.length,i,t,e,n),this.changed()}},e.prototype.scale=function(t,e,n){var i=e;void 0===i&&(i=t);var o=n;o||(o=Te(this.getExtent()));var r=this.getFlatCoordinates();if(r){var s=this.getStride();!function(t,e,n,i,o,r,s,a){for(var l=a||[],h=s[0],u=s[1],c=0,p=0;p<n;p+=i){var f=t[p]-h,d=t[p+1]-u;l[c++]=h+o*f,l[c++]=u+r*d;for(var _=p+2;_<p+i;++_)l[c++]=t[_]}a&&l.length!=c&&(l.length=c)}(r,0,r.length,s,t,i,o,r),this.changed()}},e.prototype.translate=function(t,e){var n=this.getFlatCoordinates();if(n){var i=this.getStride();!function(t,e,n,i,o,r,s){for(var a=s||[],l=0,h=0;h<n;h+=i){a[l++]=t[h]+o,a[l++]=t[h+1]+r;for(var u=h+2;u<h+i;++u)a[l++]=t[u]}s&&a.length!=l&&(a.length=l)}(n,0,n.length,i,t,e,n),this.changed()}},e}(Wn);function Yn(t){var e;return t==xn?e=2:"XYZ"==t||t==Cn?e=3:t==wn&&(e=4),e}var Kn=Nn;function Bn(t,e,n,i,o,r,s){var a,l=t[e],h=t[e+1],u=t[n]-l,c=t[n+1]-h;if(0===u&&0===c)a=e;else{var p=((o-l)*u+(r-h)*c)/(u*u+c*c);if(p>1)a=n;else{if(p>0){for(var f=0;f<i;++f)s[f]=Tt(t[e+f],t[n+f],p);return void(s.length=i)}a=e}}for(f=0;f<i;++f)s[f]=t[a+f];s.length=i}function Zn(t,e,n,i,o){var r=t[e],s=t[e+1];for(e+=i;e<n;e+=i){var a=t[e],l=t[e+1],h=wt(r,s,a,l);h>o&&(o=h),r=a,s=l}return o}function Vn(t,e,n,i,o){for(var r=0,s=n.length;r<s;++r){var a=n[r];o=Zn(t,e,a,i,o),e=a}return o}function Un(t,e,n,i,o,r,s,a,l,h,u){if(e==n)return h;var c,p;if(0===o){if((p=wt(s,a,t[e],t[e+1]))<h){for(c=0;c<i;++c)l[c]=t[e+c];return l.length=i,p}return h}for(var f=u||[NaN,NaN],d=e+i;d<n;)if(Bn(t,d-i,d,i,s,a,f),(p=wt(s,a,f[0],f[1]))<h){for(h=p,c=0;c<i;++c)l[c]=f[c];l.length=i,d+=i}else d+=i*Math.max((Math.sqrt(p)-Math.sqrt(h))/o|0,1);if(r&&(Bn(t,n-i,e,i,s,a,f),(p=wt(s,a,f[0],f[1]))<h)){for(h=p,c=0;c<i;++c)l[c]=f[c];l.length=i}return h}function Hn(t,e,n,i,o,r,s,a,l,h,u){for(var c=u||[NaN,NaN],p=0,f=n.length;p<f;++p){var d=n[p];h=Un(t,e,d,i,o,r,s,a,l,h,c),e=d}return h}function qn(t,e,n,i){for(var o=0,r=n.length;o<r;++o)for(var s=n[o],a=0;a<i;++a)t[e++]=s[a];return e}function Jn(t,e,n,i,o){for(var r=o||[],s=0,a=0,l=n.length;a<l;++a){var h=qn(t,e,n[a],i);r[s++]=h,e=h}return r.length=s,r}function Qn(t,e,n,i,o,r,s){var a=(n-e)/i;if(a<3){for(;e<n;e+=i)r[s++]=t[e],r[s++]=t[e+1];return s}var l=new Array(a);l[0]=1,l[a-1]=1;for(var h=[e,n-i],u=0;h.length>0;){for(var c=h.pop(),p=h.pop(),f=0,d=t[p],_=t[p+1],g=t[c],y=t[c+1],v=p+i;v<c;v+=i){var m=Ct(t[v],t[v+1],d,_,g,y);m>f&&(u=v,f=m)}f>o&&(l[(u-e)/i]=1,p+i<u&&h.push(p,u),u+i<c&&h.push(u,c))}for(v=0;v<a;++v)l[v]&&(r[s++]=t[e+v*i],r[s++]=t[e+v*i+1]);return s}function $n(t,e){return e*Math.round(t/e)}function ti(t,e,n,i,o,r,s){if(e==n)return s;var a,l,h=$n(t[e],o),u=$n(t[e+1],o);e+=i,r[s++]=h,r[s++]=u;do{if(a=$n(t[e],o),l=$n(t[e+1],o),(e+=i)==n)return r[s++]=a,r[s++]=l,s}while(a==h&&l==u);for(;e<n;){var c=$n(t[e],o),p=$n(t[e+1],o);if(e+=i,c!=a||p!=l){var f=a-h,d=l-u,_=c-h,g=p-u;f*g==d*_&&(f<0&&_<f||f==_||f>0&&_>f)&&(d<0&&g<d||d==g||d>0&&g>d)?(a=c,l=p):(r[s++]=a,r[s++]=l,h=a,u=l,a=c,l=p)}}return r[s++]=a,r[s++]=l,s}function ei(t,e,n,i,o,r,s,a){for(var l=0,h=n.length;l<h;++l){var u=n[l];s=ti(t,e,u,i,o,r,s),a.push(s),e=u}return s}function ni(t,e,n,i,o){var r;for(e+=i;e<n;e+=i)if(r=o(t.slice(e-i,e),t.slice(e,e+i)))return r;return!1}function ii(t,e,n,i,o){for(var r=void 0!==o?o:[],s=0,a=e;a<n;a+=i)r[s++]=t.slice(a,a+i);return r.length=s,r}function oi(t,e,n,i,o){for(var r=void 0!==o?o:[],s=0,a=0,l=n.length;a<l;++a){var h=n[a];r[s++]=ii(t,e,h,i,r[s]),e=h}return r.length=s,r}function ri(t,e,n,i,o){for(var r=void 0!==o?o:[],s=0,a=0,l=n.length;a<l;++a){var h=n[a];r[s++]=oi(t,e,h,i,r[s]),e=h[h.length-1]}return r.length=s,r}function si(t,e,n,i,o,s,a){var l,h,u=(n-e)/i;if(1===u)l=e;else if(2===u)l=e,h=o;else if(0!==u){for(var c=t[e],p=t[e+1],f=0,d=[0],_=e+i;_<n;_+=i){var g=t[_],y=t[_+1];f+=Math.sqrt((g-c)*(g-c)+(y-p)*(y-p)),d.push(f),c=g,p=y}var v=o*f,m=function(t,e,n){for(var i,o,s=r,a=0,l=t.length,h=!1;a<l;)(o=+s(t[i=a+(l-a>>1)],e))<0?a=i+1:(l=i,h=!o);return h?a:~a}(d,v);m<0?(h=(v-d[-m-2])/(d[-m-1]-d[-m-2]),l=e+(-m-2)*i):l=e+m*i}var x=a>1?a:2,C=s||new Array(x);for(_=0;_<x;++_)C[_]=void 0===l?NaN:void 0===h?t[l+_]:Tt(t[l+_],t[l+i+_],h);return C}function ai(t,e,n,i,o,r){if(n==e)return null;var s;if(o<t[e+i-1])return r?((s=t.slice(e,e+i))[i-1]=o,s):null;if(t[n-1]<o)return r?((s=t.slice(n-i,n))[i-1]=o,s):null;if(o==t[e+i-1])return t.slice(e,e+i);for(var a=e/i,l=n/i;a<l;){var h=a+l>>1;o<t[(h+1)*i-1]?l=h:a=h+1}var u=t[a*i-1];if(o==u)return t.slice((a-1)*i,(a-1)*i+i);var c=(o-u)/(t[(a+1)*i-1]-u);s=[];for(var p=0;p<i-1;++p)s.push(Tt(t[(a-1)*i+p],t[a*i+p],c));return s.push(o),s}function li(t,e,n,i,o){return!Ce(o,(function(o){return!hi(t,e,n,i,o[0],o[1])}))}function hi(t,e,n,i,o,r){for(var s=0,a=t[n-i],l=t[n-i+1];e<n;e+=i){var h=t[e],u=t[e+1];l<=r?u>r&&(h-a)*(r-l)-(o-a)*(u-l)>0&&s++:u<=r&&(h-a)*(r-l)-(o-a)*(u-l)<0&&s--,a=h,l=u}return 0!==s}function ui(t,e,n,i,o,r){if(0===n.length)return!1;if(!hi(t,e,n[0],i,o,r))return!1;for(var s=1,a=n.length;s<a;++s)if(hi(t,n[s-1],n[s],i,o,r))return!1;return!0}function ci(t,e,n,i,o){var r=me([1/0,1/0,-1/0,-1/0],t,e,n,i);return!!Le(o,r)&&(!!ce(o,r)||r[0]>=o[0]&&r[2]<=o[2]||r[1]>=o[1]&&r[3]<=o[3]||ni(t,e,n,i,(function(t,e){return function(t,e,n){var i=!1,o=fe(t,e),r=fe(t,n);if(1===o||1===r)i=!0;else{var s=t[0],a=t[1],l=t[2],h=t[3],u=e[0],c=e[1],p=n[0],f=n[1],d=(f-c)/(p-u),_=void 0,g=void 0;2&r&&!(2&o)&&(i=(_=p-(f-h)/d)>=s&&_<=l),i||!(4&r)||4&o||(i=(g=f-(p-l)*d)>=a&&g<=h),i||!(8&r)||8&o||(i=(_=p-(f-a)/d)>=s&&_<=l),i||!(16&r)||16&o||(i=(g=f-(p-s)*d)>=a&&g<=h)}return i}(o,t,e)})))}function pi(t,e,n,i,o){if(!function(t,e,n,i,o){return!!(ci(t,e,n,i,o)||hi(t,e,n,i,o[0],o[1])||hi(t,e,n,i,o[0],o[3])||hi(t,e,n,i,o[2],o[1])||hi(t,e,n,i,o[2],o[3]))}(t,e,n[0],i,o))return!1;if(1===n.length)return!0;for(var r=1,s=n.length;r<s;++r)if(li(t,n[r-1],n[r],i,o)&&!ci(t,n[r-1],n[r],i,o))return!1;return!0}function fi(t,e,n,i){for(var o=t[e],r=t[e+1],s=0,a=e+i;a<n;a+=i){var l=t[a],h=t[a+1];s+=Math.sqrt((l-o)*(l-o)+(h-r)*(h-r)),o=l,r=h}return s}var di=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),_i=function(t){function e(e,n){var i=t.call(this)||this;return i.flatMidpoint_=null,i.flatMidpointRevision_=-1,i.maxDelta_=-1,i.maxDeltaRevision_=-1,void 0===n||Array.isArray(e[0])?i.setCoordinates(e,n):i.setFlatCoordinates(n,e),i}return di(e,t),e.prototype.appendCoordinate=function(t){this.flatCoordinates?l(this.flatCoordinates,t):this.flatCoordinates=t.slice(),this.changed()},e.prototype.clone=function(){var t=new e(this.flatCoordinates.slice(),this.layout);return t.applyProperties(this),t},e.prototype.closestPointXY=function(t,e,n,i){return i<he(this.getExtent(),t,e)?i:(this.maxDeltaRevision_!=this.getRevision()&&(this.maxDelta_=Math.sqrt(Zn(this.flatCoordinates,0,this.flatCoordinates.length,this.stride,0)),this.maxDeltaRevision_=this.getRevision()),Un(this.flatCoordinates,0,this.flatCoordinates.length,this.stride,this.maxDelta_,!1,t,e,n,i))},e.prototype.forEachSegment=function(t){return ni(this.flatCoordinates,0,this.flatCoordinates.length,this.stride,t)},e.prototype.getCoordinateAtM=function(t,e){if(this.layout!=Cn&&this.layout!=wn)return null;var n=void 0!==e&&e;return ai(this.flatCoordinates,0,this.flatCoordinates.length,this.stride,t,n)},e.prototype.getCoordinates=function(){return ii(this.flatCoordinates,0,this.flatCoordinates.length,this.stride)},e.prototype.getCoordinateAt=function(t,e){return si(this.flatCoordinates,0,this.flatCoordinates.length,this.stride,t,e,this.stride)},e.prototype.getLength=function(){return fi(this.flatCoordinates,0,this.flatCoordinates.length,this.stride)},e.prototype.getFlatMidpoint=function(){return this.flatMidpointRevision_!=this.getRevision()&&(this.flatMidpoint_=this.getCoordinateAt(.5,this.flatMidpoint_),this.flatMidpointRevision_=this.getRevision()),this.flatMidpoint_},e.prototype.getSimplifiedGeometryInternal=function(t){var n=[];return n.length=Qn(this.flatCoordinates,0,this.flatCoordinates.length,this.stride,t,n,0),new e(n,xn)},e.prototype.getType=function(){return En},e.prototype.intersectsExtent=function(t){return ci(this.flatCoordinates,0,this.flatCoordinates.length,this.stride,t)},e.prototype.setCoordinates=function(t,e){this.setLayout(e,t,1),this.flatCoordinates||(this.flatCoordinates=[]),this.flatCoordinates.length=qn(this.flatCoordinates,0,t,this.stride),this.changed()},e}(Kn),gi=_i;function yi(t,e,n,i){for(var o=0,r=t[n-i],s=t[n-i+1];e<n;e+=i){var a=t[e],l=t[e+1];o+=s*a-r*l,r=a,s=l}return o/2}function vi(t,e,n,i){for(var o=0,r=0,s=n.length;r<s;++r){var a=n[r];o+=yi(t,e,a,i),e=a}return o}var mi=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),xi=function(t){function e(e,n){var i=t.call(this)||this;return i.maxDelta_=-1,i.maxDeltaRevision_=-1,void 0===n||Array.isArray(e[0])?i.setCoordinates(e,n):i.setFlatCoordinates(n,e),i}return mi(e,t),e.prototype.clone=function(){return new e(this.flatCoordinates.slice(),this.layout)},e.prototype.closestPointXY=function(t,e,n,i){return i<he(this.getExtent(),t,e)?i:(this.maxDeltaRevision_!=this.getRevision()&&(this.maxDelta_=Math.sqrt(Zn(this.flatCoordinates,0,this.flatCoordinates.length,this.stride,0)),this.maxDeltaRevision_=this.getRevision()),Un(this.flatCoordinates,0,this.flatCoordinates.length,this.stride,this.maxDelta_,!0,t,e,n,i))},e.prototype.getArea=function(){return yi(this.flatCoordinates,0,this.flatCoordinates.length,this.stride)},e.prototype.getCoordinates=function(){return ii(this.flatCoordinates,0,this.flatCoordinates.length,this.stride)},e.prototype.getSimplifiedGeometryInternal=function(t){var n=[];return n.length=Qn(this.flatCoordinates,0,this.flatCoordinates.length,this.stride,t,n,0),new e(n,xn)},e.prototype.getType=function(){return"LinearRing"},e.prototype.intersectsExtent=function(t){return!1},e.prototype.setCoordinates=function(t,e){this.setLayout(e,t,1),this.flatCoordinates||(this.flatCoordinates=[]),this.flatCoordinates.length=qn(this.flatCoordinates,0,t,this.stride),this.changed()},e}(Kn),Ci=xi,wi=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),Si=function(t){function e(e,n,i){var o=t.call(this)||this;if(o.ends_=[],o.maxDelta_=-1,o.maxDeltaRevision_=-1,Array.isArray(e[0]))o.setCoordinates(e,n);else if(void 0!==n&&i)o.setFlatCoordinates(n,e),o.ends_=i;else{for(var r=o.getLayout(),s=e,a=[],h=[],u=0,c=s.length;u<c;++u){var p=s[u];0===u&&(r=p.getLayout()),l(a,p.getFlatCoordinates()),h.push(a.length)}o.setFlatCoordinates(r,a),o.ends_=h}return o}return wi(e,t),e.prototype.appendLineString=function(t){this.flatCoordinates?l(this.flatCoordinates,t.getFlatCoordinates().slice()):this.flatCoordinates=t.getFlatCoordinates().slice(),this.ends_.push(this.flatCoordinates.length),this.changed()},e.prototype.clone=function(){var t=new e(this.flatCoordinates.slice(),this.layout,this.ends_.slice());return t.applyProperties(this),t},e.prototype.closestPointXY=function(t,e,n,i){return i<he(this.getExtent(),t,e)?i:(this.maxDeltaRevision_!=this.getRevision()&&(this.maxDelta_=Math.sqrt(Vn(this.flatCoordinates,0,this.ends_,this.stride,0)),this.maxDeltaRevision_=this.getRevision()),Hn(this.flatCoordinates,0,this.ends_,this.stride,this.maxDelta_,!1,t,e,n,i))},e.prototype.getCoordinateAtM=function(t,e,n){if(this.layout!=Cn&&this.layout!=wn||0===this.flatCoordinates.length)return null;var i=void 0!==e&&e,o=void 0!==n&&n;return function(t,e,n,i,o,r,s){if(s)return ai(t,e,n[n.length-1],i,o,r);var a;if(o<t[i-1])return r?((a=t.slice(0,i))[i-1]=o,a):null;if(t[t.length-1]<o)return r?((a=t.slice(t.length-i))[i-1]=o,a):null;for(var l=0,h=n.length;l<h;++l){var u=n[l];if(e!=u){if(o<t[e+i-1])return null;if(o<=t[u-1])return ai(t,e,u,i,o,!1);e=u}}return null}(this.flatCoordinates,0,this.ends_,this.stride,t,i,o)},e.prototype.getCoordinates=function(){return oi(this.flatCoordinates,0,this.ends_,this.stride)},e.prototype.getEnds=function(){return this.ends_},e.prototype.getLineString=function(t){return t<0||this.ends_.length<=t?null:new gi(this.flatCoordinates.slice(0===t?0:this.ends_[t-1],this.ends_[t]),this.layout)},e.prototype.getLineStrings=function(){for(var t=this.flatCoordinates,e=this.ends_,n=this.layout,i=[],o=0,r=0,s=e.length;r<s;++r){var a=e[r],l=new gi(t.slice(o,a),n);i.push(l),o=a}return i},e.prototype.getFlatMidpoints=function(){for(var t=[],e=this.flatCoordinates,n=0,i=this.ends_,o=this.stride,r=0,s=i.length;r<s;++r){var a=i[r];l(t,si(e,n,a,o,.5)),n=a}return t},e.prototype.getSimplifiedGeometryInternal=function(t){var n=[],i=[];return n.length=function(t,e,n,i,o,r,s,a){for(var l=0,h=n.length;l<h;++l){var u=n[l];s=Qn(t,e,u,i,o,r,s),a.push(s),e=u}return s}(this.flatCoordinates,0,this.ends_,this.stride,t,n,0,i),new e(n,xn,i)},e.prototype.getType=function(){return On},e.prototype.intersectsExtent=function(t){return function(t,e,n,i,o){for(var r=0,s=n.length;r<s;++r){if(ci(t,e,n[r],i,o))return!0;e=n[r]}return!1}(this.flatCoordinates,0,this.ends_,this.stride,t)},e.prototype.setCoordinates=function(t,e){this.setLayout(e,t,2),this.flatCoordinates||(this.flatCoordinates=[]);var n=Jn(this.flatCoordinates,0,t,this.stride,this.ends_);this.flatCoordinates.length=0===n.length?0:n[n.length-1],this.changed()},e}(Kn),Ei=Si,Ti=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),bi=function(t){function e(e,n){var i=t.call(this)||this;return i.setCoordinates(e,n),i}return Ti(e,t),e.prototype.clone=function(){var t=new e(this.flatCoordinates.slice(),this.layout);return t.applyProperties(this),t},e.prototype.closestPointXY=function(t,e,n,i){var o=this.flatCoordinates,r=wt(t,e,o[0],o[1]);if(r<i){for(var s=this.stride,a=0;a<s;++a)n[a]=o[a];return n.length=s,r}return i},e.prototype.getCoordinates=function(){return this.flatCoordinates?this.flatCoordinates.slice():[]},e.prototype.computeExtent=function(t){return n=t,de(i=(e=this.flatCoordinates)[0],o=e[1],i,o,n);var e,n,i,o},e.prototype.getType=function(){return Sn},e.prototype.intersectsExtent=function(t){return pe(t,this.flatCoordinates[0],this.flatCoordinates[1])},e.prototype.setCoordinates=function(t,e){this.setLayout(e,t,0),this.flatCoordinates||(this.flatCoordinates=[]),this.flatCoordinates.length=function(t,e,n,i){for(var o=0,r=n.length;o<r;++o)t[e++]=n[o];return e}(this.flatCoordinates,0,t,this.stride),this.changed()},e}(Kn),Oi=bi,Ri=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),Pi=function(t){function e(e,n){var i=t.call(this)||this;return n&&!Array.isArray(e[0])?i.setFlatCoordinates(n,e):i.setCoordinates(e,n),i}return Ri(e,t),e.prototype.appendPoint=function(t){this.flatCoordinates?l(this.flatCoordinates,t.getFlatCoordinates()):this.flatCoordinates=t.getFlatCoordinates().slice(),this.changed()},e.prototype.clone=function(){var t=new e(this.flatCoordinates.slice(),this.layout);return t.applyProperties(this),t},e.prototype.closestPointXY=function(t,e,n,i){if(i<he(this.getExtent(),t,e))return i;for(var o=this.flatCoordinates,r=this.stride,s=0,a=o.length;s<a;s+=r){var l=wt(t,e,o[s],o[s+1]);if(l<i){i=l;for(var h=0;h<r;++h)n[h]=o[s+h];n.length=r}}return i},e.prototype.getCoordinates=function(){return ii(this.flatCoordinates,0,this.flatCoordinates.length,this.stride)},e.prototype.getPoint=function(t){var e=this.flatCoordinates?this.flatCoordinates.length/this.stride:0;return t<0||e<=t?null:new Oi(this.flatCoordinates.slice(t*this.stride,(t+1)*this.stride),this.layout)},e.prototype.getPoints=function(){for(var t=this.flatCoordinates,e=this.layout,n=this.stride,i=[],o=0,r=t.length;o<r;o+=n){var s=new Oi(t.slice(o,o+n),e);i.push(s)}return i},e.prototype.getType=function(){return bn},e.prototype.intersectsExtent=function(t){for(var e=this.flatCoordinates,n=this.stride,i=0,o=e.length;i<o;i+=n)if(pe(t,e[i],e[i+1]))return!0;return!1},e.prototype.setCoordinates=function(t,e){this.setLayout(e,t,1),this.flatCoordinates||(this.flatCoordinates=[]),this.flatCoordinates.length=qn(this.flatCoordinates,0,t,this.stride),this.changed()},e}(Kn),Ii=Pi;function Mi(t,e,n,i,o,s,a){for(var l,h,u,c,p,f,d,_=o[s+1],g=[],y=0,v=n.length;y<v;++y){var m=n[y];for(c=t[m-i],f=t[m-i+1],l=e;l<m;l+=i)p=t[l],d=t[l+1],(_<=f&&d<=_||f<=_&&_<=d)&&(u=(_-f)/(d-f)*(p-c)+c,g.push(u)),c=p,f=d}var x=NaN,C=-1/0;for(g.sort(r),c=g[0],l=1,h=g.length;l<h;++l){p=g[l];var w=Math.abs(p-c);w>C&&ui(t,e,n,i,u=(c+p)/2,_)&&(x=u,C=w),c=p}return isNaN(x)&&(x=o[s]),a?(a.push(x,_,C),a):[x,_,C]}function Fi(t,e,n,i){for(;e<n-i;){for(var o=0;o<i;++o){var r=t[e+o];t[e+o]=t[n-i+o],t[n-i+o]=r}e+=i,n-=i}}function Li(t,e,n,i){for(var o=0,r=t[n-i],s=t[n-i+1];e<n;e+=i){var a=t[e],l=t[e+1];o+=(a-r)*(l+s),r=a,s=l}return 0===o?void 0:o>0}function Ai(t,e,n,i,o){for(var r=void 0!==o&&o,s=0,a=n.length;s<a;++s){var l=n[s],h=Li(t,e,l,i);if(0===s){if(r&&h||!r&&!h)return!1}else if(r&&!h||!r&&h)return!1;e=l}return!0}function Di(t,e,n,i,o){for(var r=void 0!==o&&o,s=0,a=n.length;s<a;++s){var l=n[s],h=Li(t,e,l,i);(0===s?r&&h||!r&&!h:r&&!h||!r&&h)&&Fi(t,e,l,i),e=l}return e}function ki(t,e,n,i,o){for(var r=0,s=n.length;r<s;++r)e=Di(t,e,n[r],i,o);return e}var ji=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),Gi=function(t){function e(e,n,i){var o=t.call(this)||this;return o.ends_=[],o.flatInteriorPointRevision_=-1,o.flatInteriorPoint_=null,o.maxDelta_=-1,o.maxDeltaRevision_=-1,o.orientedRevision_=-1,o.orientedFlatCoordinates_=null,void 0!==n&&i?(o.setFlatCoordinates(n,e),o.ends_=i):o.setCoordinates(e,n),o}return ji(e,t),e.prototype.appendLinearRing=function(t){this.flatCoordinates?l(this.flatCoordinates,t.getFlatCoordinates()):this.flatCoordinates=t.getFlatCoordinates().slice(),this.ends_.push(this.flatCoordinates.length),this.changed()},e.prototype.clone=function(){var t=new e(this.flatCoordinates.slice(),this.layout,this.ends_.slice());return t.applyProperties(this),t},e.prototype.closestPointXY=function(t,e,n,i){return i<he(this.getExtent(),t,e)?i:(this.maxDeltaRevision_!=this.getRevision()&&(this.maxDelta_=Math.sqrt(Vn(this.flatCoordinates,0,this.ends_,this.stride,0)),this.maxDeltaRevision_=this.getRevision()),Hn(this.flatCoordinates,0,this.ends_,this.stride,this.maxDelta_,!0,t,e,n,i))},e.prototype.containsXY=function(t,e){return ui(this.getOrientedFlatCoordinates(),0,this.ends_,this.stride,t,e)},e.prototype.getArea=function(){return vi(this.getOrientedFlatCoordinates(),0,this.ends_,this.stride)},e.prototype.getCoordinates=function(t){var e;return void 0!==t?Di(e=this.getOrientedFlatCoordinates().slice(),0,this.ends_,this.stride,t):e=this.flatCoordinates,oi(e,0,this.ends_,this.stride)},e.prototype.getEnds=function(){return this.ends_},e.prototype.getFlatInteriorPoint=function(){if(this.flatInteriorPointRevision_!=this.getRevision()){var t=Te(this.getExtent());this.flatInteriorPoint_=Mi(this.getOrientedFlatCoordinates(),0,this.ends_,this.stride,t,0),this.flatInteriorPointRevision_=this.getRevision()}return this.flatInteriorPoint_},e.prototype.getInteriorPoint=function(){return new Oi(this.getFlatInteriorPoint(),Cn)},e.prototype.getLinearRingCount=function(){return this.ends_.length},e.prototype.getLinearRing=function(t){return t<0||this.ends_.length<=t?null:new Ci(this.flatCoordinates.slice(0===t?0:this.ends_[t-1],this.ends_[t]),this.layout)},e.prototype.getLinearRings=function(){for(var t=this.layout,e=this.flatCoordinates,n=this.ends_,i=[],o=0,r=0,s=n.length;r<s;++r){var a=n[r],l=new Ci(e.slice(o,a),t);i.push(l),o=a}return i},e.prototype.getOrientedFlatCoordinates=function(){if(this.orientedRevision_!=this.getRevision()){var t=this.flatCoordinates;Ai(t,0,this.ends_,this.stride)?this.orientedFlatCoordinates_=t:(this.orientedFlatCoordinates_=t.slice(),this.orientedFlatCoordinates_.length=Di(this.orientedFlatCoordinates_,0,this.ends_,this.stride)),this.orientedRevision_=this.getRevision()}return this.orientedFlatCoordinates_},e.prototype.getSimplifiedGeometryInternal=function(t){var n=[],i=[];return n.length=ei(this.flatCoordinates,0,this.ends_,this.stride,Math.sqrt(t),n,0,i),new e(n,xn,i)},e.prototype.getType=function(){return Tn},e.prototype.intersectsExtent=function(t){return pi(this.getOrientedFlatCoordinates(),0,this.ends_,this.stride,t)},e.prototype.setCoordinates=function(t,e){this.setLayout(e,t,2),this.flatCoordinates||(this.flatCoordinates=[]);var n=Jn(this.flatCoordinates,0,t,this.stride,this.ends_);this.flatCoordinates.length=0===n.length?0:n[n.length-1],this.changed()},e}(Kn),zi=Gi;function Wi(t){var e=t[0],n=t[1],i=t[2],o=t[3],r=[e,n,e,o,i,o,i,n,e,n];return new Gi(r,xn,[r.length])}var Xi=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),Ni=function(t){function e(e,n,i){var o=t.call(this)||this;if(o.endss_=[],o.flatInteriorPointsRevision_=-1,o.flatInteriorPoints_=null,o.maxDelta_=-1,o.maxDeltaRevision_=-1,o.orientedRevision_=-1,o.orientedFlatCoordinates_=null,!i&&!Array.isArray(e[0])){for(var r=o.getLayout(),s=e,a=[],h=[],u=0,c=s.length;u<c;++u){var p=s[u];0===u&&(r=p.getLayout());for(var f=a.length,d=p.getEnds(),_=0,g=d.length;_<g;++_)d[_]+=f;l(a,p.getFlatCoordinates()),h.push(d)}n=r,e=a,i=h}return void 0!==n&&i?(o.setFlatCoordinates(n,e),o.endss_=i):o.setCoordinates(e,n),o}return Xi(e,t),e.prototype.appendPolygon=function(t){var e;if(this.flatCoordinates){var n=this.flatCoordinates.length;l(this.flatCoordinates,t.getFlatCoordinates());for(var i=0,o=(e=t.getEnds().slice()).length;i<o;++i)e[i]+=n}else this.flatCoordinates=t.getFlatCoordinates().slice(),e=t.getEnds().slice(),this.endss_.push();this.endss_.push(e),this.changed()},e.prototype.clone=function(){for(var t=this.endss_.length,n=new Array(t),i=0;i<t;++i)n[i]=this.endss_[i].slice();var o=new e(this.flatCoordinates.slice(),this.layout,n);return o.applyProperties(this),o},e.prototype.closestPointXY=function(t,e,n,i){return i<he(this.getExtent(),t,e)?i:(this.maxDeltaRevision_!=this.getRevision()&&(this.maxDelta_=Math.sqrt(function(t,e,n,i,o){for(var r=0,s=n.length;r<s;++r){var a=n[r];o=Vn(t,e,a,i,o),e=a[a.length-1]}return o}(this.flatCoordinates,0,this.endss_,this.stride,0)),this.maxDeltaRevision_=this.getRevision()),function(t,e,n,i,o,r,s,a,l,h,u){for(var c=[NaN,NaN],p=0,f=n.length;p<f;++p){var d=n[p];h=Hn(t,e,d,i,o,true,s,a,l,h,c),e=d[d.length-1]}return h}(this.getOrientedFlatCoordinates(),0,this.endss_,this.stride,this.maxDelta_,0,t,e,n,i))},e.prototype.containsXY=function(t,e){return function(t,e,n,i,o,r){if(0===n.length)return!1;for(var s=0,a=n.length;s<a;++s){var l=n[s];if(ui(t,e,l,i,o,r))return!0;e=l[l.length-1]}return!1}(this.getOrientedFlatCoordinates(),0,this.endss_,this.stride,t,e)},e.prototype.getArea=function(){return function(t,e,n,i){for(var o=0,r=0,s=n.length;r<s;++r){var a=n[r];o+=vi(t,e,a,i),e=a[a.length-1]}return o}(this.getOrientedFlatCoordinates(),0,this.endss_,this.stride)},e.prototype.getCoordinates=function(t){var e;return void 0!==t?ki(e=this.getOrientedFlatCoordinates().slice(),0,this.endss_,this.stride,t):e=this.flatCoordinates,ri(e,0,this.endss_,this.stride)},e.prototype.getEndss=function(){return this.endss_},e.prototype.getFlatInteriorPoints=function(){if(this.flatInteriorPointsRevision_!=this.getRevision()){var t=function(t,e,n,i){for(var o=[],r=[1/0,1/0,-1/0,-1/0],s=0,a=n.length;s<a;++s){var l=n[s];r=ge(t,e,l[0],i),o.push((r[0]+r[2])/2,(r[1]+r[3])/2),e=l[l.length-1]}return o}(this.flatCoordinates,0,this.endss_,this.stride);this.flatInteriorPoints_=function(t,e,n,i,o){for(var r=[],s=0,a=n.length;s<a;++s){var l=n[s];r=Mi(t,e,l,i,o,2*s,r),e=l[l.length-1]}return r}(this.getOrientedFlatCoordinates(),0,this.endss_,this.stride,t),this.flatInteriorPointsRevision_=this.getRevision()}return this.flatInteriorPoints_},e.prototype.getInteriorPoints=function(){return new Ii(this.getFlatInteriorPoints().slice(),Cn)},e.prototype.getOrientedFlatCoordinates=function(){if(this.orientedRevision_!=this.getRevision()){var t=this.flatCoordinates;!function(t,e,n,i,o){for(var r=0,s=n.length;r<s;++r){var a=n[r];if(!Ai(t,e,a,i,undefined))return!1;a.length&&(e=a[a.length-1])}return!0}(t,0,this.endss_,this.stride)?(this.orientedFlatCoordinates_=t.slice(),this.orientedFlatCoordinates_.length=ki(this.orientedFlatCoordinates_,0,this.endss_,this.stride)):this.orientedFlatCoordinates_=t,this.orientedRevision_=this.getRevision()}return this.orientedFlatCoordinates_},e.prototype.getSimplifiedGeometryInternal=function(t){var n=[],i=[];return n.length=function(t,e,n,i,o,r,s,a){for(var l=0,h=n.length;l<h;++l){var u=n[l],c=[];s=ei(t,e,u,i,o,r,s,c),a.push(c),e=u[u.length-1]}return s}(this.flatCoordinates,0,this.endss_,this.stride,Math.sqrt(t),n,0,i),new e(n,xn,i)},e.prototype.getPolygon=function(t){if(t<0||this.endss_.length<=t)return null;var e;if(0===t)e=0;else{var n=this.endss_[t-1];e=n[n.length-1]}var i=this.endss_[t].slice(),o=i[i.length-1];if(0!==e)for(var r=0,s=i.length;r<s;++r)i[r]-=e;return new zi(this.flatCoordinates.slice(e,o),this.layout,i)},e.prototype.getPolygons=function(){for(var t=this.layout,e=this.flatCoordinates,n=this.endss_,i=[],o=0,r=0,s=n.length;r<s;++r){var a=n[r].slice(),l=a[a.length-1];if(0!==o)for(var h=0,u=a.length;h<u;++h)a[h]-=o;var c=new zi(e.slice(o,l),t,a);i.push(c),o=l}return i},e.prototype.getType=function(){return Rn},e.prototype.intersectsExtent=function(t){return function(t,e,n,i,o){for(var r=0,s=n.length;r<s;++r){var a=n[r];if(pi(t,e,a,i,o))return!0;e=a[a.length-1]}return!1}(this.getOrientedFlatCoordinates(),0,this.endss_,this.stride,t)},e.prototype.setCoordinates=function(t,e){this.setLayout(e,t,3),this.flatCoordinates||(this.flatCoordinates=[]);var n=function(t,e,n,i,o){for(var r=o||[],s=0,a=0,l=n.length;a<l;++a){var h=Jn(t,e,n[a],i,r[s]);r[s++]=h,e=h[h.length-1]}return r.length=s,r}(this.flatCoordinates,0,t,this.stride,this.endss_);if(0===n.length)this.flatCoordinates.length=0;else{var i=n[n.length-1];this.flatCoordinates.length=0===i.length?0:i[i.length-1]}this.changed()},e}(Kn),Yi=Ni,Ki="preload",Bi="useInterimTilesOnError",Zi=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),Vi=function(t){function e(e){var n=this,i=e||{},o=f({},i);return delete o.preload,delete o.useInterimTilesOnError,(n=t.call(this,o)||this).on,n.once,n.un,n.setPreload(void 0!==i.preload?i.preload:0),n.setUseInterimTilesOnError(void 0===i.useInterimTilesOnError||i.useInterimTilesOnError),n}return Zi(e,t),e.prototype.getPreload=function(){return this.get(Ki)},e.prototype.setPreload=function(t){this.set(Ki,t)},e.prototype.getUseInterimTilesOnError=function(){return this.get(Bi)},e.prototype.setUseInterimTilesOnError=function(t){this.set(Bi,t)},e}(At),Ui=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),Hi=function(t){function e(e){var n=t.call(this)||this;return n.boundHandleImageChange_=n.handleImageChange_.bind(n),n.layer_=e,n.declutterExecutorGroup=null,n}return Ui(e,t),e.prototype.getFeatures=function(t){return A()},e.prototype.prepareFrame=function(t){return A()},e.prototype.renderFrame=function(t,e){return A()},e.prototype.loadedTileCallback=function(t,e,n){t[e]||(t[e]={}),t[e][n.tileCoord.toString()]=n},e.prototype.createLoadedTileFinder=function(t,e,n){return function(i,o){var r=this.loadedTileCallback.bind(this,n,i);return t.forEachLoadedTile(e,i,o,r)}.bind(this)},e.prototype.forEachFeatureAtCoordinate=function(t,e,n,i,o){},e.prototype.getDataAtPixel=function(t,e,n){return null},e.prototype.getLayer=function(){return this.layer_},e.prototype.handleFontsChanged=function(){},e.prototype.handleImageChange_=function(t){2===t.target.getState()&&this.renderIfReadyAndVisible()},e.prototype.loadImage=function(t){var e=t.getState();return 2!=e&&3!=e&&t.addEventListener(x,this.boundHandleImageChange_),0==e&&(t.load(),e=t.getState()),2==e},e.prototype.renderIfReadyAndVisible=function(){var t=this.getLayer();t.getVisible()&&t.getSourceState()==Mt&&t.changed()},e}(L),qi=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),Ji=function(t){function e(e,n,i,o){var r=t.call(this,e)||this;return r.inversePixelTransform=n,r.frameState=i,r.context=o,r}return qi(e,t),e}(t),Qi=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),$i=function(t){function e(e){var n=t.call(this,e)||this;return n.container=null,n.renderedResolution,n.tempTransform=[1,0,0,1,0,0],n.pixelTransform=[1,0,0,1,0,0],n.inversePixelTransform=[1,0,0,1,0,0],n.context=null,n.containerReused=!1,n}return Qi(e,t),e.prototype.useContainer=function(t,e,n){var i,o,r=this.getLayer().getClassName();if(t&&t.style.opacity===rt(n)&&t.className===r&&(a=t.firstElementChild)instanceof HTMLCanvasElement&&(o=a.getContext("2d")),o&&o.canvas.style.transform===e?(this.container=t,this.context=o,this.containerReused=!0):this.containerReused&&(this.container=null,this.context=null,this.containerReused=!1),!this.container){(i=document.createElement("div")).className=r;var s=i.style;s.position="absolute",s.width="100%",s.height="100%";var a=(o=H()).canvas;i.appendChild(a),(s=a.style).position="absolute",s.left="0",s.transformOrigin="top left",this.container=i,this.context=o}},e.prototype.clipUnrotated=function(t,e,n){var i=Ie(n),o=Me(n),r=Ee(n),s=Se(n);Mn(e.coordinateToPixelTransform,i),Mn(e.coordinateToPixelTransform,o),Mn(e.coordinateToPixelTransform,r),Mn(e.coordinateToPixelTransform,s);var a=this.inversePixelTransform;Mn(a,i),Mn(a,o),Mn(a,r),Mn(a,s),t.save(),t.beginPath(),t.moveTo(Math.round(i[0]),Math.round(i[1])),t.lineTo(Math.round(o[0]),Math.round(o[1])),t.lineTo(Math.round(r[0]),Math.round(r[1])),t.lineTo(Math.round(s[0]),Math.round(s[1])),t.clip()},e.prototype.dispatchRenderEvent_=function(t,e,n){var i=this.getLayer();if(i.hasListener(t)){var o=new Ji(t,this.inversePixelTransform,n,e);i.dispatchEvent(o)}},e.prototype.preRender=function(t,e){this.dispatchRenderEvent_("prerender",t,e)},e.prototype.postRender=function(t,e){this.dispatchRenderEvent_("postrender",t,e)},e.prototype.getRenderTransform=function(t,e,n,i,o,r,s){var a=o/2,l=r/2,h=i/e,u=-h,c=-t[0]+s,p=-t[1];return Fn(this.tempTransform,a,l,h,u,-n,c,p)},e.prototype.getDataAtPixel=function(t,e,n){var i,o=Mn(this.inversePixelTransform,t.slice()),r=this.context,s=this.getLayer().getExtent();if(s&&!ue(s,Mn(e.pixelToCoordinateTransform,t.slice())))return null;try{var a=Math.round(o[0]),l=Math.round(o[1]),h=document.createElement("canvas"),u=h.getContext("2d");h.width=1,h.height=1,u.clearRect(0,0,1,1),u.drawImage(r.canvas,a,l,1,1,0,0,1,1),i=u.getImageData(0,0,1,1).data}catch(t){return"SecurityError"===t.name?new Uint8Array:i}return 0===i[3]?null:i},e}(Hi),to=$i,eo=function(){function t(t,e,n,i){this.minX=t,this.maxX=e,this.minY=n,this.maxY=i}return t.prototype.contains=function(t){return this.containsXY(t[1],t[2])},t.prototype.containsTileRange=function(t){return this.minX<=t.minX&&t.maxX<=this.maxX&&this.minY<=t.minY&&t.maxY<=this.maxY},t.prototype.containsXY=function(t,e){return this.minX<=t&&t<=this.maxX&&this.minY<=e&&e<=this.maxY},t.prototype.equals=function(t){return this.minX==t.minX&&this.minY==t.minY&&this.maxX==t.maxX&&this.maxY==t.maxY},t.prototype.extend=function(t){t.minX<this.minX&&(this.minX=t.minX),t.maxX>this.maxX&&(this.maxX=t.maxX),t.minY<this.minY&&(this.minY=t.minY),t.maxY>this.maxY&&(this.maxY=t.maxY)},t.prototype.getHeight=function(){return this.maxY-this.minY+1},t.prototype.getSize=function(){return[this.getWidth(),this.getHeight()]},t.prototype.getWidth=function(){return this.maxX-this.minX+1},t.prototype.intersects=function(t){return this.minX<=t.maxX&&this.maxX>=t.minX&&this.minY<=t.maxY&&this.maxY>=t.minY},t}();function no(t,e,n,i,o){return void 0!==o?(o.minX=t,o.maxX=e,o.minY=n,o.maxY=i,o):new eo(t,e,n,i)}var io=eo,oo=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),ro=function(t){function e(e){var n=t.call(this,e)||this;return n.extentChanged=!0,n.renderedExtent_=null,n.renderedPixelRatio,n.renderedProjection=null,n.renderedRevision,n.renderedTiles=[],n.newTiles_=!1,n.tmpExtent=[1/0,1/0,-1/0,-1/0],n.tmpTileRange_=new io(0,0,0,0),n}return oo(e,t),e.prototype.isDrawableTile=function(t){var e=this.getLayer(),n=t.getState(),i=e.getUseInterimTilesOnError();return 2==n||4==n||3==n&&!i},e.prototype.getTile=function(t,e,n,i){var o=i.pixelRatio,r=i.viewState.projection,s=this.getLayer(),a=s.getSource().getTile(t,e,n,o,r);return 3==a.getState()&&(s.getUseInterimTilesOnError()?s.getPreload()>0&&(this.newTiles_=!0):a.setState(2)),this.isDrawableTile(a)||(a=a.getInterimTile()),a},e.prototype.loadedTileCallback=function(e,n,i){return!!this.isDrawableTile(i)&&t.prototype.loadedTileCallback.call(this,e,n,i)},e.prototype.prepareFrame=function(t){return!!this.getLayer().getSource()},e.prototype.renderFrame=function(t,e){var n=t.layerStatesArray[t.layerIndex],i=t.viewState,o=i.projection,s=i.resolution,a=i.center,l=i.rotation,h=t.pixelRatio,u=this.getLayer(),c=u.getSource(),p=c.getRevision(),d=c.getTileGridForProjection(o),_=d.getZForResolution(s,c.zDirection),g=d.getResolution(_),y=t.extent,v=n.extent&&nn(n.extent);v&&(y=Pe(y,nn(n.extent)));var m=c.getTilePixelRatio(h),x=Math.round(t.size[0]*m),C=Math.round(t.size[1]*m);if(l){var w=Math.round(Math.sqrt(x*x+C*C));x=w,C=w}var S=g*x/2/m,E=g*C/2/m,T=[a[0]-S,a[1]-E,a[0]+S,a[1]+E],b=d.getTileRangeForExtentAndZ(y,_),O={};O[_]={};var R=this.createLoadedTileFinder(c,o,O),P=this.tmpExtent,I=this.tmpTileRange_;this.newTiles_=!1;for(var M=b.minX;M<=b.maxX;++M)for(var F=b.minY;F<=b.maxY;++F){var L=this.getTile(_,M,F,t);if(this.isDrawableTile(L)){var A=k(this);if(2==L.getState()){O[_][L.tileCoord.toString()]=L;var D=L.inTransition(A);this.newTiles_||!D&&-1!==this.renderedTiles.indexOf(L)||(this.newTiles_=!0)}if(1===L.getAlpha(A,t.time))continue}var j=d.getTileCoordChildTileRange(L.tileCoord,I,P),G=!1;j&&(G=R(_+1,j)),G||d.forEachTileCoordParentTileRange(L.tileCoord,R,I,P)}var z=g/s;Fn(this.pixelTransform,t.size[0]/2,t.size[1]/2,1/m,1/m,l,-x/2,-C/2);var W=An(this.pixelTransform);this.useContainer(e,W,n.opacity);var X=this.context,N=X.canvas;Ln(this.inversePixelTransform,this.pixelTransform),Fn(this.tempTransform,x/2,C/2,z,z,0,-x/2,-C/2),N.width!=x||N.height!=C?(N.width=x,N.height=C):this.containerReused||X.clearRect(0,0,x,C),v&&this.clipUnrotated(X,t,v),f(X,c.getContextOptions()),this.preRender(X,t),this.renderedTiles.length=0;var Y,K,B,Z=Object.keys(O).map(Number);Z.sort(r),1!==n.opacity||this.containerReused&&!c.getOpaque(t.viewState.projection)?(Y=[],K=[]):Z=Z.reverse();for(var V=Z.length-1;V>=0;--V){var U=Z[V],H=c.getTilePixelSize(U,h,o),q=d.getResolution(U)/g,J=H[0]*q*z,Q=H[1]*q*z,$=d.getTileCoordForCoordAndZ(Ie(T),U),tt=d.getTileCoordExtent($),et=Mn(this.tempTransform,[m*(tt[0]-T[0])/g,m*(T[3]-tt[3])/g]),nt=m*c.getGutterForProjection(o),it=O[U];for(var ot in it){var st=(L=it[ot]).tileCoord,at=$[1]-st[1],lt=Math.round(et[0]-(at-1)*J),ht=$[2]-st[2],ut=Math.round(et[1]-(ht-1)*Q),ct=lt-(M=Math.round(et[0]-at*J)),pt=ut-(F=Math.round(et[1]-ht*Q)),ft=_===U;if(!(D=ft&&1!==L.getAlpha(k(this),t.time)))if(Y){X.save(),B=[M,F,M+ct,F,M+ct,F+pt,M,F+pt];for(var dt=0,_t=Y.length;dt<_t;++dt)if(_!==U&&U<K[dt]){var gt=Y[dt];X.beginPath(),X.moveTo(B[0],B[1]),X.lineTo(B[2],B[3]),X.lineTo(B[4],B[5]),X.lineTo(B[6],B[7]),X.moveTo(gt[6],gt[7]),X.lineTo(gt[4],gt[5]),X.lineTo(gt[2],gt[3]),X.lineTo(gt[0],gt[1]),X.clip()}Y.push(B),K.push(U)}else X.clearRect(M,F,ct,pt);this.drawTileImage(L,t,M,F,ct,pt,nt,ft),Y&&!D?(X.restore(),this.renderedTiles.unshift(L)):this.renderedTiles.push(L),this.updateUsedTiles(t.usedTiles,c,L)}}this.renderedRevision=p,this.renderedResolution=g,this.extentChanged=!this.renderedExtent_||!ye(this.renderedExtent_,T),this.renderedExtent_=T,this.renderedPixelRatio=h,this.renderedProjection=o,this.manageTilePyramid(t,c,d,h,o,y,_,u.getPreload()),this.scheduleExpireCache(t,c),this.postRender(X,t),n.extent&&X.restore(),W!==N.style.transform&&(N.style.transform=W);var yt=rt(n.opacity),vt=this.container;return yt!==vt.style.opacity&&(vt.style.opacity=yt),this.container},e.prototype.drawTileImage=function(t,e,n,i,o,r,s,a){var l=this.getTileImage(t);if(l){var h=k(this),u=a?t.getAlpha(h,e.time):1,c=u!==this.context.globalAlpha;c&&(this.context.save(),this.context.globalAlpha=u),this.context.drawImage(l,s,s,l.width-2*s,l.height-2*s,n,i,o,r),c&&this.context.restore(),1!==u?e.animate=!0:a&&t.endTransition(h)}},e.prototype.getImage=function(){var t=this.context;return t?t.canvas:null},e.prototype.getTileImage=function(t){return t.getImage()},e.prototype.scheduleExpireCache=function(t,e){if(e.canExpireCache()){var n=function(t,e,n){var i=k(t);i in n.usedTiles&&t.expireCache(n.viewState.projection,n.usedTiles[i])}.bind(null,e);t.postRenderFunctions.push(n)}},e.prototype.updateUsedTiles=function(t,e,n){var i=k(e);i in t||(t[i]={}),t[i][n.getKey()]=!0},e.prototype.manageTilePyramid=function(t,e,n,i,o,r,s,a,l){var h=k(e);h in t.wantedTiles||(t.wantedTiles[h]={});var u,c,p,f,d,_,g=t.wantedTiles[h],y=t.tileQueue,v=0;for(_=n.getMinZoom();_<=s;++_)for(c=n.getTileRangeForExtentAndZ(r,_,c),p=n.getResolution(_),f=c.minX;f<=c.maxX;++f)for(d=c.minY;d<=c.maxY;++d)s-_<=a?(++v,0==(u=e.getTile(_,f,d,i,o)).getState()&&(g[u.getKey()]=!0,y.isKeyQueued(u.getKey())||y.enqueue([u,h,n.getTileCoordCenter(u.tileCoord),p])),void 0!==l&&l(u)):e.useTile(_,f,d,o);e.updateCacheSize(v,o)},e}(to);ro.prototype.getLayer;var so=ro,ao=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),lo=function(t){function e(e){return t.call(this,e)||this}return ao(e,t),e.prototype.createRenderer=function(){return new so(this)},e}(Vi),ho=n(582);function uo(t){return t[0]>0&&t[1]>0}function co(t,e){return Array.isArray(t)?t:(void 0===e?e=[t,t]:(e[0]=t,e[1]=t),e)}var po=function(){function t(t){this.opacity_=t.opacity,this.rotateWithView_=t.rotateWithView,this.rotation_=t.rotation,this.scale_=t.scale,this.scaleArray_=co(t.scale),this.displacement_=t.displacement}return t.prototype.clone=function(){var e=this.getScale();return new t({opacity:this.getOpacity(),scale:Array.isArray(e)?e.slice():e,rotation:this.getRotation(),rotateWithView:this.getRotateWithView(),displacement:this.getDisplacement().slice()})},t.prototype.getOpacity=function(){return this.opacity_},t.prototype.getRotateWithView=function(){return this.rotateWithView_},t.prototype.getRotation=function(){return this.rotation_},t.prototype.getScale=function(){return this.scale_},t.prototype.getScaleArray=function(){return this.scaleArray_},t.prototype.getDisplacement=function(){return this.displacement_},t.prototype.getAnchor=function(){return A()},t.prototype.getImage=function(t){return A()},t.prototype.getHitDetectionImage=function(){return A()},t.prototype.getPixelRatio=function(t){return 1},t.prototype.getImageState=function(){return A()},t.prototype.getImageSize=function(){return A()},t.prototype.getOrigin=function(){return A()},t.prototype.getSize=function(){return A()},t.prototype.setOpacity=function(t){this.opacity_=t},t.prototype.setRotateWithView=function(t){this.rotateWithView_=t},t.prototype.setRotation=function(t){this.rotation_=t},t.prototype.setScale=function(t){this.scale_=t,this.scaleArray_=co(t)},t.prototype.listenImageChange=function(t){A()},t.prototype.load=function(){A()},t.prototype.unlistenImageChange=function(t){A()},t}(),fo=/^#([a-f0-9]{3}|[a-f0-9]{4}(?:[a-f0-9]{2}){0,2})$/i,_o=/^([a-z]*)$|^hsla?\(.*\)$/i;function go(t){return"string"==typeof t?t:xo(t)}var yo=function(){var t={},e=0;return function(n){var i;if(t.hasOwnProperty(n))i=t[n];else{if(e>=1024){var o=0;for(var r in t)0==(3&o++)&&(delete t[r],--e)}i=function(t){var e,n,i,o,r;if(_o.exec(t)&&(t=function(t){var e=document.createElement("div");if(e.style.color=t,""!==e.style.color){document.body.appendChild(e);var n=getComputedStyle(e).color;return document.body.removeChild(e),n}return""}(t)),fo.exec(t)){var s,a=t.length-1;s=a<=4?1:2;var l=4===a||8===a;e=parseInt(t.substr(1+0*s,s),16),n=parseInt(t.substr(1+1*s,s),16),i=parseInt(t.substr(1+2*s,s),16),o=l?parseInt(t.substr(1+3*s,s),16):255,1==s&&(e=(e<<4)+e,n=(n<<4)+n,i=(i<<4)+i,l&&(o=(o<<4)+o)),r=[e,n,i,o/255]}else 0==t.indexOf("rgba(")?mo(r=t.slice(5,-1).split(",").map(Number)):0==t.indexOf("rgb(")?((r=t.slice(4,-1).split(",").map(Number)).push(1),mo(r)):yt(!1,14);return r}(n),t[n]=i,++e}return i}}();function vo(t){return Array.isArray(t)?t:yo(t)}function mo(t){return t[0]=vt(t[0]+.5|0,0,255),t[1]=vt(t[1]+.5|0,0,255),t[2]=vt(t[2]+.5|0,0,255),t[3]=vt(t[3],0,1),t}function xo(t){var e=t[0];e!=(0|e)&&(e=e+.5|0);var n=t[1];n!=(0|n)&&(n=n+.5|0);var i=t[2];return i!=(0|i)&&(i=i+.5|0),"rgba("+e+","+n+","+i+","+(void 0===t[3]?1:t[3])+")"}function Co(t){return Array.isArray(t)?xo(t):t}var wo="10px sans-serif",So="#000",Eo="round",To=[],bo="round",Oo="#000",Ro="center",Po="middle",Io=[0,0,0,0],Mo=new z;(new m).setSize=function(){console.warn("labelCache is deprecated.")};var Fo,Lo,Ao=null,Do={},ko=function(){var t,e,n="32px ",i=["monospace","serif"],o=i.length,r="wmytzilWMYTZIL@#/&?$%10";function s(t,s,a){for(var l=!0,h=0;h<o;++h){var u=i[h];if(e=Go(t+" "+s+" "+n+u,r),a!=u){var c=Go(t+" "+s+" "+n+a+","+u,r);l=l&&c!=e}}return!!l}function a(){for(var e=!0,n=Mo.getKeys(),i=0,o=n.length;i<o;++i){var r=n[i];Mo.get(r)<100&&(s.apply(this,r.split("\n"))?(d(Do),Ao=null,Fo=void 0,Mo.set(r,100)):(Mo.set(r,Mo.get(r)+1,!0),e=!1))}e&&(clearInterval(t),t=void 0)}return function(e){var n=ot(e);if(n)for(var i=n.families,o=0,r=i.length;o<r;++o){var l=i[o],h=n.style+"\n"+n.weight+"\n"+l;void 0===Mo.get(h)&&(Mo.set(h,100,!0),s(n.style,n.weight,l)||(Mo.set(h,0,!0),void 0===t&&(t=setInterval(a,32))))}}}();function jo(t,e){return Ao||(Ao=H(1,1)),t!=Fo&&(Ao.font=t,Fo=Ao.font),Ao.measureText(e)}function Go(t,e){return jo(t,e).width}function zo(t,e,n){if(e in n)return n[e];var i=Go(t,e);return n[e]=i,i}var Wo=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),Xo=function(t){function e(e){var n=this,i=void 0!==e.rotateWithView&&e.rotateWithView;return(n=t.call(this,{opacity:1,rotateWithView:i,rotation:void 0!==e.rotation?e.rotation:0,scale:void 0!==e.scale?e.scale:1,displacement:void 0!==e.displacement?e.displacement:[0,0]})||this).canvas_=void 0,n.hitDetectionCanvas_=null,n.fill_=void 0!==e.fill?e.fill:null,n.origin_=[0,0],n.points_=e.points,n.radius_=void 0!==e.radius?e.radius:e.radius1,n.radius2_=e.radius2,n.angle_=void 0!==e.angle?e.angle:0,n.stroke_=void 0!==e.stroke?e.stroke:null,n.anchor_=null,n.size_=null,n.renderOptions_=null,n.render(),n}return Wo(e,t),e.prototype.clone=function(){var t=this.getScale(),n=new e({fill:this.getFill()?this.getFill().clone():void 0,points:this.getPoints(),radius:this.getRadius(),radius2:this.getRadius2(),angle:this.getAngle(),stroke:this.getStroke()?this.getStroke().clone():void 0,rotation:this.getRotation(),rotateWithView:this.getRotateWithView(),scale:Array.isArray(t)?t.slice():t,displacement:this.getDisplacement().slice()});return n.setOpacity(this.getOpacity()),n},e.prototype.getAnchor=function(){return this.anchor_},e.prototype.getAngle=function(){return this.angle_},e.prototype.getFill=function(){return this.fill_},e.prototype.getHitDetectionImage=function(){return this.hitDetectionCanvas_||this.createHitDetectionCanvas_(this.renderOptions_),this.hitDetectionCanvas_},e.prototype.getImage=function(t){var e=this.canvas_[t];if(!e){var n=this.renderOptions_,i=H(n.size*t,n.size*t);this.draw_(n,i,t),e=i.canvas,this.canvas_[t]=e}return e},e.prototype.getPixelRatio=function(t){return t},e.prototype.getImageSize=function(){return this.size_},e.prototype.getImageState=function(){return 2},e.prototype.getOrigin=function(){return this.origin_},e.prototype.getPoints=function(){return this.points_},e.prototype.getRadius=function(){return this.radius_},e.prototype.getRadius2=function(){return this.radius2_},e.prototype.getSize=function(){return this.size_},e.prototype.getStroke=function(){return this.stroke_},e.prototype.listenImageChange=function(t){},e.prototype.load=function(){},e.prototype.unlistenImageChange=function(t){},e.prototype.calculateLineJoinSize_=function(t,e,n){if(0===e||this.points_===1/0||"bevel"!==t&&"miter"!==t)return e;var i=this.radius_,o=void 0===this.radius2_?i:this.radius2_;if(i<o){var r=i;i=o,o=r}var s=void 0===this.radius2_?this.points_:2*this.points_,a=2*Math.PI/s,l=o*Math.sin(a),h=i-Math.sqrt(o*o-l*l),u=Math.sqrt(l*l+h*h),c=u/l;if("miter"===t&&c<=n)return c*e;var p=e/2/c,f=e/2*(h/u),d=Math.sqrt((i+p)*(i+p)+f*f)-i;if(void 0===this.radius2_||"bevel"===t)return 2*d;var _=i*Math.sin(a),g=o-Math.sqrt(i*i-_*_),y=Math.sqrt(_*_+g*g)/_;if(y<=n){var v=y*e/2-o-i;return 2*Math.max(d,v)}return 2*d},e.prototype.createRenderOptions=function(){var t,e=bo,n=0,i=null,o=0,r=0;this.stroke_&&(null===(t=this.stroke_.getColor())&&(t=Oo),t=Co(t),void 0===(r=this.stroke_.getWidth())&&(r=1),i=this.stroke_.getLineDash(),o=this.stroke_.getLineDashOffset(),void 0===(e=this.stroke_.getLineJoin())&&(e=bo),void 0===(n=this.stroke_.getMiterLimit())&&(n=10));var s=this.calculateLineJoinSize_(e,r,n),a=Math.max(this.radius_,this.radius2_||0);return{strokeStyle:t,strokeWidth:r,size:Math.ceil(2*a+s),lineDash:i,lineDashOffset:o,lineJoin:e,miterLimit:n}},e.prototype.render=function(){this.renderOptions_=this.createRenderOptions();var t=this.renderOptions_.size,e=this.getDisplacement();this.canvas_={},this.anchor_=[t/2-e[0],t/2+e[1]],this.size_=[t,t]},e.prototype.draw_=function(t,e,n){if(e.scale(n,n),e.translate(t.size/2,t.size/2),this.createPath_(e),this.fill_){var i=this.fill_.getColor();null===i&&(i=So),e.fillStyle=Co(i),e.fill()}this.stroke_&&(e.strokeStyle=t.strokeStyle,e.lineWidth=t.strokeWidth,e.setLineDash&&t.lineDash&&(e.setLineDash(t.lineDash),e.lineDashOffset=t.lineDashOffset),e.lineJoin=t.lineJoin,e.miterLimit=t.miterLimit,e.stroke())},e.prototype.createHitDetectionCanvas_=function(t){if(this.fill_){var e=this.fill_.getColor(),n=0;if("string"==typeof e&&(e=vo(e)),null===e?n=1:Array.isArray(e)&&(n=4===e.length?e[3]:1),0===n){var i=H(t.size,t.size);this.hitDetectionCanvas_=i.canvas,this.drawHitDetectionCanvas_(t,i)}}this.hitDetectionCanvas_||(this.hitDetectionCanvas_=this.getImage(1))},e.prototype.createPath_=function(t){var e=this.points_,n=this.radius_;if(e===1/0)t.arc(0,0,n,0,2*Math.PI);else{var i=void 0===this.radius2_?n:this.radius2_;void 0!==this.radius2_&&(e*=2);for(var o=this.angle_-Math.PI/2,r=2*Math.PI/e,s=0;s<e;s++){var a=o+s*r,l=s%2==0?n:i;t.lineTo(l*Math.cos(a),l*Math.sin(a))}t.closePath()}},e.prototype.drawHitDetectionCanvas_=function(t,e){e.translate(t.size/2,t.size/2),this.createPath_(e),e.fillStyle=So,e.fill(),this.stroke_&&(e.strokeStyle=t.strokeStyle,e.lineWidth=t.strokeWidth,t.lineDash&&(e.setLineDash(t.lineDash),e.lineDashOffset=t.lineDashOffset),e.lineJoin=t.lineJoin,e.miterLimit=t.miterLimit,e.stroke())},e}(po),No=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),Yo=function(t){function e(e){var n=e||{};return t.call(this,{points:1/0,fill:n.fill,radius:n.radius,stroke:n.stroke,scale:void 0!==n.scale?n.scale:1,rotation:void 0!==n.rotation?n.rotation:0,rotateWithView:void 0!==n.rotateWithView&&n.rotateWithView,displacement:void 0!==n.displacement?n.displacement:[0,0]})||this}return No(e,t),e.prototype.clone=function(){var t=this.getScale(),n=new e({fill:this.getFill()?this.getFill().clone():void 0,stroke:this.getStroke()?this.getStroke().clone():void 0,radius:this.getRadius(),scale:Array.isArray(t)?t.slice():t,rotation:this.getRotation(),rotateWithView:this.getRotateWithView(),displacement:this.getDisplacement().slice()});return n.setOpacity(this.getOpacity()),n},e.prototype.setRadius=function(t){this.radius_=t,this.render()},e}(Xo),Ko=function(){function t(t){var e=t||{};this.color_=void 0!==e.color?e.color:null}return t.prototype.clone=function(){var e=this.getColor();return new t({color:Array.isArray(e)?e.slice():e||void 0})},t.prototype.getColor=function(){return this.color_},t.prototype.setColor=function(t){this.color_=t},t}(),Bo=function(){function t(t){var e=t||{};this.color_=void 0!==e.color?e.color:null,this.lineCap_=e.lineCap,this.lineDash_=void 0!==e.lineDash?e.lineDash:null,this.lineDashOffset_=e.lineDashOffset,this.lineJoin_=e.lineJoin,this.miterLimit_=e.miterLimit,this.width_=e.width}return t.prototype.clone=function(){var e=this.getColor();return new t({color:Array.isArray(e)?e.slice():e||void 0,lineCap:this.getLineCap(),lineDash:this.getLineDash()?this.getLineDash().slice():void 0,lineDashOffset:this.getLineDashOffset(),lineJoin:this.getLineJoin(),miterLimit:this.getMiterLimit(),width:this.getWidth()})},t.prototype.getColor=function(){return this.color_},t.prototype.getLineCap=function(){return this.lineCap_},t.prototype.getLineDash=function(){return this.lineDash_},t.prototype.getLineDashOffset=function(){return this.lineDashOffset_},t.prototype.getLineJoin=function(){return this.lineJoin_},t.prototype.getMiterLimit=function(){return this.miterLimit_},t.prototype.getWidth=function(){return this.width_},t.prototype.setColor=function(t){this.color_=t},t.prototype.setLineCap=function(t){this.lineCap_=t},t.prototype.setLineDash=function(t){this.lineDash_=t},t.prototype.setLineDashOffset=function(t){this.lineDashOffset_=t},t.prototype.setLineJoin=function(t){this.lineJoin_=t},t.prototype.setMiterLimit=function(t){this.miterLimit_=t},t.prototype.setWidth=function(t){this.width_=t},t}(),Zo=function(){function t(t){var e=t||{};this.geometry_=null,this.geometryFunction_=Ho,void 0!==e.geometry&&this.setGeometry(e.geometry),this.fill_=void 0!==e.fill?e.fill:null,this.image_=void 0!==e.image?e.image:null,this.renderer_=void 0!==e.renderer?e.renderer:null,this.hitDetectionRenderer_=void 0!==e.hitDetectionRenderer?e.hitDetectionRenderer:null,this.stroke_=void 0!==e.stroke?e.stroke:null,this.text_=void 0!==e.text?e.text:null,this.zIndex_=e.zIndex}return t.prototype.clone=function(){var e=this.getGeometry();return e&&"object"==typeof e&&(e=e.clone()),new t({geometry:e,fill:this.getFill()?this.getFill().clone():void 0,image:this.getImage()?this.getImage().clone():void 0,renderer:this.getRenderer(),stroke:this.getStroke()?this.getStroke().clone():void 0,text:this.getText()?this.getText().clone():void 0,zIndex:this.getZIndex()})},t.prototype.getRenderer=function(){return this.renderer_},t.prototype.setRenderer=function(t){this.renderer_=t},t.prototype.setHitDetectionRenderer=function(t){this.hitDetectionRenderer_=t},t.prototype.getHitDetectionRenderer=function(){return this.hitDetectionRenderer_},t.prototype.getGeometry=function(){return this.geometry_},t.prototype.getGeometryFunction=function(){return this.geometryFunction_},t.prototype.getFill=function(){return this.fill_},t.prototype.setFill=function(t){this.fill_=t},t.prototype.getImage=function(){return this.image_},t.prototype.setImage=function(t){this.image_=t},t.prototype.getStroke=function(){return this.stroke_},t.prototype.setStroke=function(t){this.stroke_=t},t.prototype.getText=function(){return this.text_},t.prototype.setText=function(t){this.text_=t},t.prototype.getZIndex=function(){return this.zIndex_},t.prototype.setGeometry=function(t){"function"==typeof t?this.geometryFunction_=t:"string"==typeof t?this.geometryFunction_=function(e){return e.get(t)}:t?void 0!==t&&(this.geometryFunction_=function(){return t}):this.geometryFunction_=Ho,this.geometry_=t},t.prototype.setZIndex=function(t){this.zIndex_=t},t}(),Vo=null;function Uo(t,e){if(!Vo){var n=new Ko({color:"rgba(255,255,255,0.4)"}),i=new Bo({color:"#3399CC",width:1.25});Vo=[new Zo({image:new Yo({fill:n,stroke:i,radius:5}),fill:n,stroke:i})]}return Vo}function Ho(t){return t.getGeometry()}var qo=Zo,Jo=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),Qo="renderOrder",$o=function(t){function e(e){var n=this,i=e||{},o=f({},i);return delete o.style,delete o.renderBuffer,delete o.updateWhileAnimating,delete o.updateWhileInteracting,(n=t.call(this,o)||this).declutter_=void 0!==i.declutter&&i.declutter,n.renderBuffer_=void 0!==i.renderBuffer?i.renderBuffer:100,n.style_=null,n.styleFunction_=void 0,n.setStyle(i.style),n.updateWhileAnimating_=void 0!==i.updateWhileAnimating&&i.updateWhileAnimating,n.updateWhileInteracting_=void 0!==i.updateWhileInteracting&&i.updateWhileInteracting,n}return Jo(e,t),e.prototype.getDeclutter=function(){return this.declutter_},e.prototype.getFeatures=function(e){return t.prototype.getFeatures.call(this,e)},e.prototype.getRenderBuffer=function(){return this.renderBuffer_},e.prototype.getRenderOrder=function(){return this.get(Qo)},e.prototype.getStyle=function(){return this.style_},e.prototype.getStyleFunction=function(){return this.styleFunction_},e.prototype.getUpdateWhileAnimating=function(){return this.updateWhileAnimating_},e.prototype.getUpdateWhileInteracting=function(){return this.updateWhileInteracting_},e.prototype.renderDeclutter=function(t){t.declutterTree||(t.declutterTree=new ho(9)),this.getRenderer().renderDeclutter(t)},e.prototype.setRenderOrder=function(t){this.set(Qo,t)},e.prototype.setStyle=function(t){this.style_=void 0!==t?t:Uo,this.styleFunction_=null===t?void 0:function(t){var e,n;"function"==typeof t?e=t:(Array.isArray(t)?n=t:(yt("function"==typeof t.getZIndex,41),n=[t]),e=function(){return n});return e}(this.style_),this.changed()},e}(At),tr={BEGIN_GEOMETRY:0,BEGIN_PATH:1,CIRCLE:2,CLOSE_PATH:3,CUSTOM:4,DRAW_CHARS:5,DRAW_IMAGE:6,END_GEOMETRY:7,FILL:8,MOVE_TO_LINE_TO:9,SET_FILL_STYLE:10,SET_STROKE_STYLE:11,STROKE:12},er=[tr.FILL],nr=[tr.STROKE],ir=[tr.BEGIN_PATH],or=[tr.CLOSE_PATH],rr=tr,sr=function(){function t(){}return t.prototype.drawCustom=function(t,e,n,i){},t.prototype.drawGeometry=function(t){},t.prototype.setStyle=function(t){},t.prototype.drawCircle=function(t,e){},t.prototype.drawFeature=function(t,e){},t.prototype.drawGeometryCollection=function(t,e){},t.prototype.drawLineString=function(t,e){},t.prototype.drawMultiLineString=function(t,e){},t.prototype.drawMultiPoint=function(t,e){},t.prototype.drawMultiPolygon=function(t,e){},t.prototype.drawPoint=function(t,e){},t.prototype.drawPolygon=function(t,e){},t.prototype.drawText=function(t,e){},t.prototype.setFillStrokeStyle=function(t,e){},t.prototype.setImageStyle=function(t,e){},t.prototype.setTextStyle=function(t,e){},t}(),ar=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),lr=function(t){function e(e,n,i,o){var r=t.call(this)||this;return r.tolerance=e,r.maxExtent=n,r.pixelRatio=o,r.maxLineWidth=0,r.resolution=i,r.beginGeometryInstruction1_=null,r.beginGeometryInstruction2_=null,r.bufferedMaxExtent_=null,r.instructions=[],r.coordinates=[],r.tmpCoordinate_=[],r.hitDetectionInstructions=[],r.state={},r}return ar(e,t),e.prototype.applyPixelRatio=function(t){var e=this.pixelRatio;return 1==e?t:t.map((function(t){return t*e}))},e.prototype.appendFlatPointCoordinates=function(t,e){for(var n=this.getBufferedMaxExtent(),i=this.tmpCoordinate_,o=this.coordinates,r=o.length,s=0,a=t.length;s<a;s+=e)i[0]=t[s],i[1]=t[s+1],ue(n,i)&&(o[r++]=i[0],o[r++]=i[1]);return r},e.prototype.appendFlatLineCoordinates=function(t,e,n,i,o,r){var s=this.coordinates,a=s.length,l=this.getBufferedMaxExtent();r&&(e+=i);var h,u,c,p=t[e],f=t[e+1],d=this.tmpCoordinate_,_=!0;for(h=e+i;h<n;h+=i)d[0]=t[h],d[1]=t[h+1],(c=fe(l,d))!==u?(_&&(s[a++]=p,s[a++]=f,_=!1),s[a++]=d[0],s[a++]=d[1]):1===c?(s[a++]=d[0],s[a++]=d[1],_=!1):_=!0,p=d[0],f=d[1],u=c;return(o&&_||h===e+i)&&(s[a++]=p,s[a++]=f),a},e.prototype.drawCustomCoordinates_=function(t,e,n,i,o){for(var r=0,s=n.length;r<s;++r){var a=n[r],l=this.appendFlatLineCoordinates(t,e,a,i,!1,!1);o.push(l),e=a}return e},e.prototype.drawCustom=function(t,e,n,i){this.beginGeometry(t,e);var o,r,s,a,l,h=t.getType(),u=t.getStride(),c=this.coordinates.length;switch(h){case Rn:o=t.getOrientedFlatCoordinates(),a=[];var p=t.getEndss();l=0;for(var f=0,d=p.length;f<d;++f){var _=[];l=this.drawCustomCoordinates_(o,l,p[f],u,_),a.push(_)}this.instructions.push([rr.CUSTOM,c,a,t,n,ri]),this.hitDetectionInstructions.push([rr.CUSTOM,c,a,t,i||n,ri]);break;case Tn:case On:s=[],o=h==Tn?t.getOrientedFlatCoordinates():t.getFlatCoordinates(),l=this.drawCustomCoordinates_(o,0,t.getEnds(),u,s),this.instructions.push([rr.CUSTOM,c,s,t,n,oi]),this.hitDetectionInstructions.push([rr.CUSTOM,c,s,t,i||n,oi]);break;case En:case In:o=t.getFlatCoordinates(),r=this.appendFlatLineCoordinates(o,0,o.length,u,!1,!1),this.instructions.push([rr.CUSTOM,c,r,t,n,ii]),this.hitDetectionInstructions.push([rr.CUSTOM,c,r,t,i||n,ii]);break;case bn:o=t.getFlatCoordinates(),(r=this.appendFlatPointCoordinates(o,u))>c&&(this.instructions.push([rr.CUSTOM,c,r,t,n,ii]),this.hitDetectionInstructions.push([rr.CUSTOM,c,r,t,i||n,ii]));break;case Sn:o=t.getFlatCoordinates(),this.coordinates.push(o[0],o[1]),r=this.coordinates.length,this.instructions.push([rr.CUSTOM,c,r,t,n]),this.hitDetectionInstructions.push([rr.CUSTOM,c,r,t,i||n])}this.endGeometry(e)},e.prototype.beginGeometry=function(t,e){this.beginGeometryInstruction1_=[rr.BEGIN_GEOMETRY,e,0,t],this.instructions.push(this.beginGeometryInstruction1_),this.beginGeometryInstruction2_=[rr.BEGIN_GEOMETRY,e,0,t],this.hitDetectionInstructions.push(this.beginGeometryInstruction2_)},e.prototype.finish=function(){return{instructions:this.instructions,hitDetectionInstructions:this.hitDetectionInstructions,coordinates:this.coordinates}},e.prototype.reverseHitDetectionInstructions=function(){var t,e=this.hitDetectionInstructions;e.reverse();var n,i,o=e.length,r=-1;for(t=0;t<o;++t)(i=(n=e[t])[0])==rr.END_GEOMETRY?r=t:i==rr.BEGIN_GEOMETRY&&(n[2]=t,a(this.hitDetectionInstructions,r,t),r=-1)},e.prototype.setFillStrokeStyle=function(t,e){var n=this.state;if(t){var i=t.getColor();n.fillStyle=Co(i||So)}else n.fillStyle=void 0;if(e){var o=e.getColor();n.strokeStyle=Co(o||Oo);var r=e.getLineCap();n.lineCap=void 0!==r?r:Eo;var s=e.getLineDash();n.lineDash=s?s.slice():To;var a=e.getLineDashOffset();n.lineDashOffset=a||0;var l=e.getLineJoin();n.lineJoin=void 0!==l?l:bo;var h=e.getWidth();n.lineWidth=void 0!==h?h:1;var u=e.getMiterLimit();n.miterLimit=void 0!==u?u:10,n.lineWidth>this.maxLineWidth&&(this.maxLineWidth=n.lineWidth,this.bufferedMaxExtent_=null)}else n.strokeStyle=void 0,n.lineCap=void 0,n.lineDash=null,n.lineDashOffset=void 0,n.lineJoin=void 0,n.lineWidth=void 0,n.miterLimit=void 0},e.prototype.createFill=function(t){var e=t.fillStyle,n=[rr.SET_FILL_STYLE,e];return"string"!=typeof e&&n.push(!0),n},e.prototype.applyStroke=function(t){this.instructions.push(this.createStroke(t))},e.prototype.createStroke=function(t){return[rr.SET_STROKE_STYLE,t.strokeStyle,t.lineWidth*this.pixelRatio,t.lineCap,t.lineJoin,t.miterLimit,this.applyPixelRatio(t.lineDash),t.lineDashOffset*this.pixelRatio]},e.prototype.updateFillStyle=function(t,e){var n=t.fillStyle;"string"==typeof n&&t.currentFillStyle==n||(void 0!==n&&this.instructions.push(e.call(this,t)),t.currentFillStyle=n)},e.prototype.updateStrokeStyle=function(t,e){var n=t.strokeStyle,i=t.lineCap,o=t.lineDash,r=t.lineDashOffset,s=t.lineJoin,a=t.lineWidth,l=t.miterLimit;(t.currentStrokeStyle!=n||t.currentLineCap!=i||o!=t.currentLineDash&&!h(t.currentLineDash,o)||t.currentLineDashOffset!=r||t.currentLineJoin!=s||t.currentLineWidth!=a||t.currentMiterLimit!=l)&&(void 0!==n&&e.call(this,t),t.currentStrokeStyle=n,t.currentLineCap=i,t.currentLineDash=o,t.currentLineDashOffset=r,t.currentLineJoin=s,t.currentLineWidth=a,t.currentMiterLimit=l)},e.prototype.endGeometry=function(t){this.beginGeometryInstruction1_[2]=this.instructions.length,this.beginGeometryInstruction1_=null,this.beginGeometryInstruction2_[2]=this.hitDetectionInstructions.length,this.beginGeometryInstruction2_=null;var e=[rr.END_GEOMETRY,t];this.instructions.push(e),this.hitDetectionInstructions.push(e)},e.prototype.getBufferedMaxExtent=function(){if(!this.bufferedMaxExtent_&&(this.bufferedMaxExtent_=le(this.maxExtent),this.maxLineWidth>0)){var t=this.resolution*(this.maxLineWidth+1)/2;ae(this.bufferedMaxExtent_,t,this.bufferedMaxExtent_)}return this.bufferedMaxExtent_},e}(sr),hr=lr,ur=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),cr=function(t){function e(e,n,i,o){var r=t.call(this,e,n,i,o)||this;return r.hitDetectionImage_=null,r.image_=null,r.imagePixelRatio_=void 0,r.anchorX_=void 0,r.anchorY_=void 0,r.height_=void 0,r.opacity_=void 0,r.originX_=void 0,r.originY_=void 0,r.rotateWithView_=void 0,r.rotation_=void 0,r.scale_=void 0,r.width_=void 0,r.declutterImageWithText_=void 0,r}return ur(e,t),e.prototype.drawPoint=function(t,e){if(this.image_){this.beginGeometry(t,e);var n=t.getFlatCoordinates(),i=t.getStride(),o=this.coordinates.length,r=this.appendFlatPointCoordinates(n,i);this.instructions.push([rr.DRAW_IMAGE,o,r,this.image_,this.anchorX_*this.imagePixelRatio_,this.anchorY_*this.imagePixelRatio_,Math.ceil(this.height_*this.imagePixelRatio_),this.opacity_,this.originX_,this.originY_,this.rotateWithView_,this.rotation_,[this.scale_[0]*this.pixelRatio/this.imagePixelRatio_,this.scale_[1]*this.pixelRatio/this.imagePixelRatio_],Math.ceil(this.width_*this.imagePixelRatio_),this.declutterImageWithText_]),this.hitDetectionInstructions.push([rr.DRAW_IMAGE,o,r,this.hitDetectionImage_,this.anchorX_,this.anchorY_,this.height_,this.opacity_,this.originX_,this.originY_,this.rotateWithView_,this.rotation_,this.scale_,this.width_,this.declutterImageWithText_]),this.endGeometry(e)}},e.prototype.drawMultiPoint=function(t,e){if(this.image_){this.beginGeometry(t,e);var n=t.getFlatCoordinates(),i=t.getStride(),o=this.coordinates.length,r=this.appendFlatPointCoordinates(n,i);this.instructions.push([rr.DRAW_IMAGE,o,r,this.image_,this.anchorX_*this.imagePixelRatio_,this.anchorY_*this.imagePixelRatio_,Math.ceil(this.height_*this.imagePixelRatio_),this.opacity_,this.originX_,this.originY_,this.rotateWithView_,this.rotation_,[this.scale_[0]*this.pixelRatio/this.imagePixelRatio_,this.scale_[1]*this.pixelRatio/this.imagePixelRatio_],Math.ceil(this.width_*this.imagePixelRatio_),this.declutterImageWithText_]),this.hitDetectionInstructions.push([rr.DRAW_IMAGE,o,r,this.hitDetectionImage_,this.anchorX_,this.anchorY_,this.height_,this.opacity_,this.originX_,this.originY_,this.rotateWithView_,this.rotation_,this.scale_,this.width_,this.declutterImageWithText_]),this.endGeometry(e)}},e.prototype.finish=function(){return this.reverseHitDetectionInstructions(),this.anchorX_=void 0,this.anchorY_=void 0,this.hitDetectionImage_=null,this.image_=null,this.imagePixelRatio_=void 0,this.height_=void 0,this.scale_=void 0,this.opacity_=void 0,this.originX_=void 0,this.originY_=void 0,this.rotateWithView_=void 0,this.rotation_=void 0,this.width_=void 0,t.prototype.finish.call(this)},e.prototype.setImageStyle=function(t,e){var n=t.getAnchor(),i=t.getSize(),o=t.getHitDetectionImage(),r=t.getImage(this.pixelRatio),s=t.getOrigin();this.imagePixelRatio_=t.getPixelRatio(this.pixelRatio),this.anchorX_=n[0],this.anchorY_=n[1],this.hitDetectionImage_=o,this.image_=r,this.height_=i[1],this.opacity_=t.getOpacity(),this.originX_=s[0]*this.imagePixelRatio_,this.originY_=s[1]*this.imagePixelRatio_,this.rotateWithView_=t.getRotateWithView(),this.rotation_=t.getRotation(),this.scale_=t.getScaleArray(),this.width_=i[0],this.declutterImageWithText_=e},e}(hr),pr=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),fr=function(t){function e(e,n,i,o){return t.call(this,e,n,i,o)||this}return pr(e,t),e.prototype.drawFlatCoordinates_=function(t,e,n,i){var o=this.coordinates.length,r=this.appendFlatLineCoordinates(t,e,n,i,!1,!1),s=[rr.MOVE_TO_LINE_TO,o,r];return this.instructions.push(s),this.hitDetectionInstructions.push(s),n},e.prototype.drawLineString=function(t,e){var n=this.state,i=n.strokeStyle,o=n.lineWidth;if(void 0!==i&&void 0!==o){this.updateStrokeStyle(n,this.applyStroke),this.beginGeometry(t,e),this.hitDetectionInstructions.push([rr.SET_STROKE_STYLE,n.strokeStyle,n.lineWidth,n.lineCap,n.lineJoin,n.miterLimit,To,0],ir);var r=t.getFlatCoordinates(),s=t.getStride();this.drawFlatCoordinates_(r,0,r.length,s),this.hitDetectionInstructions.push(nr),this.endGeometry(e)}},e.prototype.drawMultiLineString=function(t,e){var n=this.state,i=n.strokeStyle,o=n.lineWidth;if(void 0!==i&&void 0!==o){this.updateStrokeStyle(n,this.applyStroke),this.beginGeometry(t,e),this.hitDetectionInstructions.push([rr.SET_STROKE_STYLE,n.strokeStyle,n.lineWidth,n.lineCap,n.lineJoin,n.miterLimit,n.lineDash,n.lineDashOffset],ir);for(var r=t.getEnds(),s=t.getFlatCoordinates(),a=t.getStride(),l=0,h=0,u=r.length;h<u;++h)l=this.drawFlatCoordinates_(s,l,r[h],a);this.hitDetectionInstructions.push(nr),this.endGeometry(e)}},e.prototype.finish=function(){var e=this.state;return null!=e.lastStroke&&e.lastStroke!=this.coordinates.length&&this.instructions.push(nr),this.reverseHitDetectionInstructions(),this.state=null,t.prototype.finish.call(this)},e.prototype.applyStroke=function(e){null!=e.lastStroke&&e.lastStroke!=this.coordinates.length&&(this.instructions.push(nr),e.lastStroke=this.coordinates.length),e.lastStroke=0,t.prototype.applyStroke.call(this,e),this.instructions.push(ir)},e}(hr),dr=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),_r=function(t){function e(e,n,i,o){return t.call(this,e,n,i,o)||this}return dr(e,t),e.prototype.drawFlatCoordinatess_=function(t,e,n,i){var o=this.state,r=void 0!==o.fillStyle,s=void 0!==o.strokeStyle,a=n.length;this.instructions.push(ir),this.hitDetectionInstructions.push(ir);for(var l=0;l<a;++l){var h=n[l],u=this.coordinates.length,c=this.appendFlatLineCoordinates(t,e,h,i,!0,!s),p=[rr.MOVE_TO_LINE_TO,u,c];this.instructions.push(p),this.hitDetectionInstructions.push(p),s&&(this.instructions.push(or),this.hitDetectionInstructions.push(or)),e=h}return r&&(this.instructions.push(er),this.hitDetectionInstructions.push(er)),s&&(this.instructions.push(nr),this.hitDetectionInstructions.push(nr)),e},e.prototype.drawCircle=function(t,e){var n=this.state,i=n.fillStyle,o=n.strokeStyle;if(void 0!==i||void 0!==o){this.setFillStrokeStyles_(),this.beginGeometry(t,e),void 0!==n.fillStyle&&this.hitDetectionInstructions.push([rr.SET_FILL_STYLE,So]),void 0!==n.strokeStyle&&this.hitDetectionInstructions.push([rr.SET_STROKE_STYLE,n.strokeStyle,n.lineWidth,n.lineCap,n.lineJoin,n.miterLimit,n.lineDash,n.lineDashOffset]);var r=t.getFlatCoordinates(),s=t.getStride(),a=this.coordinates.length;this.appendFlatLineCoordinates(r,0,r.length,s,!1,!1);var l=[rr.CIRCLE,a];this.instructions.push(ir,l),this.hitDetectionInstructions.push(ir,l),void 0!==n.fillStyle&&(this.instructions.push(er),this.hitDetectionInstructions.push(er)),void 0!==n.strokeStyle&&(this.instructions.push(nr),this.hitDetectionInstructions.push(nr)),this.endGeometry(e)}},e.prototype.drawPolygon=function(t,e){var n=this.state,i=n.fillStyle,o=n.strokeStyle;if(void 0!==i||void 0!==o){this.setFillStrokeStyles_(),this.beginGeometry(t,e),void 0!==n.fillStyle&&this.hitDetectionInstructions.push([rr.SET_FILL_STYLE,So]),void 0!==n.strokeStyle&&this.hitDetectionInstructions.push([rr.SET_STROKE_STYLE,n.strokeStyle,n.lineWidth,n.lineCap,n.lineJoin,n.miterLimit,n.lineDash,n.lineDashOffset]);var r=t.getEnds(),s=t.getOrientedFlatCoordinates(),a=t.getStride();this.drawFlatCoordinatess_(s,0,r,a),this.endGeometry(e)}},e.prototype.drawMultiPolygon=function(t,e){var n=this.state,i=n.fillStyle,o=n.strokeStyle;if(void 0!==i||void 0!==o){this.setFillStrokeStyles_(),this.beginGeometry(t,e),void 0!==n.fillStyle&&this.hitDetectionInstructions.push([rr.SET_FILL_STYLE,So]),void 0!==n.strokeStyle&&this.hitDetectionInstructions.push([rr.SET_STROKE_STYLE,n.strokeStyle,n.lineWidth,n.lineCap,n.lineJoin,n.miterLimit,n.lineDash,n.lineDashOffset]);for(var r=t.getEndss(),s=t.getOrientedFlatCoordinates(),a=t.getStride(),l=0,h=0,u=r.length;h<u;++h)l=this.drawFlatCoordinatess_(s,l,r[h],a);this.endGeometry(e)}},e.prototype.finish=function(){this.reverseHitDetectionInstructions(),this.state=null;var e=this.tolerance;if(0!==e)for(var n=this.coordinates,i=0,o=n.length;i<o;++i)n[i]=$n(n[i],e);return t.prototype.finish.call(this)},e.prototype.setFillStrokeStyles_=function(){var t=this.state;void 0!==t.fillStyle&&this.updateFillStyle(t,this.createFill),void 0!==t.strokeStyle&&this.updateStrokeStyle(t,this.applyStroke)},e}(hr),gr=_r;function yr(t,e,n,i,o){var r,s,a,l,h,u,c,p,f,d=n,_=n,g=0,y=0,v=n;for(r=n;r<i;r+=o){var m=e[r],x=e[r+1];void 0!==l&&(p=m-l,f=x-h,a=Math.sqrt(p*p+f*f),void 0!==u&&(y+=s,Math.acos((u*p+c*f)/(s*a))>t&&(y>g&&(g=y,d=v,_=r),y=0,v=r-o)),s=a,u=p,c=f),l=m,h=x}return(y+=a)>g?[v,r]:[d,_]}var vr=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),mr={left:0,end:0,center:.5,right:1,start:1,top:0,middle:.5,hanging:.2,alphabetic:.8,ideographic:.8,bottom:1},xr=function(t){function e(e,n,i,o){var r=t.call(this,e,n,i,o)||this;return r.labels_=null,r.text_="",r.textOffsetX_=0,r.textOffsetY_=0,r.textRotateWithView_=void 0,r.textRotation_=0,r.textFillState_=null,r.fillStates={},r.textStrokeState_=null,r.strokeStates={},r.textState_={},r.textStates={},r.textKey_="",r.fillKey_="",r.strokeKey_="",r.declutterImageWithText_=void 0,r}return vr(e,t),e.prototype.finish=function(){var e=t.prototype.finish.call(this);return e.textStates=this.textStates,e.fillStates=this.fillStates,e.strokeStates=this.strokeStates,e},e.prototype.drawText=function(t,e){var n=this.textFillState_,i=this.textStrokeState_,o=this.textState_;if(""!==this.text_&&o&&(n||i)){var r=this.coordinates,s=r.length,a=t.getType(),l=null,h=t.getStride();if("line"!==o.placement||a!=En&&a!=On&&a!=Tn&&a!=Rn){var u=o.overflow?null:[];switch(a){case Sn:case bn:l=t.getFlatCoordinates();break;case En:l=t.getFlatMidpoint();break;case In:l=t.getCenter();break;case On:l=t.getFlatMidpoints(),h=2;break;case Tn:l=t.getFlatInteriorPoint(),o.overflow||u.push(l[2]/this.resolution),h=3;break;case Rn:var c=t.getFlatInteriorPoints();for(l=[],w=0,S=c.length;w<S;w+=3)o.overflow||u.push(c[w+2]/this.resolution),l.push(c[w],c[w+1]);if(0===l.length)return;h=2}if((I=this.appendFlatPointCoordinates(l,h))===s)return;if(u&&(I-s)/2!=l.length/h){var p=s/2;u=u.filter((function(t,e){var n=r[2*(p+e)]===l[e*h]&&r[2*(p+e)+1]===l[e*h+1];return n||--p,n}))}this.saveTextStates_(),(o.backgroundFill||o.backgroundStroke)&&(this.setFillStrokeStyle(o.backgroundFill,o.backgroundStroke),o.backgroundFill&&(this.updateFillStyle(this.state,this.createFill),this.hitDetectionInstructions.push(this.createFill(this.state))),o.backgroundStroke&&(this.updateStrokeStyle(this.state,this.applyStroke),this.hitDetectionInstructions.push(this.createStroke(this.state)))),this.beginGeometry(t,e);var f=o.padding;if(f!=Io&&(o.scale[0]<0||o.scale[1]<0)){var d=o.padding[0],_=o.padding[1],g=o.padding[2],y=o.padding[3];o.scale[0]<0&&(_=-_,y=-y),o.scale[1]<0&&(d=-d,g=-g),f=[d,_,g,y]}var v=this.pixelRatio;this.instructions.push([rr.DRAW_IMAGE,s,I,null,NaN,NaN,NaN,1,0,0,this.textRotateWithView_,this.textRotation_,[1,1],NaN,this.declutterImageWithText_,f==Io?Io:f.map((function(t){return t*v})),!!o.backgroundFill,!!o.backgroundStroke,this.text_,this.textKey_,this.strokeKey_,this.fillKey_,this.textOffsetX_,this.textOffsetY_,u]);var m=1/v;this.hitDetectionInstructions.push([rr.DRAW_IMAGE,s,I,null,NaN,NaN,NaN,1,0,0,this.textRotateWithView_,this.textRotation_,[m,m],NaN,this.declutterImageWithText_,f,!!o.backgroundFill,!!o.backgroundStroke,this.text_,this.textKey_,this.strokeKey_,this.fillKey_,this.textOffsetX_,this.textOffsetY_,u]),this.endGeometry(e)}else{if(!Le(this.getBufferedMaxExtent(),t.getExtent()))return;var x=void 0;if(l=t.getFlatCoordinates(),a==En)x=[l.length];else if(a==On)x=t.getEnds();else if(a==Tn)x=t.getEnds().slice(0,1);else if(a==Rn){var C=t.getEndss();x=[];for(var w=0,S=C.length;w<S;++w)x.push(C[w][0])}this.beginGeometry(t,e);for(var E=o.textAlign,T=0,b=void 0,O=0,R=x.length;O<R;++O){if(null==E){var P=yr(o.maxAngle,l,T,x[O],h);T=P[0],b=P[1]}else b=x[O];for(w=T;w<b;w+=h)r.push(l[w],l[w+1]);var I=r.length;T=x[O],this.drawChars_(s,I),s=I}this.endGeometry(e)}}},e.prototype.saveTextStates_=function(){var t=this.textStrokeState_,e=this.textState_,n=this.textFillState_,i=this.strokeKey_;t&&(i in this.strokeStates||(this.strokeStates[i]={strokeStyle:t.strokeStyle,lineCap:t.lineCap,lineDashOffset:t.lineDashOffset,lineWidth:t.lineWidth,lineJoin:t.lineJoin,miterLimit:t.miterLimit,lineDash:t.lineDash}));var o=this.textKey_;o in this.textStates||(this.textStates[o]={font:e.font,textAlign:e.textAlign||Ro,textBaseline:e.textBaseline||Po,scale:e.scale});var r=this.fillKey_;n&&(r in this.fillStates||(this.fillStates[r]={fillStyle:n.fillStyle}))},e.prototype.drawChars_=function(t,e){var n=this.textStrokeState_,i=this.textState_,o=this.strokeKey_,r=this.textKey_,s=this.fillKey_;this.saveTextStates_();var a=this.pixelRatio,l=mr[i.textBaseline],h=this.textOffsetY_*a,u=this.text_,c=n?n.lineWidth*Math.abs(i.scale[0])/2:0;this.instructions.push([rr.DRAW_CHARS,t,e,l,i.overflow,s,i.maxAngle,a,h,o,c*a,u,r,1]),this.hitDetectionInstructions.push([rr.DRAW_CHARS,t,e,l,i.overflow,s,i.maxAngle,1,h,o,c,u,r,1/a])},e.prototype.setTextStyle=function(t,e){var n,i,o;if(t){var r=t.getFill();r?((i=this.textFillState_)||(i={},this.textFillState_=i),i.fillStyle=Co(r.getColor()||So)):(i=null,this.textFillState_=i);var s=t.getStroke();if(s){(o=this.textStrokeState_)||(o={},this.textStrokeState_=o);var a=s.getLineDash(),l=s.getLineDashOffset(),h=s.getWidth(),u=s.getMiterLimit();o.lineCap=s.getLineCap()||Eo,o.lineDash=a?a.slice():To,o.lineDashOffset=void 0===l?0:l,o.lineJoin=s.getLineJoin()||bo,o.lineWidth=void 0===h?1:h,o.miterLimit=void 0===u?10:u,o.strokeStyle=Co(s.getColor()||Oo)}else o=null,this.textStrokeState_=o;n=this.textState_;var c=t.getFont()||wo;ko(c);var p=t.getScaleArray();n.overflow=t.getOverflow(),n.font=c,n.maxAngle=t.getMaxAngle(),n.placement=t.getPlacement(),n.textAlign=t.getTextAlign(),n.textBaseline=t.getTextBaseline()||Po,n.backgroundFill=t.getBackgroundFill(),n.backgroundStroke=t.getBackgroundStroke(),n.padding=t.getPadding()||Io,n.scale=void 0===p?[1,1]:p;var f=t.getOffsetX(),d=t.getOffsetY(),_=t.getRotateWithView(),g=t.getRotation();this.text_=t.getText()||"",this.textOffsetX_=void 0===f?0:f,this.textOffsetY_=void 0===d?0:d,this.textRotateWithView_=void 0!==_&&_,this.textRotation_=void 0===g?0:g,this.strokeKey_=o?("string"==typeof o.strokeStyle?o.strokeStyle:k(o.strokeStyle))+o.lineCap+o.lineDashOffset+"|"+o.lineWidth+o.lineJoin+o.miterLimit+"["+o.lineDash.join()+"]":"",this.textKey_=n.font+n.scale+(n.textAlign||"?")+(n.textBaseline||"?"),this.fillKey_=i?"string"==typeof i.fillStyle?i.fillStyle:"|"+k(i.fillStyle):""}else this.text_="";this.declutterImageWithText_=e},e}(hr),Cr={Circle:gr,Default:hr,Image:cr,LineString:fr,Polygon:gr,Text:xr},wr=function(){function t(t,e,n,i){this.tolerance_=t,this.maxExtent_=e,this.pixelRatio_=i,this.resolution_=n,this.buildersByZIndex_={}}return t.prototype.finish=function(){var t={};for(var e in this.buildersByZIndex_){t[e]=t[e]||{};var n=this.buildersByZIndex_[e];for(var i in n){var o=n[i].finish();t[e][i]=o}}return t},t.prototype.getBuilder=function(t,e){var n=void 0!==t?t.toString():"0",i=this.buildersByZIndex_[n];void 0===i&&(i={},this.buildersByZIndex_[n]=i);var o=i[e];return void 0===o&&(o=new(0,Cr[e])(this.tolerance_,this.maxExtent_,this.resolution_,this.pixelRatio_),i[e]=o),o},t}(),Sr="Circle",Er="Default",Tr="Image",br="LineString",Or="Polygon",Rr="Text";function Pr(t,e,n,i,o,r,s,a,l,h,u,c){var p=t[e],f=t[e+1],d=0,_=0,g=0,y=0;function v(){d=p,_=f,p=t[e+=i],f=t[e+1],y+=g,g=Math.sqrt((p-d)*(p-d)+(f-_)*(f-_))}do{v()}while(e<n-i&&y+g<r);for(var m=0===g?0:(r-y)/g,x=Tt(d,p,m),C=Tt(_,f,m),w=e-i,S=y,E=r+a*l(h,o,u);e<n-i&&y+g<E;)v();var T,b=Tt(d,p,m=0===g?0:(E-y)/g),O=Tt(_,f,m);if(c){var R=[x,C,b,O];kn(R,0,4,2,c,R,R),T=R[0]>R[2]}else T=x>b;var P,I=Math.PI,M=[],F=w+i===e;if(g=0,y=S,p=t[e=w],f=t[e+1],F){v(),P=Math.atan2(f-_,p-d),T&&(P+=P>0?-I:I);var L=(b+x)/2,A=(O+C)/2;return M[0]=[L,A,(E-r)/2,P,o],M}for(var D=0,k=o.length;D<k;){v();var j=Math.atan2(f-_,p-d);if(T&&(j+=j>0?-I:I),void 0!==P){var G=j-P;if(G+=G>I?-2*I:G<-I?2*I:0,Math.abs(G)>s)return null}P=j;for(var z=D,W=0;D<k;++D){var X=a*l(h,o[T?k-D-1:D],u);if(e+i<n&&y+g<r+W+X/2)break;W+=X}if(D!==z){var N=T?o.substring(k-z,k-D):o.substring(z,D);L=Tt(d,p,m=0===g?0:(r+W/2-y)/g),A=Tt(_,f,m),M.push([L,A,W/2,j,N]),r+=W}}return M}var Ir=[1/0,1/0,-1/0,-1/0],Mr=[],Fr=[],Lr=[],Ar=[];function Dr(t){return t[3].declutterBox}var kr=new RegExp("["+String.fromCharCode(1425)+"-"+String.fromCharCode(2303)+String.fromCharCode(64285)+"-"+String.fromCharCode(65023)+String.fromCharCode(65136)+"-"+String.fromCharCode(65276)+String.fromCharCode(67584)+"-"+String.fromCharCode(69631)+String.fromCharCode(124928)+"-"+String.fromCharCode(126975)+"]");function jr(t,e){return"start"!==e&&"end"!==e||kr.test(t)||(e="start"===e?"left":"right"),mr[e]}var Gr=function(){function t(t,e,n,i){this.overlaps=n,this.pixelRatio=e,this.resolution=t,this.alignFill_,this.instructions=i.instructions,this.coordinates=i.coordinates,this.coordinateCache_={},this.renderedTransform_=[1,0,0,1,0,0],this.hitDetectionInstructions=i.hitDetectionInstructions,this.pixelCoordinates_=null,this.viewRotation_=0,this.fillStates=i.fillStates||{},this.strokeStates=i.strokeStates||{},this.textStates=i.textStates||{},this.widths_={},this.labels_={}}return t.prototype.createLabel=function(t,e,n,i){var o=t+e+n+i;if(this.labels_[o])return this.labels_[o];var r=i?this.strokeStates[i]:null,s=n?this.fillStates[n]:null,a=this.textStates[e],l=this.pixelRatio,h=[a.scale[0]*l,a.scale[1]*l],u=jr(t,a.textAlign||Ro),c=i&&r.lineWidth?r.lineWidth:0,p=t.split("\n"),f=p.length,d=[],_=function(t,e,n){for(var i=e.length,o=0,r=0;r<i;++r){var s=Go(t,e[r]);o=Math.max(o,s),n.push(s)}return o}(a.font,p,d),g=function(t){var e=Do[t];if(null==e){if(Z){var n=ot(t),i=jo(t,"Žg");e=(isNaN(Number(n.lineHeight))?1.2:Number(n.lineHeight))*(i.actualBoundingBoxAscent+i.actualBoundingBoxDescent)}else Lo||((Lo=document.createElement("div")).innerHTML="M",Lo.style.minHeight="0",Lo.style.maxHeight="none",Lo.style.height="auto",Lo.style.padding="0",Lo.style.border="none",Lo.style.position="absolute",Lo.style.display="block",Lo.style.left="-99999px"),Lo.style.font=t,document.body.appendChild(Lo),e=Lo.offsetHeight,document.body.removeChild(Lo);Do[t]=e}return e}(a.font),y=_+c,v=[],m=(y+2)*h[0],x=(g*f+c)*h[1],C={width:m<0?Math.floor(m):Math.ceil(m),height:x<0?Math.floor(x):Math.ceil(x),contextInstructions:v};1==h[0]&&1==h[1]||v.push("scale",h),v.push("font",a.font),i&&(v.push("strokeStyle",r.strokeStyle),v.push("lineWidth",c),v.push("lineCap",r.lineCap),v.push("lineJoin",r.lineJoin),v.push("miterLimit",r.miterLimit),(Z?OffscreenCanvasRenderingContext2D:CanvasRenderingContext2D).prototype.setLineDash&&(v.push("setLineDash",[r.lineDash]),v.push("lineDashOffset",r.lineDashOffset))),n&&v.push("fillStyle",s.fillStyle),v.push("textBaseline","middle"),v.push("textAlign","center");var w,S=.5-u,E=u*y+S*c;if(i)for(w=0;w<f;++w)v.push("strokeText",[p[w],E+S*d[w],.5*(c+g)+w*g]);if(n)for(w=0;w<f;++w)v.push("fillText",[p[w],E+S*d[w],.5*(c+g)+w*g]);return this.labels_[o]=C,C},t.prototype.replayTextBackground_=function(t,e,n,i,o,r,s){t.beginPath(),t.moveTo.apply(t,e),t.lineTo.apply(t,n),t.lineTo.apply(t,i),t.lineTo.apply(t,o),t.lineTo.apply(t,e),r&&(this.alignFill_=r[2],this.fill_(t)),s&&(this.setStrokeStyle_(t,s),t.stroke())},t.prototype.calculateImageOrLabelDimensions_=function(t,e,n,i,o,r,s,a,l,h,u,c,p,f,d,_){var g,y=n-(s*=c[0]),v=i-(a*=c[1]),m=o+l>t?t-l:o,x=r+h>e?e-h:r,C=f[3]+m*c[0]+f[1],w=f[0]+x*c[1]+f[2],S=y-f[3],E=v-f[0];return(d||0!==u)&&(Mr[0]=S,Ar[0]=S,Mr[1]=E,Fr[1]=E,Fr[0]=S+C,Lr[0]=Fr[0],Lr[1]=E+w,Ar[1]=Lr[1]),0!==u?(Mn(g=Fn([1,0,0,1,0,0],n,i,1,1,u,-n,-i),Mr),Mn(g,Fr),Mn(g,Lr),Mn(g,Ar),de(Math.min(Mr[0],Fr[0],Lr[0],Ar[0]),Math.min(Mr[1],Fr[1],Lr[1],Ar[1]),Math.max(Mr[0],Fr[0],Lr[0],Ar[0]),Math.max(Mr[1],Fr[1],Lr[1],Ar[1]),Ir)):de(Math.min(S,S+C),Math.min(E,E+w),Math.max(S,S+C),Math.max(E,E+w),Ir),p&&(y=Math.round(y),v=Math.round(v)),{drawImageX:y,drawImageY:v,drawImageW:m,drawImageH:x,originX:l,originY:h,declutterBox:{minX:Ir[0],minY:Ir[1],maxX:Ir[2],maxY:Ir[3],value:_},canvasTransform:g,scale:c}},t.prototype.replayImageOrLabel_=function(t,e,n,i,o,r,s){var a=!(!r&&!s),l=i.declutterBox,h=t.canvas,u=s?s[2]*i.scale[0]/2:0;return l.minX-u<=h.width/e&&l.maxX+u>=0&&l.minY-u<=h.height/e&&l.maxY+u>=0&&(a&&this.replayTextBackground_(t,Mr,Fr,Lr,Ar,r,s),function(t,e,n,i,o,r,s,a,l,h,u){t.save(),1!==n&&(t.globalAlpha*=n),e&&t.setTransform.apply(t,e),i.contextInstructions?(t.translate(l,h),t.scale(u[0],u[1]),function(t,e){for(var n=t.contextInstructions,i=0,o=n.length;i<o;i+=2)Array.isArray(n[i+1])?e[n[i]].apply(e,n[i+1]):e[n[i]]=n[i+1]}(i,t)):u[0]<0||u[1]<0?(t.translate(l,h),t.scale(u[0],u[1]),t.drawImage(i,o,r,s,a,0,0,s,a)):t.drawImage(i,o,r,s,a,l,h,s*u[0],a*u[1]),t.restore()}(t,i.canvasTransform,o,n,i.originX,i.originY,i.drawImageW,i.drawImageH,i.drawImageX,i.drawImageY,i.scale)),!0},t.prototype.fill_=function(t){if(this.alignFill_){var e=Mn(this.renderedTransform_,[0,0]),n=512*this.pixelRatio;t.save(),t.translate(e[0]%n,e[1]%n),t.rotate(this.viewRotation_)}t.fill(),this.alignFill_&&t.restore()},t.prototype.setStrokeStyle_=function(t,e){t.strokeStyle=e[1],t.lineWidth=e[2],t.lineCap=e[3],t.lineJoin=e[4],t.miterLimit=e[5],t.setLineDash&&(t.lineDashOffset=e[7],t.setLineDash(e[6]))},t.prototype.drawLabelWithPointPlacement_=function(t,e,n,i){var o=this.textStates[e],r=this.createLabel(t,e,i,n),s=this.strokeStates[n],a=this.pixelRatio,l=jr(t,o.textAlign||Ro),h=mr[o.textBaseline||Po],u=s&&s.lineWidth?s.lineWidth:0;return{label:r,anchorX:l*(r.width/a-2*o.scale[0])+2*(.5-l)*u,anchorY:h*r.height/a+2*(.5-h)*u}},t.prototype.execute_=function(t,e,n,i,o,r,s,a){var l,u,c;this.pixelCoordinates_&&h(n,this.renderedTransform_)?l=this.pixelCoordinates_:(this.pixelCoordinates_||(this.pixelCoordinates_=[]),l=Dn(this.coordinates,0,this.coordinates.length,2,n,this.pixelCoordinates_),c=n,(u=this.renderedTransform_)[0]=c[0],u[1]=c[1],u[2]=c[2],u[3]=c[3],u[4]=c[4],u[5]=c[5]);for(var p,f,d,_,g,y,v,m,x,C,w,S,E,T,b,O,R=0,P=i.length,I=0,M=0,F=0,L=null,A=null,D=this.coordinateCache_,k=this.viewRotation_,j=Math.round(1e12*Math.atan2(-n[1],n[0]))/1e12,G={context:t,pixelRatio:this.pixelRatio,resolution:this.resolution,rotation:k},z=this.instructions!=i||this.overlaps?0:200;R<P;){var W=i[R];switch(W[0]){case rr.BEGIN_GEOMETRY:E=W[1],O=W[3],E.getGeometry()?void 0===s||Le(s,O.getExtent())?++R:R=W[2]+1:R=W[2];break;case rr.BEGIN_PATH:M>z&&(this.fill_(t),M=0),F>z&&(t.stroke(),F=0),M||F||(t.beginPath(),_=NaN,g=NaN),++R;break;case rr.CIRCLE:var X=l[I=W[1]],N=l[I+1],Y=l[I+2]-X,K=l[I+3]-N,B=Math.sqrt(Y*Y+K*K);t.moveTo(X+B,N),t.arc(X,N,B,0,2*Math.PI,!0),++R;break;case rr.CLOSE_PATH:t.closePath(),++R;break;case rr.CUSTOM:I=W[1],p=W[2];var Z=W[3],V=W[4],U=6==W.length?W[5]:void 0;G.geometry=Z,G.feature=E,R in D||(D[R]=[]);var H=D[R];U?U(l,I,p,2,H):(H[0]=l[I],H[1]=l[I+1],H.length=2),V(H,G),++R;break;case rr.DRAW_IMAGE:I=W[1],p=W[2],m=W[3],f=W[4],d=W[5];var q=W[6],J=W[7],Q=W[8],$=W[9],tt=W[10],et=W[11],nt=W[12],it=W[13],ot=W[14];if(!m&&W.length>=19){x=W[18],C=W[19],w=W[20],S=W[21];var rt=this.drawLabelWithPointPlacement_(x,C,w,S);m=rt.label,W[3]=m;var st=W[22];f=(rt.anchorX-st)*this.pixelRatio,W[4]=f;var at=W[23];d=(rt.anchorY-at)*this.pixelRatio,W[5]=d,q=m.height,W[6]=q,it=m.width,W[13]=it}var lt=void 0;W.length>24&&(lt=W[24]);var ht=void 0,ut=void 0,ct=void 0;W.length>16?(ht=W[15],ut=W[16],ct=W[17]):(ht=Io,ut=!1,ct=!1),tt&&j?et+=k:tt||j||(et-=k);for(var pt=0;I<p;I+=2)if(!(lt&&lt[pt++]<it/this.pixelRatio)){var ft=[t,e,m,Wt=this.calculateImageOrLabelDimensions_(m.width,m.height,l[I],l[I+1],it,q,f,d,Q,$,et,nt,o,ht,ut||ct,E),J,ut?L:null,ct?A:null],dt=void 0,_t=void 0;if(a&&ot){var gt=p-I;if(!ot[gt]){ot[gt]=ft;continue}if(dt=ot[gt],delete ot[gt],_t=Dr(dt),a.collides(_t))continue}a&&a.collides(Wt.declutterBox)||(dt&&(a&&a.insert(_t),this.replayImageOrLabel_.apply(this,dt)),a&&a.insert(Wt.declutterBox),this.replayImageOrLabel_.apply(this,ft))}++R;break;case rr.DRAW_CHARS:var yt=W[1],vt=W[2],mt=W[3],xt=W[4];S=W[5];var Ct=W[6],wt=W[7],St=W[8];w=W[9];var Et=W[10];x=W[11],C=W[12];var Tt=[W[13],W[13]],bt=this.textStates[C],Ot=bt.font,Rt=[bt.scale[0]*wt,bt.scale[1]*wt],Pt=void 0;Ot in this.widths_?Pt=this.widths_[Ot]:(Pt={},this.widths_[Ot]=Pt);var It=fi(l,yt,vt,2),Mt=Math.abs(Rt[0])*zo(Ot,x,Pt);if(xt||Mt<=It){var Ft=this.textStates[C].textAlign,Lt=Pr(l,yt,vt,2,x,(It-Mt)*mr[Ft],Ct,Math.abs(Rt[0]),zo,Ot,Pt,j?0:this.viewRotation_);t:if(Lt){var At=[],Dt=void 0,kt=void 0,jt=void 0,Gt=void 0,zt=void 0;if(w)for(Dt=0,kt=Lt.length;Dt<kt;++Dt){jt=(zt=Lt[Dt])[4],Gt=this.createLabel(jt,C,"",w),f=zt[2]+(Rt[0]<0?-Et:Et),d=mt*Gt.height+2*(.5-mt)*Et*Rt[1]/Rt[0]-St;var Wt=this.calculateImageOrLabelDimensions_(Gt.width,Gt.height,zt[0],zt[1],Gt.width,Gt.height,f,d,0,0,zt[3],Tt,!1,Io,!1,E);if(a&&a.collides(Wt.declutterBox))break t;At.push([t,e,Gt,Wt,1,null,null])}if(S)for(Dt=0,kt=Lt.length;Dt<kt;++Dt){if(jt=(zt=Lt[Dt])[4],Gt=this.createLabel(jt,C,S,""),f=zt[2],d=mt*Gt.height-St,Wt=this.calculateImageOrLabelDimensions_(Gt.width,Gt.height,zt[0],zt[1],Gt.width,Gt.height,f,d,0,0,zt[3],Tt,!1,Io,!1,E),a&&a.collides(Wt.declutterBox))break t;At.push([t,e,Gt,Wt,1,null,null])}a&&a.load(At.map(Dr));for(var Xt=0,Nt=At.length;Xt<Nt;++Xt)this.replayImageOrLabel_.apply(this,At[Xt])}}++R;break;case rr.END_GEOMETRY:if(void 0!==r){var Yt=r(E=W[1],O);if(Yt)return Yt}++R;break;case rr.FILL:z?M++:this.fill_(t),++R;break;case rr.MOVE_TO_LINE_TO:for(I=W[1],p=W[2],T=l[I],v=(b=l[I+1])+.5|0,(y=T+.5|0)===_&&v===g||(t.moveTo(T,b),_=y,g=v),I+=2;I<p;I+=2)y=(T=l[I])+.5|0,v=(b=l[I+1])+.5|0,I!=p-2&&y===_&&v===g||(t.lineTo(T,b),_=y,g=v);++R;break;case rr.SET_FILL_STYLE:L=W,this.alignFill_=W[2],M&&(this.fill_(t),M=0,F&&(t.stroke(),F=0)),t.fillStyle=W[1],++R;break;case rr.SET_STROKE_STYLE:A=W,F&&(t.stroke(),F=0),this.setStrokeStyle_(t,W),++R;break;case rr.STROKE:z?F++:t.stroke(),++R;break;default:++R}}M&&this.fill_(t),F&&t.stroke()},t.prototype.execute=function(t,e,n,i,o,r){this.viewRotation_=i,this.execute_(t,e,n,this.instructions,o,void 0,void 0,r)},t.prototype.executeHitDetection=function(t,e,n,i,o){return this.viewRotation_=n,this.execute_(t,1,e,this.hitDetectionInstructions,!0,i,o)},t}(),zr=Gr,Wr=[Or,Sr,br,Tr,Rr,Er],Xr=function(){function t(t,e,n,i,o,r){this.maxExtent_=t,this.overlaps_=i,this.pixelRatio_=n,this.resolution_=e,this.renderBuffer_=r,this.executorsByZIndex_={},this.hitDetectionContext_=null,this.hitDetectionTransform_=[1,0,0,1,0,0],this.createExecutors_(o)}return t.prototype.clip=function(t,e){var n=this.getClipCoords(e);t.beginPath(),t.moveTo(n[0],n[1]),t.lineTo(n[2],n[3]),t.lineTo(n[4],n[5]),t.lineTo(n[6],n[7]),t.clip()},t.prototype.createExecutors_=function(t){for(var e in t){var n=this.executorsByZIndex_[e];void 0===n&&(n={},this.executorsByZIndex_[e]=n);var i=t[e];for(var o in i){var r=i[o];n[o]=new zr(this.resolution_,this.pixelRatio_,this.overlaps_,r)}}},t.prototype.hasExecutors=function(t){for(var e in this.executorsByZIndex_)for(var n=this.executorsByZIndex_[e],i=0,o=t.length;i<o;++i)if(t[i]in n)return!0;return!1},t.prototype.forEachFeatureAtCoordinate=function(t,e,n,i,o,s){var a=2*(i=Math.round(i))+1,l=Fn(this.hitDetectionTransform_,i+.5,i+.5,1/e,-1/e,-n,-t[0],-t[1]),h=!this.hitDetectionContext_;h&&(this.hitDetectionContext_=H(a,a));var u,c=this.hitDetectionContext_;c.canvas.width!==a||c.canvas.height!==a?(c.canvas.width=a,c.canvas.height=a):h||c.clearRect(0,0,a,a),void 0!==this.renderBuffer_&&(ve(u=[1/0,1/0,-1/0,-1/0],t),ae(u,e*(this.renderBuffer_+i),u));var p,f=function(t){if(void 0!==Nr[t])return Nr[t];for(var e=2*t+1,n=t*t,i=new Array(n+1),o=0;o<=t;++o)for(var r=0;r<=t;++r){var s=o*o+r*r;if(s>n)break;var a=i[s];a||(a=[],i[s]=a),a.push(4*((t+o)*e+(t+r))+3),o>0&&a.push(4*((t-o)*e+(t+r))+3),r>0&&(a.push(4*((t+o)*e+(t-r))+3),o>0&&a.push(4*((t-o)*e+(t-r))+3))}for(var l=[],h=(o=0,i.length);o<h;++o)i[o]&&l.push.apply(l,i[o]);return Nr[t]=l,l}(i);function d(t,e){for(var n=c.getImageData(0,0,a,a).data,r=0,l=f.length;r<l;r++)if(n[f[r]]>0){if(!s||p!==Tr&&p!==Rr||-1!==s.indexOf(t)){var h=(f[r]-3)/4,u=i-h%a,d=i-(h/a|0),_=o(t,e,u*u+d*d);if(_)return _}c.clearRect(0,0,a,a);break}}var _,g,y,v,m,x=Object.keys(this.executorsByZIndex_).map(Number);for(x.sort(r),_=x.length-1;_>=0;--_){var C=x[_].toString();for(y=this.executorsByZIndex_[C],g=Wr.length-1;g>=0;--g)if(void 0!==(v=y[p=Wr[g]])&&(m=v.executeHitDetection(c,l,n,d,u)))return m}},t.prototype.getClipCoords=function(t){var e=this.maxExtent_;if(!e)return null;var n=e[0],i=e[1],o=e[2],r=e[3],s=[n,i,n,r,o,r,o,i];return Dn(s,0,8,2,t,s),s},t.prototype.isEmpty=function(){return g(this.executorsByZIndex_)},t.prototype.execute=function(t,e,n,i,o,s,a){var l=Object.keys(this.executorsByZIndex_).map(Number);l.sort(r),this.maxExtent_&&(t.save(),this.clip(t,n));var h,u,c,p,f,d,_=s||Wr;for(a&&l.reverse(),h=0,u=l.length;h<u;++h){var g=l[h].toString();for(f=this.executorsByZIndex_[g],c=0,p=_.length;c<p;++c)void 0!==(d=f[_[c]])&&d.execute(t,e,n,i,o,a)}this.maxExtent_&&t.restore()},t}(),Nr={},Yr=Xr,Kr=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),Br=function(t){function e(e,n,i,o,r,s,a){var l=t.call(this)||this;return l.context_=e,l.pixelRatio_=n,l.extent_=i,l.transform_=o,l.viewRotation_=r,l.squaredTolerance_=s,l.userTransform_=a,l.contextFillState_=null,l.contextStrokeState_=null,l.contextTextState_=null,l.fillState_=null,l.strokeState_=null,l.image_=null,l.imageAnchorX_=0,l.imageAnchorY_=0,l.imageHeight_=0,l.imageOpacity_=0,l.imageOriginX_=0,l.imageOriginY_=0,l.imageRotateWithView_=!1,l.imageRotation_=0,l.imageScale_=[0,0],l.imageWidth_=0,l.text_="",l.textOffsetX_=0,l.textOffsetY_=0,l.textRotateWithView_=!1,l.textRotation_=0,l.textScale_=[0,0],l.textFillState_=null,l.textStrokeState_=null,l.textState_=null,l.pixelCoordinates_=[],l.tmpLocalTransform_=[1,0,0,1,0,0],l}return Kr(e,t),e.prototype.drawImages_=function(t,e,n,i){if(this.image_){var o=Dn(t,e,n,i,this.transform_,this.pixelCoordinates_),r=this.context_,s=this.tmpLocalTransform_,a=r.globalAlpha;1!=this.imageOpacity_&&(r.globalAlpha=a*this.imageOpacity_);var l=this.imageRotation_;this.imageRotateWithView_&&(l+=this.viewRotation_);for(var h=0,u=o.length;h<u;h+=2){var c=o[h]-this.imageAnchorX_,p=o[h+1]-this.imageAnchorY_;if(0!==l||1!=this.imageScale_[0]||1!=this.imageScale_[1]){var f=c+this.imageAnchorX_,d=p+this.imageAnchorY_;Fn(s,f,d,1,1,l,-f,-d),r.setTransform.apply(r,s),r.translate(f,d),r.scale(this.imageScale_[0],this.imageScale_[1]),r.drawImage(this.image_,this.imageOriginX_,this.imageOriginY_,this.imageWidth_,this.imageHeight_,-this.imageAnchorX_,-this.imageAnchorY_,this.imageWidth_,this.imageHeight_),r.setTransform(1,0,0,1,0,0)}else r.drawImage(this.image_,this.imageOriginX_,this.imageOriginY_,this.imageWidth_,this.imageHeight_,c,p,this.imageWidth_,this.imageHeight_)}1!=this.imageOpacity_&&(r.globalAlpha=a)}},e.prototype.drawText_=function(t,e,n,i){if(this.textState_&&""!==this.text_){this.textFillState_&&this.setContextFillState_(this.textFillState_),this.textStrokeState_&&this.setContextStrokeState_(this.textStrokeState_),this.setContextTextState_(this.textState_);var o=Dn(t,e,n,i,this.transform_,this.pixelCoordinates_),r=this.context_,s=this.textRotation_;for(this.textRotateWithView_&&(s+=this.viewRotation_);e<n;e+=i){var a=o[e]+this.textOffsetX_,l=o[e+1]+this.textOffsetY_;if(0!==s||1!=this.textScale_[0]||1!=this.textScale_[1]){var h=Fn(this.tmpLocalTransform_,a,l,1,1,s,-a,-l);r.setTransform.apply(r,h),r.translate(a,l),r.scale(this.textScale_[0],this.textScale_[1]),this.textStrokeState_&&r.strokeText(this.text_,0,0),this.textFillState_&&r.fillText(this.text_,0,0),r.setTransform(1,0,0,1,0,0)}else this.textStrokeState_&&r.strokeText(this.text_,a,l),this.textFillState_&&r.fillText(this.text_,a,l)}}},e.prototype.moveToLineTo_=function(t,e,n,i,o){var r=this.context_,s=Dn(t,e,n,i,this.transform_,this.pixelCoordinates_);r.moveTo(s[0],s[1]);var a=s.length;o&&(a-=2);for(var l=2;l<a;l+=2)r.lineTo(s[l],s[l+1]);return o&&r.closePath(),n},e.prototype.drawRings_=function(t,e,n,i){for(var o=0,r=n.length;o<r;++o)e=this.moveToLineTo_(t,e,n[o],i,!0);return e},e.prototype.drawCircle=function(t){if(Le(this.extent_,t.getExtent())){if(this.fillState_||this.strokeState_){this.fillState_&&this.setContextFillState_(this.fillState_),this.strokeState_&&this.setContextStrokeState_(this.strokeState_);var e=function(t,e,n){var i=t.getFlatCoordinates();if(i){var o=t.getStride();return Dn(i,0,i.length,o,e,n)}return null}(t,this.transform_,this.pixelCoordinates_),n=e[2]-e[0],i=e[3]-e[1],o=Math.sqrt(n*n+i*i),r=this.context_;r.beginPath(),r.arc(e[0],e[1],o,0,2*Math.PI),this.fillState_&&r.fill(),this.strokeState_&&r.stroke()}""!==this.text_&&this.drawText_(t.getCenter(),0,2,2)}},e.prototype.setStyle=function(t){this.setFillStrokeStyle(t.getFill(),t.getStroke()),this.setImageStyle(t.getImage()),this.setTextStyle(t.getText())},e.prototype.setTransform=function(t){this.transform_=t},e.prototype.drawGeometry=function(t){switch(t.getType()){case Sn:this.drawPoint(t);break;case En:this.drawLineString(t);break;case Tn:this.drawPolygon(t);break;case bn:this.drawMultiPoint(t);break;case On:this.drawMultiLineString(t);break;case Rn:this.drawMultiPolygon(t);break;case Pn:this.drawGeometryCollection(t);break;case In:this.drawCircle(t)}},e.prototype.drawFeature=function(t,e){var n=e.getGeometryFunction()(t);n&&Le(this.extent_,n.getExtent())&&(this.setStyle(e),this.drawGeometry(n))},e.prototype.drawGeometryCollection=function(t){for(var e=t.getGeometriesArray(),n=0,i=e.length;n<i;++n)this.drawGeometry(e[n])},e.prototype.drawPoint=function(t){this.squaredTolerance_&&(t=t.simplifyTransformed(this.squaredTolerance_,this.userTransform_));var e=t.getFlatCoordinates(),n=t.getStride();this.image_&&this.drawImages_(e,0,e.length,n),""!==this.text_&&this.drawText_(e,0,e.length,n)},e.prototype.drawMultiPoint=function(t){this.squaredTolerance_&&(t=t.simplifyTransformed(this.squaredTolerance_,this.userTransform_));var e=t.getFlatCoordinates(),n=t.getStride();this.image_&&this.drawImages_(e,0,e.length,n),""!==this.text_&&this.drawText_(e,0,e.length,n)},e.prototype.drawLineString=function(t){if(this.squaredTolerance_&&(t=t.simplifyTransformed(this.squaredTolerance_,this.userTransform_)),Le(this.extent_,t.getExtent())){if(this.strokeState_){this.setContextStrokeState_(this.strokeState_);var e=this.context_,n=t.getFlatCoordinates();e.beginPath(),this.moveToLineTo_(n,0,n.length,t.getStride(),!1),e.stroke()}if(""!==this.text_){var i=t.getFlatMidpoint();this.drawText_(i,0,2,2)}}},e.prototype.drawMultiLineString=function(t){this.squaredTolerance_&&(t=t.simplifyTransformed(this.squaredTolerance_,this.userTransform_));var e=t.getExtent();if(Le(this.extent_,e)){if(this.strokeState_){this.setContextStrokeState_(this.strokeState_);var n=this.context_,i=t.getFlatCoordinates(),o=0,r=t.getEnds(),s=t.getStride();n.beginPath();for(var a=0,l=r.length;a<l;++a)o=this.moveToLineTo_(i,o,r[a],s,!1);n.stroke()}if(""!==this.text_){var h=t.getFlatMidpoints();this.drawText_(h,0,h.length,2)}}},e.prototype.drawPolygon=function(t){if(this.squaredTolerance_&&(t=t.simplifyTransformed(this.squaredTolerance_,this.userTransform_)),Le(this.extent_,t.getExtent())){if(this.strokeState_||this.fillState_){this.fillState_&&this.setContextFillState_(this.fillState_),this.strokeState_&&this.setContextStrokeState_(this.strokeState_);var e=this.context_;e.beginPath(),this.drawRings_(t.getOrientedFlatCoordinates(),0,t.getEnds(),t.getStride()),this.fillState_&&e.fill(),this.strokeState_&&e.stroke()}if(""!==this.text_){var n=t.getFlatInteriorPoint();this.drawText_(n,0,2,2)}}},e.prototype.drawMultiPolygon=function(t){if(this.squaredTolerance_&&(t=t.simplifyTransformed(this.squaredTolerance_,this.userTransform_)),Le(this.extent_,t.getExtent())){if(this.strokeState_||this.fillState_){this.fillState_&&this.setContextFillState_(this.fillState_),this.strokeState_&&this.setContextStrokeState_(this.strokeState_);var e=this.context_,n=t.getOrientedFlatCoordinates(),i=0,o=t.getEndss(),r=t.getStride();e.beginPath();for(var s=0,a=o.length;s<a;++s){var l=o[s];i=this.drawRings_(n,i,l,r)}this.fillState_&&e.fill(),this.strokeState_&&e.stroke()}if(""!==this.text_){var h=t.getFlatInteriorPoints();this.drawText_(h,0,h.length,2)}}},e.prototype.setContextFillState_=function(t){var e=this.context_,n=this.contextFillState_;n?n.fillStyle!=t.fillStyle&&(n.fillStyle=t.fillStyle,e.fillStyle=t.fillStyle):(e.fillStyle=t.fillStyle,this.contextFillState_={fillStyle:t.fillStyle})},e.prototype.setContextStrokeState_=function(t){var e=this.context_,n=this.contextStrokeState_;n?(n.lineCap!=t.lineCap&&(n.lineCap=t.lineCap,e.lineCap=t.lineCap),e.setLineDash&&(h(n.lineDash,t.lineDash)||e.setLineDash(n.lineDash=t.lineDash),n.lineDashOffset!=t.lineDashOffset&&(n.lineDashOffset=t.lineDashOffset,e.lineDashOffset=t.lineDashOffset)),n.lineJoin!=t.lineJoin&&(n.lineJoin=t.lineJoin,e.lineJoin=t.lineJoin),n.lineWidth!=t.lineWidth&&(n.lineWidth=t.lineWidth,e.lineWidth=t.lineWidth),n.miterLimit!=t.miterLimit&&(n.miterLimit=t.miterLimit,e.miterLimit=t.miterLimit),n.strokeStyle!=t.strokeStyle&&(n.strokeStyle=t.strokeStyle,e.strokeStyle=t.strokeStyle)):(e.lineCap=t.lineCap,e.setLineDash&&(e.setLineDash(t.lineDash),e.lineDashOffset=t.lineDashOffset),e.lineJoin=t.lineJoin,e.lineWidth=t.lineWidth,e.miterLimit=t.miterLimit,e.strokeStyle=t.strokeStyle,this.contextStrokeState_={lineCap:t.lineCap,lineDash:t.lineDash,lineDashOffset:t.lineDashOffset,lineJoin:t.lineJoin,lineWidth:t.lineWidth,miterLimit:t.miterLimit,strokeStyle:t.strokeStyle})},e.prototype.setContextTextState_=function(t){var e=this.context_,n=this.contextTextState_,i=t.textAlign?t.textAlign:Ro;n?(n.font!=t.font&&(n.font=t.font,e.font=t.font),n.textAlign!=i&&(n.textAlign=i,e.textAlign=i),n.textBaseline!=t.textBaseline&&(n.textBaseline=t.textBaseline,e.textBaseline=t.textBaseline)):(e.font=t.font,e.textAlign=i,e.textBaseline=t.textBaseline,this.contextTextState_={font:t.font,textAlign:i,textBaseline:t.textBaseline})},e.prototype.setFillStrokeStyle=function(t,e){var n=this;if(t){var i=t.getColor();this.fillState_={fillStyle:Co(i||So)}}else this.fillState_=null;if(e){var o=e.getColor(),r=e.getLineCap(),s=e.getLineDash(),a=e.getLineDashOffset(),l=e.getLineJoin(),h=e.getWidth(),u=e.getMiterLimit(),c=s||To;this.strokeState_={lineCap:void 0!==r?r:Eo,lineDash:1===this.pixelRatio_?c:c.map((function(t){return t*n.pixelRatio_})),lineDashOffset:(a||0)*this.pixelRatio_,lineJoin:void 0!==l?l:bo,lineWidth:(void 0!==h?h:1)*this.pixelRatio_,miterLimit:void 0!==u?u:10,strokeStyle:Co(o||Oo)}}else this.strokeState_=null},e.prototype.setImageStyle=function(t){var e;if(t&&(e=t.getSize())){var n=t.getAnchor(),i=t.getOrigin();this.image_=t.getImage(this.pixelRatio_),this.imageAnchorX_=n[0]*this.pixelRatio_,this.imageAnchorY_=n[1]*this.pixelRatio_,this.imageHeight_=e[1]*this.pixelRatio_,this.imageOpacity_=t.getOpacity(),this.imageOriginX_=i[0],this.imageOriginY_=i[1],this.imageRotateWithView_=t.getRotateWithView(),this.imageRotation_=t.getRotation(),this.imageScale_=t.getScaleArray(),this.imageWidth_=e[0]*this.pixelRatio_}else this.image_=null},e.prototype.setTextStyle=function(t){if(t){var e=t.getFill();if(e){var n=e.getColor();this.textFillState_={fillStyle:Co(n||So)}}else this.textFillState_=null;var i=t.getStroke();if(i){var o=i.getColor(),r=i.getLineCap(),s=i.getLineDash(),a=i.getLineDashOffset(),l=i.getLineJoin(),h=i.getWidth(),u=i.getMiterLimit();this.textStrokeState_={lineCap:void 0!==r?r:Eo,lineDash:s||To,lineDashOffset:a||0,lineJoin:void 0!==l?l:bo,lineWidth:void 0!==h?h:1,miterLimit:void 0!==u?u:10,strokeStyle:Co(o||Oo)}}else this.textStrokeState_=null;var c=t.getFont(),p=t.getOffsetX(),f=t.getOffsetY(),d=t.getRotateWithView(),_=t.getRotation(),g=t.getScaleArray(),y=t.getText(),v=t.getTextAlign(),m=t.getTextBaseline();this.textState_={font:void 0!==c?c:wo,textAlign:void 0!==v?v:Ro,textBaseline:void 0!==m?m:Po},this.text_=void 0!==y?y:"",this.textOffsetX_=void 0!==p?this.pixelRatio_*p:0,this.textOffsetY_=void 0!==f?this.pixelRatio_*f:0,this.textRotateWithView_=void 0!==d&&d,this.textRotation_=void 0!==_?_:0,this.textScale_=[this.pixelRatio_*g[0],this.pixelRatio_*g[1]]}else this.text_=""},e}(sr),Zr=Br,Vr="fraction",Ur="pixels",Hr="bottom-left",qr="bottom-right",Jr="top-left",Qr="top-right";function $r(t,e,n){return e+":"+t+":"+(n?go(n):"null")}var ts=new(function(){function t(){this.cache_={},this.cacheSize_=0,this.maxCacheSize_=32}return t.prototype.clear=function(){this.cache_={},this.cacheSize_=0},t.prototype.canExpireCache=function(){return this.cacheSize_>this.maxCacheSize_},t.prototype.expire=function(){if(this.canExpireCache()){var t=0;for(var e in this.cache_){var n=this.cache_[e];0!=(3&t++)||n.hasListener()||(delete this.cache_[e],--this.cacheSize_)}}},t.prototype.get=function(t,e,n){var i=$r(t,e,n);return i in this.cache_?this.cache_[i]:null},t.prototype.set=function(t,e,n,i){var o=$r(t,e,n);this.cache_[o]=i,++this.cacheSize_},t.prototype.setSize=function(t){this.maxCacheSize_=t,this.expire()},t}()),es=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),ns=function(t){function e(e,n,i,o){var r=t.call(this)||this;return r.extent=e,r.pixelRatio_=i,r.resolution=n,r.state=o,r}return es(e,t),e.prototype.changed=function(){this.dispatchEvent(x)},e.prototype.getExtent=function(){return this.extent},e.prototype.getImage=function(){return A()},e.prototype.getPixelRatio=function(){return this.pixelRatio_},e.prototype.getResolution=function(){return this.resolution},e.prototype.getState=function(){return this.state},e.prototype.load=function(){A()},e}(m),is=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}();function os(t,e,n){var i=t;if(i.src&&V){var o=i.decode(),r=!0;return o.then((function(){r&&e()})).catch((function(t){r&&("EncodingError"===t.name&&"Invalid image type."===t.message?e():n())})),function(){r=!1}}var s=[P(i,"load",e),P(i,"error",n)];return function(){s.forEach(I)}}!function(t){function e(e,n,i,o,r,s){var a=t.call(this,e,n,i,0)||this;return a.src_=o,a.image_=new Image,null!==r&&(a.image_.crossOrigin=r),a.unlisten_=null,a.state=0,a.imageLoadFunction_=s,a}is(e,t),e.prototype.getImage=function(){return this.image_},e.prototype.handleImageError_=function(){this.state=3,this.unlistenImage_(),this.changed()},e.prototype.handleImageLoad_=function(){void 0===this.resolution&&(this.resolution=Re(this.extent)/this.image_.height),this.state=2,this.unlistenImage_(),this.changed()},e.prototype.load=function(){0!=this.state&&3!=this.state||(this.state=1,this.changed(),this.imageLoadFunction_(this,this.src_),this.unlisten_=os(this.image_,this.handleImageLoad_.bind(this),this.handleImageError_.bind(this)))},e.prototype.setImage=function(t){this.image_=t,this.resolution=Re(this.extent)/this.image_.height},e.prototype.unlistenImage_=function(){this.unlisten_&&(this.unlisten_(),this.unlisten_=null)}}(ns);var rs=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),ss=null,as=function(t){function e(e,n,i,o,r,s){var a=t.call(this)||this;return a.hitDetectionImage_=null,a.image_=e||new Image,null!==o&&(a.image_.crossOrigin=o),a.canvas_={},a.color_=s,a.unlisten_=null,a.imageState_=r,a.size_=i,a.src_=n,a.tainted_,a}return rs(e,t),e.prototype.isTainted_=function(){if(void 0===this.tainted_&&2===this.imageState_){ss||(ss=H(1,1)),ss.drawImage(this.image_,0,0);try{ss.getImageData(0,0,1,1),this.tainted_=!1}catch(t){ss=null,this.tainted_=!0}}return!0===this.tainted_},e.prototype.dispatchChangeEvent_=function(){this.dispatchEvent(x)},e.prototype.handleImageError_=function(){this.imageState_=3,this.unlistenImage_(),this.dispatchChangeEvent_()},e.prototype.handleImageLoad_=function(){this.imageState_=2,this.size_?(this.image_.width=this.size_[0],this.image_.height=this.size_[1]):this.size_=[this.image_.width,this.image_.height],this.unlistenImage_(),this.dispatchChangeEvent_()},e.prototype.getImage=function(t){return this.replaceColor_(t),this.canvas_[t]?this.canvas_[t]:this.image_},e.prototype.getPixelRatio=function(t){return this.replaceColor_(t),this.canvas_[t]?t:1},e.prototype.getImageState=function(){return this.imageState_},e.prototype.getHitDetectionImage=function(){if(!this.hitDetectionImage_)if(this.isTainted_()){var t=this.size_[0],e=this.size_[1],n=H(t,e);n.fillRect(0,0,t,e),this.hitDetectionImage_=n.canvas}else this.hitDetectionImage_=this.image_;return this.hitDetectionImage_},e.prototype.getSize=function(){return this.size_},e.prototype.getSrc=function(){return this.src_},e.prototype.load=function(){if(0==this.imageState_){this.imageState_=1;try{this.image_.src=this.src_}catch(t){this.handleImageError_()}this.unlisten_=os(this.image_,this.handleImageLoad_.bind(this),this.handleImageError_.bind(this))}},e.prototype.replaceColor_=function(t){if(this.color_&&!this.canvas_[t]&&2===this.imageState_){var e=document.createElement("canvas");this.canvas_[t]=e,e.width=Math.ceil(this.image_.width*t),e.height=Math.ceil(this.image_.height*t);var n=e.getContext("2d");if(n.scale(t,t),n.drawImage(this.image_,0,0),n.globalCompositeOperation="multiply","multiply"===n.globalCompositeOperation||this.isTainted_())n.fillStyle=go(this.color_),n.fillRect(0,0,e.width/t,e.height/t),n.globalCompositeOperation="destination-in",n.drawImage(this.image_,0,0);else{for(var i=n.getImageData(0,0,e.width,e.height),o=i.data,r=this.color_[0]/255,s=this.color_[1]/255,a=this.color_[2]/255,l=this.color_[3],h=0,u=o.length;h<u;h+=4)o[h]*=r,o[h+1]*=s,o[h+2]*=a,o[h+3]*=l;n.putImageData(i,0,0)}}},e.prototype.unlistenImage_=function(){this.unlisten_&&(this.unlisten_(),this.unlisten_=null)},e}(m),ls=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),hs=function(t){function e(e){var n=this,i=e||{},o=void 0!==i.opacity?i.opacity:1,r=void 0!==i.rotation?i.rotation:0,s=void 0!==i.scale?i.scale:1,a=void 0!==i.rotateWithView&&i.rotateWithView;(n=t.call(this,{opacity:o,rotation:r,scale:s,displacement:void 0!==i.displacement?i.displacement:[0,0],rotateWithView:a})||this).anchor_=void 0!==i.anchor?i.anchor:[.5,.5],n.normalizedAnchor_=null,n.anchorOrigin_=void 0!==i.anchorOrigin?i.anchorOrigin:Jr,n.anchorXUnits_=void 0!==i.anchorXUnits?i.anchorXUnits:Vr,n.anchorYUnits_=void 0!==i.anchorYUnits?i.anchorYUnits:Vr,n.crossOrigin_=void 0!==i.crossOrigin?i.crossOrigin:null;var l=void 0!==i.img?i.img:null,h=void 0!==i.imgSize?i.imgSize:null,u=i.src;yt(!(void 0!==u&&l),4),yt(!l||l&&h,5),void 0!==u&&0!==u.length||!l||(u=l.src||k(l)),yt(void 0!==u&&u.length>0,6);var c=void 0!==i.src?0:2;return n.color_=void 0!==i.color?vo(i.color):null,n.iconImage_=function(t,e,n,i,o,r){var s=ts.get(e,i,r);return s||(s=new as(t,e,n,i,o,r),ts.set(e,i,r,s)),s}(l,u,h,n.crossOrigin_,c,n.color_),n.offset_=void 0!==i.offset?i.offset:[0,0],n.offsetOrigin_=void 0!==i.offsetOrigin?i.offsetOrigin:Jr,n.origin_=null,n.size_=void 0!==i.size?i.size:null,n}return ls(e,t),e.prototype.clone=function(){var t=this.getScale();return new e({anchor:this.anchor_.slice(),anchorOrigin:this.anchorOrigin_,anchorXUnits:this.anchorXUnits_,anchorYUnits:this.anchorYUnits_,crossOrigin:this.crossOrigin_,color:this.color_&&this.color_.slice?this.color_.slice():this.color_||void 0,src:this.getSrc(),offset:this.offset_.slice(),offsetOrigin:this.offsetOrigin_,size:null!==this.size_?this.size_.slice():void 0,opacity:this.getOpacity(),scale:Array.isArray(t)?t.slice():t,rotation:this.getRotation(),rotateWithView:this.getRotateWithView()})},e.prototype.getAnchor=function(){if(this.normalizedAnchor_)return this.normalizedAnchor_;var t=this.anchor_,e=this.getSize();if(this.anchorXUnits_==Vr||this.anchorYUnits_==Vr){if(!e)return null;t=this.anchor_.slice(),this.anchorXUnits_==Vr&&(t[0]*=e[0]),this.anchorYUnits_==Vr&&(t[1]*=e[1])}if(this.anchorOrigin_!=Jr){if(!e)return null;t===this.anchor_&&(t=this.anchor_.slice()),this.anchorOrigin_!=Qr&&this.anchorOrigin_!=qr||(t[0]=-t[0]+e[0]),this.anchorOrigin_!=Hr&&this.anchorOrigin_!=qr||(t[1]=-t[1]+e[1])}var n=this.getDisplacement();return t[0]-=n[0],t[1]+=n[1],this.normalizedAnchor_=t,this.normalizedAnchor_},e.prototype.setAnchor=function(t){this.anchor_=t,this.normalizedAnchor_=null},e.prototype.getColor=function(){return this.color_},e.prototype.getImage=function(t){return this.iconImage_.getImage(t)},e.prototype.getPixelRatio=function(t){return this.iconImage_.getPixelRatio(t)},e.prototype.getImageSize=function(){return this.iconImage_.getSize()},e.prototype.getImageState=function(){return this.iconImage_.getImageState()},e.prototype.getHitDetectionImage=function(){return this.iconImage_.getHitDetectionImage()},e.prototype.getOrigin=function(){if(this.origin_)return this.origin_;var t=this.offset_;if(this.offsetOrigin_!=Jr){var e=this.getSize(),n=this.iconImage_.getSize();if(!e||!n)return null;t=t.slice(),this.offsetOrigin_!=Qr&&this.offsetOrigin_!=qr||(t[0]=n[0]-e[0]-t[0]),this.offsetOrigin_!=Hr&&this.offsetOrigin_!=qr||(t[1]=n[1]-e[1]-t[1])}return this.origin_=t,this.origin_},e.prototype.getSrc=function(){return this.iconImage_.getSrc()},e.prototype.getSize=function(){return this.size_?this.size_:this.iconImage_.getSize()},e.prototype.listenImageChange=function(t){this.iconImage_.addEventListener(x,t)},e.prototype.load=function(){this.iconImage_.load()},e.prototype.unlistenImageChange=function(t){this.iconImage_.removeEventListener(x,t)},e}(po),us=.5,cs={Point:function(t,e,n,i,o){var r,s=n.getImage(),a=n.getText();if(o&&(t=o,r=s&&a&&a.getText()?{}:void 0),s){if(2!=s.getImageState())return;var l=t.getBuilder(n.getZIndex(),Tr);l.setImageStyle(s,r),l.drawPoint(e,i)}if(a&&a.getText()){var h=t.getBuilder(n.getZIndex(),Rr);h.setTextStyle(a,r),h.drawText(e,i)}},LineString:function(t,e,n,i,o){var r=n.getStroke();if(r){var s=t.getBuilder(n.getZIndex(),br);s.setFillStrokeStyle(null,r),s.drawLineString(e,i)}var a=n.getText();if(a&&a.getText()){var l=(o||t).getBuilder(n.getZIndex(),Rr);l.setTextStyle(a),l.drawText(e,i)}},Polygon:function(t,e,n,i,o){var r=n.getFill(),s=n.getStroke();if(r||s){var a=t.getBuilder(n.getZIndex(),Or);a.setFillStrokeStyle(r,s),a.drawPolygon(e,i)}var l=n.getText();if(l&&l.getText()){var h=(o||t).getBuilder(n.getZIndex(),Rr);h.setTextStyle(l),h.drawText(e,i)}},MultiPoint:function(t,e,n,i,o){var r,s=n.getImage(),a=n.getText();if(o&&(t=o,r=s&&a&&a.getText()?{}:void 0),s){if(2!=s.getImageState())return;var l=t.getBuilder(n.getZIndex(),Tr);l.setImageStyle(s,r),l.drawMultiPoint(e,i)}if(a&&a.getText()){var h=(o||t).getBuilder(n.getZIndex(),Rr);h.setTextStyle(a,r),h.drawText(e,i)}},MultiLineString:function(t,e,n,i,o){var r=n.getStroke();if(r){var s=t.getBuilder(n.getZIndex(),br);s.setFillStrokeStyle(null,r),s.drawMultiLineString(e,i)}var a=n.getText();if(a&&a.getText()){var l=(o||t).getBuilder(n.getZIndex(),Rr);l.setTextStyle(a),l.drawText(e,i)}},MultiPolygon:function(t,e,n,i,o){var r=n.getFill(),s=n.getStroke();if(s||r){var a=t.getBuilder(n.getZIndex(),Or);a.setFillStrokeStyle(r,s),a.drawMultiPolygon(e,i)}var l=n.getText();if(l&&l.getText()){var h=(o||t).getBuilder(n.getZIndex(),Rr);h.setTextStyle(l),h.drawText(e,i)}},GeometryCollection:function(t,e,n,i,o){var r,s,a=e.getGeometriesArray();for(r=0,s=a.length;r<s;++r)(0,cs[a[r].getType()])(t,a[r],n,i,o)},Circle:function(t,e,n,i,o){var r=n.getFill(),s=n.getStroke();if(r||s){var a=t.getBuilder(n.getZIndex(),Sr);a.setFillStrokeStyle(r,s),a.drawCircle(e,i)}var l=n.getText();if(l&&l.getText()){var h=(o||t).getBuilder(n.getZIndex(),Rr);h.setTextStyle(l),h.drawText(e,i)}}};function ps(t,e){return parseInt(k(t),10)-parseInt(k(e),10)}function fs(t,e){return.5*t/e}function ds(t,e,n,i,o,r,s){var a=!1,l=n.getImage();if(l){var h=l.getImageState();2==h||3==h?l.unlistenImageChange(o):(0==h&&l.load(),h=l.getImageState(),l.listenImageChange(o),a=!0)}return function(t,e,n,i,o,r){var s=n.getGeometryFunction()(e);if(s){var a=s.simplifyTransformed(i,o);n.getRenderer()?_s(t,a,n,e):(0,cs[a.getType()])(t,a,n,e,r)}}(t,e,n,i,r,s),a}function _s(t,e,n,i){if(e.getType()!=Pn)t.getBuilder(n.getZIndex(),Er).drawCustom(e,i,n.getRenderer(),n.getHitDetectionRenderer());else for(var o=e.getGeometries(),r=0,s=o.length;r<s;++r)_s(t,o[r],n,i)}var gs,ys=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),vs=function(t){function e(e){var n=t.call(this,e)||this;return n.boundHandleStyleImageChange_=n.handleStyleImageChange_.bind(n),n.animatingOrInteracting_,n.dirty_=!1,n.hitDetectionImageData_=null,n.renderedFeatures_=null,n.renderedRevision_=-1,n.renderedResolution_=NaN,n.renderedExtent_=[1/0,1/0,-1/0,-1/0],n.wrappedRenderedExtent_=[1/0,1/0,-1/0,-1/0],n.renderedRotation_,n.renderedCenter_=null,n.renderedProjection_=null,n.renderedRenderOrder_=null,n.replayGroup_=null,n.replayGroupChanged=!0,n.declutterExecutorGroup=null,n.clipping=!0,n}return ys(e,t),e.prototype.useContainer=function(e,n,i){i<1&&(e=null),t.prototype.useContainer.call(this,e,n,i)},e.prototype.renderWorlds=function(t,e,n){var i=e.extent,o=e.viewState,r=o.center,s=o.resolution,a=o.projection,l=o.rotation,h=a.getExtent(),u=this.getLayer().getSource(),c=e.pixelRatio,p=e.viewHints,f=!(p[0]||p[1]),d=this.context,_=Math.round(e.size[0]*c),g=Math.round(e.size[1]*c),y=u.getWrapX()&&a.canWrapX(),v=y?Fe(h):null,m=y?Math.ceil((i[2]-h[2])/v)+1:1,x=y?Math.floor((i[0]-h[0])/v):0;do{var C=this.getRenderTransform(r,s,l,c,_,g,x*v);t.execute(d,1,C,l,f,void 0,n)}while(++x<m)},e.prototype.renderDeclutter=function(t){this.declutterExecutorGroup&&this.renderWorlds(this.declutterExecutorGroup,t,t.declutterTree)},e.prototype.renderFrame=function(t,e){var n=t.pixelRatio,i=t.layerStatesArray[t.layerIndex];!function(t,e,n){!function(t,e,n,i,o,r,s){t[0]=e,t[1]=n,t[2]=i,t[3]=o,t[4]=r,t[5]=s}(t,e,0,0,n,0,0)}(this.pixelTransform,1/n,1/n),Ln(this.inversePixelTransform,this.pixelTransform);var o=An(this.pixelTransform);this.useContainer(e,o,i.opacity);var r=this.context,s=r.canvas,a=this.replayGroup_,l=this.declutterExecutorGroup;if((!a||a.isEmpty())&&(!l||l.isEmpty()))return null;var h=Math.round(t.size[0]*n),u=Math.round(t.size[1]*n);s.width!=h||s.height!=u?(s.width=h,s.height=u,s.style.transform!==o&&(s.style.transform=o)):this.containerReused||r.clearRect(0,0,h,u),this.preRender(r,t);var c=t.viewState,p=(c.projection,!1),f=!0;if(i.extent&&this.clipping){var d=nn(i.extent);(p=(f=Le(d,t.extent))&&!ce(d,t.extent))&&this.clipUnrotated(r,t,d)}f&&this.renderWorlds(a,t),p&&r.restore(),this.postRender(r,t);var _=rt(i.opacity),g=this.container;return _!==g.style.opacity&&(g.style.opacity=_),this.renderedRotation_!==c.rotation&&(this.renderedRotation_=c.rotation,this.hitDetectionImageData_=null),this.container},e.prototype.getFeatures=function(t){return new Promise(function(e){if(!this.hitDetectionImageData_&&!this.animatingOrInteracting_){var n=[this.context.canvas.width,this.context.canvas.height];Mn(this.pixelTransform,n);var i=this.renderedCenter_,o=this.renderedResolution_,s=this.renderedRotation_,a=this.renderedProjection_,l=this.wrappedRenderedExtent_,h=this.getLayer(),u=[],c=n[0]*us,p=n[1]*us;u.push(this.getRenderTransform(i,o,s,us,c,p,0).slice());var f=h.getSource(),d=a.getExtent();if(f.getWrapX()&&a.canWrapX()&&!ce(d,l)){for(var _=l[0],g=Fe(d),y=0,v=void 0;_<d[0];)v=g*--y,u.push(this.getRenderTransform(i,o,s,us,c,p,v).slice()),_+=g;for(y=0,_=l[2];_>d[2];)v=g*++y,u.push(this.getRenderTransform(i,o,s,us,c,p,v).slice()),_-=g}this.hitDetectionImageData_=function(t,e,n,i,o,s,a){var l=H(t[0]*us,t[1]*us);l.imageSmoothingEnabled=!1;for(var h=l.canvas,u=new Zr(l,us,o,null,a),c=n.length,p=Math.floor(16777215/c),f={},d=1;d<=c;++d){var _=n[d-1],g=_.getStyleFunction()||i;if(i){var y=g(_,s);if(y){Array.isArray(y)||(y=[y]);for(var v="#"+("000000"+(d*p).toString(16)).slice(-6),m=0,x=y.length;m<x;++m){var C=y[m],w=C.getGeometryFunction()(_);if(w&&Le(o,w.getExtent())){var S=C.clone(),E=S.getFill();E&&E.setColor(v);var T=S.getStroke();T&&(T.setColor(v),T.setLineDash(null)),S.setText(void 0);var b=C.getImage();if(b&&0!==b.getOpacity()){var O=b.getImageSize();if(!O)continue;var R=H(O[0],O[1],void 0,{alpha:!1}),P=R.canvas;R.fillStyle=v,R.fillRect(0,0,P.width,P.height),S.setImage(new hs({img:P,imgSize:O,anchor:b.getAnchor(),anchorXUnits:Ur,anchorYUnits:Ur,offset:b.getOrigin(),opacity:1,size:b.getSize(),scale:b.getScale(),rotation:b.getRotation(),rotateWithView:b.getRotateWithView()}))}var I=S.getZIndex()||0;(L=f[I])||(L={},f[I]=L,L.Polygon=[],L.Circle=[],L.LineString=[],L.Point=[]),L[w.getType().replace("Multi","")].push(w,S)}}}}}for(var M=Object.keys(f).map(Number).sort(r),F=(d=0,M.length);d<F;++d){var L=f[M[d]];for(var A in L){var D=L[A];for(m=0,x=D.length;m<x;m+=2){u.setStyle(D[m+1]);for(var k=0,j=e.length;k<j;++k)u.setTransform(e[k]),u.drawGeometry(D[m])}}}return l.getImageData(0,0,h.width,h.height)}(n,u,this.renderedFeatures_,h.getStyleFunction(),l,o,s)}e(function(t,e,n){var i=[];if(n){var o=Math.floor(Math.round(t[0])*us),r=Math.floor(Math.round(t[1])*us),s=4*(vt(o,0,n.width-1)+vt(r,0,n.height-1)*n.width),a=n.data[s],l=n.data[s+1],h=n.data[s+2]+256*(l+256*a),u=Math.floor(16777215/e.length);h&&h%u==0&&i.push(e[h/u-1])}return i}(t,this.renderedFeatures_,this.hitDetectionImageData_))}.bind(this))},e.prototype.forEachFeatureAtCoordinate=function(t,e,n,i,o){var r=this;if(this.replayGroup_){var s,a=e.viewState.resolution,l=e.viewState.rotation,h=this.getLayer(),u={},c=function(t,e,n){var r=k(t),s=u[r];if(s){if(!0!==s&&n<s.distanceSq){if(0===n)return u[r]=!0,o.splice(o.lastIndexOf(s),1),i(t,h,e);s.geometry=e,s.distanceSq=n}}else{if(0===n)return u[r]=!0,i(t,h,e);o.push(u[r]={feature:t,layer:h,geometry:e,distanceSq:n,callback:i})}},p=[this.replayGroup_];return this.declutterExecutorGroup&&p.push(this.declutterExecutorGroup),p.some((function(i){return s=i.forEachFeatureAtCoordinate(t,a,l,n,c,i===r.declutterExecutorGroup?e.declutterTree.all().map((function(t){return t.value})):null)})),s}},e.prototype.handleFontsChanged=function(){var t=this.getLayer();t.getVisible()&&this.replayGroup_&&t.changed()},e.prototype.handleStyleImageChange_=function(t){this.renderIfReadyAndVisible()},e.prototype.prepareFrame=function(t){var e=this.getLayer(),n=e.getSource();if(!n)return!1;var i=t.viewHints[0],o=t.viewHints[1],r=e.getUpdateWhileAnimating(),s=e.getUpdateWhileInteracting();if(!this.dirty_&&!r&&i||!s&&o)return this.animatingOrInteracting_=!0,!0;this.animatingOrInteracting_=!1;var a=t.extent,l=t.viewState,u=l.projection,c=l.resolution,p=t.pixelRatio,f=e.getRevision(),d=e.getRenderBuffer(),_=e.getRenderOrder();void 0===_&&(_=ps);var g=l.center.slice(),y=ae(a,d*c),v=y.slice(),m=[y.slice()],x=u.getExtent();if(n.getWrapX()&&u.canWrapX()&&!ce(x,t.extent)){var C=Fe(x),w=Math.max(Fe(y)/2,C);y[0]=x[0]-w,y[2]=x[2]+w,vn(g,u);var S=function(t,e){var n=e.getExtent(),i=Te(t);if(e.canWrapX()&&(i[0]<n[0]||i[0]>=n[2])){var o=Fe(n),r=Math.floor((i[0]-n[0])/o)*o;t[0]-=r,t[2]-=r}return t}(m[0],u);S[0]<x[0]&&S[2]<x[2]?m.push([S[0]+C,S[1],S[2]+C,S[3]]):S[0]>x[0]&&S[2]>x[2]&&m.push([S[0]-C,S[1],S[2]-C,S[3]])}if(!this.dirty_&&this.renderedResolution_==c&&this.renderedRevision_==f&&this.renderedRenderOrder_==_&&ce(this.wrappedRenderedExtent_,y))return h(this.renderedExtent_,v)||(this.hitDetectionImageData_=null,this.renderedExtent_=v),this.renderedCenter_=g,this.replayGroupChanged=!1,!0;this.replayGroup_=null,this.dirty_=!1;var E,T=new wr(fs(c,p),y,c,p);this.getLayer().getDeclutter()&&(E=new wr(fs(c,p),y,c,p));var b,O=Qe();if(O){for(var R=0,P=m.length;R<P;++R){var I=en(m[R]);n.loadFeatures(I,on(c),O)}b=Ke(O,u)}else for(R=0,P=m.length;R<P;++R)n.loadFeatures(m[R],c,u);var M=function(t,e){var n=fs(t,e);return n*n}(c,p),F=function(t){var n,i=t.getStyleFunction()||e.getStyleFunction();if(i&&(n=i(t,c)),n){var o=this.renderFeature(t,M,n,T,b,E);this.dirty_=this.dirty_||o}}.bind(this),L=en(y),A=n.getFeaturesInExtent(L);for(_&&A.sort(_),R=0,P=A.length;R<P;++R)F(A[R]);this.renderedFeatures_=A;var D=T.finish(),k=new Yr(y,c,p,n.getOverlaps(),D,e.getRenderBuffer());return E&&(this.declutterExecutorGroup=new Yr(y,c,p,n.getOverlaps(),E.finish(),e.getRenderBuffer())),this.renderedResolution_=c,this.renderedRevision_=f,this.renderedRenderOrder_=_,this.renderedExtent_=v,this.wrappedRenderedExtent_=y,this.renderedCenter_=g,this.renderedProjection_=u,this.replayGroup_=k,this.hitDetectionImageData_=null,this.replayGroupChanged=!0,!0},e.prototype.renderFeature=function(t,e,n,i,o,r){if(!n)return!1;var s=!1;if(Array.isArray(n))for(var a=0,l=n.length;a<l;++a)s=ds(i,t,n[a],e,this.boundHandleStyleImageChange_,o,r)||s;else s=ds(i,t,n,e,this.boundHandleStyleImageChange_,o,r);return s},e}(to),ms=vs,xs=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),Cs=function(t){function e(e){return t.call(this,e)||this}return xs(e,t),e.prototype.createRenderer=function(){return new ms(this)},e}($o),ws=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),Ss=function(t){function e(e,n,i){var o=t.call(this)||this,r=i||{};return o.tileCoord=e,o.state=n,o.interimTile=null,o.key="",o.transition_=void 0===r.transition?250:r.transition,o.transitionStarts_={},o}return ws(e,t),e.prototype.changed=function(){this.dispatchEvent(x)},e.prototype.release=function(){},e.prototype.getKey=function(){return this.key+"/"+this.tileCoord},e.prototype.getInterimTile=function(){if(!this.interimTile)return this;var t=this.interimTile;do{if(2==t.getState())return this.transition_=0,t;t=t.interimTile}while(t);return this},e.prototype.refreshInterimChain=function(){if(this.interimTile){var t=this.interimTile,e=this;do{if(2==t.getState()){t.interimTile=null;break}1==t.getState()?e=t:0==t.getState()?e.interimTile=t.interimTile:e=t,t=e.interimTile}while(t)}},e.prototype.getTileCoord=function(){return this.tileCoord},e.prototype.getState=function(){return this.state},e.prototype.setState=function(t){if(3!==this.state&&this.state>t)throw new Error("Tile load sequence violation");this.state=t,this.changed()},e.prototype.load=function(){A()},e.prototype.getAlpha=function(t,e){if(!this.transition_)return 1;var n=this.transitionStarts_[t];if(n){if(-1===n)return 1}else n=e,this.transitionStarts_[t]=n;var i=e-n+1e3/60;return i>=this.transition_?1:un(i/this.transition_)},e.prototype.inTransition=function(t){return!!this.transition_&&-1!==this.transitionStarts_[t]},e.prototype.endTransition=function(t){this.transition_&&(this.transitionStarts_[t]=-1)},e}(m),Es=Ss,Ts=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),bs=function(t){function e(e,n,i,o,r,s){var a=t.call(this,e,n,s)||this;return a.crossOrigin_=o,a.src_=i,a.key=i,a.image_=new Image,null!==o&&(a.image_.crossOrigin=o),a.unlisten_=null,a.tileLoadFunction_=r,a}return Ts(e,t),e.prototype.getImage=function(){return this.image_},e.prototype.setImage=function(t){this.image_=t,this.state=2,this.unlistenImage_(),this.changed()},e.prototype.handleImageError_=function(){var t;this.state=3,this.unlistenImage_(),this.image_=((t=H(1,1)).fillStyle="rgba(0,0,0,0)",t.fillRect(0,0,1,1),t.canvas),this.changed()},e.prototype.handleImageLoad_=function(){var t=this.image_;t.naturalWidth&&t.naturalHeight?this.state=2:this.state=4,this.unlistenImage_(),this.changed()},e.prototype.load=function(){3==this.state&&(this.state=0,this.image_=new Image,null!==this.crossOrigin_&&(this.image_.crossOrigin=this.crossOrigin_)),0==this.state&&(this.state=1,this.changed(),this.tileLoadFunction_(this,this.src_),this.unlisten_=os(this.image_,this.handleImageLoad_.bind(this),this.handleImageError_.bind(this)))},e.prototype.unlistenImage_=function(){this.unlisten_&&(this.unlisten_(),this.unlisten_=null)},e}(Es),Os=function(){function t(t,e,n,i,o,r){this.sourceProj_=t,this.targetProj_=e;var s={},a=Be(this.targetProj_,this.sourceProj_);this.transformInv_=function(t){var e=t[0]+"/"+t[1];return s[e]||(s[e]=a(t)),s[e]},this.maxSourceExtent_=i,this.errorThresholdSquared_=o*o,this.triangles_=[],this.wrapsXInSource_=!1,this.canWrapXInSource_=this.sourceProj_.canWrapX()&&!!i&&!!this.sourceProj_.getExtent()&&Fe(i)==Fe(this.sourceProj_.getExtent()),this.sourceWorldWidth_=this.sourceProj_.getExtent()?Fe(this.sourceProj_.getExtent()):null,this.targetWorldWidth_=this.targetProj_.getExtent()?Fe(this.targetProj_.getExtent()):null;var l=Ie(n),h=Me(n),u=Ee(n),c=Se(n),p=this.transformInv_(l),f=this.transformInv_(h),d=this.transformInv_(u),_=this.transformInv_(c),g=10+(r?Math.max(0,Math.ceil(xt(we(n)/(r*r*256*256)))):0);if(this.addQuad_(l,h,u,c,p,f,d,_,g),this.wrapsXInSource_){var y=1/0;this.triangles_.forEach((function(t,e,n){y=Math.min(y,t.source[0][0],t.source[1][0],t.source[2][0])})),this.triangles_.forEach(function(t){if(Math.max(t.source[0][0],t.source[1][0],t.source[2][0])-y>this.sourceWorldWidth_/2){var e=[[t.source[0][0],t.source[0][1]],[t.source[1][0],t.source[1][1]],[t.source[2][0],t.source[2][1]]];e[0][0]-y>this.sourceWorldWidth_/2&&(e[0][0]-=this.sourceWorldWidth_),e[1][0]-y>this.sourceWorldWidth_/2&&(e[1][0]-=this.sourceWorldWidth_),e[2][0]-y>this.sourceWorldWidth_/2&&(e[2][0]-=this.sourceWorldWidth_);var n=Math.min(e[0][0],e[1][0],e[2][0]);Math.max(e[0][0],e[1][0],e[2][0])-n<this.sourceWorldWidth_/2&&(t.source=e)}}.bind(this))}s={}}return t.prototype.addTriangle_=function(t,e,n,i,o,r){this.triangles_.push({source:[i,o,r],target:[t,e,n]})},t.prototype.addQuad_=function(t,e,n,i,o,r,s,a,l){var h=se([o,r,s,a]),u=this.sourceWorldWidth_?Fe(h)/this.sourceWorldWidth_:null,c=this.sourceWorldWidth_,p=this.sourceProj_.canWrapX()&&u>.5&&u<1,f=!1;if(l>0&&(this.targetProj_.isGlobal()&&this.targetWorldWidth_&&(f=Fe(se([t,e,n,i]))/this.targetWorldWidth_>.25||f),!p&&this.sourceProj_.isGlobal()&&u&&(f=u>.25||f)),!(!f&&this.maxSourceExtent_&&isFinite(h[0])&&isFinite(h[1])&&isFinite(h[2])&&isFinite(h[3]))||Le(h,this.maxSourceExtent_)){var d=0;if(!(f||isFinite(o[0])&&isFinite(o[1])&&isFinite(r[0])&&isFinite(r[1])&&isFinite(s[0])&&isFinite(s[1])&&isFinite(a[0])&&isFinite(a[1])))if(l>0)f=!0;else if(1!=(d=(isFinite(o[0])&&isFinite(o[1])?0:8)+(isFinite(r[0])&&isFinite(r[1])?0:4)+(isFinite(s[0])&&isFinite(s[1])?0:2)+(isFinite(a[0])&&isFinite(a[1])?0:1))&&2!=d&&4!=d&&8!=d)return;if(l>0){if(!f){var _=[(t[0]+n[0])/2,(t[1]+n[1])/2],g=this.transformInv_(_),y=void 0;y=p?(Et(o[0],c)+Et(s[0],c))/2-Et(g[0],c):(o[0]+s[0])/2-g[0];var v=(o[1]+s[1])/2-g[1];f=y*y+v*v>this.errorThresholdSquared_}if(f){if(Math.abs(t[0]-n[0])<=Math.abs(t[1]-n[1])){var m=[(e[0]+n[0])/2,(e[1]+n[1])/2],x=this.transformInv_(m),C=[(i[0]+t[0])/2,(i[1]+t[1])/2],w=this.transformInv_(C);this.addQuad_(t,e,m,C,o,r,x,w,l-1),this.addQuad_(C,m,n,i,w,x,s,a,l-1)}else{var S=[(t[0]+e[0])/2,(t[1]+e[1])/2],E=this.transformInv_(S),T=[(n[0]+i[0])/2,(n[1]+i[1])/2],b=this.transformInv_(T);this.addQuad_(t,S,T,i,o,E,b,a,l-1),this.addQuad_(S,e,n,T,E,r,s,b,l-1)}return}}if(p){if(!this.canWrapXInSource_)return;this.wrapsXInSource_=!0}0==(11&d)&&this.addTriangle_(t,n,i,o,s,a),0==(14&d)&&this.addTriangle_(t,n,e,o,s,r),d&&(0==(13&d)&&this.addTriangle_(e,i,t,r,a,o),0==(7&d)&&this.addTriangle_(e,i,n,r,a,s))}},t.prototype.calculateSourceExtent=function(){var t=[1/0,1/0,-1/0,-1/0];return this.triangles_.forEach((function(e,n,i){var o=e.source;ve(t,o[0]),ve(t,o[1]),ve(t,o[2])})),t},t.prototype.getTriangles=function(){return this.triangles_},t}(),Rs={imageSmoothingEnabled:!1,msImageSmoothingEnabled:!1};function Ps(t,e,n,i,o){t.beginPath(),t.moveTo(0,0),t.lineTo(e,n),t.lineTo(i,o),t.closePath(),t.save(),t.clip(),t.fillRect(0,0,Math.max(e,i)+1,Math.max(n,o)),t.restore()}function Is(t,e){return Math.abs(t[4*e]-210)>2||Math.abs(t[4*e+3]-191.25)>2}function Ms(t,e,n,i){var o=Ze(n,e,t),r=We(e,i,n),s=e.getMetersPerUnit();void 0!==s&&(r*=s);var a=t.getMetersPerUnit();void 0!==a&&(r/=a);var l=t.getExtent();if(!l||ue(l,o)){var h=We(t,r,o)/r;isFinite(h)&&h>0&&(r/=h)}return r}var Fs=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),Ls=function(t){function e(e,n,i,o,r,s,a,l,h,u,c,p){var f=t.call(this,r,0)||this;f.renderEdges_=void 0!==c&&c,f.contextOptions_=p,f.pixelRatio_=a,f.gutter_=l,f.canvas_=null,f.sourceTileGrid_=n,f.targetTileGrid_=o,f.wrappedTileCoord_=s||r,f.sourceTiles_=[],f.sourcesListenerKeys_=null,f.sourceZ_=0;var d=o.getTileCoordExtent(f.wrappedTileCoord_),_=f.targetTileGrid_.getExtent(),g=f.sourceTileGrid_.getExtent(),y=_?Pe(d,_):d;if(0===we(y))return f.state=4,f;var v=e.getExtent();v&&(g=g?Pe(g,v):v);var m=o.getResolution(f.wrappedTileCoord_[0]),x=function(t,e,n,i){var o=Te(n),r=Ms(t,e,o,i);return(!isFinite(r)||r<=0)&&Ce(n,(function(n){return r=Ms(t,e,n,i),isFinite(r)&&r>0})),r}(e,i,y,m);if(!isFinite(x)||x<=0)return f.state=4,f;var C=void 0!==u?u:.5;if(f.triangulation_=new Os(e,i,y,g,x*C,m),0===f.triangulation_.getTriangles().length)return f.state=4,f;f.sourceZ_=n.getZForResolution(x);var w=f.triangulation_.calculateSourceExtent();if(g&&(e.canWrapX()?(w[1]=vt(w[1],g[1],g[3]),w[3]=vt(w[3],g[1],g[3])):w=Pe(w,g)),we(w)){for(var S=n.getTileRangeForExtentAndZ(w,f.sourceZ_),E=S.minX;E<=S.maxX;E++)for(var T=S.minY;T<=S.maxY;T++){var b=h(f.sourceZ_,E,T,a);b&&f.sourceTiles_.push(b)}0===f.sourceTiles_.length&&(f.state=4)}else f.state=4;return f}return Fs(e,t),e.prototype.getImage=function(){return this.canvas_},e.prototype.reproject_=function(){var t=[];if(this.sourceTiles_.forEach(function(e,n,i){e&&2==e.getState()&&t.push({extent:this.sourceTileGrid_.getTileCoordExtent(e.tileCoord),image:e.getImage()})}.bind(this)),this.sourceTiles_.length=0,0===t.length)this.state=3;else{var e=this.wrappedTileCoord_[0],n=this.targetTileGrid_.getTileSize(e),i="number"==typeof n?n:n[0],o="number"==typeof n?n:n[1],r=this.targetTileGrid_.getResolution(e),s=this.sourceTileGrid_.getResolution(this.sourceZ_),a=this.targetTileGrid_.getTileCoordExtent(this.wrappedTileCoord_);this.canvas_=function(t,e,n,i,o,r,s,a,l,h,u,c){var p=H(Math.round(n*t),Math.round(n*e));if(f(p,c),0===l.length)return p.canvas;function d(t){return Math.round(t*n)/n}p.scale(n,n),p.globalCompositeOperation="lighter";var _=[1/0,1/0,-1/0,-1/0];l.forEach((function(t,e,n){var i,o;i=_,(o=t.extent)[0]<i[0]&&(i[0]=o[0]),o[2]>i[2]&&(i[2]=o[2]),o[1]<i[1]&&(i[1]=o[1]),o[3]>i[3]&&(i[3]=o[3])}));var g=Fe(_),y=Re(_),v=H(Math.round(n*g/i),Math.round(n*y/i));f(v,c);var m=n/i;l.forEach((function(t,e,n){var i=t.extent[0]-_[0],o=-(t.extent[3]-_[3]),r=Fe(t.extent),s=Re(t.extent);t.image.width>0&&t.image.height>0&&v.drawImage(t.image,h,h,t.image.width-2*h,t.image.height-2*h,i*m,o*m,r*m,s*m)}));var x=Ie(s);return a.getTriangles().forEach((function(t,e,o){var s=t.source,a=t.target,l=s[0][0],h=s[0][1],u=s[1][0],f=s[1][1],g=s[2][0],y=s[2][1],m=d((a[0][0]-x[0])/r),C=d(-(a[0][1]-x[1])/r),w=d((a[1][0]-x[0])/r),S=d(-(a[1][1]-x[1])/r),E=d((a[2][0]-x[0])/r),T=d(-(a[2][1]-x[1])/r),b=l,O=h;l=0,h=0;var R=function(t){for(var e=t.length,n=0;n<e;n++){for(var i=n,o=Math.abs(t[n][n]),r=n+1;r<e;r++){var s=Math.abs(t[r][n]);s>o&&(o=s,i=r)}if(0===o)return null;var a=t[i];t[i]=t[n],t[n]=a;for(var l=n+1;l<e;l++)for(var h=-t[l][n]/t[n][n],u=n;u<e+1;u++)n==u?t[l][u]=0:t[l][u]+=h*t[n][u]}for(var c=new Array(e),p=e-1;p>=0;p--){c[p]=t[p][e]/t[p][p];for(var f=p-1;f>=0;f--)t[f][e]-=t[f][p]*c[p]}return c}([[u-=b,f-=O,0,0,w-m],[g-=b,y-=O,0,0,E-m],[0,0,u,f,S-C],[0,0,g,y,T-C]]);if(R){if(p.save(),p.beginPath(),function(){if(void 0===gs){var t=document.createElement("canvas").getContext("2d");t.globalCompositeOperation="lighter",t.fillStyle="rgba(210, 0, 0, 0.75)",Ps(t,4,5,4,0),Ps(t,4,5,0,5);var e=t.getImageData(0,0,3,3).data;gs=Is(e,0)||Is(e,4)||Is(e,8)}return gs}()||c===Rs){p.moveTo(w,S);for(var P=m-w,I=C-S,M=0;M<4;M++)p.lineTo(w+d((M+1)*P/4),S+d(M*I/3)),3!=M&&p.lineTo(w+d((M+1)*P/4),S+d((M+1)*I/3));p.lineTo(E,T)}else p.moveTo(w,S),p.lineTo(m,C),p.lineTo(E,T);p.clip(),p.transform(R[0],R[2],R[1],R[3],m,C),p.translate(_[0]-b,_[3]-O),p.scale(i/n,-i/n),p.drawImage(v.canvas,0,0),p.restore()}})),u&&(p.save(),p.globalCompositeOperation="source-over",p.strokeStyle="black",p.lineWidth=1,a.getTriangles().forEach((function(t,e,n){var i=t.target,o=(i[0][0]-x[0])/r,s=-(i[0][1]-x[1])/r,a=(i[1][0]-x[0])/r,l=-(i[1][1]-x[1])/r,h=(i[2][0]-x[0])/r,u=-(i[2][1]-x[1])/r;p.beginPath(),p.moveTo(a,l),p.lineTo(o,s),p.lineTo(h,u),p.closePath(),p.stroke()})),p.restore()),p.canvas}(i,o,this.pixelRatio_,s,this.sourceTileGrid_.getExtent(),r,a,this.triangulation_,t,this.gutter_,this.renderEdges_,this.contextOptions_),this.state=2}this.changed()},e.prototype.load=function(){if(0==this.state){this.state=1,this.changed();var t=0;this.sourcesListenerKeys_=[],this.sourceTiles_.forEach(function(e,n,i){var o=e.getState();if(0==o||1==o){t++;var r=R(e,x,(function(n){var i=e.getState();2!=i&&3!=i&&4!=i||(I(r),0==--t&&(this.unlistenSources_(),this.reproject_()))}),this);this.sourcesListenerKeys_.push(r)}}.bind(this)),0===t?setTimeout(this.reproject_.bind(this),0):this.sourceTiles_.forEach((function(t,e,n){0==t.getState()&&t.load()}))}},e.prototype.unlistenSources_=function(){this.sourcesListenerKeys_.forEach(I),this.sourcesListenerKeys_=null},e}(Es),As=function(){function t(t){this.highWaterMark=void 0!==t?t:2048,this.count_=0,this.entries_={},this.oldest_=null,this.newest_=null}return t.prototype.canExpireCache=function(){return this.highWaterMark>0&&this.getCount()>this.highWaterMark},t.prototype.clear=function(){this.count_=0,this.entries_={},this.oldest_=null,this.newest_=null},t.prototype.containsKey=function(t){return this.entries_.hasOwnProperty(t)},t.prototype.forEach=function(t){for(var e=this.oldest_;e;)t(e.value_,e.key_,this),e=e.newer},t.prototype.get=function(t,e){var n=this.entries_[t];return yt(void 0!==n,15),n===this.newest_||(n===this.oldest_?(this.oldest_=this.oldest_.newer,this.oldest_.older=null):(n.newer.older=n.older,n.older.newer=n.newer),n.newer=null,n.older=this.newest_,this.newest_.newer=n,this.newest_=n),n.value_},t.prototype.remove=function(t){var e=this.entries_[t];return yt(void 0!==e,15),e===this.newest_?(this.newest_=e.older,this.newest_&&(this.newest_.newer=null)):e===this.oldest_?(this.oldest_=e.newer,this.oldest_&&(this.oldest_.older=null)):(e.newer.older=e.older,e.older.newer=e.newer),delete this.entries_[t],--this.count_,e.value_},t.prototype.getCount=function(){return this.count_},t.prototype.getKeys=function(){var t,e=new Array(this.count_),n=0;for(t=this.newest_;t;t=t.older)e[n++]=t.key_;return e},t.prototype.getValues=function(){var t,e=new Array(this.count_),n=0;for(t=this.newest_;t;t=t.older)e[n++]=t.value_;return e},t.prototype.peekLast=function(){return this.oldest_.value_},t.prototype.peekLastKey=function(){return this.oldest_.key_},t.prototype.peekFirstKey=function(){return this.newest_.key_},t.prototype.pop=function(){var t=this.oldest_;return delete this.entries_[t.key_],t.newer&&(t.newer.older=null),this.oldest_=t.newer,this.oldest_||(this.newest_=null),--this.count_,t.value_},t.prototype.replace=function(t,e){this.get(t),this.entries_[t].value_=e},t.prototype.set=function(t,e){yt(!(t in this.entries_),16);var n={key_:t,newer:null,older:this.newest_,value_:e};this.newest_?this.newest_.newer=n:this.oldest_=n,this.newest_=n,this.entries_[t]=n,++this.count_},t.prototype.setSize=function(t){this.highWaterMark=t},t}();function Ds(t,e,n,i){return void 0!==i?(i[0]=t,i[1]=e,i[2]=n,i):[t,e,n]}function ks(t,e,n){return t+"/"+e+"/"+n}function js(t){return ks(t[0],t[1],t[2])}var Gs=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),zs=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return Gs(e,t),e.prototype.expireCache=function(t){for(;this.canExpireCache()&&!(this.peekLast().getKey()in t);)this.pop().release()},e.prototype.pruneExceptNewestZ=function(){if(0!==this.getCount()){var t=this.peekFirstKey().split("/").map(Number)[0];this.forEach(function(e){e.tileCoord[0]!==t&&(this.remove(js(e.tileCoord)),e.release())}.bind(this))}},e}(As),Ws=zs,Xs=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}();function Ns(t){return t?Array.isArray(t)?function(e){return t}:"function"==typeof t?t:function(e){return[t]}:null}var Ys=function(t){function e(e){var n=t.call(this)||this;n.projection=ze(e.projection),n.attributions_=Ns(e.attributions),n.attributionsCollapsible_=void 0===e.attributionsCollapsible||e.attributionsCollapsible,n.loading=!1,n.state_=void 0!==e.state?e.state:Mt,n.wrapX_=void 0!==e.wrapX&&e.wrapX,n.viewResolver=null,n.viewRejector=null;var i=n;return n.viewPromise_=new Promise((function(t,e){i.viewResolver=t,i.viewRejector=e})),n}return Xs(e,t),e.prototype.getAttributions=function(){return this.attributions_},e.prototype.getAttributionsCollapsible=function(){return this.attributionsCollapsible_},e.prototype.getProjection=function(){return this.projection},e.prototype.getResolutions=function(){return A()},e.prototype.getView=function(){return this.viewPromise_},e.prototype.getState=function(){return this.state_},e.prototype.getWrapX=function(){return this.wrapX_},e.prototype.getContextOptions=function(){},e.prototype.refresh=function(){this.changed()},e.prototype.setAttributions=function(t){this.attributions_=Ns(t),this.changed()},e.prototype.setState=function(t){this.state_=t,this.changed()},e}(z),Ks=[0,0,0],Bs=function(){function t(t){var e,n,i;if(this.minZoom=void 0!==t.minZoom?t.minZoom:0,this.resolutions_=t.resolutions,yt((e=this.resolutions_,!0,n=function(t,e){return e-t}||r,e.every((function(t,i){if(0===i)return!0;var o=n(e[i-1],t);return!(o>0||0===o)}))),17),!t.origins)for(var o=0,s=this.resolutions_.length-1;o<s;++o)if(i){if(this.resolutions_[o]/this.resolutions_[o+1]!==i){i=void 0;break}}else i=this.resolutions_[o]/this.resolutions_[o+1];this.zoomFactor_=i,this.maxZoom=this.resolutions_.length-1,this.origin_=void 0!==t.origin?t.origin:null,this.origins_=null,void 0!==t.origins&&(this.origins_=t.origins,yt(this.origins_.length==this.resolutions_.length,20));var a=t.extent;void 0===a||this.origin_||this.origins_||(this.origin_=Ie(a)),yt(!this.origin_&&this.origins_||this.origin_&&!this.origins_,18),this.tileSizes_=null,void 0!==t.tileSizes&&(this.tileSizes_=t.tileSizes,yt(this.tileSizes_.length==this.resolutions_.length,19)),this.tileSize_=void 0!==t.tileSize?t.tileSize:this.tileSizes_?null:256,yt(!this.tileSize_&&this.tileSizes_||this.tileSize_&&!this.tileSizes_,22),this.extent_=void 0!==a?a:null,this.fullTileRanges_=null,this.tmpSize_=[0,0],this.tmpExtent_=[0,0,0,0],void 0!==t.sizes?this.fullTileRanges_=t.sizes.map((function(t,e){var n=new io(Math.min(0,t[0]),Math.max(t[0]-1,-1),Math.min(0,t[1]),Math.max(t[1]-1,-1));if(a){var i=this.getTileRangeForExtentAndZ(a,e);n.minX=Math.max(i.minX,n.minX),n.maxX=Math.min(i.maxX,n.maxX),n.minY=Math.max(i.minY,n.minY),n.maxY=Math.min(i.maxY,n.maxY)}return n}),this):a&&this.calculateTileRanges_(a)}return t.prototype.forEachTileCoord=function(t,e,n){for(var i=this.getTileRangeForExtentAndZ(t,e),o=i.minX,r=i.maxX;o<=r;++o)for(var s=i.minY,a=i.maxY;s<=a;++s)n([e,o,s])},t.prototype.forEachTileCoordParentTileRange=function(t,e,n,i){var o,r,s=null,a=t[0]-1;for(2===this.zoomFactor_?(o=t[1],r=t[2]):s=this.getTileCoordExtent(t,i);a>=this.minZoom;){if(e(a,2===this.zoomFactor_?no(o=Math.floor(o/2),o,r=Math.floor(r/2),r,n):this.getTileRangeForExtentAndZ(s,a,n)))return!0;--a}return!1},t.prototype.getExtent=function(){return this.extent_},t.prototype.getMaxZoom=function(){return this.maxZoom},t.prototype.getMinZoom=function(){return this.minZoom},t.prototype.getOrigin=function(t){return this.origin_?this.origin_:this.origins_[t]},t.prototype.getResolution=function(t){return this.resolutions_[t]},t.prototype.getResolutions=function(){return this.resolutions_},t.prototype.getTileCoordChildTileRange=function(t,e,n){if(t[0]<this.maxZoom){if(2===this.zoomFactor_){var i=2*t[1],o=2*t[2];return no(i,i+1,o,o+1,e)}var r=this.getTileCoordExtent(t,n||this.tmpExtent_);return this.getTileRangeForExtentAndZ(r,t[0]+1,e)}return null},t.prototype.getTileRangeForTileCoordAndZ=function(t,e,n){if(e>this.maxZoom||e<this.minZoom)return null;var i=t[0],o=t[1],r=t[2];if(e===i)return no(o,r,o,r,n);if(this.zoomFactor_){var s=Math.pow(this.zoomFactor_,e-i),a=Math.floor(o*s),l=Math.floor(r*s);return e<i?no(a,a,l,l,n):no(a,Math.floor(s*(o+1))-1,l,Math.floor(s*(r+1))-1,n)}var h=this.getTileCoordExtent(t,this.tmpExtent_);return this.getTileRangeForExtentAndZ(h,e,n)},t.prototype.getTileRangeExtent=function(t,e,n){var i=this.getOrigin(t),o=this.getResolution(t),r=co(this.getTileSize(t),this.tmpSize_),s=i[0]+e.minX*r[0]*o,a=i[0]+(e.maxX+1)*r[0]*o;return de(s,i[1]+e.minY*r[1]*o,a,i[1]+(e.maxY+1)*r[1]*o,n)},t.prototype.getTileRangeForExtentAndZ=function(t,e,n){var i=Ks;this.getTileCoordForXYAndZ_(t[0],t[3],e,!1,i);var o=i[1],r=i[2];return this.getTileCoordForXYAndZ_(t[2],t[1],e,!0,i),no(o,i[1],r,i[2],n)},t.prototype.getTileCoordCenter=function(t){var e=this.getOrigin(t[0]),n=this.getResolution(t[0]),i=co(this.getTileSize(t[0]),this.tmpSize_);return[e[0]+(t[1]+.5)*i[0]*n,e[1]-(t[2]+.5)*i[1]*n]},t.prototype.getTileCoordExtent=function(t,e){var n=this.getOrigin(t[0]),i=this.getResolution(t[0]),o=co(this.getTileSize(t[0]),this.tmpSize_),r=n[0]+t[1]*o[0]*i,s=n[1]-(t[2]+1)*o[1]*i;return de(r,s,r+o[0]*i,s+o[1]*i,e)},t.prototype.getTileCoordForCoordAndResolution=function(t,e,n){return this.getTileCoordForXYAndResolution_(t[0],t[1],e,!1,n)},t.prototype.getTileCoordForXYAndResolution_=function(t,e,n,i,o){var r=this.getZForResolution(n),s=n/this.getResolution(r),a=this.getOrigin(r),l=co(this.getTileSize(r),this.tmpSize_),h=i?.5:0,u=i?.5:0,c=Math.floor((t-a[0])/n+h),p=Math.floor((a[1]-e)/n+u),f=s*c/l[0],d=s*p/l[1];return i?(f=Math.ceil(f)-1,d=Math.ceil(d)-1):(f=Math.floor(f),d=Math.floor(d)),Ds(r,f,d,o)},t.prototype.getTileCoordForXYAndZ_=function(t,e,n,i,o){var r=this.getOrigin(n),s=this.getResolution(n),a=co(this.getTileSize(n),this.tmpSize_),l=i?.5:0,h=i?.5:0,u=Math.floor((t-r[0])/s+l),c=Math.floor((r[1]-e)/s+h),p=u/a[0],f=c/a[1];return i?(p=Math.ceil(p)-1,f=Math.ceil(f)-1):(p=Math.floor(p),f=Math.floor(f)),Ds(n,p,f,o)},t.prototype.getTileCoordForCoordAndZ=function(t,e,n){return this.getTileCoordForXYAndZ_(t[0],t[1],e,!1,n)},t.prototype.getTileCoordResolution=function(t){return this.resolutions_[t[0]]},t.prototype.getTileSize=function(t){return this.tileSize_?this.tileSize_:this.tileSizes_[t]},t.prototype.getFullTileRange=function(t){return this.fullTileRanges_?this.fullTileRanges_[t]:this.extent_?this.getTileRangeForExtentAndZ(this.extent_,t):null},t.prototype.getZForResolution=function(t,e){return vt(s(this.resolutions_,t,e||0),this.minZoom,this.maxZoom)},t.prototype.calculateTileRanges_=function(t){for(var e=this.resolutions_.length,n=new Array(e),i=this.minZoom;i<e;++i)n[i]=this.getTileRangeForExtentAndZ(t,i);this.fullTileRanges_=n},t}();function Zs(t){var e=t.getDefaultTileGrid();return e||(e=function(t,e,n,i){return function(t,e,n,i){var o=Vs(t,undefined,n);return new Bs({extent:t,origin:be(t,"top-left"),resolutions:o,tileSize:n})}(Us(t),0,void 0)}(t),t.setDefaultTileGrid(e)),e}function Vs(t,e,n,i){for(var o=void 0!==e?e:42,r=Re(t),s=Fe(t),a=co(void 0!==n?n:256),l=i>0?i:Math.max(s/a[0],r/a[1]),h=o+1,u=new Array(h),c=0;c<h;++c)u[c]=l/Math.pow(2,c);return u}function Us(t){var e=(t=ze(t)).getExtent();if(!e){var n=180*Wt[Xt.DEGREES]/t.getMetersPerUnit();e=de(-n,-n,n,n)}return e}var Hs=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),qs=function(t){function e(e){var n=t.call(this,{attributions:e.attributions,attributionsCollapsible:e.attributionsCollapsible,projection:e.projection,state:e.state,wrapX:e.wrapX})||this;n.on,n.once,n.un,n.opaque_=void 0!==e.opaque&&e.opaque,n.tilePixelRatio_=void 0!==e.tilePixelRatio?e.tilePixelRatio:1,n.tileGrid=void 0!==e.tileGrid?e.tileGrid:null;var i=e.tileGrid;return i&&co(i.getTileSize(i.getMinZoom()),[256,256]),n.tileCache=new Ws(e.cacheSize||0),n.tmpSize=[0,0],n.key_=e.key||"",n.tileOptions={transition:e.transition},n.zDirection=e.zDirection?e.zDirection:0,n}return Hs(e,t),e.prototype.canExpireCache=function(){return this.tileCache.canExpireCache()},e.prototype.expireCache=function(t,e){var n=this.getTileCacheForProjection(t);n&&n.expireCache(e)},e.prototype.forEachLoadedTile=function(t,e,n,i){var o=this.getTileCacheForProjection(t);if(!o)return!1;for(var r,s,a,l=!0,h=n.minX;h<=n.maxX;++h)for(var u=n.minY;u<=n.maxY;++u)s=ks(e,h,u),a=!1,o.containsKey(s)&&(a=2===(r=o.get(s)).getState())&&(a=!1!==i(r)),a||(l=!1);return l},e.prototype.getGutterForProjection=function(t){return 0},e.prototype.getKey=function(){return this.key_},e.prototype.setKey=function(t){this.key_!==t&&(this.key_=t,this.changed())},e.prototype.getOpaque=function(t){return this.opaque_},e.prototype.getResolutions=function(){return this.tileGrid.getResolutions()},e.prototype.getTile=function(t,e,n,i,o){return A()},e.prototype.getTileGrid=function(){return this.tileGrid},e.prototype.getTileGridForProjection=function(t){return this.tileGrid?this.tileGrid:Zs(t)},e.prototype.getTileCacheForProjection=function(t){return yt(Ye(this.getProjection(),t),68),this.tileCache},e.prototype.getTilePixelRatio=function(t){return this.tilePixelRatio_},e.prototype.getTilePixelSize=function(t,e,n){var i,o,r,s=this.getTileGridForProjection(n),a=this.getTilePixelRatio(e),l=co(s.getTileSize(t),this.tmpSize);return 1==a?l:(i=l,o=a,void 0===(r=this.tmpSize)&&(r=[0,0]),r[0]=i[0]*o+.5|0,r[1]=i[1]*o+.5|0,r)},e.prototype.getTileCoordForTileUrlFunction=function(t,e){var n=void 0!==e?e:this.getProjection(),i=this.getTileGridForProjection(n);return this.getWrapX()&&n.isGlobal()&&(t=function(t,e,n){var i=e[0],o=t.getTileCoordCenter(e),r=Us(n);if(ue(r,o))return e;var s=Fe(r),a=Math.ceil((r[0]-o[0])/s);return o[0]+=s*a,t.getTileCoordForCoordAndZ(o,i)}(i,t,n)),function(t,e){var n=t[0],i=t[1],o=t[2];if(e.getMinZoom()>n||n>e.getMaxZoom())return!1;var r=e.getFullTileRange(n);return!r||r.containsXY(i,o)}(t,i)?t:null},e.prototype.clear=function(){this.tileCache.clear()},e.prototype.refresh=function(){this.clear(),t.prototype.refresh.call(this)},e.prototype.updateCacheSize=function(t,e){var n=this.getTileCacheForProjection(e);t>n.highWaterMark&&(n.highWaterMark=t)},e.prototype.useTile=function(t,e,n,i){},e}(Ys),Js=function(t){function e(e,n){var i=t.call(this,e)||this;return i.tile=n,i}return Hs(e,t),e}(t),Qs=qs;function $s(t,e){var n=/\{z\}/g,i=/\{x\}/g,o=/\{y\}/g,r=/\{-y\}/g;return function(s,a,l){return s?t.replace(n,s[0].toString()).replace(i,s[1].toString()).replace(o,s[2].toString()).replace(r,(function(){var t=s[0],n=e.getFullTileRange(t);return yt(n,55),(n.getHeight()-s[2]-1).toString()})):void 0}}var ta=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),ea=function(t){function e(n){var i=t.call(this,{attributions:n.attributions,cacheSize:n.cacheSize,opaque:n.opaque,projection:n.projection,state:n.state,tileGrid:n.tileGrid,tilePixelRatio:n.tilePixelRatio,wrapX:n.wrapX,transition:n.transition,key:n.key,attributionsCollapsible:n.attributionsCollapsible,zDirection:n.zDirection})||this;return i.generateTileUrlFunction_=i.tileUrlFunction===e.prototype.tileUrlFunction,i.tileLoadFunction=n.tileLoadFunction,n.tileUrlFunction&&(i.tileUrlFunction=n.tileUrlFunction),i.urls=null,n.urls?i.setUrls(n.urls):n.url&&i.setUrl(n.url),i.tileLoadingKeys_={},i}return ta(e,t),e.prototype.getTileLoadFunction=function(){return this.tileLoadFunction},e.prototype.getTileUrlFunction=function(){return Object.getPrototypeOf(this).tileUrlFunction===this.tileUrlFunction?this.tileUrlFunction.bind(this):this.tileUrlFunction},e.prototype.getUrls=function(){return this.urls},e.prototype.handleTileChange=function(t){var e,n=t.target,i=k(n),o=n.getState();1==o?(this.tileLoadingKeys_[i]=!0,e="tileloadstart"):i in this.tileLoadingKeys_&&(delete this.tileLoadingKeys_[i],e=3==o?"tileloaderror":2==o?"tileloadend":void 0),null!=e&&this.dispatchEvent(new Js(e,n))},e.prototype.setTileLoadFunction=function(t){this.tileCache.clear(),this.tileLoadFunction=t,this.changed()},e.prototype.setTileUrlFunction=function(t,e){this.tileUrlFunction=t,this.tileCache.pruneExceptNewestZ(),void 0!==e?this.setKey(e):this.changed()},e.prototype.setUrl=function(t){var e=function(t){var e=[],n=/\{([a-z])-([a-z])\}/.exec(t);if(n){var i=n[1].charCodeAt(0),o=n[2].charCodeAt(0),r=void 0;for(r=i;r<=o;++r)e.push(t.replace(n[0],String.fromCharCode(r)));return e}if(n=/\{(\d+)-(\d+)\}/.exec(t)){for(var s=parseInt(n[2],10),a=parseInt(n[1],10);a<=s;a++)e.push(t.replace(n[0],a.toString()));return e}return e.push(t),e}(t);this.urls=e,this.setUrls(e)},e.prototype.setUrls=function(t){this.urls=t;var e=t.join("\n");this.generateTileUrlFunction_?this.setTileUrlFunction(function(t,e){for(var n=t.length,i=new Array(n),o=0;o<n;++o)i[o]=$s(t[o],e);return function(t){return 1===t.length?t[0]:function(e,n,i){if(e){var o=function(t){return(t[1]<<t[0])+t[2]}(e),r=Et(o,t.length);return t[r](e,n,i)}}}(i)}(t,this.tileGrid),e):this.setKey(e)},e.prototype.tileUrlFunction=function(t,e,n){},e.prototype.useTile=function(t,e,n){var i=ks(t,e,n);this.tileCache.containsKey(i)&&this.tileCache.get(i)},e}(Qs),na=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),ia=function(t){function e(e){var n=t.call(this,{attributions:e.attributions,cacheSize:e.cacheSize,opaque:e.opaque,projection:e.projection,state:e.state,tileGrid:e.tileGrid,tileLoadFunction:e.tileLoadFunction?e.tileLoadFunction:oa,tilePixelRatio:e.tilePixelRatio,tileUrlFunction:e.tileUrlFunction,url:e.url,urls:e.urls,wrapX:e.wrapX,transition:e.transition,key:e.key,attributionsCollapsible:e.attributionsCollapsible,zDirection:e.zDirection})||this;return n.crossOrigin=void 0!==e.crossOrigin?e.crossOrigin:null,n.tileClass=void 0!==e.tileClass?e.tileClass:bs,n.tileCacheForProjection={},n.tileGridForProjection={},n.reprojectionErrorThreshold_=e.reprojectionErrorThreshold,n.contextOptions_=!1===e.imageSmoothing?Rs:void 0,n.renderReprojectionEdges_=!1,n}return na(e,t),e.prototype.canExpireCache=function(){if(this.tileCache.canExpireCache())return!0;for(var t in this.tileCacheForProjection)if(this.tileCacheForProjection[t].canExpireCache())return!0;return!1},e.prototype.expireCache=function(t,e){var n=this.getTileCacheForProjection(t);for(var i in this.tileCache.expireCache(this.tileCache==n?e:{}),this.tileCacheForProjection){var o=this.tileCacheForProjection[i];o.expireCache(o==n?e:{})}},e.prototype.getContextOptions=function(){return this.contextOptions_},e.prototype.getGutterForProjection=function(t){return this.getProjection()&&t&&!Ye(this.getProjection(),t)?0:this.getGutter()},e.prototype.getGutter=function(){return 0},e.prototype.getKey=function(){return t.prototype.getKey.call(this)+(this.contextOptions_?"\n"+JSON.stringify(this.contextOptions_):"")},e.prototype.getOpaque=function(e){return!(this.getProjection()&&e&&!Ye(this.getProjection(),e))&&t.prototype.getOpaque.call(this,e)},e.prototype.getTileGridForProjection=function(t){var e=this.getProjection();if(!this.tileGrid||e&&!Ye(e,t)){var n=k(t);return n in this.tileGridForProjection||(this.tileGridForProjection[n]=Zs(t)),this.tileGridForProjection[n]}return this.tileGrid},e.prototype.getTileCacheForProjection=function(t){var e=this.getProjection();if(!e||Ye(e,t))return this.tileCache;var n=k(t);return n in this.tileCacheForProjection||(this.tileCacheForProjection[n]=new Ws(this.tileCache.highWaterMark)),this.tileCacheForProjection[n]},e.prototype.createTile_=function(t,e,n,i,o,r){var s=[t,e,n],a=this.getTileCoordForTileUrlFunction(s,o),l=a?this.tileUrlFunction(a,i,o):void 0,h=new this.tileClass(s,void 0!==l?0:4,void 0!==l?l:"",this.crossOrigin,this.tileLoadFunction,this.tileOptions);return h.key=r,h.addEventListener(x,this.handleTileChange.bind(this)),h},e.prototype.getTile=function(t,e,n,i,o){var r=this.getProjection();if(r&&o&&!Ye(r,o)){var s=this.getTileCacheForProjection(o),a=[t,e,n],l=void 0,h=js(a);s.containsKey(h)&&(l=s.get(h));var u=this.getKey();if(l&&l.key==u)return l;var c=this.getTileGridForProjection(r),p=this.getTileGridForProjection(o),f=this.getTileCoordForTileUrlFunction(a,o),d=new Ls(r,c,o,p,a,f,this.getTilePixelRatio(i),this.getGutter(),function(t,e,n,i){return this.getTileInternal(t,e,n,i,r)}.bind(this),this.reprojectionErrorThreshold_,this.renderReprojectionEdges_,this.contextOptions_);return d.key=u,l?(d.interimTile=l,d.refreshInterimChain(),s.replace(h,d)):s.set(h,d),d}return this.getTileInternal(t,e,n,i,r||o)},e.prototype.getTileInternal=function(t,e,n,i,o){var r=null,s=ks(t,e,n),a=this.getKey();if(this.tileCache.containsKey(s)){if((r=this.tileCache.get(s)).key!=a){var l=r;r=this.createTile_(t,e,n,i,o,a),0==l.getState()?r.interimTile=l.interimTile:r.interimTile=l,r.refreshInterimChain(),this.tileCache.replace(s,r)}}else r=this.createTile_(t,e,n,i,o,a),this.tileCache.set(s,r);return r},e.prototype.setRenderReprojectionEdges=function(t){if(this.renderReprojectionEdges_!=t){for(var e in this.renderReprojectionEdges_=t,this.tileCacheForProjection)this.tileCacheForProjection[e].clear();this.changed()}},e.prototype.setTileGridForProjection=function(t,e){var n=ze(t);if(n){var i=k(n);i in this.tileGridForProjection||(this.tileGridForProjection[i]=e)}},e}(ea);function oa(t,e){t.getImage().src=e}var ra=ia,sa=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),aa=function(t){function e(e){var n=e||{},i=void 0!==n.projection?n.projection:"EPSG:3857",o=void 0!==n.tileGrid?n.tileGrid:function(t){var e=t||{},n=e.extent||ze("EPSG:3857").getExtent(),i={extent:n,minZoom:e.minZoom,tileSize:e.tileSize,resolutions:Vs(n,e.maxZoom,e.tileSize,e.maxResolution)};return new Bs(i)}({extent:Us(i),maxResolution:n.maxResolution,maxZoom:n.maxZoom,minZoom:n.minZoom,tileSize:n.tileSize});return t.call(this,{attributions:n.attributions,cacheSize:n.cacheSize,crossOrigin:n.crossOrigin,imageSmoothing:n.imageSmoothing,opaque:n.opaque,projection:i,reprojectionErrorThreshold:n.reprojectionErrorThreshold,tileGrid:o,tileLoadFunction:n.tileLoadFunction,tilePixelRatio:n.tilePixelRatio,tileUrlFunction:n.tileUrlFunction,url:n.url,urls:n.urls,wrapX:void 0===n.wrapX||n.wrapX,transition:n.transition,attributionsCollapsible:n.attributionsCollapsible,zDirection:n.zDirection})||this}return sa(e,t),e}(ra),la=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),ha=function(t){function e(e){var n,i=e||{};n=void 0!==i.attributions?i.attributions:['&#169; <a href="https://www.openstreetmap.org/copyright" target="_blank">OpenStreetMap</a> contributors.'];var o=void 0!==i.crossOrigin?i.crossOrigin:"anonymous",r=void 0!==i.url?i.url:"https://{a-c}.tile.openstreetmap.org/{z}/{x}/{y}.png";return t.call(this,{attributions:n,attributionsCollapsible:!1,cacheSize:i.cacheSize,crossOrigin:o,imageSmoothing:i.imageSmoothing,maxZoom:void 0!==i.maxZoom?i.maxZoom:19,opaque:void 0===i.opaque||i.opaque,reprojectionErrorThreshold:i.reprojectionErrorThreshold,tileLoadFunction:i.tileLoadFunction,transition:i.transition,url:r,wrapX:i.wrapX,zDirection:i.zDirection})||this}return la(e,t),e}(aa),ua="add",ca="remove",pa=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),fa="length",da=function(t){function e(e,n,i){var o=t.call(this,e)||this;return o.element=n,o.index=i,o}return pa(e,t),e}(t),_a=function(t){function e(e,n){var i=t.call(this)||this;i.on,i.once,i.un;var o=n||{};if(i.unique_=!!o.unique,i.array_=e||[],i.unique_)for(var r=0,s=i.array_.length;r<s;++r)i.assertUnique_(i.array_[r],r);return i.updateLength_(),i}return pa(e,t),e.prototype.clear=function(){for(;this.getLength()>0;)this.pop()},e.prototype.extend=function(t){for(var e=0,n=t.length;e<n;++e)this.push(t[e]);return this},e.prototype.forEach=function(t){for(var e=this.array_,n=0,i=e.length;n<i;++n)t(e[n],n,e)},e.prototype.getArray=function(){return this.array_},e.prototype.item=function(t){return this.array_[t]},e.prototype.getLength=function(){return this.get(fa)},e.prototype.insertAt=function(t,e){this.unique_&&this.assertUnique_(e),this.array_.splice(t,0,e),this.updateLength_(),this.dispatchEvent(new da(ua,e,t))},e.prototype.pop=function(){return this.removeAt(this.getLength()-1)},e.prototype.push=function(t){this.unique_&&this.assertUnique_(t);var e=this.getLength();return this.insertAt(e,t),this.getLength()},e.prototype.remove=function(t){for(var e=this.array_,n=0,i=e.length;n<i;++n)if(e[n]===t)return this.removeAt(n)},e.prototype.removeAt=function(t){var e=this.array_[t];return this.array_.splice(t,1),this.updateLength_(),this.dispatchEvent(new da(ca,e,t)),e},e.prototype.setAt=function(t,e){var n=this.getLength();if(t<n){this.unique_&&this.assertUnique_(e,t);var i=this.array_[t];this.array_[t]=e,this.dispatchEvent(new da(ca,i,t)),this.dispatchEvent(new da(ua,e,t))}else{for(var o=n;o<t;++o)this.insertAt(o,void 0);this.insertAt(t,e)}},e.prototype.updateLength_=function(){this.set(fa,this.array_.length)},e.prototype.assertUnique_=function(t,e){for(var n=0,i=this.array_.length;n<i;++n)if(this.array_[n]===t&&n!==e)throw new gt(58)},e}(z),ga=function(){function t(t){this.rbush_=new ho(t),this.items_={}}return t.prototype.insert=function(t,e){var n={minX:t[0],minY:t[1],maxX:t[2],maxY:t[3],value:e};this.rbush_.insert(n),this.items_[k(e)]=n},t.prototype.load=function(t,e){for(var n=new Array(e.length),i=0,o=e.length;i<o;i++){var r=t[i],s=e[i],a={minX:r[0],minY:r[1],maxX:r[2],maxY:r[3],value:s};n[i]=a,this.items_[k(s)]=a}this.rbush_.load(n)},t.prototype.remove=function(t){var e=k(t),n=this.items_[e];return delete this.items_[e],null!==this.rbush_.remove(n)},t.prototype.update=function(t,e){var n=this.items_[k(e)];ye([n.minX,n.minY,n.maxX,n.maxY],t)||(this.remove(e),this.insert(t,e))},t.prototype.getAll=function(){return this.rbush_.all().map((function(t){return t.value}))},t.prototype.getInExtent=function(t){var e={minX:t[0],minY:t[1],maxX:t[2],maxY:t[3]};return this.rbush_.search(e).map((function(t){return t.value}))},t.prototype.forEach=function(t){return this.forEach_(this.getAll(),t)},t.prototype.forEachInExtent=function(t,e){return this.forEach_(this.getInExtent(t),e)},t.prototype.forEach_=function(t,e){for(var n,i=0,o=t.length;i<o;i++)if(n=e(t[i]))return n;return n},t.prototype.isEmpty=function(){return g(this.items_)},t.prototype.clear=function(){this.rbush_.clear(),this.items_={}},t.prototype.getExtent=function(t){var e=this.rbush_.toJSON();return de(e.minX,e.minY,e.maxX,e.maxY,t)},t.prototype.concat=function(t){for(var e in this.rbush_.load(t.rbush_.all()),t.items_)this.items_[e]=t.items_[e]},t}(),ya="addfeature",va="removefeature";function ma(t,e){return[[-1/0,-1/0,1/0,1/0]]}var xa="arraybuffer";function Ca(t,e){return function(n,i,o,r,s){var a=this;!function(t,e,n,i,o,r,s){var a=new XMLHttpRequest;a.open("GET","function"==typeof t?t(n,i,o):t,!0),e.getType()==xa&&(a.responseType="arraybuffer"),a.withCredentials=false,a.onload=function(t){if(!a.status||a.status>=200&&a.status<300){var i=e.getType(),l=void 0;"json"==i||"text"==i?l=a.responseText:"xml"==i?(l=a.responseXML)||(l=(new DOMParser).parseFromString(a.responseText,"application/xml")):i==xa&&(l=a.response),l?r(e.readFeatures(l,{extent:n,featureProjection:o}),e.readProjection(l)):s()}else s()},a.onerror=s,a.send()}(t,e,n,i,o,(function(t,e){a.addFeatures(t),void 0!==r&&r(t)}),s||p)}}var wa=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),Sa=function(t){function e(e,n,i){var o=t.call(this,e)||this;return o.feature=n,o.features=i,o}return wa(e,t),e}(t),Ea=function(t){function n(e){var n=this,i=e||{};(n=t.call(this,{attributions:i.attributions,projection:void 0,state:Mt,wrapX:void 0===i.wrapX||i.wrapX})||this).on,n.once,n.un,n.loader_=p,n.format_=i.format,n.overlaps_=void 0===i.overlaps||i.overlaps,n.url_=i.url,void 0!==i.loader?n.loader_=i.loader:void 0!==n.url_&&(yt(n.format_,7),n.loader_=Ca(n.url_,n.format_)),n.strategy_=void 0!==i.strategy?i.strategy:ma;var o,r,s=void 0===i.useSpatialIndex||i.useSpatialIndex;return n.featuresRtree_=s?new ga:null,n.loadedExtentsRtree_=new ga,n.loadingExtentsCount_=0,n.nullGeometryFeatures_={},n.idIndex_={},n.uidIndex_={},n.featureChangeKeys_={},n.featuresCollection_=null,Array.isArray(i.features)?r=i.features:i.features&&(r=(o=i.features).getArray()),s||void 0!==o||(o=new _a(r)),void 0!==r&&n.addFeaturesInternal(r),void 0!==o&&n.bindFeaturesCollection_(o),n}return wa(n,t),n.prototype.addFeature=function(t){this.addFeatureInternal(t),this.changed()},n.prototype.addFeatureInternal=function(t){var e=k(t);if(this.addToIndex_(e,t)){this.setupChangeEvents_(e,t);var n=t.getGeometry();if(n){var i=n.getExtent();this.featuresRtree_&&this.featuresRtree_.insert(i,t)}else this.nullGeometryFeatures_[e]=t;this.dispatchEvent(new Sa(ya,t))}else this.featuresCollection_&&this.featuresCollection_.remove(t)},n.prototype.setupChangeEvents_=function(t,n){this.featureChangeKeys_[t]=[R(n,x,this.handleFeatureChange_,this),R(n,e,this.handleFeatureChange_,this)]},n.prototype.addToIndex_=function(t,e){var n=!0,i=e.getId();return void 0!==i&&(i.toString()in this.idIndex_?n=!1:this.idIndex_[i.toString()]=e),n&&(yt(!(t in this.uidIndex_),30),this.uidIndex_[t]=e),n},n.prototype.addFeatures=function(t){this.addFeaturesInternal(t),this.changed()},n.prototype.addFeaturesInternal=function(t){for(var e=[],n=[],i=[],o=0,r=t.length;o<r;o++){var s=k(l=t[o]);this.addToIndex_(s,l)&&n.push(l)}o=0;for(var a=n.length;o<a;o++){var l;s=k(l=n[o]),this.setupChangeEvents_(s,l);var h=l.getGeometry();if(h){var u=h.getExtent();e.push(u),i.push(l)}else this.nullGeometryFeatures_[s]=l}this.featuresRtree_&&this.featuresRtree_.load(e,i),o=0;for(var c=n.length;o<c;o++)this.dispatchEvent(new Sa(ya,n[o]))},n.prototype.bindFeaturesCollection_=function(t){var e=!1;this.addEventListener(ya,(function(n){e||(e=!0,t.push(n.feature),e=!1)})),this.addEventListener(va,(function(n){e||(e=!0,t.remove(n.feature),e=!1)})),t.addEventListener(ua,function(t){e||(e=!0,this.addFeature(t.element),e=!1)}.bind(this)),t.addEventListener(ca,function(t){e||(e=!0,this.removeFeature(t.element),e=!1)}.bind(this)),this.featuresCollection_=t},n.prototype.clear=function(t){if(t){for(var e in this.featureChangeKeys_)this.featureChangeKeys_[e].forEach(I);this.featuresCollection_||(this.featureChangeKeys_={},this.idIndex_={},this.uidIndex_={})}else if(this.featuresRtree_)for(var n in this.featuresRtree_.forEach(this.removeFeatureInternal.bind(this)),this.nullGeometryFeatures_)this.removeFeatureInternal(this.nullGeometryFeatures_[n]);this.featuresCollection_&&this.featuresCollection_.clear(),this.featuresRtree_&&this.featuresRtree_.clear(),this.nullGeometryFeatures_={};var i=new Sa("clear");this.dispatchEvent(i),this.changed()},n.prototype.forEachFeature=function(t){if(this.featuresRtree_)return this.featuresRtree_.forEach(t);this.featuresCollection_&&this.featuresCollection_.forEach(t)},n.prototype.forEachFeatureAtCoordinateDirect=function(t,e){var n=[t[0],t[1],t[0],t[1]];return this.forEachFeatureInExtent(n,(function(n){return n.getGeometry().intersectsCoordinate(t)?e(n):void 0}))},n.prototype.forEachFeatureInExtent=function(t,e){if(this.featuresRtree_)return this.featuresRtree_.forEachInExtent(t,e);this.featuresCollection_&&this.featuresCollection_.forEach(e)},n.prototype.forEachFeatureIntersectingExtent=function(t,e){return this.forEachFeatureInExtent(t,(function(n){if(n.getGeometry().intersectsExtent(t)){var i=e(n);if(i)return i}}))},n.prototype.getFeaturesCollection=function(){return this.featuresCollection_},n.prototype.getFeatures=function(){var t;return this.featuresCollection_?t=this.featuresCollection_.getArray().slice(0):this.featuresRtree_&&(t=this.featuresRtree_.getAll(),g(this.nullGeometryFeatures_)||l(t,_(this.nullGeometryFeatures_))),t},n.prototype.getFeaturesAtCoordinate=function(t){var e=[];return this.forEachFeatureAtCoordinateDirect(t,(function(t){e.push(t)})),e},n.prototype.getFeaturesInExtent=function(t){return this.featuresRtree_?this.featuresRtree_.getInExtent(t):this.featuresCollection_?this.featuresCollection_.getArray().slice(0):[]},n.prototype.getClosestFeatureToCoordinate=function(t,e){var n=t[0],i=t[1],o=null,r=[NaN,NaN],s=1/0,a=[-1/0,-1/0,1/0,1/0],l=e||u;return this.featuresRtree_.forEachInExtent(a,(function(t){if(l(t)){var e=t.getGeometry(),h=s;if((s=e.closestPointXY(n,i,r,s))<h){o=t;var u=Math.sqrt(s);a[0]=n-u,a[1]=i-u,a[2]=n+u,a[3]=i+u}}})),o},n.prototype.getExtent=function(t){return this.featuresRtree_.getExtent(t)},n.prototype.getFeatureById=function(t){var e=this.idIndex_[t.toString()];return void 0!==e?e:null},n.prototype.getFeatureByUid=function(t){var e=this.uidIndex_[t];return void 0!==e?e:null},n.prototype.getFormat=function(){return this.format_},n.prototype.getOverlaps=function(){return this.overlaps_},n.prototype.getUrl=function(){return this.url_},n.prototype.handleFeatureChange_=function(t){var e=t.target,n=k(e),i=e.getGeometry();if(i){var o=i.getExtent();n in this.nullGeometryFeatures_?(delete this.nullGeometryFeatures_[n],this.featuresRtree_&&this.featuresRtree_.insert(o,e)):this.featuresRtree_&&this.featuresRtree_.update(o,e)}else n in this.nullGeometryFeatures_||(this.featuresRtree_&&this.featuresRtree_.remove(e),this.nullGeometryFeatures_[n]=e);var r=e.getId();if(void 0!==r){var s=r.toString();this.idIndex_[s]!==e&&(this.removeFromIdIndex_(e),this.idIndex_[s]=e)}else this.removeFromIdIndex_(e),this.uidIndex_[n]=e;this.changed(),this.dispatchEvent(new Sa("changefeature",e))},n.prototype.hasFeature=function(t){var e=t.getId();return void 0!==e?e in this.idIndex_:k(t)in this.uidIndex_},n.prototype.isEmpty=function(){return this.featuresRtree_.isEmpty()&&g(this.nullGeometryFeatures_)},n.prototype.loadFeatures=function(t,e,n){for(var i=this.loadedExtentsRtree_,o=this.strategy_(t,e,n),r=function(t,r){var a=o[t];i.forEachInExtent(a,(function(t){return ce(t.extent,a)}))||(++s.loadingExtentsCount_,s.dispatchEvent(new Sa("featuresloadstart")),s.loader_.call(s,a,e,n,function(t){--this.loadingExtentsCount_,this.dispatchEvent(new Sa("featuresloadend",void 0,t))}.bind(s),function(){--this.loadingExtentsCount_,this.dispatchEvent(new Sa("featuresloaderror"))}.bind(s)),i.insert(a,{extent:a.slice()}))},s=this,a=0,l=o.length;a<l;++a)r(a);this.loading=!(this.loader_.length<4)&&this.loadingExtentsCount_>0},n.prototype.refresh=function(){this.clear(!0),this.loadedExtentsRtree_.clear(),t.prototype.refresh.call(this)},n.prototype.removeLoadedExtent=function(t){var e,n=this.loadedExtentsRtree_;n.forEachInExtent(t,(function(n){if(ye(n.extent,t))return e=n,!0})),e&&n.remove(e)},n.prototype.removeFeature=function(t){var e=k(t);e in this.nullGeometryFeatures_?delete this.nullGeometryFeatures_[e]:this.featuresRtree_&&this.featuresRtree_.remove(t),this.removeFeatureInternal(t),this.changed()},n.prototype.removeFeatureInternal=function(t){var e=k(t);this.featureChangeKeys_[e].forEach(I),delete this.featureChangeKeys_[e];var n=t.getId();void 0!==n&&delete this.idIndex_[n.toString()],delete this.uidIndex_[e],this.dispatchEvent(new Sa(va,t))},n.prototype.removeFromIdIndex_=function(t){var e=!1;for(var n in this.idIndex_)if(this.idIndex_[n]===t){delete this.idIndex_[n],e=!0;break}return e},n.prototype.setLoader=function(t){this.loader_=t},n.prototype.setUrl=function(t){yt(this.format_,7),this.url_=t,this.setLoader(Ca(t,this.format_))},n}(Ys),Ta=function(){function t(t){var e=t||{};this.font_=e.font,this.rotation_=e.rotation,this.rotateWithView_=e.rotateWithView,this.scale_=e.scale,this.scaleArray_=co(void 0!==e.scale?e.scale:1),this.text_=e.text,this.textAlign_=e.textAlign,this.textBaseline_=e.textBaseline,this.fill_=void 0!==e.fill?e.fill:new Ko({color:"#333"}),this.maxAngle_=void 0!==e.maxAngle?e.maxAngle:Math.PI/4,this.placement_=void 0!==e.placement?e.placement:"point",this.overflow_=!!e.overflow,this.stroke_=void 0!==e.stroke?e.stroke:null,this.offsetX_=void 0!==e.offsetX?e.offsetX:0,this.offsetY_=void 0!==e.offsetY?e.offsetY:0,this.backgroundFill_=e.backgroundFill?e.backgroundFill:null,this.backgroundStroke_=e.backgroundStroke?e.backgroundStroke:null,this.padding_=void 0===e.padding?null:e.padding}return t.prototype.clone=function(){var e=this.getScale();return new t({font:this.getFont(),placement:this.getPlacement(),maxAngle:this.getMaxAngle(),overflow:this.getOverflow(),rotation:this.getRotation(),rotateWithView:this.getRotateWithView(),scale:Array.isArray(e)?e.slice():e,text:this.getText(),textAlign:this.getTextAlign(),textBaseline:this.getTextBaseline(),fill:this.getFill()?this.getFill().clone():void 0,stroke:this.getStroke()?this.getStroke().clone():void 0,offsetX:this.getOffsetX(),offsetY:this.getOffsetY(),backgroundFill:this.getBackgroundFill()?this.getBackgroundFill().clone():void 0,backgroundStroke:this.getBackgroundStroke()?this.getBackgroundStroke().clone():void 0,padding:this.getPadding()})},t.prototype.getOverflow=function(){return this.overflow_},t.prototype.getFont=function(){return this.font_},t.prototype.getMaxAngle=function(){return this.maxAngle_},t.prototype.getPlacement=function(){return this.placement_},t.prototype.getOffsetX=function(){return this.offsetX_},t.prototype.getOffsetY=function(){return this.offsetY_},t.prototype.getFill=function(){return this.fill_},t.prototype.getRotateWithView=function(){return this.rotateWithView_},t.prototype.getRotation=function(){return this.rotation_},t.prototype.getScale=function(){return this.scale_},t.prototype.getScaleArray=function(){return this.scaleArray_},t.prototype.getStroke=function(){return this.stroke_},t.prototype.getText=function(){return this.text_},t.prototype.getTextAlign=function(){return this.textAlign_},t.prototype.getTextBaseline=function(){return this.textBaseline_},t.prototype.getBackgroundFill=function(){return this.backgroundFill_},t.prototype.getBackgroundStroke=function(){return this.backgroundStroke_},t.prototype.getPadding=function(){return this.padding_},t.prototype.setOverflow=function(t){this.overflow_=t},t.prototype.setFont=function(t){this.font_=t},t.prototype.setMaxAngle=function(t){this.maxAngle_=t},t.prototype.setOffsetX=function(t){this.offsetX_=t},t.prototype.setOffsetY=function(t){this.offsetY_=t},t.prototype.setPlacement=function(t){this.placement_=t},t.prototype.setRotateWithView=function(t){this.rotateWithView_=t},t.prototype.setFill=function(t){this.fill_=t},t.prototype.setRotation=function(t){this.rotation_=t},t.prototype.setScale=function(t){this.scale_=t,this.scaleArray_=co(void 0!==t?t:1)},t.prototype.setStroke=function(t){this.stroke_=t},t.prototype.setText=function(t){this.text_=t},t.prototype.setTextAlign=function(t){this.textAlign_=t},t.prototype.setTextBaseline=function(t){this.textBaseline_=t},t.prototype.setBackgroundFill=function(t){this.backgroundFill_=t},t.prototype.setBackgroundStroke=function(t){this.backgroundStroke_=t},t.prototype.setPadding=function(t){this.padding_=t},t}(),ba=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),Oa=function(t){function e(e){var n=t.call(this)||this;if(n.on,n.once,n.un,n.id_=void 0,n.geometryName_="geometry",n.style_=null,n.styleFunction_=void 0,n.geometryChangeKey_=null,n.addChangeListener(n.geometryName_,n.handleGeometryChanged_),e)if("function"==typeof e.getSimplifiedGeometry){var i=e;n.setGeometry(i)}else{var o=e;n.setProperties(o)}return n}return ba(e,t),e.prototype.clone=function(){var t=new e(this.hasProperties()?this.getProperties():null);t.setGeometryName(this.getGeometryName());var n=this.getGeometry();n&&t.setGeometry(n.clone());var i=this.getStyle();return i&&t.setStyle(i),t},e.prototype.getGeometry=function(){return this.get(this.geometryName_)},e.prototype.getId=function(){return this.id_},e.prototype.getGeometryName=function(){return this.geometryName_},e.prototype.getStyle=function(){return this.style_},e.prototype.getStyleFunction=function(){return this.styleFunction_},e.prototype.handleGeometryChange_=function(){this.changed()},e.prototype.handleGeometryChanged_=function(){this.geometryChangeKey_&&(I(this.geometryChangeKey_),this.geometryChangeKey_=null);var t=this.getGeometry();t&&(this.geometryChangeKey_=R(t,x,this.handleGeometryChange_,this)),this.changed()},e.prototype.setGeometry=function(t){this.set(this.geometryName_,t)},e.prototype.setStyle=function(t){var e,n;this.style_=t,this.styleFunction_=t?"function"==typeof(e=t)?e:(Array.isArray(e)?n=e:(yt("function"==typeof e.getZIndex,41),n=[e]),function(){return n}):void 0,this.changed()},e.prototype.setId=function(t){this.id_=t,this.changed()},e.prototype.setGeometryName=function(t){this.removeChangeListener(this.geometryName_,this.handleGeometryChanged_),this.geometryName_=t,this.addChangeListener(this.geometryName_,this.handleGeometryChanged_),this.handleGeometryChanged_()},e}(z),Ra=Oa,Pa=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),Ia=function(t){function e(e){var n=t.call(this)||this;return n.map_=e,n}return Pa(e,t),e.prototype.dispatchRenderEvent=function(t,e){A()},e.prototype.calculateMatrices2D=function(t){var e=t.viewState,n=t.coordinateToPixelTransform,i=t.pixelToCoordinateTransform;Fn(n,t.size[0]/2,t.size[1]/2,1/e.resolution,-1/e.resolution,-e.rotation,-e.center[0],-e.center[1]),Ln(i,n)},e.prototype.forEachFeatureAtCoordinate=function(t,e,n,i,o,r,s,a){var l,h=e.viewState;function u(t,e,n,i){return o.call(r,e,t?n:null,i)}var c=h.projection,p=vn(t.slice(),c),f=[[0,0]];if(c.canWrapX()&&i){var d=Fe(c.getExtent());f.push([-d,0],[d,0])}for(var _=e.layerStatesArray,g=_.length,y=[],v=[],m=0;m<f.length;m++)for(var x=g-1;x>=0;--x){var C=_[x],w=C.layer;if(w.hasRenderer()&&Lt(C,h)&&s.call(a,w)){var S=w.getRenderer(),E=w.getSource();if(S&&E){var T=E.getWrapX()?p:t,b=u.bind(null,C.managed);v[0]=T[0]+f[m][0],v[1]=T[1]+f[m][1],l=S.forEachFeatureAtCoordinate(v,e,n,b,y)}if(l)return l}}if(0!==y.length){var O=1/y.length;return y.forEach((function(t,e){return t.distanceSq+=e*O})),y.sort((function(t,e){return t.distanceSq-e.distanceSq})),y.some((function(t){return l=t.callback(t.feature,t.layer,t.geometry)})),l}},e.prototype.forEachLayerAtPixel=function(t,e,n,i,o){return A()},e.prototype.hasFeatureAtCoordinate=function(t,e,n,i,o,r){return void 0!==this.forEachFeatureAtCoordinate(t,e,n,i,u,this,o,r)},e.prototype.getMap=function(){return this.map_},e.prototype.renderFrame=function(t){A()},e.prototype.scheduleExpireIconCache=function(t){ts.canExpireCache()&&t.postRenderFunctions.push(Ma)},e}(o);function Ma(t,e){ts.expire()}var Fa=Ia,La=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),Aa=function(t){function n(n){var i=t.call(this,n)||this;i.fontChangeListenerKey_=R(Mo,e,n.redrawText.bind(n)),i.element_=document.createElement("div");var o=i.element_.style;o.position="absolute",o.width="100%",o.height="100%",o.zIndex="0",i.element_.className="ol-unselectable ol-layers";var r=n.getViewport();return r.insertBefore(i.element_,r.firstChild||null),i.children_=[],i.renderedVisible_=!0,i}return La(n,t),n.prototype.dispatchRenderEvent=function(t,e){var n=this.getMap();if(n.hasListener(t)){var i=new Ji(t,void 0,e);n.dispatchEvent(i)}},n.prototype.disposeInternal=function(){I(this.fontChangeListenerKey_),this.element_.parentNode.removeChild(this.element_),t.prototype.disposeInternal.call(this)},n.prototype.renderFrame=function(t){if(t){this.calculateMatrices2D(t),this.dispatchRenderEvent(Rt,t);var e=t.layerStatesArray.sort((function(t,e){return t.zIndex-e.zIndex})),n=t.viewState;this.children_.length=0;for(var i=[],o=null,r=0,s=e.length;r<s;++r){var a=e[r];if(t.layerIndex=r,Lt(a,n)&&(a.sourceState==Mt||a.sourceState==It)){var l=a.layer,h=l.render(t,o);h&&(h!==o&&(this.children_.push(h),o=h),"getDeclutter"in l&&i.push(l))}}for(r=i.length-1;r>=0;--r)i[r].renderDeclutter(t);!function(t,e){for(var n=t.childNodes,i=0;;++i){var o=n[i],r=e[i];if(!o&&!r)break;o!==r&&(o?r?t.insertBefore(r,o):(t.removeChild(o),--i):t.appendChild(r))}}(this.element_,this.children_),this.dispatchRenderEvent("postcompose",t),this.renderedVisible_||(this.element_.style.display="",this.renderedVisible_=!0),this.scheduleExpireIconCache(t)}else this.renderedVisible_&&(this.element_.style.display="none",this.renderedVisible_=!1)},n.prototype.forEachLayerAtPixel=function(t,e,n,i,o){for(var r=e.viewState,s=e.layerStatesArray,a=s.length-1;a>=0;--a){var l=s[a],h=l.layer;if(h.hasRenderer()&&Lt(l,r)&&o(h)){var u=h.getRenderer().getDataAtPixel(t,e,n);if(u){var c=i(h,u);if(c)return c}}}},n}(Fa),Da=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),ka="layers",ja=function(t){function n(e){var n=this,i=e||{},o=f({},i);delete o.layers;var r=i.layers;return(n=t.call(this,o)||this).on,n.once,n.un,n.layersListenerKeys_=[],n.listenerKeys_={},n.addChangeListener(ka,n.handleLayersChanged_),r?Array.isArray(r)?r=new _a(r.slice(),{unique:!0}):yt("function"==typeof r.getArray,43):r=new _a(void 0,{unique:!0}),n.setLayers(r),n}return Da(n,t),n.prototype.handleLayerChange_=function(){this.changed()},n.prototype.handleLayersChanged_=function(){this.layersListenerKeys_.forEach(I),this.layersListenerKeys_.length=0;var t=this.getLayers();for(var n in this.layersListenerKeys_.push(R(t,ua,this.handleLayersAdd_,this),R(t,ca,this.handleLayersRemove_,this)),this.listenerKeys_)this.listenerKeys_[n].forEach(I);d(this.listenerKeys_);for(var i=t.getArray(),o=0,r=i.length;o<r;o++){var s=i[o];this.listenerKeys_[k(s)]=[R(s,e,this.handleLayerChange_,this),R(s,x,this.handleLayerChange_,this)]}this.changed()},n.prototype.handleLayersAdd_=function(t){var n=t.element;this.listenerKeys_[k(n)]=[R(n,e,this.handleLayerChange_,this),R(n,x,this.handleLayerChange_,this)],this.changed()},n.prototype.handleLayersRemove_=function(t){var e=k(t.element);this.listenerKeys_[e].forEach(I),delete this.listenerKeys_[e],this.changed()},n.prototype.getLayers=function(){return this.get(ka)},n.prototype.setLayers=function(t){this.set(ka,t)},n.prototype.getLayersArray=function(t){var e=void 0!==t?t:[];return this.getLayers().forEach((function(t){t.getLayersArray(e)})),e},n.prototype.getLayerStatesArray=function(t){var e=void 0!==t?t:[],n=e.length;this.getLayers().forEach((function(t){t.getLayerStatesArray(e)}));var i=this.getLayerState(),o=i.zIndex;t||void 0!==i.zIndex||(o=0);for(var r=n,s=e.length;r<s;r++){var a=e[r];a.opacity*=i.opacity,a.visible=a.visible&&i.visible,a.maxResolution=Math.min(a.maxResolution,i.maxResolution),a.minResolution=Math.max(a.minResolution,i.minResolution),a.minZoom=Math.max(a.minZoom,i.minZoom),a.maxZoom=Math.min(a.maxZoom,i.maxZoom),void 0!==i.extent&&(void 0!==a.extent?a.extent=Pe(a.extent,i.extent):a.extent=i.extent),void 0===a.zIndex&&(a.zIndex=o)}return e},n.prototype.getSourceState=function(){return Mt},n}(Ot),Ga=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),za=function(t){function e(e,n,i){var o=t.call(this,e)||this;return o.map=n,o.frameState=void 0!==i?i:null,o}return Ga(e,t),e}(t),Wa=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),Xa=function(t){function e(e,n,i,o,r){var s=t.call(this,e,n,r)||this;return s.originalEvent=i,s.pixel_=null,s.coordinate_=null,s.dragging=void 0!==o&&o,s}return Wa(e,t),Object.defineProperty(e.prototype,"pixel",{get:function(){return this.pixel_||(this.pixel_=this.map.getEventPixel(this.originalEvent)),this.pixel_},set:function(t){this.pixel_=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"coordinate",{get:function(){return this.coordinate_||(this.coordinate_=this.map.getCoordinateFromPixel(this.pixel)),this.coordinate_},set:function(t){this.coordinate_=t},enumerable:!1,configurable:!0}),e.prototype.preventDefault=function(){t.prototype.preventDefault.call(this),"preventDefault"in this.originalEvent&&this.originalEvent.preventDefault()},e.prototype.stopPropagation=function(){t.prototype.stopPropagation.call(this),"stopPropagation"in this.originalEvent&&this.originalEvent.stopPropagation()},e}(za),Na={SINGLECLICK:"singleclick",CLICK:w,DBLCLICK:"dblclick",POINTERDRAG:"pointerdrag",POINTERMOVE:"pointermove",POINTERDOWN:"pointerdown",POINTERUP:"pointerup",POINTEROVER:"pointerover",POINTEROUT:"pointerout",POINTERENTER:"pointerenter",POINTERLEAVE:"pointerleave",POINTERCANCEL:"pointercancel"},Ya=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),Ka=function(t){function e(e,n){var i=t.call(this,e)||this;i.map_=e,i.clickTimeoutId_,i.emulateClicks_=!1,i.dragging_=!1,i.dragListenerKeys_=[],i.moveTolerance_=void 0===n?1:n,i.down_=null;var o=i.map_.getViewport();return i.activePointers_=0,i.trackedTouches_={},i.element_=o,i.pointerdownListenerKey_=R(o,Gt,i.handlePointerDown_,i),i.originalPointerMoveEvent_,i.relayedListenerKey_=R(o,jt,i.relayEvent_,i),i.boundHandleTouchMove_=i.handleTouchMove_.bind(i),i.element_.addEventListener(b,i.boundHandleTouchMove_,!!U&&{passive:!1}),i}return Ya(e,t),e.prototype.emulateClick_=function(t){var e=new Xa(Na.CLICK,this.map_,t);this.dispatchEvent(e),void 0!==this.clickTimeoutId_?(clearTimeout(this.clickTimeoutId_),this.clickTimeoutId_=void 0,e=new Xa(Na.DBLCLICK,this.map_,t),this.dispatchEvent(e)):this.clickTimeoutId_=setTimeout(function(){this.clickTimeoutId_=void 0;var e=new Xa(Na.SINGLECLICK,this.map_,t);this.dispatchEvent(e)}.bind(this),250)},e.prototype.updateActivePointers_=function(t){var e=t;e.type==Na.POINTERUP||e.type==Na.POINTERCANCEL?delete this.trackedTouches_[e.pointerId]:e.type==Na.POINTERDOWN&&(this.trackedTouches_[e.pointerId]=!0),this.activePointers_=Object.keys(this.trackedTouches_).length},e.prototype.handlePointerUp_=function(t){this.updateActivePointers_(t);var e=new Xa(Na.POINTERUP,this.map_,t);this.dispatchEvent(e),this.emulateClicks_&&!e.defaultPrevented&&!this.dragging_&&this.isMouseActionButton_(t)&&this.emulateClick_(this.down_),0===this.activePointers_&&(this.dragListenerKeys_.forEach(I),this.dragListenerKeys_.length=0,this.dragging_=!1,this.down_=null)},e.prototype.isMouseActionButton_=function(t){return 0===t.button},e.prototype.handlePointerDown_=function(t){this.emulateClicks_=0===this.activePointers_,this.updateActivePointers_(t);var e=new Xa(Na.POINTERDOWN,this.map_,t);for(var n in this.dispatchEvent(e),this.down_={},t){var i=t[n];this.down_[n]="function"==typeof i?p:i}if(0===this.dragListenerKeys_.length){var o=this.map_.getOwnerDocument();this.dragListenerKeys_.push(R(o,Na.POINTERMOVE,this.handlePointerMove_,this),R(o,Na.POINTERUP,this.handlePointerUp_,this),R(this.element_,Na.POINTERCANCEL,this.handlePointerUp_,this)),this.element_.getRootNode&&this.element_.getRootNode()!==o&&this.dragListenerKeys_.push(R(this.element_.getRootNode(),Na.POINTERUP,this.handlePointerUp_,this))}},e.prototype.handlePointerMove_=function(t){if(this.isMoving_(t)){this.dragging_=!0;var e=new Xa(Na.POINTERDRAG,this.map_,t,this.dragging_);this.dispatchEvent(e)}},e.prototype.relayEvent_=function(t){this.originalPointerMoveEvent_=t;var e=!(!this.down_||!this.isMoving_(t));this.dispatchEvent(new Xa(t.type,this.map_,t,e))},e.prototype.handleTouchMove_=function(t){var e=this.originalPointerMoveEvent_;e&&!e.defaultPrevented||"boolean"==typeof t.cancelable&&!0!==t.cancelable||t.preventDefault()},e.prototype.isMoving_=function(t){return this.dragging_||Math.abs(t.clientX-this.down_.clientX)>this.moveTolerance_||Math.abs(t.clientY-this.down_.clientY)>this.moveTolerance_},e.prototype.disposeInternal=function(){this.relayedListenerKey_&&(I(this.relayedListenerKey_),this.relayedListenerKey_=null),this.element_.removeEventListener(b,this.boundHandleTouchMove_),this.pointerdownListenerKey_&&(I(this.pointerdownListenerKey_),this.pointerdownListenerKey_=null),this.dragListenerKeys_.forEach(I),this.dragListenerKeys_.length=0,this.element_=null,t.prototype.disposeInternal.call(this)},e}(m),Ba="layergroup",Za="size",Va="target",Ua="view",Ha=1/0,qa=function(){function t(t,e){this.priorityFunction_=t,this.keyFunction_=e,this.elements_=[],this.priorities_=[],this.queuedElements_={}}return t.prototype.clear=function(){this.elements_.length=0,this.priorities_.length=0,d(this.queuedElements_)},t.prototype.dequeue=function(){var t=this.elements_,e=this.priorities_,n=t[0];1==t.length?(t.length=0,e.length=0):(t[0]=t.pop(),e[0]=e.pop(),this.siftUp_(0));var i=this.keyFunction_(n);return delete this.queuedElements_[i],n},t.prototype.enqueue=function(t){yt(!(this.keyFunction_(t)in this.queuedElements_),31);var e=this.priorityFunction_(t);return e!=Ha&&(this.elements_.push(t),this.priorities_.push(e),this.queuedElements_[this.keyFunction_(t)]=!0,this.siftDown_(0,this.elements_.length-1),!0)},t.prototype.getCount=function(){return this.elements_.length},t.prototype.getLeftChildIndex_=function(t){return 2*t+1},t.prototype.getRightChildIndex_=function(t){return 2*t+2},t.prototype.getParentIndex_=function(t){return t-1>>1},t.prototype.heapify_=function(){var t;for(t=(this.elements_.length>>1)-1;t>=0;t--)this.siftUp_(t)},t.prototype.isEmpty=function(){return 0===this.elements_.length},t.prototype.isKeyQueued=function(t){return t in this.queuedElements_},t.prototype.isQueued=function(t){return this.isKeyQueued(this.keyFunction_(t))},t.prototype.siftUp_=function(t){for(var e=this.elements_,n=this.priorities_,i=e.length,o=e[t],r=n[t],s=t;t<i>>1;){var a=this.getLeftChildIndex_(t),l=this.getRightChildIndex_(t),h=l<i&&n[l]<n[a]?l:a;e[t]=e[h],n[t]=n[h],t=h}e[t]=o,n[t]=r,this.siftDown_(s,t)},t.prototype.siftDown_=function(t,e){for(var n=this.elements_,i=this.priorities_,o=n[e],r=i[e];e>t;){var s=this.getParentIndex_(e);if(!(i[s]>r))break;n[e]=n[s],i[e]=i[s],e=s}n[e]=o,i[e]=r},t.prototype.reprioritize=function(){var t,e,n,i=this.priorityFunction_,o=this.elements_,r=this.priorities_,s=0,a=o.length;for(e=0;e<a;++e)(n=i(t=o[e]))==Ha?delete this.queuedElements_[this.keyFunction_(t)]:(r[s]=n,o[s++]=t);o.length=s,r.length=s,this.heapify_()},t}(),Ja=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),Qa=function(t){function e(e,n){var i=t.call(this,(function(t){return e.apply(null,t)}),(function(t){return t[0].getKey()}))||this;return i.boundHandleTileChange_=i.handleTileChange.bind(i),i.tileChangeCallback_=n,i.tilesLoading_=0,i.tilesLoadingKeys_={},i}return Ja(e,t),e.prototype.enqueue=function(e){var n=t.prototype.enqueue.call(this,e);return n&&e[0].addEventListener(x,this.boundHandleTileChange_),n},e.prototype.getTilesLoading=function(){return this.tilesLoading_},e.prototype.handleTileChange=function(t){var e=t.target,n=e.getState();if(2===n||3===n||4===n){e.removeEventListener(x,this.boundHandleTileChange_);var i=e.getKey();i in this.tilesLoadingKeys_&&(delete this.tilesLoadingKeys_[i],--this.tilesLoading_),this.tileChangeCallback_()}},e.prototype.loadMoreTiles=function(t,e){for(var n,i,o=0;this.tilesLoading_<t&&o<e&&this.getCount()>0;)i=(n=this.dequeue()[0]).getKey(),0!==n.getState()||i in this.tilesLoadingKeys_||(this.tilesLoadingKeys_[i]=!0,++this.tilesLoading_,++o,n.load())},e}(qa),$a="center",tl="resolution",el="rotation";function nl(t,e,n){return function(i,o,r,s,a){if(i){var l=e?0:r[0]*o,h=e?0:r[1]*o,u=a?a[0]:0,c=a?a[1]:0,p=t[0]+l/2+u,f=t[2]-l/2+u,d=t[1]+h/2+c,_=t[3]-h/2+c;p>f&&(f=p=(f+p)/2),d>_&&(_=d=(_+d)/2);var g=vt(i[0],p,f),y=vt(i[1],d,_),v=30*o;return s&&n&&(g+=-v*Math.log(1+Math.max(0,p-i[0])/v)+v*Math.log(1+Math.max(0,i[0]-f)/v),y+=-v*Math.log(1+Math.max(0,d-i[1])/v)+v*Math.log(1+Math.max(0,i[1]-_)/v)),[g,y]}}}function il(t){return t}function ol(t,e,n,i){var o=Fe(e)/n[0],r=Re(e)/n[1];return i?Math.min(t,Math.max(o,r)):Math.min(t,Math.min(o,r))}function rl(t,e,n){var i=Math.min(t,e);return i*=Math.log(1+50*Math.max(0,t/e-1))/50+1,n&&(i=Math.max(i,n),i/=Math.log(1+50*Math.max(0,n/t-1))/50+1),vt(i,n/2,2*e)}function sl(t,e,n,i,o){return function(r,s,a,l){if(void 0!==r){var h=i?ol(t,i,a,o):t;return(void 0===n||n)&&l?rl(r,h,e):vt(r,e,h)}}}function al(t){return void 0!==t?0:void 0}function ll(t){return void 0!==t?t:void 0}var hl=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),ul=function(t){function e(e){var n=t.call(this)||this;n.on,n.once,n.un;var i=f({},e);return n.hints_=[0,0],n.animations_=[],n.updateAnimationKey_,n.projection_=Ne(i.projection,"EPSG:3857"),n.viewportSize_=[100,100],n.targetCenter_=null,n.targetResolution_,n.targetRotation_,n.nextCenter_=null,n.nextResolution_,n.nextRotation_,n.cancelAnchor_=void 0,i.center&&(i.center=tn(i.center,n.projection_)),i.extent&&(i.extent=nn(i.extent,n.projection_)),n.applyOptions_(i),n}return hl(e,t),e.prototype.applyOptions_=function(t){var e=function(t){var e,n,i,o=void 0!==t.minZoom?t.minZoom:0,r=void 0!==t.maxZoom?t.maxZoom:28,a=void 0!==t.zoomFactor?t.zoomFactor:2,l=void 0!==t.multiWorld&&t.multiWorld,h=void 0===t.smoothResolutionConstraint||t.smoothResolutionConstraint,u=void 0!==t.showFullExtent&&t.showFullExtent,c=Ne(t.projection,"EPSG:3857"),p=c.getExtent(),f=t.constrainOnlyCenter,d=t.extent;if(l||d||!c.isGlobal()||(f=!1,d=p),void 0!==t.resolutions){var _=t.resolutions;n=_[o],i=void 0!==_[r]?_[r]:_[_.length-1],e=t.constrainResolution?function(t,e,n,i){return function(o,r,a,l){if(void 0!==o){var h=t[0],u=t[t.length-1],c=n?ol(h,n,a,i):h;if(l)return void 0===e||e?rl(o,c,u):vt(o,u,c);var p=Math.min(c,o),f=Math.floor(s(t,p,r));return t[f]>c&&f<t.length-1?t[f+1]:t[f]}}}(_,h,!f&&d,u):sl(n,i,h,!f&&d,u)}else{var g=(p?Math.max(Fe(p),Re(p)):360*Wt[Xt.DEGREES]/c.getMetersPerUnit())/256/Math.pow(2,0),y=g/Math.pow(2,28);void 0!==(n=t.maxResolution)?o=0:n=g/Math.pow(a,o),void 0===(i=t.minResolution)&&(i=void 0!==t.maxZoom?void 0!==t.maxResolution?n/Math.pow(a,r):g/Math.pow(a,r):y),r=o+Math.floor(Math.log(n/i)/Math.log(a)),i=n/Math.pow(a,r-o),e=t.constrainResolution?function(t,e,n,i,o,r){return function(s,a,l,h){if(void 0!==s){var u=o?ol(e,o,l,r):e,c=void 0!==n?n:0;if(h)return void 0===i||i?rl(s,u,c):vt(s,c,u);var p=Math.ceil(Math.log(e/u)/Math.log(t)-1e-9),f=-a*(.5-1e-9)+.5,d=Math.min(u,s),_=Math.floor(Math.log(e/d)/Math.log(t)+f),g=Math.max(p,_);return vt(e/Math.pow(t,g),c,u)}}}(a,n,i,h,!f&&d,u):sl(n,i,h,!f&&d,u)}return{constraint:e,maxResolution:n,minResolution:i,minZoom:o,zoomFactor:a}}(t);this.maxResolution_=e.maxResolution,this.minResolution_=e.minResolution,this.zoomFactor_=e.zoomFactor,this.resolutions_=t.resolutions,this.padding_=t.padding,this.minZoom_=e.minZoom;var n=function(t){if(void 0!==t.extent){var e=void 0===t.smoothExtentConstraint||t.smoothExtentConstraint;return nl(t.extent,t.constrainOnlyCenter,e)}var n=Ne(t.projection,"EPSG:3857");if(!0!==t.multiWorld&&n.isGlobal()){var i=n.getExtent().slice();return i[0]=-1/0,i[2]=1/0,nl(i,!1,!1)}return il}(t),i=e.constraint,o=function(t){if(void 0===t.enableRotation||t.enableRotation){var e=t.constrainRotation;return void 0===e||!0===e?(o=St(5),function(t,e){return e?t:void 0!==t?Math.abs(t)<=o?0:t:void 0}):!1===e?ll:"number"==typeof e?(n=e,i=2*Math.PI/n,function(t,e){return e?t:void 0!==t?t=Math.floor(t/i+.5)*i:void 0}):ll}return al;var n,i,o}(t);this.constraints_={center:n,resolution:i,rotation:o},this.setRotation(void 0!==t.rotation?t.rotation:0),this.setCenterInternal(void 0!==t.center?t.center:null),void 0!==t.resolution?this.setResolution(t.resolution):void 0!==t.zoom&&this.setZoom(t.zoom),this.setProperties({}),this.options_=t},Object.defineProperty(e.prototype,"padding",{get:function(){return this.padding_},set:function(t){var e=this.padding_;this.padding_=t;var n=this.getCenter();if(n){var i=t||[0,0,0,0];e=e||[0,0,0,0];var o=this.getResolution(),r=o/2*(i[3]-e[3]+e[1]-i[1]),s=o/2*(i[0]-e[0]+e[2]-i[2]);this.setCenterInternal([n[0]+r,n[1]-s])}},enumerable:!1,configurable:!0}),e.prototype.getUpdatedOptions_=function(t){var e=f({},this.options_);return void 0!==e.resolution?e.resolution=this.getResolution():e.zoom=this.getZoom(),e.center=this.getCenterInternal(),e.rotation=this.getRotation(),f({},e,t)},e.prototype.animate=function(t){this.isDef()&&!this.getAnimating()&&this.resolveConstraints(0);for(var e=new Array(arguments.length),n=0;n<e.length;++n){var i=arguments[n];i.center&&((i=f({},i)).center=tn(i.center,this.getProjection())),i.anchor&&((i=f({},i)).anchor=tn(i.anchor,this.getProjection())),e[n]=i}this.animateInternal.apply(this,e)},e.prototype.animateInternal=function(t){var e,n=arguments.length;n>1&&"function"==typeof arguments[n-1]&&(e=arguments[n-1],--n);for(var i=0;i<n&&!this.isDef();++i){var o=arguments[i];o.center&&this.setCenterInternal(o.center),void 0!==o.zoom?this.setZoom(o.zoom):o.resolution&&this.setResolution(o.resolution),void 0!==o.rotation&&this.setRotation(o.rotation)}if(i!==n){for(var r=Date.now(),s=this.targetCenter_.slice(),a=this.targetResolution_,l=this.targetRotation_,h=[];i<n;++i){var u=arguments[i],c={start:r,complete:!1,anchor:u.anchor,duration:void 0!==u.duration?u.duration:1e3,easing:u.easing||pn,callback:e};if(u.center&&(c.sourceCenter=s,c.targetCenter=u.center.slice(),s=c.targetCenter),void 0!==u.zoom?(c.sourceResolution=a,c.targetResolution=this.getResolutionForZoom(u.zoom),a=c.targetResolution):u.resolution&&(c.sourceResolution=a,c.targetResolution=u.resolution,a=c.targetResolution),void 0!==u.rotation){c.sourceRotation=l;var p=Et(u.rotation-l+Math.PI,2*Math.PI)-Math.PI;c.targetRotation=l+p,l=c.targetRotation}pl(c)?c.complete=!0:r+=c.duration,h.push(c)}this.animations_.push(h),this.setHint(0,1),this.updateAnimations_()}else e&&cl(e,!0)},e.prototype.getAnimating=function(){return this.hints_[0]>0},e.prototype.getInteracting=function(){return this.hints_[1]>0},e.prototype.cancelAnimations=function(){var t;this.setHint(0,-this.hints_[0]);for(var e=0,n=this.animations_.length;e<n;++e){var i=this.animations_[e];if(i[0].callback&&cl(i[0].callback,!1),!t)for(var o=0,r=i.length;o<r;++o){var s=i[o];if(!s.complete){t=s.anchor;break}}}this.animations_.length=0,this.cancelAnchor_=t,this.nextCenter_=null,this.nextResolution_=NaN,this.nextRotation_=NaN},e.prototype.updateAnimations_=function(){if(void 0!==this.updateAnimationKey_&&(cancelAnimationFrame(this.updateAnimationKey_),this.updateAnimationKey_=void 0),this.getAnimating()){for(var t=Date.now(),e=!1,n=this.animations_.length-1;n>=0;--n){for(var i=this.animations_[n],o=!0,r=0,s=i.length;r<s;++r){var a=i[r];if(!a.complete){var l=t-a.start,h=a.duration>0?l/a.duration:1;h>=1?(a.complete=!0,h=1):o=!1;var u=a.easing(h);if(a.sourceCenter){var c=a.sourceCenter[0],p=a.sourceCenter[1],f=a.targetCenter[0],d=a.targetCenter[1];this.nextCenter_=a.targetCenter;var _=c+u*(f-c),g=p+u*(d-p);this.targetCenter_=[_,g]}if(a.sourceResolution&&a.targetResolution){var y=1===u?a.targetResolution:a.sourceResolution+u*(a.targetResolution-a.sourceResolution);if(a.anchor){var v=this.getViewportSize_(this.getRotation()),m=this.constraints_.resolution(y,0,v,!0);this.targetCenter_=this.calculateCenterZoom(m,a.anchor)}this.nextResolution_=a.targetResolution,this.targetResolution_=y,this.applyTargetState_(!0)}if(void 0!==a.sourceRotation&&void 0!==a.targetRotation){var x=1===u?Et(a.targetRotation+Math.PI,2*Math.PI)-Math.PI:a.sourceRotation+u*(a.targetRotation-a.sourceRotation);if(a.anchor){var C=this.constraints_.rotation(x,!0);this.targetCenter_=this.calculateCenterRotate(C,a.anchor)}this.nextRotation_=a.targetRotation,this.targetRotation_=x}if(this.applyTargetState_(!0),e=!0,!a.complete)break}}if(o){this.animations_[n]=null,this.setHint(0,-1),this.nextCenter_=null,this.nextResolution_=NaN,this.nextRotation_=NaN;var w=i[0].callback;w&&cl(w,!0)}}this.animations_=this.animations_.filter(Boolean),e&&void 0===this.updateAnimationKey_&&(this.updateAnimationKey_=requestAnimationFrame(this.updateAnimations_.bind(this)))}},e.prototype.calculateCenterRotate=function(t,e){var n,i,o,r=this.getCenterInternal();return void 0!==r&&(yn(n=[r[0]-e[0],r[1]-e[1]],t-this.getRotation()),o=e,(i=n)[0]+=+o[0],i[1]+=+o[1]),n},e.prototype.calculateCenterZoom=function(t,e){var n,i=this.getCenterInternal(),o=this.getResolution();return void 0!==i&&void 0!==o&&(n=[e[0]-t*(e[0]-i[0])/o,e[1]-t*(e[1]-i[1])/o]),n},e.prototype.getViewportSize_=function(t){var e=this.viewportSize_;if(t){var n=e[0],i=e[1];return[Math.abs(n*Math.cos(t))+Math.abs(i*Math.sin(t)),Math.abs(n*Math.sin(t))+Math.abs(i*Math.cos(t))]}return e},e.prototype.setViewportSize=function(t){this.viewportSize_=Array.isArray(t)?t.slice():[100,100],this.getAnimating()||this.resolveConstraints(0)},e.prototype.getCenter=function(){var t=this.getCenterInternal();return t?$e(t,this.getProjection()):t},e.prototype.getCenterInternal=function(){return this.get($a)},e.prototype.getConstraints=function(){return this.constraints_},e.prototype.getConstrainResolution=function(){return this.options_.constrainResolution},e.prototype.getHints=function(t){return void 0!==t?(t[0]=this.hints_[0],t[1]=this.hints_[1],t):this.hints_.slice()},e.prototype.calculateExtent=function(t){return en(this.calculateExtentInternal(t),this.getProjection())},e.prototype.calculateExtentInternal=function(t){var e=t||this.getViewportSizeMinusPadding_(),n=this.getCenterInternal();yt(n,1);var i=this.getResolution();yt(void 0!==i,2);var o=this.getRotation();return yt(void 0!==o,3),Oe(n,i,o,e)},e.prototype.getMaxResolution=function(){return this.maxResolution_},e.prototype.getMinResolution=function(){return this.minResolution_},e.prototype.getMaxZoom=function(){return this.getZoomForResolution(this.minResolution_)},e.prototype.setMaxZoom=function(t){this.applyOptions_(this.getUpdatedOptions_({maxZoom:t}))},e.prototype.getMinZoom=function(){return this.getZoomForResolution(this.maxResolution_)},e.prototype.setMinZoom=function(t){this.applyOptions_(this.getUpdatedOptions_({minZoom:t}))},e.prototype.setConstrainResolution=function(t){this.applyOptions_(this.getUpdatedOptions_({constrainResolution:t}))},e.prototype.getProjection=function(){return this.projection_},e.prototype.getResolution=function(){return this.get(tl)},e.prototype.getResolutions=function(){return this.resolutions_},e.prototype.getResolutionForExtent=function(t,e){return this.getResolutionForExtentInternal(nn(t,this.getProjection()),e)},e.prototype.getResolutionForExtentInternal=function(t,e){var n=e||this.getViewportSizeMinusPadding_(),i=Fe(t)/n[0],o=Re(t)/n[1];return Math.max(i,o)},e.prototype.getResolutionForValueFunction=function(t){var e=t||2,n=this.getConstrainedResolution(this.maxResolution_),i=this.minResolution_,o=Math.log(n/i)/Math.log(e);return function(t){return n/Math.pow(e,t*o)}},e.prototype.getRotation=function(){return this.get(el)},e.prototype.getValueForResolutionFunction=function(t){var e=Math.log(t||2),n=this.getConstrainedResolution(this.maxResolution_),i=this.minResolution_,o=Math.log(n/i)/e;return function(t){return Math.log(n/t)/e/o}},e.prototype.getViewportSizeMinusPadding_=function(t){var e=this.getViewportSize_(t),n=this.padding_;return n&&(e=[e[0]-n[1]-n[3],e[1]-n[0]-n[2]]),e},e.prototype.getState=function(){var t=this.getProjection(),e=this.getResolution(),n=this.getRotation(),i=this.getCenterInternal(),o=this.padding_;if(o){var r=this.getViewportSizeMinusPadding_();i=fl(i,this.getViewportSize_(),[r[0]/2+o[3],r[1]/2+o[0]],e,n)}return{center:i.slice(0),projection:void 0!==t?t:null,resolution:e,nextCenter:this.nextCenter_,nextResolution:this.nextResolution_,nextRotation:this.nextRotation_,rotation:n,zoom:this.getZoom()}},e.prototype.getZoom=function(){var t,e=this.getResolution();return void 0!==e&&(t=this.getZoomForResolution(e)),t},e.prototype.getZoomForResolution=function(t){var e,n,i=this.minZoom_||0;if(this.resolutions_){var o=s(this.resolutions_,t,1);i=o,e=this.resolutions_[o],n=o==this.resolutions_.length-1?2:e/this.resolutions_[o+1]}else e=this.maxResolution_,n=this.zoomFactor_;return i+Math.log(e/t)/Math.log(n)},e.prototype.getResolutionForZoom=function(t){if(this.resolutions_){if(this.resolutions_.length<=1)return 0;var e=vt(Math.floor(t),0,this.resolutions_.length-2),n=this.resolutions_[e]/this.resolutions_[e+1];return this.resolutions_[e]/Math.pow(n,vt(t-e,0,1))}return this.maxResolution_/Math.pow(this.zoomFactor_,t-this.minZoom_)},e.prototype.fit=function(t,e){var n;if(yt(Array.isArray(t)||"function"==typeof t.getSimplifiedGeometry,24),Array.isArray(t))yt(!Ae(t),25),n=Wi(i=nn(t,this.getProjection()));else if(t.getType()===In){var i;(n=Wi(i=nn(t.getExtent(),this.getProjection()))).rotate(this.getRotation(),Te(i))}else{var o=Qe();n=o?t.clone().transform(o,this.getProjection()):t}this.fitInternal(n,e)},e.prototype.rotatedExtentForGeometry=function(t){for(var e=this.getRotation(),n=Math.cos(e),i=Math.sin(-e),o=t.getFlatCoordinates(),r=t.getStride(),s=1/0,a=1/0,l=-1/0,h=-1/0,u=0,c=o.length;u<c;u+=r){var p=o[u]*n-o[u+1]*i,f=o[u]*i+o[u+1]*n;s=Math.min(s,p),a=Math.min(a,f),l=Math.max(l,p),h=Math.max(h,f)}return[s,a,l,h]},e.prototype.fitInternal=function(t,e){var n=e||{},i=n.size;i||(i=this.getViewportSizeMinusPadding_());var o,r=void 0!==n.padding?n.padding:[0,0,0,0],s=void 0!==n.nearest&&n.nearest;o=void 0!==n.minResolution?n.minResolution:void 0!==n.maxZoom?this.getResolutionForZoom(n.maxZoom):0;var a=this.rotatedExtentForGeometry(t),l=this.getResolutionForExtentInternal(a,[i[0]-r[1]-r[3],i[1]-r[0]-r[2]]);l=isNaN(l)?o:Math.max(l,o),l=this.getConstrainedResolution(l,s?0:1);var h=this.getRotation(),u=Math.sin(h),c=Math.cos(h),f=Te(a);f[0]+=(r[1]-r[3])/2*l,f[1]+=(r[0]-r[2])/2*l;var d=f[0]*c-f[1]*u,_=f[1]*c+f[0]*u,g=this.getConstrainedCenter([d,_],l),y=n.callback?n.callback:p;void 0!==n.duration?this.animateInternal({resolution:l,center:g,duration:n.duration,easing:n.easing},y):(this.targetResolution_=l,this.targetCenter_=g,this.applyTargetState_(!1,!0),cl(y,!0))},e.prototype.centerOn=function(t,e,n){this.centerOnInternal(tn(t,this.getProjection()),e,n)},e.prototype.centerOnInternal=function(t,e,n){this.setCenterInternal(fl(t,e,n,this.getResolution(),this.getRotation()))},e.prototype.calculateCenterShift=function(t,e,n,i){var o,r=this.padding_;if(r&&t){var s=this.getViewportSizeMinusPadding_(-n),a=fl(t,i,[s[0]/2+r[3],s[1]/2+r[0]],e,n);o=[t[0]-a[0],t[1]-a[1]]}return o},e.prototype.isDef=function(){return!!this.getCenterInternal()&&void 0!==this.getResolution()},e.prototype.adjustCenter=function(t){var e=$e(this.targetCenter_,this.getProjection());this.setCenter([e[0]+t[0],e[1]+t[1]])},e.prototype.adjustCenterInternal=function(t){var e=this.targetCenter_;this.setCenterInternal([e[0]+t[0],e[1]+t[1]])},e.prototype.adjustResolution=function(t,e){var n=e&&tn(e,this.getProjection());this.adjustResolutionInternal(t,n)},e.prototype.adjustResolutionInternal=function(t,e){var n=this.getAnimating()||this.getInteracting(),i=this.getViewportSize_(this.getRotation()),o=this.constraints_.resolution(this.targetResolution_*t,0,i,n);e&&(this.targetCenter_=this.calculateCenterZoom(o,e)),this.targetResolution_*=t,this.applyTargetState_()},e.prototype.adjustZoom=function(t,e){this.adjustResolution(Math.pow(this.zoomFactor_,-t),e)},e.prototype.adjustRotation=function(t,e){e&&(e=tn(e,this.getProjection())),this.adjustRotationInternal(t,e)},e.prototype.adjustRotationInternal=function(t,e){var n=this.getAnimating()||this.getInteracting(),i=this.constraints_.rotation(this.targetRotation_+t,n);e&&(this.targetCenter_=this.calculateCenterRotate(i,e)),this.targetRotation_+=t,this.applyTargetState_()},e.prototype.setCenter=function(t){this.setCenterInternal(tn(t,this.getProjection()))},e.prototype.setCenterInternal=function(t){this.targetCenter_=t,this.applyTargetState_()},e.prototype.setHint=function(t,e){return this.hints_[t]+=e,this.changed(),this.hints_[t]},e.prototype.setResolution=function(t){this.targetResolution_=t,this.applyTargetState_()},e.prototype.setRotation=function(t){this.targetRotation_=t,this.applyTargetState_()},e.prototype.setZoom=function(t){this.setResolution(this.getResolutionForZoom(t))},e.prototype.applyTargetState_=function(t,e){var n=this.getAnimating()||this.getInteracting()||e,i=this.constraints_.rotation(this.targetRotation_,n),o=this.getViewportSize_(i),r=this.constraints_.resolution(this.targetResolution_,0,o,n),s=this.constraints_.center(this.targetCenter_,r,o,n,this.calculateCenterShift(this.targetCenter_,r,i,o));this.get(el)!==i&&this.set(el,i),this.get(tl)!==r&&this.set(tl,r),this.get($a)&&gn(this.get($a),s)||this.set($a,s),this.getAnimating()&&!t&&this.cancelAnimations(),this.cancelAnchor_=void 0},e.prototype.resolveConstraints=function(t,e,n){var i=void 0!==t?t:200,o=e||0,r=this.constraints_.rotation(this.targetRotation_),s=this.getViewportSize_(r),a=this.constraints_.resolution(this.targetResolution_,o,s),l=this.constraints_.center(this.targetCenter_,a,s,!1,this.calculateCenterShift(this.targetCenter_,a,r,s));if(0===i&&!this.cancelAnchor_)return this.targetResolution_=a,this.targetRotation_=r,this.targetCenter_=l,void this.applyTargetState_();var h=n||(0===i?this.cancelAnchor_:void 0);this.cancelAnchor_=void 0,this.getResolution()===a&&this.getRotation()===r&&this.getCenterInternal()&&gn(this.getCenterInternal(),l)||(this.getAnimating()&&this.cancelAnimations(),this.animateInternal({rotation:r,center:l,resolution:a,duration:i,easing:cn,anchor:h}))},e.prototype.beginInteraction=function(){this.resolveConstraints(0),this.setHint(1,1)},e.prototype.endInteraction=function(t,e,n){var i=n&&tn(n,this.getProjection());this.endInteractionInternal(t,e,i)},e.prototype.endInteractionInternal=function(t,e,n){this.setHint(1,-1),this.resolveConstraints(t,e,n)},e.prototype.getConstrainedCenter=function(t,e){var n=this.getViewportSize_(this.getRotation());return this.constraints_.center(t,e||this.getResolution(),n)},e.prototype.getConstrainedZoom=function(t,e){var n=this.getResolutionForZoom(t);return this.getZoomForResolution(this.getConstrainedResolution(n,e))},e.prototype.getConstrainedResolution=function(t,e){var n=e||0,i=this.getViewportSize_(this.getRotation());return this.constraints_.resolution(t,n,i)},e}(z);function cl(t,e){setTimeout((function(){t(e)}),0)}function pl(t){return!(t.sourceCenter&&t.targetCenter&&!gn(t.sourceCenter,t.targetCenter))&&t.sourceResolution===t.targetResolution&&t.sourceRotation===t.targetRotation}function fl(t,e,n,i,o){var r=Math.cos(-o),s=Math.sin(-o),a=t[0]*r-t[1]*s,l=t[1]*r+t[0]*s;return[(a+=(e[0]/2-n[0])*i)*r-(l+=(n[1]-e[1]/2)*i)*(s=-s),l*r+a*s]}var dl=ul,_l=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),gl=function(t){function n(e){var n=t.call(this)||this;n.on,n.once,n.un;var i=function(t){var e=null;void 0!==t.keyboardEventTarget&&(e="string"==typeof t.keyboardEventTarget?document.getElementById(t.keyboardEventTarget):t.keyboardEventTarget);var n,i,o,r={},s=t.layers&&"function"==typeof t.layers.getLayers?t.layers:new ja({layers:t.layers});return r.layergroup=s,r.target=t.target,r.view=t.view instanceof dl?t.view:new dl,void 0!==t.controls&&(Array.isArray(t.controls)?n=new _a(t.controls.slice()):(yt("function"==typeof t.controls.getArray,47),n=t.controls)),void 0!==t.interactions&&(Array.isArray(t.interactions)?i=new _a(t.interactions.slice()):(yt("function"==typeof t.interactions.getArray,48),i=t.interactions)),void 0!==t.overlays?Array.isArray(t.overlays)?o=new _a(t.overlays.slice()):(yt("function"==typeof t.overlays.getArray,49),o=t.overlays):o=new _a,{controls:n,interactions:i,keyboardEventTarget:e,overlays:o,values:r}}(e);n.boundHandleBrowserEvent_=n.handleBrowserEvent.bind(n),n.maxTilesLoading_=void 0!==e.maxTilesLoading?e.maxTilesLoading:16,n.pixelRatio_=void 0!==e.pixelRatio?e.pixelRatio:B,n.postRenderTimeoutHandle_,n.animationDelayKey_,n.animationDelay_=function(){this.animationDelayKey_=void 0,this.renderFrame_(Date.now())}.bind(n),n.coordinateToPixelTransform_=[1,0,0,1,0,0],n.pixelToCoordinateTransform_=[1,0,0,1,0,0],n.frameIndex_=0,n.frameState_=null,n.previousExtent_=null,n.viewPropertyListenerKey_=null,n.viewChangeListenerKey_=null,n.layerGroupPropertyListenerKeys_=null,n.viewport_=document.createElement("div"),n.viewport_.className="ol-viewport"+("ontouchstart"in window?" ol-touch":""),n.viewport_.style.position="relative",n.viewport_.style.overflow="hidden",n.viewport_.style.width="100%",n.viewport_.style.height="100%",n.overlayContainer_=document.createElement("div"),n.overlayContainer_.style.position="absolute",n.overlayContainer_.style.zIndex="0",n.overlayContainer_.style.width="100%",n.overlayContainer_.style.height="100%",n.overlayContainer_.style.pointerEvents="none",n.overlayContainer_.className="ol-overlaycontainer",n.viewport_.appendChild(n.overlayContainer_),n.overlayContainerStopEvent_=document.createElement("div"),n.overlayContainerStopEvent_.style.position="absolute",n.overlayContainerStopEvent_.style.zIndex="0",n.overlayContainerStopEvent_.style.width="100%",n.overlayContainerStopEvent_.style.height="100%",n.overlayContainerStopEvent_.style.pointerEvents="none",n.overlayContainerStopEvent_.className="ol-overlaycontainer-stopevent",n.viewport_.appendChild(n.overlayContainerStopEvent_),n.mapBrowserEventHandler_=null,n.moveTolerance_=e.moveTolerance,n.keyboardEventTarget_=i.keyboardEventTarget,n.keyHandlerKeys_=null,n.controls=i.controls||new _a,n.interactions=i.interactions||new _a,n.overlays_=i.overlays,n.overlayIdIndex_={},n.renderer_=null,n.handleResize_,n.postRenderFunctions_=[],n.tileQueue_=new Qa(n.getTilePriority.bind(n),n.handleTileChange_.bind(n)),n.addChangeListener(Ba,n.handleLayerGroupChanged_),n.addChangeListener(Ua,n.handleViewChanged_),n.addChangeListener(Za,n.handleSizeChanged_),n.addChangeListener(Va,n.handleTargetChanged_),n.setProperties(i.values);var o=n;return!e.view||e.view instanceof dl||e.view.then((function(t){o.setView(new dl(t))})),n.controls.addEventListener(ua,function(t){t.element.setMap(this)}.bind(n)),n.controls.addEventListener(ca,function(t){t.element.setMap(null)}.bind(n)),n.interactions.addEventListener(ua,function(t){t.element.setMap(this)}.bind(n)),n.interactions.addEventListener(ca,function(t){t.element.setMap(null)}.bind(n)),n.overlays_.addEventListener(ua,function(t){this.addOverlayInternal_(t.element)}.bind(n)),n.overlays_.addEventListener(ca,function(t){var e=t.element.getId();void 0!==e&&delete this.overlayIdIndex_[e.toString()],t.element.setMap(null)}.bind(n)),n.controls.forEach(function(t){t.setMap(this)}.bind(n)),n.interactions.forEach(function(t){t.setMap(this)}.bind(n)),n.overlays_.forEach(n.addOverlayInternal_.bind(n)),n}return _l(n,t),n.prototype.createRenderer=function(){throw new Error("Use a map type that has a createRenderer method")},n.prototype.addControl=function(t){this.getControls().push(t)},n.prototype.addInteraction=function(t){this.getInteractions().push(t)},n.prototype.addLayer=function(t){this.getLayerGroup().getLayers().push(t)},n.prototype.addOverlay=function(t){this.getOverlays().push(t)},n.prototype.addOverlayInternal_=function(t){var e=t.getId();void 0!==e&&(this.overlayIdIndex_[e.toString()]=t),t.setMap(this)},n.prototype.disposeInternal=function(){this.setTarget(null),t.prototype.disposeInternal.call(this)},n.prototype.forEachFeatureAtPixel=function(t,e,n){if(this.frameState_){var i=this.getCoordinateFromPixelInternal(t),o=void 0!==(n=void 0!==n?n:{}).hitTolerance?n.hitTolerance:0,r=void 0!==n.layerFilter?n.layerFilter:u,s=!1!==n.checkWrapped;return this.renderer_.forEachFeatureAtCoordinate(i,this.frameState_,o,s,e,null,r,null)}},n.prototype.getFeaturesAtPixel=function(t,e){var n=[];return this.forEachFeatureAtPixel(t,(function(t){n.push(t)}),e),n},n.prototype.forEachLayerAtPixel=function(t,e,n){if(this.frameState_){var i=n||{},o=void 0!==i.hitTolerance?i.hitTolerance:0,r=i.layerFilter||u;return this.renderer_.forEachLayerAtPixel(t,this.frameState_,o,e,r)}},n.prototype.hasFeatureAtPixel=function(t,e){if(!this.frameState_)return!1;var n=this.getCoordinateFromPixelInternal(t),i=void 0!==(e=void 0!==e?e:{}).layerFilter?e.layerFilter:u,o=void 0!==e.hitTolerance?e.hitTolerance:0,r=!1!==e.checkWrapped;return this.renderer_.hasFeatureAtCoordinate(n,this.frameState_,o,r,i,null)},n.prototype.getEventCoordinate=function(t){return this.getCoordinateFromPixel(this.getEventPixel(t))},n.prototype.getEventCoordinateInternal=function(t){return this.getCoordinateFromPixelInternal(this.getEventPixel(t))},n.prototype.getEventPixel=function(t){var e=this.viewport_.getBoundingClientRect(),n="changedTouches"in t?t.changedTouches[0]:t;return[n.clientX-e.left,n.clientY-e.top]},n.prototype.getTarget=function(){return this.get(Va)},n.prototype.getTargetElement=function(){var t=this.getTarget();return void 0!==t?"string"==typeof t?document.getElementById(t):t:null},n.prototype.getCoordinateFromPixel=function(t){return $e(this.getCoordinateFromPixelInternal(t),this.getView().getProjection())},n.prototype.getCoordinateFromPixelInternal=function(t){var e=this.frameState_;return e?Mn(e.pixelToCoordinateTransform,t.slice()):null},n.prototype.getControls=function(){return this.controls},n.prototype.getOverlays=function(){return this.overlays_},n.prototype.getOverlayById=function(t){var e=this.overlayIdIndex_[t.toString()];return void 0!==e?e:null},n.prototype.getInteractions=function(){return this.interactions},n.prototype.getLayerGroup=function(){return this.get(Ba)},n.prototype.setLayers=function(t){var e=this.getLayerGroup();if(t instanceof _a)e.setLayers(t);else{var n=e.getLayers();n.clear(),n.extend(t)}},n.prototype.getLayers=function(){return this.getLayerGroup().getLayers()},n.prototype.getLoading=function(){for(var t=this.getLayerGroup().getLayerStatesArray(),e=0,n=t.length;e<n;++e){var i=t[e].layer.getSource();if(i&&i.loading)return!0}return!1},n.prototype.getPixelFromCoordinate=function(t){var e=tn(t,this.getView().getProjection());return this.getPixelFromCoordinateInternal(e)},n.prototype.getPixelFromCoordinateInternal=function(t){var e=this.frameState_;return e?Mn(e.coordinateToPixelTransform,t.slice(0,2)):null},n.prototype.getRenderer=function(){return this.renderer_},n.prototype.getSize=function(){return this.get(Za)},n.prototype.getView=function(){return this.get(Ua)},n.prototype.getViewport=function(){return this.viewport_},n.prototype.getOverlayContainer=function(){return this.overlayContainer_},n.prototype.getOverlayContainerStopEvent=function(){return this.overlayContainerStopEvent_},n.prototype.getOwnerDocument=function(){var t=this.getTargetElement();return t?t.ownerDocument:document},n.prototype.getTilePriority=function(t,e,n,i){return function(t,e,n,i,o){if(!t||!(n in t.wantedTiles))return Ha;if(!t.wantedTiles[n][e.getKey()])return Ha;var r=t.viewState.center,s=i[0]-r[0],a=i[1]-r[1];return 65536*Math.log(o)+Math.sqrt(s*s+a*a)/o}(this.frameState_,t,e,n,i)},n.prototype.handleBrowserEvent=function(t,e){var n=e||t.type,i=new Xa(n,this,t);this.handleMapBrowserEvent(i)},n.prototype.handleMapBrowserEvent=function(t){if(this.frameState_){var e=t.originalEvent,n=e.type;if(n===Gt||n===O||n===S){var i=this.getOwnerDocument(),o=this.viewport_.getRootNode?this.viewport_.getRootNode():i,r=e.target;if(this.overlayContainerStopEvent_.contains(r)||!(o===i?i.documentElement:o).contains(r))return}if(t.frameState=this.frameState_,!1!==this.dispatchEvent(t))for(var s=this.getInteractions().getArray().slice(),a=s.length-1;a>=0;a--){var l=s[a];if(l.getMap()===this&&l.getActive()&&this.getTargetElement()&&(!l.handleEvent(t)||t.propagationStopped))break}}},n.prototype.handlePostRender=function(){var t=this.frameState_,e=this.tileQueue_;if(!e.isEmpty()){var n=this.maxTilesLoading_,i=n;if(t){var o=t.viewHints;if(o[0]||o[1]){var r=Date.now()-t.time>8;n=r?0:8,i=r?0:2}}e.getTilesLoading()<n&&(e.reprioritize(),e.loadMoreTiles(n,i))}!t||!this.hasListener(Pt)||t.animate||this.tileQueue_.getTilesLoading()||this.getLoading()||this.renderer_.dispatchRenderEvent(Pt,t);for(var s=this.postRenderFunctions_,a=0,l=s.length;a<l;++a)s[a](this,t);s.length=0},n.prototype.handleSizeChanged_=function(){this.getView()&&!this.getView().getAnimating()&&this.getView().resolveConstraints(0),this.render()},n.prototype.handleTargetChanged_=function(){var t;if(this.getTarget()&&(t=this.getTargetElement()),this.mapBrowserEventHandler_){for(var e=0,n=this.keyHandlerKeys_.length;e<n;++e)I(this.keyHandlerKeys_[e]);this.keyHandlerKeys_=null,this.viewport_.removeEventListener(C,this.boundHandleBrowserEvent_),this.viewport_.removeEventListener(O,this.boundHandleBrowserEvent_),void 0!==this.handleResize_&&(removeEventListener(T,this.handleResize_,!1),this.handleResize_=void 0),this.mapBrowserEventHandler_.dispose(),this.mapBrowserEventHandler_=null,J(this.viewport_)}if(t){for(var i in t.appendChild(this.viewport_),this.renderer_||(this.renderer_=this.createRenderer()),this.mapBrowserEventHandler_=new Ka(this,this.moveTolerance_),Na)this.mapBrowserEventHandler_.addEventListener(Na[i],this.handleMapBrowserEvent.bind(this));this.viewport_.addEventListener(C,this.boundHandleBrowserEvent_,!1),this.viewport_.addEventListener(O,this.boundHandleBrowserEvent_,!!U&&{passive:!1});var o=this.keyboardEventTarget_?this.keyboardEventTarget_:t;this.keyHandlerKeys_=[R(o,S,this.handleBrowserEvent,this),R(o,E,this.handleBrowserEvent,this)],this.handleResize_||(this.handleResize_=this.updateSize.bind(this),window.addEventListener(T,this.handleResize_,!1))}else this.renderer_&&(clearTimeout(this.postRenderTimeoutHandle_),this.postRenderTimeoutHandle_=void 0,this.postRenderFunctions_.length=0,this.renderer_.dispose(),this.renderer_=null),this.animationDelayKey_&&(cancelAnimationFrame(this.animationDelayKey_),this.animationDelayKey_=void 0);this.updateSize()},n.prototype.handleTileChange_=function(){this.render()},n.prototype.handleViewPropertyChanged_=function(){this.render()},n.prototype.handleViewChanged_=function(){this.viewPropertyListenerKey_&&(I(this.viewPropertyListenerKey_),this.viewPropertyListenerKey_=null),this.viewChangeListenerKey_&&(I(this.viewChangeListenerKey_),this.viewChangeListenerKey_=null);var t=this.getView();t&&(this.updateViewportSize_(),this.viewPropertyListenerKey_=R(t,e,this.handleViewPropertyChanged_,this),this.viewChangeListenerKey_=R(t,x,this.handleViewPropertyChanged_,this),t.resolveConstraints(0)),this.render()},n.prototype.handleLayerGroupChanged_=function(){this.layerGroupPropertyListenerKeys_&&(this.layerGroupPropertyListenerKeys_.forEach(I),this.layerGroupPropertyListenerKeys_=null);var t=this.getLayerGroup();t&&(this.layerGroupPropertyListenerKeys_=[R(t,e,this.render,this),R(t,x,this.render,this)]),this.render()},n.prototype.isRendered=function(){return!!this.frameState_},n.prototype.renderSync=function(){this.animationDelayKey_&&cancelAnimationFrame(this.animationDelayKey_),this.animationDelay_()},n.prototype.redrawText=function(){for(var t=this.getLayerGroup().getLayerStatesArray(),e=0,n=t.length;e<n;++e){var i=t[e].layer;i.hasRenderer()&&i.getRenderer().handleFontsChanged()}},n.prototype.render=function(){this.renderer_&&void 0===this.animationDelayKey_&&(this.animationDelayKey_=requestAnimationFrame(this.animationDelay_))},n.prototype.removeControl=function(t){return this.getControls().remove(t)},n.prototype.removeInteraction=function(t){return this.getInteractions().remove(t)},n.prototype.removeLayer=function(t){return this.getLayerGroup().getLayers().remove(t)},n.prototype.removeOverlay=function(t){return this.getOverlays().remove(t)},n.prototype.renderFrame_=function(t){var e=this,n=this.getSize(),i=this.getView(),o=this.frameState_,r=null;if(void 0!==n&&uo(n)&&i&&i.isDef()){var s=i.getHints(this.frameState_?this.frameState_.viewHints:void 0),a=i.getState();if(r={animate:!1,coordinateToPixelTransform:this.coordinateToPixelTransform_,declutterTree:null,extent:Oe(a.center,a.resolution,a.rotation,n),index:this.frameIndex_++,layerIndex:0,layerStatesArray:this.getLayerGroup().getLayerStatesArray(),pixelRatio:this.pixelRatio_,pixelToCoordinateTransform:this.pixelToCoordinateTransform_,postRenderFunctions:[],size:n,tileQueue:this.tileQueue_,time:t,usedTiles:{},viewState:a,viewHints:s,wantedTiles:{}},a.nextCenter&&a.nextResolution){var l=isNaN(a.nextRotation)?a.rotation:a.nextRotation;r.nextExtent=Oe(a.nextCenter,a.nextResolution,l,n)}}this.frameState_=r,this.renderer_.renderFrame(r),r&&(r.animate&&this.render(),Array.prototype.push.apply(this.postRenderFunctions_,r.postRenderFunctions),o&&(!this.previousExtent_||!Ae(this.previousExtent_)&&!ye(r.extent,this.previousExtent_))&&(this.dispatchEvent(new za("movestart",this,o)),this.previousExtent_=_e(this.previousExtent_)),this.previousExtent_&&!r.viewHints[0]&&!r.viewHints[1]&&!ye(r.extent,this.previousExtent_)&&(this.dispatchEvent(new za("moveend",this,r)),le(r.extent,this.previousExtent_))),this.dispatchEvent(new za(W,this,r)),this.postRenderTimeoutHandle_||(this.postRenderTimeoutHandle_=setTimeout((function(){e.postRenderTimeoutHandle_=void 0,e.handlePostRender()}),0))},n.prototype.setLayerGroup=function(t){this.set(Ba,t)},n.prototype.setSize=function(t){this.set(Za,t)},n.prototype.setTarget=function(t){this.set(Va,t)},n.prototype.setView=function(t){if(!t||t instanceof dl)this.set(Ua,t);else{this.set(Ua,new dl);var e=this;t.then((function(t){e.setView(new dl(t))}))}},n.prototype.updateSize=function(){var t=this.getTargetElement(),e=void 0;if(t){var n=getComputedStyle(t),i=t.offsetWidth-parseFloat(n.borderLeftWidth)-parseFloat(n.paddingLeft)-parseFloat(n.paddingRight)-parseFloat(n.borderRightWidth),o=t.offsetHeight-parseFloat(n.borderTopWidth)-parseFloat(n.paddingTop)-parseFloat(n.paddingBottom)-parseFloat(n.borderBottomWidth);isNaN(i)||isNaN(o)||!uo(e=[i,o])&&(t.offsetWidth||t.offsetHeight||t.getClientRects().length)&&console.warn("No map visible because the map container's width or height are 0.")}this.setSize(e),this.updateViewportSize_()},n.prototype.updateViewportSize_=function(){var t=this.getView();if(t){var e=void 0,n=getComputedStyle(this.viewport_);n.width&&n.height&&(e=[parseInt(n.width,10),parseInt(n.height,10)]),t.setViewportSize(e)}},n}(z),yl=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),vl=function(t){function e(e){var n=this,i=e||{};n=t.call(this,{element:document.createElement("div"),render:i.render,target:i.target})||this;var o=void 0!==i.className?i.className:"ol-rotate",r=void 0!==i.label?i.label:"⇧",s=void 0!==i.compassClassName?i.compassClassName:"ol-compass";n.label_=null,"string"==typeof r?(n.label_=document.createElement("span"),n.label_.className=s,n.label_.textContent=r):(n.label_=r,n.label_.classList.add(s));var a=i.tipLabel?i.tipLabel:"Reset rotation",l=document.createElement("button");l.className=o+"-reset",l.setAttribute("type","button"),l.title=a,l.appendChild(n.label_),l.addEventListener(w,n.handleClick_.bind(n),!1);var h=o+" ol-unselectable "+et,u=n.element;return u.className=h,u.appendChild(l),n.callResetNorth_=i.resetNorth?i.resetNorth:void 0,n.duration_=void 0!==i.duration?i.duration:250,n.autoHide_=void 0===i.autoHide||i.autoHide,n.rotation_=void 0,n.autoHide_&&n.element.classList.add(tt),n}return yl(e,t),e.prototype.handleClick_=function(t){t.preventDefault(),void 0!==this.callResetNorth_?this.callResetNorth_():this.resetNorth_()},e.prototype.resetNorth_=function(){var t=this.getMap().getView();if(t){var e=t.getRotation();void 0!==e&&(this.duration_>0&&e%(2*Math.PI)!=0?t.animate({rotation:0,duration:this.duration_,easing:cn}):t.setRotation(0))}},e.prototype.render=function(t){var e=t.frameState;if(e){var n=e.viewState.rotation;if(n!=this.rotation_){var i="rotate("+n+"rad)";if(this.autoHide_){var o=this.element.classList.contains(tt);o||0!==n?o&&0!==n&&this.element.classList.remove(tt):this.element.classList.add(tt)}this.label_.style.transform=i}this.rotation_=n}},e}($),ml=vl,xl="active",Cl=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}();function wl(t,e,n,i){var o=t.getZoom();if(void 0!==o){var r=t.getConstrainedZoom(o+e),s=t.getResolutionForZoom(r);t.getAnimating()&&t.cancelAnimations(),t.animate({resolution:s,anchor:n,duration:void 0!==i?i:250,easing:cn})}}var Sl=function(t){function e(e){var n=t.call(this)||this;return n.on,n.once,n.un,e&&e.handleEvent&&(n.handleEvent=e.handleEvent),n.map_=null,n.setActive(!0),n}return Cl(e,t),e.prototype.getActive=function(){return this.get(xl)},e.prototype.getMap=function(){return this.map_},e.prototype.handleEvent=function(t){return!0},e.prototype.setActive=function(t){this.set(xl,t)},e.prototype.setMap=function(t){this.map_=t},e}(z),El=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),Tl=function(t){function e(e){var n=t.call(this)||this,i=e||{};return n.delta_=i.delta?i.delta:1,n.duration_=void 0!==i.duration?i.duration:250,n}return El(e,t),e.prototype.handleEvent=function(t){var e=!1;if(t.type==Na.DBLCLICK){var n=t.originalEvent,i=t.map,o=t.coordinate,r=n.shiftKey?-this.delta_:this.delta_;wl(i.getView(),r,o,this.duration_),n.preventDefault(),e=!0}return!e},e}(Sl),bl=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}();function Ol(t){for(var e=t.length,n=0,i=0,o=0;o<e;o++)n+=t[o].clientX,i+=t[o].clientY;return[n/e,i/e]}var Rl=function(t){function e(e){var n=this,i=e||{};return n=t.call(this,i)||this,i.handleDownEvent&&(n.handleDownEvent=i.handleDownEvent),i.handleDragEvent&&(n.handleDragEvent=i.handleDragEvent),i.handleMoveEvent&&(n.handleMoveEvent=i.handleMoveEvent),i.handleUpEvent&&(n.handleUpEvent=i.handleUpEvent),i.stopDown&&(n.stopDown=i.stopDown),n.handlingDownUpSequence=!1,n.trackedPointers_={},n.targetPointers=[],n}return bl(e,t),e.prototype.getPointerCount=function(){return this.targetPointers.length},e.prototype.handleDownEvent=function(t){return!1},e.prototype.handleDragEvent=function(t){},e.prototype.handleEvent=function(t){if(!t.originalEvent)return!0;var e=!1;if(this.updateTrackedPointers_(t),this.handlingDownUpSequence){if(t.type==Na.POINTERDRAG)this.handleDragEvent(t),t.originalEvent.preventDefault();else if(t.type==Na.POINTERUP){var n=this.handleUpEvent(t);this.handlingDownUpSequence=n&&this.targetPointers.length>0}}else if(t.type==Na.POINTERDOWN){var i=this.handleDownEvent(t);this.handlingDownUpSequence=i,e=this.stopDown(i)}else t.type==Na.POINTERMOVE&&this.handleMoveEvent(t);return!e},e.prototype.handleMoveEvent=function(t){},e.prototype.handleUpEvent=function(t){return!1},e.prototype.stopDown=function(t){return t},e.prototype.updateTrackedPointers_=function(t){if(function(t){var e=t.type;return e===Na.POINTERDOWN||e===Na.POINTERDRAG||e===Na.POINTERUP}(t)){var e=t.originalEvent,n=e.pointerId.toString();t.type==Na.POINTERUP?delete this.trackedPointers_[n]:(t.type==Na.POINTERDOWN||n in this.trackedPointers_)&&(this.trackedPointers_[n]=e),this.targetPointers=_(this.trackedPointers_)}},e}(Sl);function Pl(t){var e=arguments;return function(t){for(var n=!0,i=0,o=e.length;i<o&&(n=n&&e[i](t));++i);return n}}var Il=function(t){var e=t.originalEvent;return e.altKey&&!(e.metaKey||e.ctrlKey)&&e.shiftKey},Ml=function(t){return!t.map.getTargetElement().hasAttribute("tabindex")||function(t){return t.target.getTargetElement().contains(document.activeElement)}(t)},Fl=u,Ll=function(t){var e=t.originalEvent;return 0==e.button&&!(Y&&K&&e.ctrlKey)},Al=function(t){var e=t.originalEvent;return!e.altKey&&!(e.metaKey||e.ctrlKey)&&!e.shiftKey},Dl=function(t){var e=t.originalEvent;return!e.altKey&&!(e.metaKey||e.ctrlKey)&&e.shiftKey},kl=function(t){var e=t.originalEvent.target.tagName;return"INPUT"!==e&&"SELECT"!==e&&"TEXTAREA"!==e},jl=function(t){var e=t.originalEvent;return yt(void 0!==e,56),"mouse"==e.pointerType},Gl=function(t){var e=t.originalEvent;return yt(void 0!==e,56),e.isPrimary&&0===e.button},zl=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),Wl=function(t){function e(e){var n=t.call(this,{stopDown:c})||this,i=e||{};n.kinetic_=i.kinetic,n.lastCentroid=null,n.lastPointersCount_,n.panning_=!1;var o=i.condition?i.condition:Pl(Al,Gl);return n.condition_=i.onFocusOnly?Pl(Ml,o):o,n.noKinetic_=!1,n}return zl(e,t),e.prototype.handleDragEvent=function(t){this.panning_||(this.panning_=!0,this.getMap().getView().beginInteraction());var e,n,i=this.targetPointers,o=Ol(i);if(i.length==this.lastPointersCount_){if(this.kinetic_&&this.kinetic_.update(o[0],o[1]),this.lastCentroid){var r=[this.lastCentroid[0]-o[0],o[1]-this.lastCentroid[1]],s=t.map.getView();e=r,n=s.getResolution(),e[0]*=n,e[1]*=n,yn(r,s.getRotation()),s.adjustCenterInternal(r)}}else this.kinetic_&&this.kinetic_.begin();this.lastCentroid=o,this.lastPointersCount_=i.length,t.originalEvent.preventDefault()},e.prototype.handleUpEvent=function(t){var e=t.map,n=e.getView();if(0===this.targetPointers.length){if(!this.noKinetic_&&this.kinetic_&&this.kinetic_.end()){var i=this.kinetic_.getDistance(),o=this.kinetic_.getAngle(),r=n.getCenterInternal(),s=e.getPixelFromCoordinateInternal(r),a=e.getCoordinateFromPixelInternal([s[0]-i*Math.cos(o),s[1]-i*Math.sin(o)]);n.animateInternal({center:n.getConstrainedCenter(a),duration:500,easing:cn})}return this.panning_&&(this.panning_=!1,n.endInteraction()),!1}return this.kinetic_&&this.kinetic_.begin(),this.lastCentroid=null,!0},e.prototype.handleDownEvent=function(t){if(this.targetPointers.length>0&&this.condition_(t)){var e=t.map.getView();return this.lastCentroid=null,e.getAnimating()&&e.cancelAnimations(),this.kinetic_&&this.kinetic_.begin(),this.noKinetic_=this.targetPointers.length>1,!0}return!1},e}(Rl),Xl=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),Nl=function(t){function e(e){var n=this,i=e||{};return(n=t.call(this,{stopDown:c})||this).condition_=i.condition?i.condition:Il,n.lastAngle_=void 0,n.duration_=void 0!==i.duration?i.duration:250,n}return Xl(e,t),e.prototype.handleDragEvent=function(t){if(jl(t)){var e=t.map,n=e.getView();if(n.getConstraints().rotation!==al){var i=e.getSize(),o=t.pixel,r=Math.atan2(i[1]/2-o[1],o[0]-i[0]/2);if(void 0!==this.lastAngle_){var s=r-this.lastAngle_;n.adjustRotationInternal(-s)}this.lastAngle_=r}}},e.prototype.handleUpEvent=function(t){return!jl(t)||(t.map.getView().endInteraction(this.duration_),!1)},e.prototype.handleDownEvent=function(t){return!(!jl(t)||!Ll(t)||!this.condition_(t)||(t.map.getView().beginInteraction(),this.lastAngle_=void 0,0))},e}(Rl),Yl=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),Kl=function(t){function e(e){var n=t.call(this)||this;return n.geometry_=null,n.element_=document.createElement("div"),n.element_.style.position="absolute",n.element_.style.pointerEvents="auto",n.element_.className="ol-box "+e,n.map_=null,n.startPixel_=null,n.endPixel_=null,n}return Yl(e,t),e.prototype.disposeInternal=function(){this.setMap(null)},e.prototype.render_=function(){var t=this.startPixel_,e=this.endPixel_,n="px",i=this.element_.style;i.left=Math.min(t[0],e[0])+n,i.top=Math.min(t[1],e[1])+n,i.width=Math.abs(e[0]-t[0])+n,i.height=Math.abs(e[1]-t[1])+n},e.prototype.setMap=function(t){if(this.map_){this.map_.getOverlayContainer().removeChild(this.element_);var e=this.element_.style;e.left="inherit",e.top="inherit",e.width="inherit",e.height="inherit"}this.map_=t,this.map_&&this.map_.getOverlayContainer().appendChild(this.element_)},e.prototype.setPixels=function(t,e){this.startPixel_=t,this.endPixel_=e,this.createOrUpdateGeometry(),this.render_()},e.prototype.createOrUpdateGeometry=function(){var t=this.startPixel_,e=this.endPixel_,n=[t,[t[0],e[1]],e,[e[0],t[1]]].map(this.map_.getCoordinateFromPixelInternal,this.map_);n[4]=n[0].slice(),this.geometry_?this.geometry_.setCoordinates([n]):this.geometry_=new zi([n])},e.prototype.getGeometry=function(){return this.geometry_},e}(o),Bl=Kl,Zl=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),Vl=function(t){function e(e,n,i){var o=t.call(this,e)||this;return o.coordinate=n,o.mapBrowserEvent=i,o}return Zl(e,t),e}(t),Ul=function(t){function e(e){var n=t.call(this)||this;n.on,n.once,n.un;var i=e||{};return n.box_=new Bl(i.className||"ol-dragbox"),n.minArea_=void 0!==i.minArea?i.minArea:64,i.onBoxEnd&&(n.onBoxEnd=i.onBoxEnd),n.startPixel_=null,n.condition_=i.condition?i.condition:Ll,n.boxEndCondition_=i.boxEndCondition?i.boxEndCondition:n.defaultBoxEndCondition,n}return Zl(e,t),e.prototype.defaultBoxEndCondition=function(t,e,n){var i=n[0]-e[0],o=n[1]-e[1];return i*i+o*o>=this.minArea_},e.prototype.getGeometry=function(){return this.box_.getGeometry()},e.prototype.handleDragEvent=function(t){this.box_.setPixels(this.startPixel_,t.pixel),this.dispatchEvent(new Vl("boxdrag",t.coordinate,t))},e.prototype.handleUpEvent=function(t){this.box_.setMap(null);var e=this.boxEndCondition_(t,this.startPixel_,t.pixel);return e&&this.onBoxEnd(t),this.dispatchEvent(new Vl(e?"boxend":"boxcancel",t.coordinate,t)),!1},e.prototype.handleDownEvent=function(t){return!!this.condition_(t)&&(this.startPixel_=t.pixel,this.box_.setMap(t.map),this.box_.setPixels(this.startPixel_,this.startPixel_),this.dispatchEvent(new Vl("boxstart",t.coordinate,t)),!0)},e.prototype.onBoxEnd=function(t){},e}(Rl),Hl=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),ql=function(t){function e(e){var n=this,i=e||{},o=i.condition?i.condition:Dl;return(n=t.call(this,{condition:o,className:i.className||"ol-dragzoom",minArea:i.minArea})||this).duration_=void 0!==i.duration?i.duration:200,n.out_=void 0!==i.out&&i.out,n}return Hl(e,t),e.prototype.onBoxEnd=function(t){var e=this.getMap().getView(),n=this.getGeometry();if(this.out_){var i=e.rotatedExtentForGeometry(n),o=e.getResolutionForExtentInternal(i),r=e.getResolution()/o;(n=n.clone()).scale(r*r)}e.fitInternal(n,{duration:this.duration_,easing:cn})},e}(Ul),Jl=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),Ql=function(t){function e(e){var n=t.call(this)||this,i=e||{};return n.defaultCondition_=function(t){return Al(t)&&kl(t)},n.condition_=void 0!==i.condition?i.condition:n.defaultCondition_,n.duration_=void 0!==i.duration?i.duration:100,n.pixelDelta_=void 0!==i.pixelDelta?i.pixelDelta:128,n}return Jl(e,t),e.prototype.handleEvent=function(t){var e=!1;if(t.type==S){var n=t.originalEvent,i=n.keyCode;if(this.condition_(t)&&(40==i||37==i||39==i||38==i)){var o=t.map.getView(),r=o.getResolution()*this.pixelDelta_,s=0,a=0;40==i?a=-r:37==i?s=-r:39==i?s=r:a=r;var l=[s,a];yn(l,o.getRotation()),function(t,e,n){var i=t.getCenterInternal();if(i){var o=[i[0]+e[0],i[1]+e[1]];t.animateInternal({duration:void 0!==n?n:250,easing:fn,center:t.getConstrainedCenter(o)})}}(o,l,this.duration_),n.preventDefault(),e=!0}}return!e},e}(Sl),$l=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),th=function(t){function e(e){var n=t.call(this)||this,i=e||{};return n.condition_=i.condition?i.condition:kl,n.delta_=i.delta?i.delta:1,n.duration_=void 0!==i.duration?i.duration:100,n}return $l(e,t),e.prototype.handleEvent=function(t){var e=!1;if(t.type==S||t.type==E){var n=t.originalEvent,i=n.charCode;if(this.condition_(t)&&(i=="+".charCodeAt(0)||i=="-".charCodeAt(0))){var o=t.map,r=i=="+".charCodeAt(0)?this.delta_:-this.delta_;wl(o.getView(),r,void 0,this.duration_),n.preventDefault(),e=!0}}return!e},e}(Sl),eh=function(){function t(t,e,n){this.decay_=t,this.minVelocity_=e,this.delay_=n,this.points_=[],this.angle_=0,this.initialVelocity_=0}return t.prototype.begin=function(){this.points_.length=0,this.angle_=0,this.initialVelocity_=0},t.prototype.update=function(t,e){this.points_.push(t,e,Date.now())},t.prototype.end=function(){if(this.points_.length<6)return!1;var t=Date.now()-this.delay_,e=this.points_.length-3;if(this.points_[e+2]<t)return!1;for(var n=e-3;n>0&&this.points_[n+2]>t;)n-=3;var i=this.points_[e+2]-this.points_[n+2];if(i<1e3/60)return!1;var o=this.points_[e]-this.points_[n],r=this.points_[e+1]-this.points_[n+1];return this.angle_=Math.atan2(r,o),this.initialVelocity_=Math.sqrt(o*o+r*r)/i,this.initialVelocity_>this.minVelocity_},t.prototype.getDistance=function(){return(this.minVelocity_-this.initialVelocity_)/this.decay_},t.prototype.getAngle=function(){return this.angle_},t}(),nh=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),ih="trackpad",oh=function(t){function e(e){var n=this,i=e||{};(n=t.call(this,i)||this).totalDelta_=0,n.lastDelta_=0,n.maxDelta_=void 0!==i.maxDelta?i.maxDelta:1,n.duration_=void 0!==i.duration?i.duration:250,n.timeout_=void 0!==i.timeout?i.timeout:80,n.useAnchor_=void 0===i.useAnchor||i.useAnchor,n.constrainResolution_=void 0!==i.constrainResolution&&i.constrainResolution;var o=i.condition?i.condition:Fl;return n.condition_=i.onFocusOnly?Pl(Ml,o):o,n.lastAnchor_=null,n.startTime_=void 0,n.timeoutId_,n.mode_=void 0,n.trackpadEventGap_=400,n.trackpadTimeoutId_,n.deltaPerZoom_=300,n}return nh(e,t),e.prototype.endInteraction_=function(){this.trackpadTimeoutId_=void 0,this.getMap().getView().endInteraction(void 0,this.lastDelta_?this.lastDelta_>0?1:-1:0,this.lastAnchor_)},e.prototype.handleEvent=function(t){if(!this.condition_(t))return!0;if(t.type!==O)return!0;var e,n=t.map,i=t.originalEvent;if(i.preventDefault(),this.useAnchor_&&(this.lastAnchor_=t.coordinate),t.type==O&&(e=i.deltaY,N&&i.deltaMode===WheelEvent.DOM_DELTA_PIXEL&&(e/=B),i.deltaMode===WheelEvent.DOM_DELTA_LINE&&(e*=40)),0===e)return!1;this.lastDelta_=e;var o=Date.now();void 0===this.startTime_&&(this.startTime_=o),(!this.mode_||o-this.startTime_>this.trackpadEventGap_)&&(this.mode_=Math.abs(e)<4?ih:"wheel");var r=n.getView();if(this.mode_===ih&&!r.getConstrainResolution()&&!this.constrainResolution_)return this.trackpadTimeoutId_?clearTimeout(this.trackpadTimeoutId_):(r.getAnimating()&&r.cancelAnimations(),r.beginInteraction()),this.trackpadTimeoutId_=setTimeout(this.endInteraction_.bind(this),this.timeout_),r.adjustZoom(-e/this.deltaPerZoom_,this.lastAnchor_),this.startTime_=o,!1;this.totalDelta_+=e;var s=Math.max(this.timeout_-(o-this.startTime_),0);return clearTimeout(this.timeoutId_),this.timeoutId_=setTimeout(this.handleWheelZoom_.bind(this,n),s),!1},e.prototype.handleWheelZoom_=function(t){var e=t.getView();e.getAnimating()&&e.cancelAnimations();var n=-vt(this.totalDelta_,-this.maxDelta_*this.deltaPerZoom_,this.maxDelta_*this.deltaPerZoom_)/this.deltaPerZoom_;(e.getConstrainResolution()||this.constrainResolution_)&&(n=n?n>0?1:-1:0),wl(e,n,this.lastAnchor_,this.duration_),this.mode_=void 0,this.totalDelta_=0,this.lastAnchor_=null,this.startTime_=void 0,this.timeoutId_=void 0},e.prototype.setMouseAnchor=function(t){this.useAnchor_=t,t||(this.lastAnchor_=null)},e}(Sl),rh=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),sh=function(t){function e(e){var n=this,i=e||{},o=i;return o.stopDown||(o.stopDown=c),(n=t.call(this,o)||this).anchor_=null,n.lastAngle_=void 0,n.rotating_=!1,n.rotationDelta_=0,n.threshold_=void 0!==i.threshold?i.threshold:.3,n.duration_=void 0!==i.duration?i.duration:250,n}return rh(e,t),e.prototype.handleDragEvent=function(t){var e=0,n=this.targetPointers[0],i=this.targetPointers[1],o=Math.atan2(i.clientY-n.clientY,i.clientX-n.clientX);if(void 0!==this.lastAngle_){var r=o-this.lastAngle_;this.rotationDelta_+=r,!this.rotating_&&Math.abs(this.rotationDelta_)>this.threshold_&&(this.rotating_=!0),e=r}this.lastAngle_=o;var s=t.map,a=s.getView();if(a.getConstraints().rotation!==al){var l=s.getViewport().getBoundingClientRect(),h=Ol(this.targetPointers);h[0]-=l.left,h[1]-=l.top,this.anchor_=s.getCoordinateFromPixelInternal(h),this.rotating_&&(s.render(),a.adjustRotationInternal(e,this.anchor_))}},e.prototype.handleUpEvent=function(t){return!(this.targetPointers.length<2&&(t.map.getView().endInteraction(this.duration_),1))},e.prototype.handleDownEvent=function(t){if(this.targetPointers.length>=2){var e=t.map;return this.anchor_=null,this.lastAngle_=void 0,this.rotating_=!1,this.rotationDelta_=0,this.handlingDownUpSequence||e.getView().beginInteraction(),!0}return!1},e}(Rl),ah=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),lh=function(t){function e(e){var n=this,i=e||{},o=i;return o.stopDown||(o.stopDown=c),(n=t.call(this,o)||this).anchor_=null,n.duration_=void 0!==i.duration?i.duration:400,n.lastDistance_=void 0,n.lastScaleDelta_=1,n}return ah(e,t),e.prototype.handleDragEvent=function(t){var e=1,n=this.targetPointers[0],i=this.targetPointers[1],o=n.clientX-i.clientX,r=n.clientY-i.clientY,s=Math.sqrt(o*o+r*r);void 0!==this.lastDistance_&&(e=this.lastDistance_/s),this.lastDistance_=s;var a=t.map,l=a.getView();1!=e&&(this.lastScaleDelta_=e);var h=a.getViewport().getBoundingClientRect(),u=Ol(this.targetPointers);u[0]-=h.left,u[1]-=h.top,this.anchor_=a.getCoordinateFromPixelInternal(u),a.render(),l.adjustResolutionInternal(e,this.anchor_)},e.prototype.handleUpEvent=function(t){if(this.targetPointers.length<2){var e=t.map.getView(),n=this.lastScaleDelta_>1?1:-1;return e.endInteraction(this.duration_,n),!1}return!0},e.prototype.handleDownEvent=function(t){if(this.targetPointers.length>=2){var e=t.map;return this.anchor_=null,this.lastDistance_=void 0,this.lastScaleDelta_=1,this.handlingDownUpSequence||e.getView().beginInteraction(),!0}return!1},e}(Rl),hh=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),uh=function(t){function e(e){return(e=f({},e)).controls||(e.controls=function(t){var e={},n=new _a;return(void 0===e.zoom||e.zoom)&&n.push(new _n(e.zoomOptions)),(void 0===e.rotate||e.rotate)&&n.push(new ml(e.rotateOptions)),(void 0===e.attribution||e.attribution)&&n.push(new kt(e.attributionOptions)),n}()),e.interactions||(e.interactions=function(t){var e={onFocusOnly:!0}||{},n=new _a,i=new eh(-.005,.05,100);return(void 0===e.altShiftDragRotate||e.altShiftDragRotate)&&n.push(new Nl),(void 0===e.doubleClickZoom||e.doubleClickZoom)&&n.push(new Tl({delta:e.zoomDelta,duration:e.zoomDuration})),(void 0===e.dragPan||e.dragPan)&&n.push(new Wl({onFocusOnly:e.onFocusOnly,kinetic:i})),(void 0===e.pinchRotate||e.pinchRotate)&&n.push(new sh),(void 0===e.pinchZoom||e.pinchZoom)&&n.push(new lh({duration:e.zoomDuration})),(void 0===e.keyboard||e.keyboard)&&(n.push(new Ql),n.push(new th({delta:e.zoomDelta,duration:e.zoomDuration}))),(void 0===e.mouseWheelZoom||e.mouseWheelZoom)&&n.push(new oh({onFocusOnly:e.onFocusOnly,duration:e.zoomDuration})),(void 0===e.shiftDragZoom||e.shiftDragZoom)&&n.push(new ql({duration:e.zoomDuration})),n}()),t.call(this,e)||this}return hh(e,t),e.prototype.createRenderer=function(){return new Aa(this)},e}(gl),ch={control:{Attribution:kt,MousePosition:hn,Zoom:_n},coordinate:{createStringXY:function(t){return function(e){return function(t,e){return function(t,e,n){return t?"{x}, {y}".replace("{x}",t[0].toFixed(n)).replace("{y}",t[1].toFixed(n)):""}(t,0,e)}(e,t)}}},extent:{boundingExtent:se},geom:{LineString:gi,LinearRing:Ci,MultiLineString:Ei,MultiPoint:Ii,MultiPolygon:Yi,Point:Oi,Polygon:zi},layer:{Tile:lo,Vector:Cs},proj:{fromLonLat:function(t,e){return Ze(t,"EPSG:4326",void 0!==e?e:"EPSG:3857")},get:ze,transformExtent:Ve},source:{OSM:ha,Vector:Ea},style:{Circle:Yo,Fill:Ko,Stroke:Bo,Style:qo,Text:Ta},Feature:Ra,Map:uh,View:dl}}(),i.default}()}));
+!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define([],e):"object"==typeof exports?exports.ol=e():t.ol=e()}(self,(function(){return function(){var t={582:function(t){t.exports=function(){"use strict";function t(t,i,r,o,s){!function t(n,i,r,o,s){for(;o>r;){if(o-r>600){var a=o-r+1,l=i-r+1,h=Math.log(a),u=.5*Math.exp(2*h/3),c=.5*Math.sqrt(h*u*(a-u)/a)*(l-a/2<0?-1:1);t(n,i,Math.max(r,Math.floor(i-l*u/a+c)),Math.min(o,Math.floor(i+(a-l)*u/a+c)),s)}var p=n[i],f=r,d=o;for(e(n,r,i),s(n[o],p)>0&&e(n,r,o);f<d;){for(e(n,f,d),f++,d--;s(n[f],p)<0;)f++;for(;s(n[d],p)>0;)d--}0===s(n[r],p)?e(n,r,d):e(n,++d,o),d<=i&&(r=d+1),i<=d&&(o=d-1)}}(t,i,r||0,o||t.length-1,s||n)}function e(t,e,n){var i=t[e];t[e]=t[n],t[n]=i}function n(t,e){return t<e?-1:t>e?1:0}var i=function(t){void 0===t&&(t=9),this._maxEntries=Math.max(4,t),this._minEntries=Math.max(2,Math.ceil(.4*this._maxEntries)),this.clear()};function r(t,e,n){if(!n)return e.indexOf(t);for(var i=0;i<e.length;i++)if(n(t,e[i]))return i;return-1}function o(t,e){s(t,0,t.children.length,e,t)}function s(t,e,n,i,r){r||(r=d(null)),r.minX=1/0,r.minY=1/0,r.maxX=-1/0,r.maxY=-1/0;for(var o=e;o<n;o++){var s=t.children[o];a(r,t.leaf?i(s):s)}return r}function a(t,e){return t.minX=Math.min(t.minX,e.minX),t.minY=Math.min(t.minY,e.minY),t.maxX=Math.max(t.maxX,e.maxX),t.maxY=Math.max(t.maxY,e.maxY),t}function l(t,e){return t.minX-e.minX}function h(t,e){return t.minY-e.minY}function u(t){return(t.maxX-t.minX)*(t.maxY-t.minY)}function c(t){return t.maxX-t.minX+(t.maxY-t.minY)}function p(t,e){return t.minX<=e.minX&&t.minY<=e.minY&&e.maxX<=t.maxX&&e.maxY<=t.maxY}function f(t,e){return e.minX<=t.maxX&&e.minY<=t.maxY&&e.maxX>=t.minX&&e.maxY>=t.minY}function d(t){return{children:t,height:1,leaf:!0,minX:1/0,minY:1/0,maxX:-1/0,maxY:-1/0}}function g(e,n,i,r,o){for(var s=[n,i];s.length;)if(!((i=s.pop())-(n=s.pop())<=r)){var a=n+Math.ceil((i-n)/r/2)*r;t(e,a,n,i,o),s.push(n,a,a,i)}}return i.prototype.all=function(){return this._all(this.data,[])},i.prototype.search=function(t){var e=this.data,n=[];if(!f(t,e))return n;for(var i=this.toBBox,r=[];e;){for(var o=0;o<e.children.length;o++){var s=e.children[o],a=e.leaf?i(s):s;f(t,a)&&(e.leaf?n.push(s):p(t,a)?this._all(s,n):r.push(s))}e=r.pop()}return n},i.prototype.collides=function(t){var e=this.data;if(!f(t,e))return!1;for(var n=[];e;){for(var i=0;i<e.children.length;i++){var r=e.children[i],o=e.leaf?this.toBBox(r):r;if(f(t,o)){if(e.leaf||p(t,o))return!0;n.push(r)}}e=n.pop()}return!1},i.prototype.load=function(t){if(!t||!t.length)return this;if(t.length<this._minEntries){for(var e=0;e<t.length;e++)this.insert(t[e]);return this}var n=this._build(t.slice(),0,t.length-1,0);if(this.data.children.length)if(this.data.height===n.height)this._splitRoot(this.data,n);else{if(this.data.height<n.height){var i=this.data;this.data=n,n=i}this._insert(n,this.data.height-n.height-1,!0)}else this.data=n;return this},i.prototype.insert=function(t){return t&&this._insert(t,this.data.height-1),this},i.prototype.clear=function(){return this.data=d([]),this},i.prototype.remove=function(t,e){if(!t)return this;for(var n,i,o,s=this.data,a=this.toBBox(t),l=[],h=[];s||l.length;){if(s||(s=l.pop(),i=l[l.length-1],n=h.pop(),o=!0),s.leaf){var u=r(t,s.children,e);if(-1!==u)return s.children.splice(u,1),l.push(s),this._condense(l),this}o||s.leaf||!p(s,a)?i?(n++,s=i.children[n],o=!1):s=null:(l.push(s),h.push(n),n=0,i=s,s=s.children[0])}return this},i.prototype.toBBox=function(t){return t},i.prototype.compareMinX=function(t,e){return t.minX-e.minX},i.prototype.compareMinY=function(t,e){return t.minY-e.minY},i.prototype.toJSON=function(){return this.data},i.prototype.fromJSON=function(t){return this.data=t,this},i.prototype._all=function(t,e){for(var n=[];t;)t.leaf?e.push.apply(e,t.children):n.push.apply(n,t.children),t=n.pop();return e},i.prototype._build=function(t,e,n,i){var r,s=n-e+1,a=this._maxEntries;if(s<=a)return o(r=d(t.slice(e,n+1)),this.toBBox),r;i||(i=Math.ceil(Math.log(s)/Math.log(a)),a=Math.ceil(s/Math.pow(a,i-1))),(r=d([])).leaf=!1,r.height=i;var l=Math.ceil(s/a),h=l*Math.ceil(Math.sqrt(a));g(t,e,n,h,this.compareMinX);for(var u=e;u<=n;u+=h){var c=Math.min(u+h-1,n);g(t,u,c,l,this.compareMinY);for(var p=u;p<=c;p+=l){var f=Math.min(p+l-1,c);r.children.push(this._build(t,p,f,i-1))}}return o(r,this.toBBox),r},i.prototype._chooseSubtree=function(t,e,n,i){for(;i.push(e),!e.leaf&&i.length-1!==n;){for(var r=1/0,o=1/0,s=void 0,a=0;a<e.children.length;a++){var l=e.children[a],h=u(l),c=(p=t,f=l,(Math.max(f.maxX,p.maxX)-Math.min(f.minX,p.minX))*(Math.max(f.maxY,p.maxY)-Math.min(f.minY,p.minY))-h);c<o?(o=c,r=h<r?h:r,s=l):c===o&&h<r&&(r=h,s=l)}e=s||e.children[0]}var p,f;return e},i.prototype._insert=function(t,e,n){var i=n?t:this.toBBox(t),r=[],o=this._chooseSubtree(i,this.data,e,r);for(o.children.push(t),a(o,i);e>=0&&r[e].children.length>this._maxEntries;)this._split(r,e),e--;this._adjustParentBBoxes(i,r,e)},i.prototype._split=function(t,e){var n=t[e],i=n.children.length,r=this._minEntries;this._chooseSplitAxis(n,r,i);var s=this._chooseSplitIndex(n,r,i),a=d(n.children.splice(s,n.children.length-s));a.height=n.height,a.leaf=n.leaf,o(n,this.toBBox),o(a,this.toBBox),e?t[e-1].children.push(a):this._splitRoot(n,a)},i.prototype._splitRoot=function(t,e){this.data=d([t,e]),this.data.height=t.height+1,this.data.leaf=!1,o(this.data,this.toBBox)},i.prototype._chooseSplitIndex=function(t,e,n){for(var i,r,o,a,l,h,c,p=1/0,f=1/0,d=e;d<=n-e;d++){var g=s(t,0,d,this.toBBox),_=s(t,d,n,this.toBBox),y=(r=g,o=_,void 0,void 0,void 0,void 0,a=Math.max(r.minX,o.minX),l=Math.max(r.minY,o.minY),h=Math.min(r.maxX,o.maxX),c=Math.min(r.maxY,o.maxY),Math.max(0,h-a)*Math.max(0,c-l)),v=u(g)+u(_);y<p?(p=y,i=d,f=v<f?v:f):y===p&&v<f&&(f=v,i=d)}return i||n-e},i.prototype._chooseSplitAxis=function(t,e,n){var i=t.leaf?this.compareMinX:l,r=t.leaf?this.compareMinY:h;this._allDistMargin(t,e,n,i)<this._allDistMargin(t,e,n,r)&&t.children.sort(i)},i.prototype._allDistMargin=function(t,e,n,i){t.children.sort(i);for(var r=this.toBBox,o=s(t,0,e,r),l=s(t,n-e,n,r),h=c(o)+c(l),u=e;u<n-e;u++){var p=t.children[u];a(o,t.leaf?r(p):p),h+=c(o)}for(var f=n-e-1;f>=e;f--){var d=t.children[f];a(l,t.leaf?r(d):d),h+=c(l)}return h},i.prototype._adjustParentBBoxes=function(t,e,n){for(var i=n;i>=0;i--)a(e[i],t)},i.prototype._condense=function(t){for(var e=t.length-1,n=void 0;e>=0;e--)0===t[e].children.length?e>0?(n=t[e-1].children).splice(n.indexOf(t[e]),1):this.clear():o(t[e],this.toBBox)},i}()}},e={};function n(i){var r=e[i];if(void 0!==r)return r.exports;var o=e[i]={exports:{}};return t[i].call(o.exports,o,o.exports,n),o.exports}n.d=function(t,e){for(var i in e)n.o(e,i)&&!n.o(t,i)&&Object.defineProperty(t,i,{enumerable:!0,get:e[i]})},n.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)};var i={};return function(){"use strict";n.d(i,{default:function(){return Ch}});var t=function(){function t(t){this.propagationStopped,this.defaultPrevented,this.type=t,this.target=null}return t.prototype.preventDefault=function(){this.defaultPrevented=!0},t.prototype.stopPropagation=function(){this.propagationStopped=!0},t}(),e="propertychange",r=function(){function t(){this.disposed=!1}return t.prototype.dispose=function(){this.disposed||(this.disposed=!0,this.disposeInternal())},t.prototype.disposeInternal=function(){},t}();function o(t,e){return t>e?1:t<e?-1:0}function s(t,e,n){var i=t.length;if(t[0]<=e)return 0;if(e<=t[i-1])return i-1;var r=void 0;if(n>0){for(r=1;r<i;++r)if(t[r]<e)return r-1}else if(n<0){for(r=1;r<i;++r)if(t[r]<=e)return r}else for(r=1;r<i;++r){if(t[r]==e)return r;if(t[r]<e)return"function"==typeof n?n(e,t[r-1],t[r])>0?r-1:r:t[r-1]-e<e-t[r]?r-1:r}return i-1}function a(t,e,n){for(;e<n;){var i=t[e];t[e]=t[n],t[n]=i,++e,--n}}function l(t,e){for(var n=Array.isArray(e)?e:[e],i=n.length,r=0;r<i;r++)t[t.length]=n[r]}function h(t,e){var n=t.length;if(n!==e.length)return!1;for(var i=0;i<n;i++)if(t[i]!==e[i])return!1;return!0}function u(){return!0}function c(){return!1}function p(){}var f="function"==typeof Object.assign?Object.assign:function(t,e){if(null==t)throw new TypeError("Cannot convert undefined or null to object");for(var n=Object(t),i=1,r=arguments.length;i<r;++i){var o=arguments[i];if(null!=o)for(var s in o)o.hasOwnProperty(s)&&(n[s]=o[s])}return n};function d(t){for(var e in t)delete t[e]}var g="function"==typeof Object.values?Object.values:function(t){var e=[];for(var n in t)e.push(t[n]);return e};function _(t){var e;for(e in t)return!1;return!e}var y,v=(y=function(t,e){return y=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},y(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function n(){this.constructor=t}y(t,e),t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)}),m=function(e){function n(t){var n=e.call(this)||this;return n.eventTarget_=t,n.pendingRemovals_=null,n.dispatching_=null,n.listeners_=null,n}return v(n,e),n.prototype.addEventListener=function(t,e){if(t&&e){var n=this.listeners_||(this.listeners_={}),i=n[t]||(n[t]=[]);-1===i.indexOf(e)&&i.push(e)}},n.prototype.dispatchEvent=function(e){var n="string"==typeof e,i=n?e:e.type,r=this.listeners_&&this.listeners_[i];if(r){var o=n?new t(e):e;o.target||(o.target=this.eventTarget_||this);var s,a=this.dispatching_||(this.dispatching_={}),l=this.pendingRemovals_||(this.pendingRemovals_={});i in a||(a[i]=0,l[i]=0),++a[i];for(var h=0,u=r.length;h<u;++h)if(!1===(s="handleEvent"in r[h]?r[h].handleEvent(o):r[h].call(this,o))||o.propagationStopped){s=!1;break}if(0==--a[i]){var c=l[i];for(delete l[i];c--;)this.removeEventListener(i,p);delete a[i]}return s}},n.prototype.disposeInternal=function(){this.listeners_&&d(this.listeners_)},n.prototype.getListeners=function(t){return this.listeners_&&this.listeners_[t]||void 0},n.prototype.hasListener=function(t){return!!this.listeners_&&(t?t in this.listeners_:Object.keys(this.listeners_).length>0)},n.prototype.removeEventListener=function(t,e){var n=this.listeners_&&this.listeners_[t];if(n){var i=n.indexOf(e);-1!==i&&(this.pendingRemovals_&&t in this.pendingRemovals_?(n[i]=p,++this.pendingRemovals_[t]):(n.splice(i,1),0===n.length&&delete this.listeners_[t]))}},n}(r),x="change",C="contextmenu",w="click",S="keydown",E="keypress",T="touchmove",b="wheel";function O(t,e,n,i,r){if(i&&i!==t&&(n=n.bind(i)),r){var o=n;n=function(){t.removeEventListener(e,n),o.apply(this,arguments)}}var s={target:t,type:e,listener:n};return t.addEventListener(e,n),s}function R(t,e,n,i){return O(t,e,n,i,!0)}function I(t){t&&t.target&&(t.target.removeEventListener(t.type,t.listener),d(t))}var P=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),M=function(t){function e(){var e=t.call(this)||this;return e.on=e.onInternal,e.once=e.onceInternal,e.un=e.unInternal,e.revision_=0,e}return P(e,t),e.prototype.changed=function(){++this.revision_,this.dispatchEvent(x)},e.prototype.getRevision=function(){return this.revision_},e.prototype.onInternal=function(t,e){if(Array.isArray(t)){for(var n=t.length,i=new Array(n),r=0;r<n;++r)i[r]=O(this,t[r],e);return i}return O(this,t,e)},e.prototype.onceInternal=function(t,e){var n;if(Array.isArray(t)){var i=t.length;n=new Array(i);for(var r=0;r<i;++r)n[r]=R(this,t[r],e)}else n=R(this,t,e);return e.ol_key=n,n},e.prototype.unInternal=function(t,e){var n=e.ol_key;if(n)!function(t){if(Array.isArray(t))for(var e=0,n=t.length;e<n;++e)I(t[e]);else I(t)}(n);else if(Array.isArray(t))for(var i=0,r=t.length;i<r;++i)this.removeEventListener(t[i],e);else this.removeEventListener(t,e)},e}(m);M.prototype.on,M.prototype.once,M.prototype.un;var F=M;function L(){return function(){throw new Error("Unimplemented abstract method.")}()}var A=0;function D(t){return t.ol_uid||(t.ol_uid=String(++A))}var k=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),j=function(t){function e(e,n,i){var r=t.call(this,e)||this;return r.key=n,r.oldValue=i,r}return k(e,t),e}(t),G=function(t){function n(e){var n=t.call(this)||this;return n.on,n.once,n.un,D(n),n.values_=null,void 0!==e&&n.setProperties(e),n}return k(n,t),n.prototype.get=function(t){var e;return this.values_&&this.values_.hasOwnProperty(t)&&(e=this.values_[t]),e},n.prototype.getKeys=function(){return this.values_&&Object.keys(this.values_)||[]},n.prototype.getProperties=function(){return this.values_&&f({},this.values_)||{}},n.prototype.hasProperties=function(){return!!this.values_},n.prototype.notify=function(t,n){var i;i="change:".concat(t),this.hasListener(i)&&this.dispatchEvent(new j(i,t,n)),i=e,this.hasListener(i)&&this.dispatchEvent(new j(i,t,n))},n.prototype.addChangeListener=function(t,e){this.addEventListener("change:".concat(t),e)},n.prototype.removeChangeListener=function(t,e){this.removeEventListener("change:".concat(t),e)},n.prototype.set=function(t,e,n){var i=this.values_||(this.values_={});if(n)i[t]=e;else{var r=i[t];i[t]=e,r!==e&&this.notify(t,r)}},n.prototype.setProperties=function(t,e){for(var n in t)this.set(n,t[n],e)},n.prototype.applyProperties=function(t){t.values_&&f(this.values_||(this.values_={}),t.values_)},n.prototype.unset=function(t,e){if(this.values_&&t in this.values_){var n=this.values_[t];delete this.values_[t],_(this.values_)&&(this.values_=null),e||this.notify(t,n)}},n}(F),z="postrender",W="loadstart",X="loadend",N="undefined"!=typeof navigator&&void 0!==navigator.userAgent?navigator.userAgent.toLowerCase():"",Y=-1!==N.indexOf("firefox"),B=(-1!==N.indexOf("safari")&&-1==N.indexOf("chrom")&&(N.indexOf("version/15.4")>=0||N.match(/cpu (os|iphone os) 15_4 like mac os x/)),-1!==N.indexOf("webkit")&&-1==N.indexOf("edge")),K=-1!==N.indexOf("macintosh"),Z="undefined"!=typeof devicePixelRatio?devicePixelRatio:1,V="undefined"!=typeof WorkerGlobalScope&&"undefined"!=typeof OffscreenCanvas&&self instanceof WorkerGlobalScope,U="undefined"!=typeof Image&&Image.prototype.decode,H=function(){var t=!1;try{var e=Object.defineProperty({},"passive",{get:function(){t=!0}});window.addEventListener("_",null,e),window.removeEventListener("_",null,e)}catch(t){}return t}();function q(t,e,n,i){var r;return r=n&&n.length?n.shift():V?new OffscreenCanvas(t||300,e||300):document.createElement("canvas"),t&&(r.width=t),e&&(r.height=e),r.getContext("2d",i)}function J(t,e){var n=e.parentNode;n&&n.replaceChild(t,e)}function Q(t){return t&&t.parentNode?t.parentNode.removeChild(t):null}var $=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),tt=function(t){function e(e){var n=t.call(this)||this,i=e.element;return!i||e.target||i.style.pointerEvents||(i.style.pointerEvents="auto"),n.element=i||null,n.target_=null,n.map_=null,n.listenerKeys=[],e.render&&(n.render=e.render),e.target&&n.setTarget(e.target),n}return $(e,t),e.prototype.disposeInternal=function(){Q(this.element),t.prototype.disposeInternal.call(this)},e.prototype.getMap=function(){return this.map_},e.prototype.setMap=function(t){this.map_&&Q(this.element);for(var e=0,n=this.listenerKeys.length;e<n;++e)I(this.listenerKeys[e]);this.listenerKeys.length=0,this.map_=t,t&&((this.target_?this.target_:t.getOverlayContainerStopEvent()).appendChild(this.element),this.render!==p&&this.listenerKeys.push(O(t,z,this.render,this)),t.render())},e.prototype.render=function(t){},e.prototype.setTarget=function(t){this.target_="string"==typeof t?document.getElementById(t):t},e}(G),et="ol-hidden",nt="ol-control",it=new RegExp(["^\\s*(?=(?:(?:[-a-z]+\\s*){0,2}(italic|oblique))?)","(?=(?:(?:[-a-z]+\\s*){0,2}(small-caps))?)","(?=(?:(?:[-a-z]+\\s*){0,2}(bold(?:er)?|lighter|[1-9]00 ))?)","(?:(?:normal|\\1|\\2|\\3)\\s*){0,3}((?:xx?-)?","(?:small|large)|medium|smaller|larger|[\\.\\d]+(?:\\%|in|[cem]m|ex|p[ctx]))","(?:\\s*\\/\\s*(normal|[\\.\\d]+(?:\\%|in|[cem]m|ex|p[ctx])?))","?\\s*([-,\\\"\\'\\sa-z]+?)\\s*$"].join(""),"i"),rt=["style","variant","weight","size","lineHeight","family"],ot=function(t){var e=t.match(it);if(!e)return null;for(var n={lineHeight:"normal",size:"1.2em",style:"normal",weight:"normal",variant:"normal"},i=0,r=rt.length;i<r;++i){var o=e[i+1];void 0!==o&&(n[rt[i]]=o)}return n.families=n.family.split(/,\s?/),n};function st(t){return 1===t?"":String(Math.round(100*t)/100)}var at="opacity",lt="visible",ht="extent",ut="zIndex",ct="maxResolution",pt="minResolution",ft="maxZoom",dt="minZoom",gt="source",_t=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),yt=function(t){function e(e){var n=this,i="Assertion failed. See https://openlayers.org/en/v"+"6.14.1".split("-")[0]+"/doc/errors/#"+e+" for details.";return(n=t.call(this,i)||this).code=e,n.name="AssertionError",n.message=i,n}return _t(e,t),e}(Error);function vt(t,e){if(!t)throw new yt(e)}function mt(t,e,n){return Math.min(Math.max(t,e),n)}var xt="cosh"in Math?Math.cosh:function(t){var e=Math.exp(t);return(e+1/e)/2},Ct="log2"in Math?Math.log2:function(t){return Math.log(t)*Math.LOG2E};function wt(t,e,n,i,r,o){var s=r-n,a=o-i;if(0!==s||0!==a){var l=((t-n)*s+(e-i)*a)/(s*s+a*a);l>1?(n=r,i=o):l>0&&(n+=s*l,i+=a*l)}return St(t,e,n,i)}function St(t,e,n,i){var r=n-t,o=i-e;return r*r+o*o}function Et(t){return t*Math.PI/180}function Tt(t,e){var n=t%e;return n*e<0?n+e:n}function bt(t,e,n){return t+n*(e-t)}function Ot(t,e){var n=Math.pow(10,e);return Math.round(t*n)/n}function Rt(t,e){return Math.floor(Ot(t,e))}function It(t,e){return Math.ceil(Ot(t,e))}var Pt=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),Mt=function(t){function e(e){var n=t.call(this)||this;n.on,n.once,n.un,n.background_=e.background;var i=f({},e);return"object"==typeof e.properties&&(delete i.properties,f(i,e.properties)),i.opacity=void 0!==e.opacity?e.opacity:1,vt("number"==typeof i.opacity,64),i.visible=void 0===e.visible||e.visible,i.zIndex=e.zIndex,i.maxResolution=void 0!==e.maxResolution?e.maxResolution:1/0,i.minResolution=void 0!==e.minResolution?e.minResolution:0,i.minZoom=void 0!==e.minZoom?e.minZoom:-1/0,i.maxZoom=void 0!==e.maxZoom?e.maxZoom:1/0,n.className_=void 0!==i.className?i.className:"ol-layer",delete i.className,n.setProperties(i),n.state_=null,n}return Pt(e,t),e.prototype.getBackground=function(){return this.background_},e.prototype.getClassName=function(){return this.className_},e.prototype.getLayerState=function(t){var e=this.state_||{layer:this,managed:void 0===t||t},n=this.getZIndex();return e.opacity=mt(Math.round(100*this.getOpacity())/100,0,1),e.visible=this.getVisible(),e.extent=this.getExtent(),e.zIndex=void 0!==n||e.managed?n:1/0,e.maxResolution=this.getMaxResolution(),e.minResolution=Math.max(this.getMinResolution(),0),e.minZoom=this.getMinZoom(),e.maxZoom=this.getMaxZoom(),this.state_=e,e},e.prototype.getLayersArray=function(t){return L()},e.prototype.getLayerStatesArray=function(t){return L()},e.prototype.getExtent=function(){return this.get(ht)},e.prototype.getMaxResolution=function(){return this.get(ct)},e.prototype.getMinResolution=function(){return this.get(pt)},e.prototype.getMinZoom=function(){return this.get(dt)},e.prototype.getMaxZoom=function(){return this.get(ft)},e.prototype.getOpacity=function(){return this.get(at)},e.prototype.getSourceState=function(){return L()},e.prototype.getVisible=function(){return this.get(lt)},e.prototype.getZIndex=function(){return this.get(ut)},e.prototype.setBackground=function(t){this.background_=t,this.changed()},e.prototype.setExtent=function(t){this.set(ht,t)},e.prototype.setMaxResolution=function(t){this.set(ct,t)},e.prototype.setMinResolution=function(t){this.set(pt,t)},e.prototype.setMaxZoom=function(t){this.set(ft,t)},e.prototype.setMinZoom=function(t){this.set(dt,t)},e.prototype.setOpacity=function(t){vt("number"==typeof t,64),this.set(at,t)},e.prototype.setVisible=function(t){this.set(lt,t)},e.prototype.setZIndex=function(t){this.set(ut,t)},e.prototype.disposeInternal=function(){this.state_&&(this.state_.layer=null,this.state_=null),t.prototype.disposeInternal.call(this)},e}(G),Ft="precompose",Lt="rendercomplete",At="undefined",Dt="ready",kt=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}();function jt(t,e){if(!t.visible)return!1;var n=e.resolution;if(n<t.minResolution||n>=t.maxResolution)return!1;var i=e.zoom;return i>t.minZoom&&i<=t.maxZoom}var Gt=function(t){function e(e){var n=this,i=f({},e);delete i.source,(n=t.call(this,i)||this).on,n.once,n.un,n.mapPrecomposeKey_=null,n.mapRenderKey_=null,n.sourceChangeKey_=null,n.renderer_=null,n.rendered=!1,e.render&&(n.render=e.render),e.map&&n.setMap(e.map),n.addChangeListener(gt,n.handleSourcePropertyChange_);var r=e.source?e.source:null;return n.setSource(r),n}return kt(e,t),e.prototype.getLayersArray=function(t){var e=t||[];return e.push(this),e},e.prototype.getLayerStatesArray=function(t){var e=t||[];return e.push(this.getLayerState()),e},e.prototype.getSource=function(){return this.get(gt)||null},e.prototype.getRenderSource=function(){return this.getSource()},e.prototype.getSourceState=function(){var t=this.getSource();return t?t.getState():At},e.prototype.handleSourceChange_=function(){this.changed()},e.prototype.handleSourcePropertyChange_=function(){this.sourceChangeKey_&&(I(this.sourceChangeKey_),this.sourceChangeKey_=null);var t=this.getSource();t&&(this.sourceChangeKey_=O(t,x,this.handleSourceChange_,this)),this.changed()},e.prototype.getFeatures=function(t){return this.renderer_?this.renderer_.getFeatures(t):new Promise((function(t){return t([])}))},e.prototype.getData=function(t){return this.renderer_&&this.rendered?this.renderer_.getData(t):null},e.prototype.render=function(t,e){var n=this.getRenderer();if(n.prepareFrame(t))return this.rendered=!0,n.renderFrame(t,e)},e.prototype.unrender=function(){this.rendered=!1},e.prototype.setMapInternal=function(t){t||this.unrender(),this.set("map",t)},e.prototype.getMapInternal=function(){return this.get("map")},e.prototype.setMap=function(t){this.mapPrecomposeKey_&&(I(this.mapPrecomposeKey_),this.mapPrecomposeKey_=null),t||this.changed(),this.mapRenderKey_&&(I(this.mapRenderKey_),this.mapRenderKey_=null),t&&(this.mapPrecomposeKey_=O(t,Ft,(function(t){var e=t.frameState.layerStatesArray,n=this.getLayerState(!1);vt(!e.some((function(t){return t.layer===n.layer})),67),e.push(n)}),this),this.mapRenderKey_=O(this,x,t.render,t),this.changed())},e.prototype.setSource=function(t){this.set(gt,t)},e.prototype.getRenderer=function(){return this.renderer_||(this.renderer_=this.createRenderer()),this.renderer_},e.prototype.hasRenderer=function(){return!!this.renderer_},e.prototype.createRenderer=function(){return null},e.prototype.disposeInternal=function(){this.renderer_&&(this.renderer_.dispose(),delete this.renderer_),this.setSource(null),t.prototype.disposeInternal.call(this)},e}(Mt),zt=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),Wt=function(t){function e(e){var n=this,i=e||{};(n=t.call(this,{element:document.createElement("div"),render:i.render,target:i.target})||this).ulElement_=document.createElement("ul"),n.collapsed_=void 0===i.collapsed||i.collapsed,n.userCollapsed_=n.collapsed_,n.overrideCollapsible_=void 0!==i.collapsible,n.collapsible_=void 0===i.collapsible||i.collapsible,n.collapsible_||(n.collapsed_=!1);var r=void 0!==i.className?i.className:"ol-attribution",o=void 0!==i.tipLabel?i.tipLabel:"Attributions",s=void 0!==i.expandClassName?i.expandClassName:r+"-expand",a=void 0!==i.collapseLabel?i.collapseLabel:"›",l=void 0!==i.collapseClassName?i.collapseClassName:r+"-collapse";"string"==typeof a?(n.collapseLabel_=document.createElement("span"),n.collapseLabel_.textContent=a,n.collapseLabel_.className=l):n.collapseLabel_=a;var h=void 0!==i.label?i.label:"i";"string"==typeof h?(n.label_=document.createElement("span"),n.label_.textContent=h,n.label_.className=s):n.label_=h;var u=n.collapsible_&&!n.collapsed_?n.collapseLabel_:n.label_;n.toggleButton_=document.createElement("button"),n.toggleButton_.setAttribute("type","button"),n.toggleButton_.setAttribute("aria-expanded",String(!n.collapsed_)),n.toggleButton_.title=o,n.toggleButton_.appendChild(u),n.toggleButton_.addEventListener(w,n.handleClick_.bind(n),!1);var c=r+" ol-unselectable "+nt+(n.collapsed_&&n.collapsible_?" ol-collapsed":"")+(n.collapsible_?"":" ol-uncollapsible"),p=n.element;return p.className=c,p.appendChild(n.toggleButton_),p.appendChild(n.ulElement_),n.renderedAttributions_=[],n.renderedVisible_=!0,n}return zt(e,t),e.prototype.collectSourceAttributions_=function(t){for(var e={},n=[],i=!0,r=t.layerStatesArray,o=0,s=r.length;o<s;++o){var a=r[o];if(jt(a,t.viewState)){var l=a.layer.getSource();if(l){var h=l.getAttributions();if(h){var u=h(t);if(u)if(i=i&&!1!==l.getAttributionsCollapsible(),Array.isArray(u))for(var c=0,p=u.length;c<p;++c)u[c]in e||(n.push(u[c]),e[u[c]]=!0);else u in e||(n.push(u),e[u]=!0)}}}}return this.overrideCollapsible_||this.setCollapsible(i),n},e.prototype.updateElement_=function(t){if(t){var e=this.collectSourceAttributions_(t),n=e.length>0;if(this.renderedVisible_!=n&&(this.element.style.display=n?"":"none",this.renderedVisible_=n),!h(e,this.renderedAttributions_)){!function(t){for(;t.lastChild;)t.removeChild(t.lastChild)}(this.ulElement_);for(var i=0,r=e.length;i<r;++i){var o=document.createElement("li");o.innerHTML=e[i],this.ulElement_.appendChild(o)}this.renderedAttributions_=e}}else this.renderedVisible_&&(this.element.style.display="none",this.renderedVisible_=!1)},e.prototype.handleClick_=function(t){t.preventDefault(),this.handleToggle_(),this.userCollapsed_=this.collapsed_},e.prototype.handleToggle_=function(){this.element.classList.toggle("ol-collapsed"),this.collapsed_?J(this.collapseLabel_,this.label_):J(this.label_,this.collapseLabel_),this.collapsed_=!this.collapsed_,this.toggleButton_.setAttribute("aria-expanded",String(!this.collapsed_))},e.prototype.getCollapsible=function(){return this.collapsible_},e.prototype.setCollapsible=function(t){this.collapsible_!==t&&(this.collapsible_=t,this.element.classList.toggle("ol-uncollapsible"),this.userCollapsed_&&this.handleToggle_())},e.prototype.setCollapsed=function(t){this.userCollapsed_=t,this.collapsible_&&this.collapsed_!==t&&this.handleToggle_()},e.prototype.getCollapsed=function(){return this.collapsed_},e.prototype.render=function(t){this.updateElement_(t.frameState)},e}(tt),Xt="pointermove",Nt="pointerdown",Yt={RADIANS:"radians",DEGREES:"degrees",FEET:"ft",METERS:"m",PIXELS:"pixels",TILE_PIXELS:"tile-pixels",USFEET:"us-ft"},Bt={};Bt[Yt.RADIANS]=6370997/(2*Math.PI),Bt[Yt.DEGREES]=2*Math.PI*6370997/360,Bt[Yt.FEET]=.3048,Bt[Yt.METERS]=1,Bt[Yt.USFEET]=1200/3937;var Kt=Yt,Zt=function(){function t(t){this.code_=t.code,this.units_=t.units,this.extent_=void 0!==t.extent?t.extent:null,this.worldExtent_=void 0!==t.worldExtent?t.worldExtent:null,this.axisOrientation_=void 0!==t.axisOrientation?t.axisOrientation:"enu",this.global_=void 0!==t.global&&t.global,this.canWrapX_=!(!this.global_||!this.extent_),this.getPointResolutionFunc_=t.getPointResolution,this.defaultTileGrid_=null,this.metersPerUnit_=t.metersPerUnit}return t.prototype.canWrapX=function(){return this.canWrapX_},t.prototype.getCode=function(){return this.code_},t.prototype.getExtent=function(){return this.extent_},t.prototype.getUnits=function(){return this.units_},t.prototype.getMetersPerUnit=function(){return this.metersPerUnit_||Bt[this.units_]},t.prototype.getWorldExtent=function(){return this.worldExtent_},t.prototype.getAxisOrientation=function(){return this.axisOrientation_},t.prototype.isGlobal=function(){return this.global_},t.prototype.setGlobal=function(t){this.global_=t,this.canWrapX_=!(!t||!this.extent_)},t.prototype.getDefaultTileGrid=function(){return this.defaultTileGrid_},t.prototype.setDefaultTileGrid=function(t){this.defaultTileGrid_=t},t.prototype.setExtent=function(t){this.extent_=t,this.canWrapX_=!(!this.global_||!t)},t.prototype.setWorldExtent=function(t){this.worldExtent_=t},t.prototype.setGetPointResolution=function(t){this.getPointResolutionFunc_=t},t.prototype.getPointResolutionFunc=function(){return this.getPointResolutionFunc_},t}(),Vt=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),Ut=6378137,Ht=Math.PI*Ut,qt=[-Ht,-Ht,Ht,Ht],Jt=[-180,-85,180,85],Qt=Ut*Math.log(Math.tan(Math.PI/2)),$t=function(t){function e(e){return t.call(this,{code:e,units:Kt.METERS,extent:qt,global:!0,worldExtent:Jt,getPointResolution:function(t,e){return t/xt(e[1]/Ut)}})||this}return Vt(e,t),e}(Zt),te=[new $t("EPSG:3857"),new $t("EPSG:102100"),new $t("EPSG:102113"),new $t("EPSG:900913"),new $t("http://www.opengis.net/def/crs/EPSG/0/3857"),new $t("http://www.opengis.net/gml/srs/epsg.xml#3857")];var ee=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),ne=[-180,-90,180,90],ie=6378137*Math.PI/180,re=function(t){function e(e,n){return t.call(this,{code:e,units:Kt.DEGREES,extent:ne,axisOrientation:n,global:!0,metersPerUnit:ie,worldExtent:ne})||this}return ee(e,t),e}(Zt),oe=[new re("CRS:84"),new re("EPSG:4326","neu"),new re("urn:ogc:def:crs:OGC:1.3:CRS84"),new re("urn:ogc:def:crs:OGC:2:84"),new re("http://www.opengis.net/def/crs/OGC/1.3/CRS84"),new re("http://www.opengis.net/gml/srs/epsg.xml#4326","neu"),new re("http://www.opengis.net/def/crs/EPSG/0/4326","neu")],se={},ae={};function le(t,e,n){var i=t.getCode(),r=e.getCode();i in ae||(ae[i]={}),ae[i][r]=n}var he="top-left";function ue(t){for(var e=[1/0,1/0,-1/0,-1/0],n=0,i=t.length;n<i;++n)we(e,t[n]);return e}function ce(t,e,n){return n?(n[0]=t[0]-e,n[1]=t[1]-e,n[2]=t[2]+e,n[3]=t[3]+e,n):[t[0]-e,t[1]-e,t[2]+e,t[3]+e]}function pe(t,e){return e?(e[0]=t[0],e[1]=t[1],e[2]=t[2],e[3]=t[3],e):t.slice()}function fe(t,e,n){var i,r;return(i=e<t[0]?t[0]-e:t[2]<e?e-t[2]:0)*i+(r=n<t[1]?t[1]-n:t[3]<n?n-t[3]:0)*r}function de(t,e){return _e(t,e[0],e[1])}function ge(t,e){return t[0]<=e[0]&&e[2]<=t[2]&&t[1]<=e[1]&&e[3]<=t[3]}function _e(t,e,n){return t[0]<=e&&e<=t[2]&&t[1]<=n&&n<=t[3]}function ye(t,e){var n=t[0],i=t[1],r=t[2],o=t[3],s=e[0],a=e[1],l=0;return s<n?l|=16:s>r&&(l|=4),a<i?l|=8:a>o&&(l|=2),0===l&&(l=1),l}function ve(t,e,n,i,r){return r?(r[0]=t,r[1]=e,r[2]=n,r[3]=i,r):[t,e,n,i]}function me(t){return ve(1/0,1/0,-1/0,-1/0,t)}function xe(t,e,n,i,r){return Se(me(r),t,e,n,i)}function Ce(t,e){return t[0]==e[0]&&t[2]==e[2]&&t[1]==e[1]&&t[3]==e[3]}function we(t,e){e[0]<t[0]&&(t[0]=e[0]),e[0]>t[2]&&(t[2]=e[0]),e[1]<t[1]&&(t[1]=e[1]),e[1]>t[3]&&(t[3]=e[1])}function Se(t,e,n,i,r){for(;n<i;n+=r)Ee(t,e[n],e[n+1]);return t}function Ee(t,e,n){t[0]=Math.min(t[0],e),t[1]=Math.min(t[1],n),t[2]=Math.max(t[2],e),t[3]=Math.max(t[3],n)}function Te(t,e){var n;return(n=e(Oe(t)))||(n=e(Re(t)))||(n=e(De(t)))?n:(n=e(Ae(t)))||!1}function be(t){var e=0;return Ge(t)||(e=ke(t)*Fe(t)),e}function Oe(t){return[t[0],t[1]]}function Re(t){return[t[2],t[1]]}function Ie(t){return[(t[0]+t[2])/2,(t[1]+t[3])/2]}function Pe(t,e){var n;return"bottom-left"===e?n=Oe(t):"bottom-right"===e?n=Re(t):e===he?n=Ae(t):"top-right"===e?n=De(t):vt(!1,13),n}function Me(t,e,n,i,r){var o=e*i[0]/2,s=e*i[1]/2,a=Math.cos(n),l=Math.sin(n),h=o*a,u=o*l,c=s*a,p=s*l,f=t[0],d=t[1],g=f-h+p,_=f-h-p,y=f+h-p,v=f+h+p,m=d-u-c,x=d-u+c,C=d+u+c,w=d+u-c;return ve(Math.min(g,_,y,v),Math.min(m,x,C,w),Math.max(g,_,y,v),Math.max(m,x,C,w),r)}function Fe(t){return t[3]-t[1]}function Le(t,e,n){var i=n||[1/0,1/0,-1/0,-1/0];return je(t,e)?(t[0]>e[0]?i[0]=t[0]:i[0]=e[0],t[1]>e[1]?i[1]=t[1]:i[1]=e[1],t[2]<e[2]?i[2]=t[2]:i[2]=e[2],t[3]<e[3]?i[3]=t[3]:i[3]=e[3]):me(i),i}function Ae(t){return[t[0],t[3]]}function De(t){return[t[2],t[3]]}function ke(t){return t[2]-t[0]}function je(t,e){return t[0]<=e[2]&&t[2]>=e[0]&&t[1]<=e[3]&&t[3]>=e[1]}function Ge(t){return t[2]<t[0]||t[3]<t[1]}function ze(t,e){for(var n=!0,i=t.length-1;i>=0;--i)if(t[i]!=e[i]){n=!1;break}return n}function We(t,e){var n=Math.cos(e),i=Math.sin(e),r=t[0]*n-t[1]*i,o=t[1]*n+t[0]*i;return t[0]=r,t[1]=o,t}function Xe(t,e){if(e.canWrapX()){var n=ke(e.getExtent()),i=function(t,e,n){var i=e.getExtent(),r=0;if(e.canWrapX()&&(t[0]<i[0]||t[0]>i[2])){var o=n||ke(i);r=Math.floor((t[0]-i[0])/o)}return r}(t,e,n);i&&(t[0]-=i*n)}return t}function Ne(t,e,n){var i=n||6371008.8,r=Et(t[1]),o=Et(e[1]),s=(o-r)/2,a=Et(e[0]-t[0])/2,l=Math.sin(s)*Math.sin(s)+Math.sin(a)*Math.sin(a)*Math.cos(r)*Math.cos(o);return 2*i*Math.atan2(Math.sqrt(l),Math.sqrt(1-l))}var Ye=!0;function Be(t){Ye=!(void 0===t||t)}function Ke(t,e,n){var i;if(void 0!==e){for(var r=0,o=t.length;r<o;++r)e[r]=t[r];i=e}else i=t.slice();return i}function Ze(t,e,n){if(void 0!==e&&t!==e){for(var i=0,r=t.length;i<r;++i)e[i]=t[i];t=e}return t}function Ve(t){!function(t,e){se[t]=e}(t.getCode(),t),le(t,t,Ke)}function Ue(t){return"string"==typeof t?se[e=t]||se[e.replace(/urn:(x-)?ogc:def:crs:EPSG:(.*:)?(\w+)$/,"EPSG:$3")]||null:t||null;var e}function He(t,e,n,i){var r,o=(t=Ue(t)).getPointResolutionFunc();if(o)r=o(e,n),i&&i!==t.getUnits()&&(a=t.getMetersPerUnit())&&(r=r*a/Bt[i]);else{var s=t.getUnits();if(s==Kt.DEGREES&&!i||i==Kt.DEGREES)r=e;else{var a,l=$e(t,Ue("EPSG:4326"));if(l===Ze&&s!==Kt.DEGREES)r=e*t.getMetersPerUnit();else{var h=[n[0]-e/2,n[1],n[0]+e/2,n[1],n[0],n[1]-e/2,n[0],n[1]+e/2];r=(Ne((h=l(h,h,2)).slice(0,2),h.slice(2,4))+Ne(h.slice(4,6),h.slice(6,8)))/2}void 0!==(a=i?Bt[i]:t.getMetersPerUnit())&&(r/=a)}}return r}function qe(t){!function(t){t.forEach(Ve)}(t),t.forEach((function(e){t.forEach((function(t){e!==t&&le(e,t,Ke)}))}))}function Je(t,e){return t?"string"==typeof t?Ue(t):t:Ue(e)}function Qe(t,e){if(t===e)return!0;var n=t.getUnits()===e.getUnits();return(t.getCode()===e.getCode()||$e(t,e)===Ke)&&n}function $e(t,e){var n=function(t,e){var n;return t in ae&&e in ae[t]&&(n=ae[t][e]),n}(t.getCode(),e.getCode());return n||(n=Ze),n}function tn(t,e){return $e(Ue(t),Ue(e))}function en(t,e,n){return tn(e,n)(t,void 0,t.length)}function nn(t,e,n,i){return function(t,e,n,i){var r=[];if(i>1)for(var o=t[2]-t[0],s=t[3]-t[1],a=0;a<i;++a)r.push(t[0]+o*a/i,t[1],t[2],t[1]+s*a/i,t[2]-o*a/i,t[3],t[0],t[3]-s*a/i);else r=[t[0],t[1],t[2],t[1],t[2],t[3],t[0],t[3]];e(r,r,2);for(var l=[],h=[],u=(a=0,r.length);a<u;a+=2)l.push(r[a]),h.push(r[a+1]);return function(t,e,n){return ve(Math.min.apply(null,t),Math.min.apply(null,e),Math.max.apply(null,t),Math.max.apply(null,e),n)}(l,h,n)}(t,tn(e,n),void 0,i)}var rn,on,sn,an=null;function ln(){return an}function hn(t,e){return t}function un(t,e){return Ye&&!ze(t,[0,0])&&t[0]>=-180&&t[0]<=180&&t[1]>=-90&&t[1]<=90&&(Ye=!1,console.warn("Call useGeographic() from ol/proj once to work with [longitude, latitude] coordinates.")),t}function cn(t,e){return t}function pn(t,e){return t}function fn(t,e){return t}qe(te),qe(oe),rn=te,on=function(t,e,n){var i=t.length,r=n>1?n:2,o=e;void 0===o&&(o=r>2?t.slice():new Array(i));for(var s=0;s<i;s+=r){o[s]=Ht*t[s]/180;var a=Ut*Math.log(Math.tan(Math.PI*(+t[s+1]+90)/360));a>Qt?a=Qt:a<-Qt&&(a=-Qt),o[s+1]=a}return o},sn=function(t,e,n){var i=t.length,r=n>1?n:2,o=e;void 0===o&&(o=r>2?t.slice():new Array(i));for(var s=0;s<i;s+=r)o[s]=180*t[s]/Ht,o[s+1]=360*Math.atan(Math.exp(t[s+1]/Ut))/Math.PI-90;return o},oe.forEach((function(t){rn.forEach((function(e){le(t,e,on),le(e,t,sn)}))}));var dn=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),gn="projection",_n="coordinateFormat",yn=function(t){function e(e){var n=this,i=e||{},r=document.createElement("div");r.className=void 0!==i.className?i.className:"ol-mouse-position",(n=t.call(this,{element:r,render:i.render,target:i.target})||this).on,n.once,n.un,n.addChangeListener(gn,n.handleProjectionChanged_),i.coordinateFormat&&n.setCoordinateFormat(i.coordinateFormat),i.projection&&n.setProjection(i.projection);var o=!0,s="&#160;";return"undefinedHTML"in i?(void 0!==i.undefinedHTML&&(s=i.undefinedHTML),o=!!s):"placeholder"in i&&(!1===i.placeholder?o=!1:s=String(i.placeholder)),n.placeholder_=s,n.renderOnMouseOut_=o,n.renderedHTML_=r.innerHTML,n.mapProjection_=null,n.transform_=null,n}return dn(e,t),e.prototype.handleProjectionChanged_=function(){this.transform_=null},e.prototype.getCoordinateFormat=function(){return this.get(_n)},e.prototype.getProjection=function(){return this.get(gn)},e.prototype.handleMouseMove=function(t){var e=this.getMap();this.updateHTML_(e.getEventPixel(t))},e.prototype.handleMouseOut=function(t){this.updateHTML_(null)},e.prototype.setMap=function(e){if(t.prototype.setMap.call(this,e),e){var n=e.getViewport();this.listenerKeys.push(O(n,Xt,this.handleMouseMove,this)),this.renderOnMouseOut_&&this.listenerKeys.push(O(n,"pointerout",this.handleMouseOut,this)),this.updateHTML_(null)}},e.prototype.setCoordinateFormat=function(t){this.set(_n,t)},e.prototype.setProjection=function(t){this.set(gn,Ue(t))},e.prototype.updateHTML_=function(t){var e=this.placeholder_;if(t&&this.mapProjection_){if(!this.transform_){var n=this.getProjection();this.transform_=n?$e(this.mapProjection_,n):Ze}var i=this.getMap().getCoordinateFromPixelInternal(t);if(i){var r=ln();r&&(this.transform_=$e(this.mapProjection_,r)),this.transform_(i,i);var o=this.getCoordinateFormat();e=o?o(i):i.toString()}}this.renderedHTML_&&e===this.renderedHTML_||(this.element.innerHTML=e,this.renderedHTML_=e)},e.prototype.render=function(t){var e=t.frameState;e?this.mapProjection_!=e.viewState.projection&&(this.mapProjection_=e.viewState.projection,this.transform_=null):this.mapProjection_=null},e}(tt),vn=yn;function mn(t){return Math.pow(t,3)}function xn(t){return 1-mn(1-t)}function Cn(t){return 3*t*t-2*t*t*t}function wn(t){return t}var Sn,En=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),Tn=function(t){function e(e){var n=this,i=e||{};n=t.call(this,{element:document.createElement("div"),target:i.target})||this;var r=void 0!==i.className?i.className:"ol-zoom",o=void 0!==i.delta?i.delta:1,s=void 0!==i.zoomInClassName?i.zoomInClassName:r+"-in",a=void 0!==i.zoomOutClassName?i.zoomOutClassName:r+"-out",l=void 0!==i.zoomInLabel?i.zoomInLabel:"+",h=void 0!==i.zoomOutLabel?i.zoomOutLabel:"–",u=void 0!==i.zoomInTipLabel?i.zoomInTipLabel:"Zoom in",c=void 0!==i.zoomOutTipLabel?i.zoomOutTipLabel:"Zoom out",p=document.createElement("button");p.className=s,p.setAttribute("type","button"),p.title=u,p.appendChild("string"==typeof l?document.createTextNode(l):l),p.addEventListener(w,n.handleClick_.bind(n,o),!1);var f=document.createElement("button");f.className=a,f.setAttribute("type","button"),f.title=c,f.appendChild("string"==typeof h?document.createTextNode(h):h),f.addEventListener(w,n.handleClick_.bind(n,-o),!1);var d=r+" ol-unselectable "+nt,g=n.element;return g.className=d,g.appendChild(p),g.appendChild(f),n.duration_=void 0!==i.duration?i.duration:250,n}return En(e,t),e.prototype.handleClick_=function(t,e){e.preventDefault(),this.zoomByDelta_(t)},e.prototype.zoomByDelta_=function(t){var e=this.getMap().getView();if(e){var n=e.getZoom();if(void 0!==n){var i=e.getConstrainedZoom(n+t);this.duration_>0?(e.getAnimating()&&e.cancelAnimations(),e.animate({zoom:i,duration:this.duration_,easing:xn})):e.setZoom(i)}}},e}(tt),bn="XY",On="XYM",Rn="XYZM",In="Point",Pn="LineString",Mn="Polygon",Fn="MultiPoint",Ln="MultiLineString",An="MultiPolygon",Dn="GeometryCollection",kn="Circle";function jn(t,e){var n=e[0],i=e[1];return e[0]=t[0]*n+t[2]*i+t[4],e[1]=t[1]*n+t[3]*i+t[5],e}function Gn(t,e,n,i,r,o,s,a){var l=Math.sin(o),h=Math.cos(o);return t[0]=i*h,t[1]=r*l,t[2]=-i*l,t[3]=r*h,t[4]=s*i*h-a*i*l+e,t[5]=s*r*l+a*r*h+n,t}function zn(t,e){var n,i=(n=e)[0]*n[3]-n[1]*n[2];vt(0!==i,32);var r=e[0],o=e[1],s=e[2],a=e[3],l=e[4],h=e[5];return t[0]=a/i,t[1]=-o/i,t[2]=-s/i,t[3]=r/i,t[4]=(s*h-a*l)/i,t[5]=-(r*h-o*l)/i,t}function Wn(t){var e="matrix("+t.join(", ")+")";if(V)return e;var n=Sn||(Sn=document.createElement("div"));return n.style.transform=e,n.style.transform}function Xn(t,e,n,i,r,o){for(var s=o||[],a=0,l=e;l<n;l+=i){var h=t[l],u=t[l+1];s[a++]=r[0]*h+r[2]*u+r[4],s[a++]=r[1]*h+r[3]*u+r[5]}return o&&s.length!=a&&(s.length=a),s}function Nn(t,e,n,i,r,o,s){for(var a=s||[],l=Math.cos(r),h=Math.sin(r),u=o[0],c=o[1],p=0,f=e;f<n;f+=i){var d=t[f]-u,g=t[f+1]-c;a[p++]=u+d*l-g*h,a[p++]=c+d*h+g*l;for(var _=f+2;_<f+i;++_)a[p++]=t[_]}return s&&a.length!=p&&(a.length=p),a}new Array(6);var Yn=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),Bn=[1,0,0,1,0,0],Kn=function(t){function e(){var e,n,i,r,o,s=t.call(this)||this;return s.extent_=[1/0,1/0,-1/0,-1/0],s.extentRevision_=-1,s.simplifiedGeometryMaxMinSquaredTolerance=0,s.simplifiedGeometryRevision=0,s.simplifyTransformedInternal=(e=function(t,e,n){if(!n)return this.getSimplifiedGeometry(e);var i=this.clone();return i.applyTransform(n),i.getSimplifiedGeometry(e)},o=!1,function(){var t=Array.prototype.slice.call(arguments);return o&&this===r&&h(t,i)||(o=!0,r=this,i=t,n=e.apply(this,arguments)),n}),s}return Yn(e,t),e.prototype.simplifyTransformed=function(t,e){return this.simplifyTransformedInternal(this.getRevision(),t,e)},e.prototype.clone=function(){return L()},e.prototype.closestPointXY=function(t,e,n,i){return L()},e.prototype.containsXY=function(t,e){var n=this.getClosestPoint([t,e]);return n[0]===t&&n[1]===e},e.prototype.getClosestPoint=function(t,e){var n=e||[NaN,NaN];return this.closestPointXY(t[0],t[1],n,1/0),n},e.prototype.intersectsCoordinate=function(t){return this.containsXY(t[0],t[1])},e.prototype.computeExtent=function(t){return L()},e.prototype.getExtent=function(t){if(this.extentRevision_!=this.getRevision()){var e=this.computeExtent(this.extent_);(isNaN(e[0])||isNaN(e[1]))&&me(e),this.extentRevision_=this.getRevision()}return function(t,e){return e?(e[0]=t[0],e[1]=t[1],e[2]=t[2],e[3]=t[3],e):t}(this.extent_,t)},e.prototype.rotate=function(t,e){L()},e.prototype.scale=function(t,e,n){L()},e.prototype.simplify=function(t){return this.getSimplifiedGeometry(t*t)},e.prototype.getSimplifiedGeometry=function(t){return L()},e.prototype.getType=function(){return L()},e.prototype.applyTransform=function(t){L()},e.prototype.intersectsExtent=function(t){return L()},e.prototype.translate=function(t,e){L()},e.prototype.transform=function(t,e){var n=Ue(t),i=n.getUnits()==Kt.TILE_PIXELS?function(t,i,r){var o=n.getExtent(),s=n.getWorldExtent(),a=Fe(s)/Fe(o);return Gn(Bn,s[0],s[3],a,-a,0,0,0),Xn(t,0,t.length,r,Bn,i),tn(n,e)(t,i,r)}:tn(n,e);return this.applyTransform(i),this},e}(G),Zn=Kn,Vn=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),Un=function(t){function e(){var e=t.call(this)||this;return e.layout=bn,e.stride=2,e.flatCoordinates=null,e}return Vn(e,t),e.prototype.computeExtent=function(t){return xe(this.flatCoordinates,0,this.flatCoordinates.length,this.stride,t)},e.prototype.getCoordinates=function(){return L()},e.prototype.getFirstCoordinate=function(){return this.flatCoordinates.slice(0,this.stride)},e.prototype.getFlatCoordinates=function(){return this.flatCoordinates},e.prototype.getLastCoordinate=function(){return this.flatCoordinates.slice(this.flatCoordinates.length-this.stride)},e.prototype.getLayout=function(){return this.layout},e.prototype.getSimplifiedGeometry=function(t){if(this.simplifiedGeometryRevision!==this.getRevision()&&(this.simplifiedGeometryMaxMinSquaredTolerance=0,this.simplifiedGeometryRevision=this.getRevision()),t<0||0!==this.simplifiedGeometryMaxMinSquaredTolerance&&t<=this.simplifiedGeometryMaxMinSquaredTolerance)return this;var e=this.getSimplifiedGeometryInternal(t);return e.getFlatCoordinates().length<this.flatCoordinates.length?e:(this.simplifiedGeometryMaxMinSquaredTolerance=t,this)},e.prototype.getSimplifiedGeometryInternal=function(t){return this},e.prototype.getStride=function(){return this.stride},e.prototype.setFlatCoordinates=function(t,e){this.stride=Hn(t),this.layout=t,this.flatCoordinates=e},e.prototype.setCoordinates=function(t,e){L()},e.prototype.setLayout=function(t,e,n){var i;if(t)i=Hn(t);else{for(var r=0;r<n;++r){if(0===e.length)return this.layout=bn,void(this.stride=2);e=e[0]}t=function(t){var e;return 2==t?e=bn:3==t?e="XYZ":4==t&&(e=Rn),e}(i=e.length)}this.layout=t,this.stride=i},e.prototype.applyTransform=function(t){this.flatCoordinates&&(t(this.flatCoordinates,this.flatCoordinates,this.stride),this.changed())},e.prototype.rotate=function(t,e){var n=this.getFlatCoordinates();if(n){var i=this.getStride();Nn(n,0,n.length,i,t,e,n),this.changed()}},e.prototype.scale=function(t,e,n){var i=e;void 0===i&&(i=t);var r=n;r||(r=Ie(this.getExtent()));var o=this.getFlatCoordinates();if(o){var s=this.getStride();!function(t,e,n,i,r,o,s,a){for(var l=a||[],h=s[0],u=s[1],c=0,p=0;p<n;p+=i){var f=t[p]-h,d=t[p+1]-u;l[c++]=h+r*f,l[c++]=u+o*d;for(var g=p+2;g<p+i;++g)l[c++]=t[g]}a&&l.length!=c&&(l.length=c)}(o,0,o.length,s,t,i,r,o),this.changed()}},e.prototype.translate=function(t,e){var n=this.getFlatCoordinates();if(n){var i=this.getStride();!function(t,e,n,i,r,o,s){for(var a=s||[],l=0,h=0;h<n;h+=i){a[l++]=t[h]+r,a[l++]=t[h+1]+o;for(var u=h+2;u<h+i;++u)a[l++]=t[u]}s&&a.length!=l&&(a.length=l)}(n,0,n.length,i,t,e,n),this.changed()}},e}(Zn);function Hn(t){var e;return t==bn?e=2:"XYZ"==t||t==On?e=3:t==Rn&&(e=4),e}var qn=Un;function Jn(t,e,n,i,r,o,s){var a,l=t[e],h=t[e+1],u=t[n]-l,c=t[n+1]-h;if(0===u&&0===c)a=e;else{var p=((r-l)*u+(o-h)*c)/(u*u+c*c);if(p>1)a=n;else{if(p>0){for(var f=0;f<i;++f)s[f]=bt(t[e+f],t[n+f],p);return void(s.length=i)}a=e}}for(f=0;f<i;++f)s[f]=t[a+f];s.length=i}function Qn(t,e,n,i,r){var o=t[e],s=t[e+1];for(e+=i;e<n;e+=i){var a=t[e],l=t[e+1],h=St(o,s,a,l);h>r&&(r=h),o=a,s=l}return r}function $n(t,e,n,i,r){for(var o=0,s=n.length;o<s;++o){var a=n[o];r=Qn(t,e,a,i,r),e=a}return r}function ti(t,e,n,i,r,o,s,a,l,h,u){if(e==n)return h;var c,p;if(0===r){if((p=St(s,a,t[e],t[e+1]))<h){for(c=0;c<i;++c)l[c]=t[e+c];return l.length=i,p}return h}for(var f=u||[NaN,NaN],d=e+i;d<n;)if(Jn(t,d-i,d,i,s,a,f),(p=St(s,a,f[0],f[1]))<h){for(h=p,c=0;c<i;++c)l[c]=f[c];l.length=i,d+=i}else d+=i*Math.max((Math.sqrt(p)-Math.sqrt(h))/r|0,1);if(o&&(Jn(t,n-i,e,i,s,a,f),(p=St(s,a,f[0],f[1]))<h)){for(h=p,c=0;c<i;++c)l[c]=f[c];l.length=i}return h}function ei(t,e,n,i,r,o,s,a,l,h,u){for(var c=u||[NaN,NaN],p=0,f=n.length;p<f;++p){var d=n[p];h=ti(t,e,d,i,r,o,s,a,l,h,c),e=d}return h}function ni(t,e,n,i){for(var r=0,o=n.length;r<o;++r)for(var s=n[r],a=0;a<i;++a)t[e++]=s[a];return e}function ii(t,e,n,i,r){for(var o=r||[],s=0,a=0,l=n.length;a<l;++a){var h=ni(t,e,n[a],i);o[s++]=h,e=h}return o.length=s,o}function ri(t,e,n,i,r,o,s){var a=(n-e)/i;if(a<3){for(;e<n;e+=i)o[s++]=t[e],o[s++]=t[e+1];return s}var l=new Array(a);l[0]=1,l[a-1]=1;for(var h=[e,n-i],u=0;h.length>0;){for(var c=h.pop(),p=h.pop(),f=0,d=t[p],g=t[p+1],_=t[c],y=t[c+1],v=p+i;v<c;v+=i){var m=wt(t[v],t[v+1],d,g,_,y);m>f&&(u=v,f=m)}f>r&&(l[(u-e)/i]=1,p+i<u&&h.push(p,u),u+i<c&&h.push(u,c))}for(v=0;v<a;++v)l[v]&&(o[s++]=t[e+v*i],o[s++]=t[e+v*i+1]);return s}function oi(t,e){return e*Math.round(t/e)}function si(t,e,n,i,r,o,s){if(e==n)return s;var a,l,h=oi(t[e],r),u=oi(t[e+1],r);e+=i,o[s++]=h,o[s++]=u;do{if(a=oi(t[e],r),l=oi(t[e+1],r),(e+=i)==n)return o[s++]=a,o[s++]=l,s}while(a==h&&l==u);for(;e<n;){var c=oi(t[e],r),p=oi(t[e+1],r);if(e+=i,c!=a||p!=l){var f=a-h,d=l-u,g=c-h,_=p-u;f*_==d*g&&(f<0&&g<f||f==g||f>0&&g>f)&&(d<0&&_<d||d==_||d>0&&_>d)?(a=c,l=p):(o[s++]=a,o[s++]=l,h=a,u=l,a=c,l=p)}}return o[s++]=a,o[s++]=l,s}function ai(t,e,n,i,r,o,s,a){for(var l=0,h=n.length;l<h;++l){var u=n[l];s=si(t,e,u,i,r,o,s),a.push(s),e=u}return s}function li(t,e,n,i,r){var o;for(e+=i;e<n;e+=i)if(o=r(t.slice(e-i,e),t.slice(e,e+i)))return o;return!1}function hi(t,e,n,i,r){for(var o=void 0!==r?r:[],s=0,a=e;a<n;a+=i)o[s++]=t.slice(a,a+i);return o.length=s,o}function ui(t,e,n,i,r){for(var o=void 0!==r?r:[],s=0,a=0,l=n.length;a<l;++a){var h=n[a];o[s++]=hi(t,e,h,i,o[s]),e=h}return o.length=s,o}function ci(t,e,n,i,r){for(var o=void 0!==r?r:[],s=0,a=0,l=n.length;a<l;++a){var h=n[a];o[s++]=ui(t,e,h,i,o[s]),e=h[h.length-1]}return o.length=s,o}function pi(t,e,n,i,r,s,a){var l,h,u=(n-e)/i;if(1===u)l=e;else if(2===u)l=e,h=r;else if(0!==u){for(var c=t[e],p=t[e+1],f=0,d=[0],g=e+i;g<n;g+=i){var _=t[g],y=t[g+1];f+=Math.sqrt((_-c)*(_-c)+(y-p)*(y-p)),d.push(f),c=_,p=y}var v=r*f,m=function(t,e,n){for(var i,r,s=o,a=0,l=t.length,h=!1;a<l;)(r=+s(t[i=a+(l-a>>1)],e))<0?a=i+1:(l=i,h=!r);return h?a:~a}(d,v);m<0?(h=(v-d[-m-2])/(d[-m-1]-d[-m-2]),l=e+(-m-2)*i):l=e+m*i}var x=a>1?a:2,C=s||new Array(x);for(g=0;g<x;++g)C[g]=void 0===l?NaN:void 0===h?t[l+g]:bt(t[l+g],t[l+i+g],h);return C}function fi(t,e,n,i,r,o){if(n==e)return null;var s;if(r<t[e+i-1])return o?((s=t.slice(e,e+i))[i-1]=r,s):null;if(t[n-1]<r)return o?((s=t.slice(n-i,n))[i-1]=r,s):null;if(r==t[e+i-1])return t.slice(e,e+i);for(var a=e/i,l=n/i;a<l;){var h=a+l>>1;r<t[(h+1)*i-1]?l=h:a=h+1}var u=t[a*i-1];if(r==u)return t.slice((a-1)*i,(a-1)*i+i);var c=(r-u)/(t[(a+1)*i-1]-u);s=[];for(var p=0;p<i-1;++p)s.push(bt(t[(a-1)*i+p],t[a*i+p],c));return s.push(r),s}function di(t,e,n,i,r){return!Te(r,(function(r){return!gi(t,e,n,i,r[0],r[1])}))}function gi(t,e,n,i,r,o){for(var s=0,a=t[n-i],l=t[n-i+1];e<n;e+=i){var h=t[e],u=t[e+1];l<=o?u>o&&(h-a)*(o-l)-(r-a)*(u-l)>0&&s++:u<=o&&(h-a)*(o-l)-(r-a)*(u-l)<0&&s--,a=h,l=u}return 0!==s}function _i(t,e,n,i,r,o){if(0===n.length)return!1;if(!gi(t,e,n[0],i,r,o))return!1;for(var s=1,a=n.length;s<a;++s)if(gi(t,n[s-1],n[s],i,r,o))return!1;return!0}function yi(t,e,n,i,r){var o=Se([1/0,1/0,-1/0,-1/0],t,e,n,i);return!!je(r,o)&&(!!ge(r,o)||o[0]>=r[0]&&o[2]<=r[2]||o[1]>=r[1]&&o[3]<=r[3]||li(t,e,n,i,(function(t,e){return function(t,e,n){var i=!1,r=ye(t,e),o=ye(t,n);if(1===r||1===o)i=!0;else{var s=t[0],a=t[1],l=t[2],h=t[3],u=e[0],c=e[1],p=n[0],f=n[1],d=(f-c)/(p-u),g=void 0,_=void 0;2&o&&!(2&r)&&(i=(g=p-(f-h)/d)>=s&&g<=l),i||!(4&o)||4&r||(i=(_=f-(p-l)*d)>=a&&_<=h),i||!(8&o)||8&r||(i=(g=p-(f-a)/d)>=s&&g<=l),i||!(16&o)||16&r||(i=(_=f-(p-s)*d)>=a&&_<=h)}return i}(r,t,e)})))}function vi(t,e,n,i,r){if(!function(t,e,n,i,r){return!!(yi(t,e,n,i,r)||gi(t,e,n,i,r[0],r[1])||gi(t,e,n,i,r[0],r[3])||gi(t,e,n,i,r[2],r[1])||gi(t,e,n,i,r[2],r[3]))}(t,e,n[0],i,r))return!1;if(1===n.length)return!0;for(var o=1,s=n.length;o<s;++o)if(di(t,n[o-1],n[o],i,r)&&!yi(t,n[o-1],n[o],i,r))return!1;return!0}function mi(t,e,n,i){for(var r=t[e],o=t[e+1],s=0,a=e+i;a<n;a+=i){var l=t[a],h=t[a+1];s+=Math.sqrt((l-r)*(l-r)+(h-o)*(h-o)),r=l,o=h}return s}var xi=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),Ci=function(t){function e(e,n){var i=t.call(this)||this;return i.flatMidpoint_=null,i.flatMidpointRevision_=-1,i.maxDelta_=-1,i.maxDeltaRevision_=-1,void 0===n||Array.isArray(e[0])?i.setCoordinates(e,n):i.setFlatCoordinates(n,e),i}return xi(e,t),e.prototype.appendCoordinate=function(t){this.flatCoordinates?l(this.flatCoordinates,t):this.flatCoordinates=t.slice(),this.changed()},e.prototype.clone=function(){var t=new e(this.flatCoordinates.slice(),this.layout);return t.applyProperties(this),t},e.prototype.closestPointXY=function(t,e,n,i){return i<fe(this.getExtent(),t,e)?i:(this.maxDeltaRevision_!=this.getRevision()&&(this.maxDelta_=Math.sqrt(Qn(this.flatCoordinates,0,this.flatCoordinates.length,this.stride,0)),this.maxDeltaRevision_=this.getRevision()),ti(this.flatCoordinates,0,this.flatCoordinates.length,this.stride,this.maxDelta_,!1,t,e,n,i))},e.prototype.forEachSegment=function(t){return li(this.flatCoordinates,0,this.flatCoordinates.length,this.stride,t)},e.prototype.getCoordinateAtM=function(t,e){if(this.layout!=On&&this.layout!=Rn)return null;var n=void 0!==e&&e;return fi(this.flatCoordinates,0,this.flatCoordinates.length,this.stride,t,n)},e.prototype.getCoordinates=function(){return hi(this.flatCoordinates,0,this.flatCoordinates.length,this.stride)},e.prototype.getCoordinateAt=function(t,e){return pi(this.flatCoordinates,0,this.flatCoordinates.length,this.stride,t,e,this.stride)},e.prototype.getLength=function(){return mi(this.flatCoordinates,0,this.flatCoordinates.length,this.stride)},e.prototype.getFlatMidpoint=function(){return this.flatMidpointRevision_!=this.getRevision()&&(this.flatMidpoint_=this.getCoordinateAt(.5,this.flatMidpoint_),this.flatMidpointRevision_=this.getRevision()),this.flatMidpoint_},e.prototype.getSimplifiedGeometryInternal=function(t){var n=[];return n.length=ri(this.flatCoordinates,0,this.flatCoordinates.length,this.stride,t,n,0),new e(n,bn)},e.prototype.getType=function(){return Pn},e.prototype.intersectsExtent=function(t){return yi(this.flatCoordinates,0,this.flatCoordinates.length,this.stride,t)},e.prototype.setCoordinates=function(t,e){this.setLayout(e,t,1),this.flatCoordinates||(this.flatCoordinates=[]),this.flatCoordinates.length=ni(this.flatCoordinates,0,t,this.stride),this.changed()},e}(qn),wi=Ci;function Si(t,e,n,i){for(var r=0,o=t[n-i],s=t[n-i+1];e<n;e+=i){var a=t[e],l=t[e+1];r+=s*a-o*l,o=a,s=l}return r/2}function Ei(t,e,n,i){for(var r=0,o=0,s=n.length;o<s;++o){var a=n[o];r+=Si(t,e,a,i),e=a}return r}var Ti=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),bi=function(t){function e(e,n){var i=t.call(this)||this;return i.maxDelta_=-1,i.maxDeltaRevision_=-1,void 0===n||Array.isArray(e[0])?i.setCoordinates(e,n):i.setFlatCoordinates(n,e),i}return Ti(e,t),e.prototype.clone=function(){return new e(this.flatCoordinates.slice(),this.layout)},e.prototype.closestPointXY=function(t,e,n,i){return i<fe(this.getExtent(),t,e)?i:(this.maxDeltaRevision_!=this.getRevision()&&(this.maxDelta_=Math.sqrt(Qn(this.flatCoordinates,0,this.flatCoordinates.length,this.stride,0)),this.maxDeltaRevision_=this.getRevision()),ti(this.flatCoordinates,0,this.flatCoordinates.length,this.stride,this.maxDelta_,!0,t,e,n,i))},e.prototype.getArea=function(){return Si(this.flatCoordinates,0,this.flatCoordinates.length,this.stride)},e.prototype.getCoordinates=function(){return hi(this.flatCoordinates,0,this.flatCoordinates.length,this.stride)},e.prototype.getSimplifiedGeometryInternal=function(t){var n=[];return n.length=ri(this.flatCoordinates,0,this.flatCoordinates.length,this.stride,t,n,0),new e(n,bn)},e.prototype.getType=function(){return"LinearRing"},e.prototype.intersectsExtent=function(t){return!1},e.prototype.setCoordinates=function(t,e){this.setLayout(e,t,1),this.flatCoordinates||(this.flatCoordinates=[]),this.flatCoordinates.length=ni(this.flatCoordinates,0,t,this.stride),this.changed()},e}(qn),Oi=bi,Ri=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),Ii=function(t){function e(e,n,i){var r=t.call(this)||this;if(r.ends_=[],r.maxDelta_=-1,r.maxDeltaRevision_=-1,Array.isArray(e[0]))r.setCoordinates(e,n);else if(void 0!==n&&i)r.setFlatCoordinates(n,e),r.ends_=i;else{for(var o=r.getLayout(),s=e,a=[],h=[],u=0,c=s.length;u<c;++u){var p=s[u];0===u&&(o=p.getLayout()),l(a,p.getFlatCoordinates()),h.push(a.length)}r.setFlatCoordinates(o,a),r.ends_=h}return r}return Ri(e,t),e.prototype.appendLineString=function(t){this.flatCoordinates?l(this.flatCoordinates,t.getFlatCoordinates().slice()):this.flatCoordinates=t.getFlatCoordinates().slice(),this.ends_.push(this.flatCoordinates.length),this.changed()},e.prototype.clone=function(){var t=new e(this.flatCoordinates.slice(),this.layout,this.ends_.slice());return t.applyProperties(this),t},e.prototype.closestPointXY=function(t,e,n,i){return i<fe(this.getExtent(),t,e)?i:(this.maxDeltaRevision_!=this.getRevision()&&(this.maxDelta_=Math.sqrt($n(this.flatCoordinates,0,this.ends_,this.stride,0)),this.maxDeltaRevision_=this.getRevision()),ei(this.flatCoordinates,0,this.ends_,this.stride,this.maxDelta_,!1,t,e,n,i))},e.prototype.getCoordinateAtM=function(t,e,n){if(this.layout!=On&&this.layout!=Rn||0===this.flatCoordinates.length)return null;var i=void 0!==e&&e,r=void 0!==n&&n;return function(t,e,n,i,r,o,s){if(s)return fi(t,e,n[n.length-1],i,r,o);var a;if(r<t[i-1])return o?((a=t.slice(0,i))[i-1]=r,a):null;if(t[t.length-1]<r)return o?((a=t.slice(t.length-i))[i-1]=r,a):null;for(var l=0,h=n.length;l<h;++l){var u=n[l];if(e!=u){if(r<t[e+i-1])return null;if(r<=t[u-1])return fi(t,e,u,i,r,!1);e=u}}return null}(this.flatCoordinates,0,this.ends_,this.stride,t,i,r)},e.prototype.getCoordinates=function(){return ui(this.flatCoordinates,0,this.ends_,this.stride)},e.prototype.getEnds=function(){return this.ends_},e.prototype.getLineString=function(t){return t<0||this.ends_.length<=t?null:new wi(this.flatCoordinates.slice(0===t?0:this.ends_[t-1],this.ends_[t]),this.layout)},e.prototype.getLineStrings=function(){for(var t=this.flatCoordinates,e=this.ends_,n=this.layout,i=[],r=0,o=0,s=e.length;o<s;++o){var a=e[o],l=new wi(t.slice(r,a),n);i.push(l),r=a}return i},e.prototype.getFlatMidpoints=function(){for(var t=[],e=this.flatCoordinates,n=0,i=this.ends_,r=this.stride,o=0,s=i.length;o<s;++o){var a=i[o];l(t,pi(e,n,a,r,.5)),n=a}return t},e.prototype.getSimplifiedGeometryInternal=function(t){var n=[],i=[];return n.length=function(t,e,n,i,r,o,s,a){for(var l=0,h=n.length;l<h;++l){var u=n[l];s=ri(t,e,u,i,r,o,s),a.push(s),e=u}return s}(this.flatCoordinates,0,this.ends_,this.stride,t,n,0,i),new e(n,bn,i)},e.prototype.getType=function(){return Ln},e.prototype.intersectsExtent=function(t){return function(t,e,n,i,r){for(var o=0,s=n.length;o<s;++o){if(yi(t,e,n[o],i,r))return!0;e=n[o]}return!1}(this.flatCoordinates,0,this.ends_,this.stride,t)},e.prototype.setCoordinates=function(t,e){this.setLayout(e,t,2),this.flatCoordinates||(this.flatCoordinates=[]);var n=ii(this.flatCoordinates,0,t,this.stride,this.ends_);this.flatCoordinates.length=0===n.length?0:n[n.length-1],this.changed()},e}(qn),Pi=Ii,Mi=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),Fi=function(t){function e(e,n){var i=t.call(this)||this;return i.setCoordinates(e,n),i}return Mi(e,t),e.prototype.clone=function(){var t=new e(this.flatCoordinates.slice(),this.layout);return t.applyProperties(this),t},e.prototype.closestPointXY=function(t,e,n,i){var r=this.flatCoordinates,o=St(t,e,r[0],r[1]);if(o<i){for(var s=this.stride,a=0;a<s;++a)n[a]=r[a];return n.length=s,o}return i},e.prototype.getCoordinates=function(){return this.flatCoordinates?this.flatCoordinates.slice():[]},e.prototype.computeExtent=function(t){return n=t,ve(i=(e=this.flatCoordinates)[0],r=e[1],i,r,n);var e,n,i,r},e.prototype.getType=function(){return In},e.prototype.intersectsExtent=function(t){return _e(t,this.flatCoordinates[0],this.flatCoordinates[1])},e.prototype.setCoordinates=function(t,e){this.setLayout(e,t,0),this.flatCoordinates||(this.flatCoordinates=[]),this.flatCoordinates.length=function(t,e,n,i){for(var r=0,o=n.length;r<o;++r)t[e++]=n[r];return e}(this.flatCoordinates,0,t,this.stride),this.changed()},e}(qn),Li=Fi,Ai=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),Di=function(t){function e(e,n){var i=t.call(this)||this;return n&&!Array.isArray(e[0])?i.setFlatCoordinates(n,e):i.setCoordinates(e,n),i}return Ai(e,t),e.prototype.appendPoint=function(t){this.flatCoordinates?l(this.flatCoordinates,t.getFlatCoordinates()):this.flatCoordinates=t.getFlatCoordinates().slice(),this.changed()},e.prototype.clone=function(){var t=new e(this.flatCoordinates.slice(),this.layout);return t.applyProperties(this),t},e.prototype.closestPointXY=function(t,e,n,i){if(i<fe(this.getExtent(),t,e))return i;for(var r=this.flatCoordinates,o=this.stride,s=0,a=r.length;s<a;s+=o){var l=St(t,e,r[s],r[s+1]);if(l<i){i=l;for(var h=0;h<o;++h)n[h]=r[s+h];n.length=o}}return i},e.prototype.getCoordinates=function(){return hi(this.flatCoordinates,0,this.flatCoordinates.length,this.stride)},e.prototype.getPoint=function(t){var e=this.flatCoordinates?this.flatCoordinates.length/this.stride:0;return t<0||e<=t?null:new Li(this.flatCoordinates.slice(t*this.stride,(t+1)*this.stride),this.layout)},e.prototype.getPoints=function(){for(var t=this.flatCoordinates,e=this.layout,n=this.stride,i=[],r=0,o=t.length;r<o;r+=n){var s=new Li(t.slice(r,r+n),e);i.push(s)}return i},e.prototype.getType=function(){return Fn},e.prototype.intersectsExtent=function(t){for(var e=this.flatCoordinates,n=this.stride,i=0,r=e.length;i<r;i+=n)if(_e(t,e[i],e[i+1]))return!0;return!1},e.prototype.setCoordinates=function(t,e){this.setLayout(e,t,1),this.flatCoordinates||(this.flatCoordinates=[]),this.flatCoordinates.length=ni(this.flatCoordinates,0,t,this.stride),this.changed()},e}(qn),ki=Di;function ji(t,e,n,i,r,s,a){for(var l,h,u,c,p,f,d,g=r[s+1],_=[],y=0,v=n.length;y<v;++y){var m=n[y];for(c=t[m-i],f=t[m-i+1],l=e;l<m;l+=i)p=t[l],d=t[l+1],(g<=f&&d<=g||f<=g&&g<=d)&&(u=(g-f)/(d-f)*(p-c)+c,_.push(u)),c=p,f=d}var x=NaN,C=-1/0;for(_.sort(o),c=_[0],l=1,h=_.length;l<h;++l){p=_[l];var w=Math.abs(p-c);w>C&&_i(t,e,n,i,u=(c+p)/2,g)&&(x=u,C=w),c=p}return isNaN(x)&&(x=r[s]),a?(a.push(x,g,C),a):[x,g,C]}function Gi(t,e,n,i){for(;e<n-i;){for(var r=0;r<i;++r){var o=t[e+r];t[e+r]=t[n-i+r],t[n-i+r]=o}e+=i,n-=i}}function zi(t,e,n,i){for(var r=0,o=t[n-i],s=t[n-i+1];e<n;e+=i){var a=t[e],l=t[e+1];r+=(a-o)*(l+s),o=a,s=l}return 0===r?void 0:r>0}function Wi(t,e,n,i,r){for(var o=void 0!==r&&r,s=0,a=n.length;s<a;++s){var l=n[s],h=zi(t,e,l,i);if(0===s){if(o&&h||!o&&!h)return!1}else if(o&&!h||!o&&h)return!1;e=l}return!0}function Xi(t,e,n,i,r){for(var o=void 0!==r&&r,s=0,a=n.length;s<a;++s){var l=n[s],h=zi(t,e,l,i);(0===s?o&&h||!o&&!h:o&&!h||!o&&h)&&Gi(t,e,l,i),e=l}return e}function Ni(t,e,n,i,r){for(var o=0,s=n.length;o<s;++o)e=Xi(t,e,n[o],i,r);return e}var Yi=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),Bi=function(t){function e(e,n,i){var r=t.call(this)||this;return r.ends_=[],r.flatInteriorPointRevision_=-1,r.flatInteriorPoint_=null,r.maxDelta_=-1,r.maxDeltaRevision_=-1,r.orientedRevision_=-1,r.orientedFlatCoordinates_=null,void 0!==n&&i?(r.setFlatCoordinates(n,e),r.ends_=i):r.setCoordinates(e,n),r}return Yi(e,t),e.prototype.appendLinearRing=function(t){this.flatCoordinates?l(this.flatCoordinates,t.getFlatCoordinates()):this.flatCoordinates=t.getFlatCoordinates().slice(),this.ends_.push(this.flatCoordinates.length),this.changed()},e.prototype.clone=function(){var t=new e(this.flatCoordinates.slice(),this.layout,this.ends_.slice());return t.applyProperties(this),t},e.prototype.closestPointXY=function(t,e,n,i){return i<fe(this.getExtent(),t,e)?i:(this.maxDeltaRevision_!=this.getRevision()&&(this.maxDelta_=Math.sqrt($n(this.flatCoordinates,0,this.ends_,this.stride,0)),this.maxDeltaRevision_=this.getRevision()),ei(this.flatCoordinates,0,this.ends_,this.stride,this.maxDelta_,!0,t,e,n,i))},e.prototype.containsXY=function(t,e){return _i(this.getOrientedFlatCoordinates(),0,this.ends_,this.stride,t,e)},e.prototype.getArea=function(){return Ei(this.getOrientedFlatCoordinates(),0,this.ends_,this.stride)},e.prototype.getCoordinates=function(t){var e;return void 0!==t?Xi(e=this.getOrientedFlatCoordinates().slice(),0,this.ends_,this.stride,t):e=this.flatCoordinates,ui(e,0,this.ends_,this.stride)},e.prototype.getEnds=function(){return this.ends_},e.prototype.getFlatInteriorPoint=function(){if(this.flatInteriorPointRevision_!=this.getRevision()){var t=Ie(this.getExtent());this.flatInteriorPoint_=ji(this.getOrientedFlatCoordinates(),0,this.ends_,this.stride,t,0),this.flatInteriorPointRevision_=this.getRevision()}return this.flatInteriorPoint_},e.prototype.getInteriorPoint=function(){return new Li(this.getFlatInteriorPoint(),On)},e.prototype.getLinearRingCount=function(){return this.ends_.length},e.prototype.getLinearRing=function(t){return t<0||this.ends_.length<=t?null:new Oi(this.flatCoordinates.slice(0===t?0:this.ends_[t-1],this.ends_[t]),this.layout)},e.prototype.getLinearRings=function(){for(var t=this.layout,e=this.flatCoordinates,n=this.ends_,i=[],r=0,o=0,s=n.length;o<s;++o){var a=n[o],l=new Oi(e.slice(r,a),t);i.push(l),r=a}return i},e.prototype.getOrientedFlatCoordinates=function(){if(this.orientedRevision_!=this.getRevision()){var t=this.flatCoordinates;Wi(t,0,this.ends_,this.stride)?this.orientedFlatCoordinates_=t:(this.orientedFlatCoordinates_=t.slice(),this.orientedFlatCoordinates_.length=Xi(this.orientedFlatCoordinates_,0,this.ends_,this.stride)),this.orientedRevision_=this.getRevision()}return this.orientedFlatCoordinates_},e.prototype.getSimplifiedGeometryInternal=function(t){var n=[],i=[];return n.length=ai(this.flatCoordinates,0,this.ends_,this.stride,Math.sqrt(t),n,0,i),new e(n,bn,i)},e.prototype.getType=function(){return Mn},e.prototype.intersectsExtent=function(t){return vi(this.getOrientedFlatCoordinates(),0,this.ends_,this.stride,t)},e.prototype.setCoordinates=function(t,e){this.setLayout(e,t,2),this.flatCoordinates||(this.flatCoordinates=[]);var n=ii(this.flatCoordinates,0,t,this.stride,this.ends_);this.flatCoordinates.length=0===n.length?0:n[n.length-1],this.changed()},e}(qn),Ki=Bi;function Zi(t){var e=t[0],n=t[1],i=t[2],r=t[3],o=[e,n,e,r,i,r,i,n,e,n];return new Bi(o,bn,[o.length])}var Vi=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),Ui=function(t){function e(e,n,i){var r=t.call(this)||this;if(r.endss_=[],r.flatInteriorPointsRevision_=-1,r.flatInteriorPoints_=null,r.maxDelta_=-1,r.maxDeltaRevision_=-1,r.orientedRevision_=-1,r.orientedFlatCoordinates_=null,!i&&!Array.isArray(e[0])){for(var o=r.getLayout(),s=e,a=[],h=[],u=0,c=s.length;u<c;++u){var p=s[u];0===u&&(o=p.getLayout());for(var f=a.length,d=p.getEnds(),g=0,_=d.length;g<_;++g)d[g]+=f;l(a,p.getFlatCoordinates()),h.push(d)}n=o,e=a,i=h}return void 0!==n&&i?(r.setFlatCoordinates(n,e),r.endss_=i):r.setCoordinates(e,n),r}return Vi(e,t),e.prototype.appendPolygon=function(t){var e;if(this.flatCoordinates){var n=this.flatCoordinates.length;l(this.flatCoordinates,t.getFlatCoordinates());for(var i=0,r=(e=t.getEnds().slice()).length;i<r;++i)e[i]+=n}else this.flatCoordinates=t.getFlatCoordinates().slice(),e=t.getEnds().slice(),this.endss_.push();this.endss_.push(e),this.changed()},e.prototype.clone=function(){for(var t=this.endss_.length,n=new Array(t),i=0;i<t;++i)n[i]=this.endss_[i].slice();var r=new e(this.flatCoordinates.slice(),this.layout,n);return r.applyProperties(this),r},e.prototype.closestPointXY=function(t,e,n,i){return i<fe(this.getExtent(),t,e)?i:(this.maxDeltaRevision_!=this.getRevision()&&(this.maxDelta_=Math.sqrt(function(t,e,n,i,r){for(var o=0,s=n.length;o<s;++o){var a=n[o];r=$n(t,e,a,i,r),e=a[a.length-1]}return r}(this.flatCoordinates,0,this.endss_,this.stride,0)),this.maxDeltaRevision_=this.getRevision()),function(t,e,n,i,r,o,s,a,l,h,u){for(var c=[NaN,NaN],p=0,f=n.length;p<f;++p){var d=n[p];h=ei(t,e,d,i,r,true,s,a,l,h,c),e=d[d.length-1]}return h}(this.getOrientedFlatCoordinates(),0,this.endss_,this.stride,this.maxDelta_,0,t,e,n,i))},e.prototype.containsXY=function(t,e){return function(t,e,n,i,r,o){if(0===n.length)return!1;for(var s=0,a=n.length;s<a;++s){var l=n[s];if(_i(t,e,l,i,r,o))return!0;e=l[l.length-1]}return!1}(this.getOrientedFlatCoordinates(),0,this.endss_,this.stride,t,e)},e.prototype.getArea=function(){return function(t,e,n,i){for(var r=0,o=0,s=n.length;o<s;++o){var a=n[o];r+=Ei(t,e,a,i),e=a[a.length-1]}return r}(this.getOrientedFlatCoordinates(),0,this.endss_,this.stride)},e.prototype.getCoordinates=function(t){var e;return void 0!==t?Ni(e=this.getOrientedFlatCoordinates().slice(),0,this.endss_,this.stride,t):e=this.flatCoordinates,ci(e,0,this.endss_,this.stride)},e.prototype.getEndss=function(){return this.endss_},e.prototype.getFlatInteriorPoints=function(){if(this.flatInteriorPointsRevision_!=this.getRevision()){var t=function(t,e,n,i){for(var r=[],o=[1/0,1/0,-1/0,-1/0],s=0,a=n.length;s<a;++s){var l=n[s];o=xe(t,e,l[0],i),r.push((o[0]+o[2])/2,(o[1]+o[3])/2),e=l[l.length-1]}return r}(this.flatCoordinates,0,this.endss_,this.stride);this.flatInteriorPoints_=function(t,e,n,i,r){for(var o=[],s=0,a=n.length;s<a;++s){var l=n[s];o=ji(t,e,l,i,r,2*s,o),e=l[l.length-1]}return o}(this.getOrientedFlatCoordinates(),0,this.endss_,this.stride,t),this.flatInteriorPointsRevision_=this.getRevision()}return this.flatInteriorPoints_},e.prototype.getInteriorPoints=function(){return new ki(this.getFlatInteriorPoints().slice(),On)},e.prototype.getOrientedFlatCoordinates=function(){if(this.orientedRevision_!=this.getRevision()){var t=this.flatCoordinates;!function(t,e,n,i,r){for(var o=0,s=n.length;o<s;++o){var a=n[o];if(!Wi(t,e,a,i,undefined))return!1;a.length&&(e=a[a.length-1])}return!0}(t,0,this.endss_,this.stride)?(this.orientedFlatCoordinates_=t.slice(),this.orientedFlatCoordinates_.length=Ni(this.orientedFlatCoordinates_,0,this.endss_,this.stride)):this.orientedFlatCoordinates_=t,this.orientedRevision_=this.getRevision()}return this.orientedFlatCoordinates_},e.prototype.getSimplifiedGeometryInternal=function(t){var n=[],i=[];return n.length=function(t,e,n,i,r,o,s,a){for(var l=0,h=n.length;l<h;++l){var u=n[l],c=[];s=ai(t,e,u,i,r,o,s,c),a.push(c),e=u[u.length-1]}return s}(this.flatCoordinates,0,this.endss_,this.stride,Math.sqrt(t),n,0,i),new e(n,bn,i)},e.prototype.getPolygon=function(t){if(t<0||this.endss_.length<=t)return null;var e;if(0===t)e=0;else{var n=this.endss_[t-1];e=n[n.length-1]}var i=this.endss_[t].slice(),r=i[i.length-1];if(0!==e)for(var o=0,s=i.length;o<s;++o)i[o]-=e;return new Ki(this.flatCoordinates.slice(e,r),this.layout,i)},e.prototype.getPolygons=function(){for(var t=this.layout,e=this.flatCoordinates,n=this.endss_,i=[],r=0,o=0,s=n.length;o<s;++o){var a=n[o].slice(),l=a[a.length-1];if(0!==r)for(var h=0,u=a.length;h<u;++h)a[h]-=r;var c=new Ki(e.slice(r,l),t,a);i.push(c),r=l}return i},e.prototype.getType=function(){return An},e.prototype.intersectsExtent=function(t){return function(t,e,n,i,r){for(var o=0,s=n.length;o<s;++o){var a=n[o];if(vi(t,e,a,i,r))return!0;e=a[a.length-1]}return!1}(this.getOrientedFlatCoordinates(),0,this.endss_,this.stride,t)},e.prototype.setCoordinates=function(t,e){this.setLayout(e,t,3),this.flatCoordinates||(this.flatCoordinates=[]);var n=function(t,e,n,i,r){for(var o=r||[],s=0,a=0,l=n.length;a<l;++a){var h=ii(t,e,n[a],i,o[s]);o[s++]=h,e=h[h.length-1]}return o.length=s,o}(this.flatCoordinates,0,t,this.stride,this.endss_);if(0===n.length)this.flatCoordinates.length=0;else{var i=n[n.length-1];this.flatCoordinates.length=0===i.length?0:i[i.length-1]}this.changed()},e}(qn),Hi=Ui,qi="preload",Ji="useInterimTilesOnError",Qi=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),$i=function(t){function e(e){var n=this,i=e||{},r=f({},i);return delete r.preload,delete r.useInterimTilesOnError,(n=t.call(this,r)||this).on,n.once,n.un,n.setPreload(void 0!==i.preload?i.preload:0),n.setUseInterimTilesOnError(void 0===i.useInterimTilesOnError||i.useInterimTilesOnError),n}return Qi(e,t),e.prototype.getPreload=function(){return this.get(qi)},e.prototype.setPreload=function(t){this.set(qi,t)},e.prototype.getUseInterimTilesOnError=function(){return this.get(Ji)},e.prototype.setUseInterimTilesOnError=function(t){this.set(Ji,t)},e.prototype.getData=function(e){return t.prototype.getData.call(this,e)},e}(Gt),tr=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),er=function(t){function e(e){var n=t.call(this)||this;return n.ready=!0,n.boundHandleImageChange_=n.handleImageChange_.bind(n),n.layer_=e,n.declutterExecutorGroup=null,n}return tr(e,t),e.prototype.getFeatures=function(t){return L()},e.prototype.getData=function(t){return null},e.prototype.prepareFrame=function(t){return L()},e.prototype.renderFrame=function(t,e){return L()},e.prototype.loadedTileCallback=function(t,e,n){t[e]||(t[e]={}),t[e][n.tileCoord.toString()]=n},e.prototype.createLoadedTileFinder=function(t,e,n){return function(i,r){var o=this.loadedTileCallback.bind(this,n,i);return t.forEachLoadedTile(e,i,r,o)}.bind(this)},e.prototype.forEachFeatureAtCoordinate=function(t,e,n,i,r){},e.prototype.getDataAtPixel=function(t,e,n){return null},e.prototype.getLayer=function(){return this.layer_},e.prototype.handleFontsChanged=function(){},e.prototype.handleImageChange_=function(t){2===t.target.getState()&&this.renderIfReadyAndVisible()},e.prototype.loadImage=function(t){var e=t.getState();return 2!=e&&3!=e&&t.addEventListener(x,this.boundHandleImageChange_),0==e&&(t.load(),e=t.getState()),2==e},e.prototype.renderIfReadyAndVisible=function(){var t=this.getLayer();t.getVisible()&&t.getSourceState()==Dt&&t.changed()},e.prototype.disposeInternal=function(){delete this.layer_,t.prototype.disposeInternal.call(this)},e}(F),nr=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),ir=function(t){function e(e,n,i,r){var o=t.call(this,e)||this;return o.inversePixelTransform=n,o.frameState=i,o.context=r,o}return nr(e,t),e}(t),rr=/^#([a-f0-9]{3}|[a-f0-9]{4}(?:[a-f0-9]{2}){0,2})$/i,or=/^([a-z]*)$|^hsla?\(.*\)$/i;function sr(t){return"string"==typeof t?t:ur(t)}var ar=function(){var t={},e=0;return function(n){var i;if(t.hasOwnProperty(n))i=t[n];else{if(e>=1024){var r=0;for(var o in t)0==(3&r++)&&(delete t[o],--e)}i=function(t){var e,n,i,r,o;if(or.exec(t)&&(t=function(t){var e=document.createElement("div");if(e.style.color=t,""!==e.style.color){document.body.appendChild(e);var n=getComputedStyle(e).color;return document.body.removeChild(e),n}return""}(t)),rr.exec(t)){var s,a=t.length-1;s=a<=4?1:2;var l=4===a||8===a;e=parseInt(t.substr(1+0*s,s),16),n=parseInt(t.substr(1+1*s,s),16),i=parseInt(t.substr(1+2*s,s),16),r=l?parseInt(t.substr(1+3*s,s),16):255,1==s&&(e=(e<<4)+e,n=(n<<4)+n,i=(i<<4)+i,l&&(r=(r<<4)+r)),o=[e,n,i,r/255]}else 0==t.indexOf("rgba(")?hr(o=t.slice(5,-1).split(",").map(Number)):0==t.indexOf("rgb(")?((o=t.slice(4,-1).split(",").map(Number)).push(1),hr(o)):vt(!1,14);return o}(n),t[n]=i,++e}return i}}();function lr(t){return Array.isArray(t)?t:ar(t)}function hr(t){return t[0]=mt(t[0]+.5|0,0,255),t[1]=mt(t[1]+.5|0,0,255),t[2]=mt(t[2]+.5|0,0,255),t[3]=mt(t[3],0,1),t}function ur(t){var e=t[0];e!=(0|e)&&(e=e+.5|0);var n=t[1];n!=(0|n)&&(n=n+.5|0);var i=t[2];return i!=(0|i)&&(i=i+.5|0),"rgba("+e+","+n+","+i+","+(void 0===t[3]?1:Math.round(100*t[3])/100)+")"}var cr=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),pr=null,fr=function(t){function e(e){var n=t.call(this,e)||this;return n.container=null,n.renderedResolution,n.tempTransform=[1,0,0,1,0,0],n.pixelTransform=[1,0,0,1,0,0],n.inversePixelTransform=[1,0,0,1,0,0],n.context=null,n.containerReused=!1,n.pixelContext_=null,n.frameState=null,n}return cr(e,t),e.prototype.getImageData=function(t,e,n){var i,r;pr||((i=document.createElement("canvas")).width=1,i.height=1,pr=i.getContext("2d")),pr.clearRect(0,0,1,1);try{pr.drawImage(t,e,n,1,1,0,0,1,1),r=pr.getImageData(0,0,1,1).data}catch(t){return null}return r},e.prototype.getBackground=function(t){var e=this.getLayer().getBackground();return"function"==typeof e&&(e=e(t.viewState.resolution)),e||void 0},e.prototype.useContainer=function(t,e,n,i){var r,o,s=this.getLayer().getClassName();if(t&&t.className===s&&""===t.style.opacity&&1===n&&(!i||t.style.backgroundColor&&h(lr(t.style.backgroundColor),lr(i)))&&(l=t.firstElementChild)instanceof HTMLCanvasElement&&(o=l.getContext("2d")),o&&o.canvas.style.transform===e?(this.container=t,this.context=o,this.containerReused=!0):this.containerReused&&(this.container=null,this.context=null,this.containerReused=!1),!this.container){(r=document.createElement("div")).className=s;var a=r.style;a.position="absolute",a.width="100%",a.height="100%",i&&(a.backgroundColor=i);var l=(o=q()).canvas;r.appendChild(l),(a=l.style).position="absolute",a.left="0",a.transformOrigin="top left",this.container=r,this.context=o}},e.prototype.clipUnrotated=function(t,e,n){var i=Ae(n),r=De(n),o=Re(n),s=Oe(n);jn(e.coordinateToPixelTransform,i),jn(e.coordinateToPixelTransform,r),jn(e.coordinateToPixelTransform,o),jn(e.coordinateToPixelTransform,s);var a=this.inversePixelTransform;jn(a,i),jn(a,r),jn(a,o),jn(a,s),t.save(),t.beginPath(),t.moveTo(Math.round(i[0]),Math.round(i[1])),t.lineTo(Math.round(r[0]),Math.round(r[1])),t.lineTo(Math.round(o[0]),Math.round(o[1])),t.lineTo(Math.round(s[0]),Math.round(s[1])),t.clip()},e.prototype.dispatchRenderEvent_=function(t,e,n){var i=this.getLayer();if(i.hasListener(t)){var r=new ir(t,this.inversePixelTransform,n,e);i.dispatchEvent(r)}},e.prototype.preRender=function(t,e){this.frameState=e,this.dispatchRenderEvent_("prerender",t,e)},e.prototype.postRender=function(t,e){this.dispatchRenderEvent_("postrender",t,e)},e.prototype.getRenderTransform=function(t,e,n,i,r,o,s){var a=r/2,l=o/2,h=i/e,u=-h,c=-t[0]+s,p=-t[1];return Gn(this.tempTransform,a,l,h,u,-n,c,p)},e.prototype.getDataAtPixel=function(t,e,n){var i=jn(this.inversePixelTransform,t.slice()),r=this.context,o=this.getLayer().getExtent();if(o&&!de(o,jn(e.pixelToCoordinateTransform,t.slice())))return null;var s,a=Math.round(i[0]),l=Math.round(i[1]),h=this.pixelContext_;if(!h){var u=document.createElement("canvas");u.width=1,u.height=1,h=u.getContext("2d"),this.pixelContext_=h}h.clearRect(0,0,1,1);try{h.drawImage(r.canvas,a,l,1,1,0,0,1,1),s=h.getImageData(0,0,1,1).data}catch(t){return"SecurityError"===t.name?(this.pixelContext_=null,new Uint8Array):s}return 0===s[3]?null:s},e.prototype.disposeInternal=function(){delete this.frameState,t.prototype.disposeInternal.call(this)},e}(er),dr=fr,gr=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),_r=function(t){function e(e,n,i){var r=t.call(this)||this,o=i||{};return r.tileCoord=e,r.state=n,r.interimTile=null,r.key="",r.transition_=void 0===o.transition?250:o.transition,r.transitionStarts_={},r.interpolate=!!o.interpolate,r}return gr(e,t),e.prototype.changed=function(){this.dispatchEvent(x)},e.prototype.release=function(){},e.prototype.getKey=function(){return this.key+"/"+this.tileCoord},e.prototype.getInterimTile=function(){if(!this.interimTile)return this;var t=this.interimTile;do{if(2==t.getState())return this.transition_=0,t;t=t.interimTile}while(t);return this},e.prototype.refreshInterimChain=function(){if(this.interimTile){var t=this.interimTile,e=this;do{if(2==t.getState()){t.interimTile=null;break}1==t.getState()?e=t:0==t.getState()?e.interimTile=t.interimTile:e=t,t=e.interimTile}while(t)}},e.prototype.getTileCoord=function(){return this.tileCoord},e.prototype.getState=function(){return this.state},e.prototype.setState=function(t){if(3!==this.state&&this.state>t)throw new Error("Tile load sequence violation");this.state=t,this.changed()},e.prototype.load=function(){L()},e.prototype.getAlpha=function(t,e){if(!this.transition_)return 1;var n=this.transitionStarts_[t];if(n){if(-1===n)return 1}else n=e,this.transitionStarts_[t]=n;var i=e-n+1e3/60;return i>=this.transition_?1:mn(i/this.transition_)},e.prototype.inTransition=function(t){return!!this.transition_&&-1!==this.transitionStarts_[t]},e.prototype.endTransition=function(t){this.transition_&&(this.transitionStarts_[t]=-1)},e}(m),yr=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),vr=function(t){function e(e,n,i,r){var o=t.call(this)||this;return o.extent=e,o.pixelRatio_=i,o.resolution=n,o.state=r,o}return yr(e,t),e.prototype.changed=function(){this.dispatchEvent(x)},e.prototype.getExtent=function(){return this.extent},e.prototype.getImage=function(){return L()},e.prototype.getPixelRatio=function(){return this.pixelRatio_},e.prototype.getResolution=function(){return this.resolution},e.prototype.getState=function(){return this.state},e.prototype.load=function(){L()},e}(m),mr=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}();function xr(t,e,n){var i=t,r=!0,o=!1,s=!1,a=[R(i,"load",(function(){s=!0,o||e()}))];return i.src&&U?(o=!0,i.decode().then((function(){r&&e()})).catch((function(t){r&&(s?e():n())}))):a.push(R(i,"error",n)),function(){r=!1,a.forEach(I)}}!function(t){function e(e,n,i,r,o,s){var a=t.call(this,e,n,i,0)||this;return a.src_=r,a.image_=new Image,null!==o&&(a.image_.crossOrigin=o),a.unlisten_=null,a.state=0,a.imageLoadFunction_=s,a}mr(e,t),e.prototype.getImage=function(){return this.image_},e.prototype.handleImageError_=function(){this.state=3,this.unlistenImage_(),this.changed()},e.prototype.handleImageLoad_=function(){void 0===this.resolution&&(this.resolution=Fe(this.extent)/this.image_.height),this.state=2,this.unlistenImage_(),this.changed()},e.prototype.load=function(){0!=this.state&&3!=this.state||(this.state=1,this.changed(),this.imageLoadFunction_(this,this.src_),this.unlisten_=xr(this.image_,this.handleImageLoad_.bind(this),this.handleImageError_.bind(this)))},e.prototype.setImage=function(t){this.image_=t,this.resolution=Fe(this.extent)/this.image_.height},e.prototype.unlistenImage_=function(){this.unlisten_&&(this.unlisten_(),this.unlisten_=null)}}(vr);var Cr,wr=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),Sr=function(t){function e(e,n,i,r,o,s){var a=t.call(this,e,n,s)||this;return a.crossOrigin_=r,a.src_=i,a.key=i,a.image_=new Image,null!==r&&(a.image_.crossOrigin=r),a.unlisten_=null,a.tileLoadFunction_=o,a}return wr(e,t),e.prototype.getImage=function(){return this.image_},e.prototype.setImage=function(t){this.image_=t,this.state=2,this.unlistenImage_(),this.changed()},e.prototype.handleImageError_=function(){var t;this.state=3,this.unlistenImage_(),this.image_=((t=q(1,1)).fillStyle="rgba(0,0,0,0)",t.fillRect(0,0,1,1),t.canvas),this.changed()},e.prototype.handleImageLoad_=function(){var t=this.image_;t.naturalWidth&&t.naturalHeight?this.state=2:this.state=4,this.unlistenImage_(),this.changed()},e.prototype.load=function(){3==this.state&&(this.state=0,this.image_=new Image,null!==this.crossOrigin_&&(this.image_.crossOrigin=this.crossOrigin_)),0==this.state&&(this.state=1,this.changed(),this.tileLoadFunction_(this,this.src_),this.unlisten_=xr(this.image_,this.handleImageLoad_.bind(this),this.handleImageError_.bind(this)))},e.prototype.unlistenImage_=function(){this.unlisten_&&(this.unlisten_(),this.unlisten_=null)},e}(_r),Er=function(){function t(t,e,n,i,r,o){this.sourceProj_=t,this.targetProj_=e;var s={},a=tn(this.targetProj_,this.sourceProj_);this.transformInv_=function(t){var e=t[0]+"/"+t[1];return s[e]||(s[e]=a(t)),s[e]},this.maxSourceExtent_=i,this.errorThresholdSquared_=r*r,this.triangles_=[],this.wrapsXInSource_=!1,this.canWrapXInSource_=this.sourceProj_.canWrapX()&&!!i&&!!this.sourceProj_.getExtent()&&ke(i)==ke(this.sourceProj_.getExtent()),this.sourceWorldWidth_=this.sourceProj_.getExtent()?ke(this.sourceProj_.getExtent()):null,this.targetWorldWidth_=this.targetProj_.getExtent()?ke(this.targetProj_.getExtent()):null;var l=Ae(n),h=De(n),u=Re(n),c=Oe(n),p=this.transformInv_(l),f=this.transformInv_(h),d=this.transformInv_(u),g=this.transformInv_(c),_=10+(o?Math.max(0,Math.ceil(Ct(be(n)/(o*o*256*256)))):0);if(this.addQuad_(l,h,u,c,p,f,d,g,_),this.wrapsXInSource_){var y=1/0;this.triangles_.forEach((function(t,e,n){y=Math.min(y,t.source[0][0],t.source[1][0],t.source[2][0])})),this.triangles_.forEach(function(t){if(Math.max(t.source[0][0],t.source[1][0],t.source[2][0])-y>this.sourceWorldWidth_/2){var e=[[t.source[0][0],t.source[0][1]],[t.source[1][0],t.source[1][1]],[t.source[2][0],t.source[2][1]]];e[0][0]-y>this.sourceWorldWidth_/2&&(e[0][0]-=this.sourceWorldWidth_),e[1][0]-y>this.sourceWorldWidth_/2&&(e[1][0]-=this.sourceWorldWidth_),e[2][0]-y>this.sourceWorldWidth_/2&&(e[2][0]-=this.sourceWorldWidth_);var n=Math.min(e[0][0],e[1][0],e[2][0]);Math.max(e[0][0],e[1][0],e[2][0])-n<this.sourceWorldWidth_/2&&(t.source=e)}}.bind(this))}s={}}return t.prototype.addTriangle_=function(t,e,n,i,r,o){this.triangles_.push({source:[i,r,o],target:[t,e,n]})},t.prototype.addQuad_=function(t,e,n,i,r,o,s,a,l){var h=ue([r,o,s,a]),u=this.sourceWorldWidth_?ke(h)/this.sourceWorldWidth_:null,c=this.sourceWorldWidth_,p=this.sourceProj_.canWrapX()&&u>.5&&u<1,f=!1;if(l>0&&(this.targetProj_.isGlobal()&&this.targetWorldWidth_&&(f=ke(ue([t,e,n,i]))/this.targetWorldWidth_>.25||f),!p&&this.sourceProj_.isGlobal()&&u&&(f=u>.25||f)),!(!f&&this.maxSourceExtent_&&isFinite(h[0])&&isFinite(h[1])&&isFinite(h[2])&&isFinite(h[3]))||je(h,this.maxSourceExtent_)){var d=0;if(!(f||isFinite(r[0])&&isFinite(r[1])&&isFinite(o[0])&&isFinite(o[1])&&isFinite(s[0])&&isFinite(s[1])&&isFinite(a[0])&&isFinite(a[1])))if(l>0)f=!0;else if(1!=(d=(isFinite(r[0])&&isFinite(r[1])?0:8)+(isFinite(o[0])&&isFinite(o[1])?0:4)+(isFinite(s[0])&&isFinite(s[1])?0:2)+(isFinite(a[0])&&isFinite(a[1])?0:1))&&2!=d&&4!=d&&8!=d)return;if(l>0){if(!f){var g=[(t[0]+n[0])/2,(t[1]+n[1])/2],_=this.transformInv_(g),y=void 0;y=p?(Tt(r[0],c)+Tt(s[0],c))/2-Tt(_[0],c):(r[0]+s[0])/2-_[0];var v=(r[1]+s[1])/2-_[1];f=y*y+v*v>this.errorThresholdSquared_}if(f){if(Math.abs(t[0]-n[0])<=Math.abs(t[1]-n[1])){var m=[(e[0]+n[0])/2,(e[1]+n[1])/2],x=this.transformInv_(m),C=[(i[0]+t[0])/2,(i[1]+t[1])/2],w=this.transformInv_(C);this.addQuad_(t,e,m,C,r,o,x,w,l-1),this.addQuad_(C,m,n,i,w,x,s,a,l-1)}else{var S=[(t[0]+e[0])/2,(t[1]+e[1])/2],E=this.transformInv_(S),T=[(n[0]+i[0])/2,(n[1]+i[1])/2],b=this.transformInv_(T);this.addQuad_(t,S,T,i,r,E,b,a,l-1),this.addQuad_(S,e,n,T,E,o,s,b,l-1)}return}}if(p){if(!this.canWrapXInSource_)return;this.wrapsXInSource_=!0}0==(11&d)&&this.addTriangle_(t,n,i,r,s,a),0==(14&d)&&this.addTriangle_(t,n,e,r,s,o),d&&(0==(13&d)&&this.addTriangle_(e,i,t,o,a,r),0==(7&d)&&this.addTriangle_(e,i,n,o,a,s))}},t.prototype.calculateSourceExtent=function(){var t=[1/0,1/0,-1/0,-1/0];return this.triangles_.forEach((function(e,n,i){var r=e.source;we(t,r[0]),we(t,r[1]),we(t,r[2])})),t},t.prototype.getTriangles=function(){return this.triangles_},t}(),Tr={imageSmoothingEnabled:!1,msImageSmoothingEnabled:!1},br={imageSmoothingEnabled:!0,msImageSmoothingEnabled:!0};function Or(t,e,n,i,r){t.beginPath(),t.moveTo(0,0),t.lineTo(e,n),t.lineTo(i,r),t.closePath(),t.save(),t.clip(),t.fillRect(0,0,Math.max(e,i)+1,Math.max(n,r)),t.restore()}function Rr(t,e){return Math.abs(t[4*e]-210)>2||Math.abs(t[4*e+3]-191.25)>2}function Ir(t,e,n,i){var r=en(n,e,t),o=He(e,i,n),s=e.getMetersPerUnit();void 0!==s&&(o*=s);var a=t.getMetersPerUnit();void 0!==a&&(o/=a);var l=t.getExtent();if(!l||de(l,r)){var h=He(t,o,r)/o;isFinite(h)&&h>0&&(o/=h)}return o}var Pr=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),Mr=function(t){function e(e,n,i,r,o,s,a,l,h,u,c,p){var f=t.call(this,o,0,{interpolate:!!p})||this;f.renderEdges_=void 0!==c&&c,f.pixelRatio_=a,f.gutter_=l,f.canvas_=null,f.sourceTileGrid_=n,f.targetTileGrid_=r,f.wrappedTileCoord_=s||o,f.sourceTiles_=[],f.sourcesListenerKeys_=null,f.sourceZ_=0;var d=r.getTileCoordExtent(f.wrappedTileCoord_),g=f.targetTileGrid_.getExtent(),_=f.sourceTileGrid_.getExtent(),y=g?Le(d,g):d;if(0===be(y))return f.state=4,f;var v=e.getExtent();v&&(_=_?Le(_,v):v);var m=r.getResolution(f.wrappedTileCoord_[0]),x=function(t,e,n,i){var r=Ie(n),o=Ir(t,e,r,i);return(!isFinite(o)||o<=0)&&Te(n,(function(n){return o=Ir(t,e,n,i),isFinite(o)&&o>0})),o}(e,i,y,m);if(!isFinite(x)||x<=0)return f.state=4,f;var C=void 0!==u?u:.5;if(f.triangulation_=new Er(e,i,y,_,x*C,m),0===f.triangulation_.getTriangles().length)return f.state=4,f;f.sourceZ_=n.getZForResolution(x);var w=f.triangulation_.calculateSourceExtent();if(_&&(e.canWrapX()?(w[1]=mt(w[1],_[1],_[3]),w[3]=mt(w[3],_[1],_[3])):w=Le(w,_)),be(w)){for(var S=n.getTileRangeForExtentAndZ(w,f.sourceZ_),E=S.minX;E<=S.maxX;E++)for(var T=S.minY;T<=S.maxY;T++){var b=h(f.sourceZ_,E,T,a);b&&f.sourceTiles_.push(b)}0===f.sourceTiles_.length&&(f.state=4)}else f.state=4;return f}return Pr(e,t),e.prototype.getImage=function(){return this.canvas_},e.prototype.reproject_=function(){var t=[];if(this.sourceTiles_.forEach(function(e,n,i){e&&2==e.getState()&&t.push({extent:this.sourceTileGrid_.getTileCoordExtent(e.tileCoord),image:e.getImage()})}.bind(this)),this.sourceTiles_.length=0,0===t.length)this.state=3;else{var e=this.wrappedTileCoord_[0],n=this.targetTileGrid_.getTileSize(e),i="number"==typeof n?n:n[0],r="number"==typeof n?n:n[1],o=this.targetTileGrid_.getResolution(e),s=this.sourceTileGrid_.getResolution(this.sourceZ_),a=this.targetTileGrid_.getTileCoordExtent(this.wrappedTileCoord_);this.canvas_=function(t,e,n,i,r,o,s,a,l,h,u,c){var p=q(Math.round(n*t),Math.round(n*e));if(c||f(p,Tr),0===l.length)return p.canvas;function d(t){return Math.round(t*n)/n}p.scale(n,n),p.globalCompositeOperation="lighter";var g=[1/0,1/0,-1/0,-1/0];l.forEach((function(t,e,n){var i,r;i=g,(r=t.extent)[0]<i[0]&&(i[0]=r[0]),r[2]>i[2]&&(i[2]=r[2]),r[1]<i[1]&&(i[1]=r[1]),r[3]>i[3]&&(i[3]=r[3])}));var _=ke(g),y=Fe(g),v=q(Math.round(n*_/i),Math.round(n*y/i));c||f(v,Tr);var m=n/i;l.forEach((function(t,e,n){var i=t.extent[0]-g[0],r=-(t.extent[3]-g[3]),o=ke(t.extent),s=Fe(t.extent);t.image.width>0&&t.image.height>0&&v.drawImage(t.image,h,h,t.image.width-2*h,t.image.height-2*h,i*m,r*m,o*m,s*m)}));var x=Ae(s);return a.getTriangles().forEach((function(t,e,r){var s=t.source,a=t.target,l=s[0][0],h=s[0][1],u=s[1][0],f=s[1][1],_=s[2][0],y=s[2][1],m=d((a[0][0]-x[0])/o),C=d(-(a[0][1]-x[1])/o),w=d((a[1][0]-x[0])/o),S=d(-(a[1][1]-x[1])/o),E=d((a[2][0]-x[0])/o),T=d(-(a[2][1]-x[1])/o),b=l,O=h;l=0,h=0;var R=function(t){for(var e=t.length,n=0;n<e;n++){for(var i=n,r=Math.abs(t[n][n]),o=n+1;o<e;o++){var s=Math.abs(t[o][n]);s>r&&(r=s,i=o)}if(0===r)return null;var a=t[i];t[i]=t[n],t[n]=a;for(var l=n+1;l<e;l++)for(var h=-t[l][n]/t[n][n],u=n;u<e+1;u++)n==u?t[l][u]=0:t[l][u]+=h*t[n][u]}for(var c=new Array(e),p=e-1;p>=0;p--){c[p]=t[p][e]/t[p][p];for(var f=p-1;f>=0;f--)t[f][e]-=t[f][p]*c[p]}return c}([[u-=b,f-=O,0,0,w-m],[_-=b,y-=O,0,0,E-m],[0,0,u,f,S-C],[0,0,_,y,T-C]]);if(R){if(p.save(),p.beginPath(),function(){if(void 0===Cr){var t=document.createElement("canvas").getContext("2d");t.globalCompositeOperation="lighter",t.fillStyle="rgba(210, 0, 0, 0.75)",Or(t,4,5,4,0),Or(t,4,5,0,5);var e=t.getImageData(0,0,3,3).data;Cr=Rr(e,0)||Rr(e,4)||Rr(e,8)}return Cr}()||!c){p.moveTo(w,S);for(var I=m-w,P=C-S,M=0;M<4;M++)p.lineTo(w+d((M+1)*I/4),S+d(M*P/3)),3!=M&&p.lineTo(w+d((M+1)*I/4),S+d((M+1)*P/3));p.lineTo(E,T)}else p.moveTo(w,S),p.lineTo(m,C),p.lineTo(E,T);p.clip(),p.transform(R[0],R[2],R[1],R[3],m,C),p.translate(g[0]-b,g[3]-O),p.scale(i/n,-i/n),p.drawImage(v.canvas,0,0),p.restore()}})),u&&(p.save(),p.globalCompositeOperation="source-over",p.strokeStyle="black",p.lineWidth=1,a.getTriangles().forEach((function(t,e,n){var i=t.target,r=(i[0][0]-x[0])/o,s=-(i[0][1]-x[1])/o,a=(i[1][0]-x[0])/o,l=-(i[1][1]-x[1])/o,h=(i[2][0]-x[0])/o,u=-(i[2][1]-x[1])/o;p.beginPath(),p.moveTo(a,l),p.lineTo(r,s),p.lineTo(h,u),p.closePath(),p.stroke()})),p.restore()),p.canvas}(i,r,this.pixelRatio_,s,this.sourceTileGrid_.getExtent(),o,a,this.triangulation_,t,this.gutter_,this.renderEdges_,this.interpolate),this.state=2}this.changed()},e.prototype.load=function(){if(0==this.state){this.state=1,this.changed();var t=0;this.sourcesListenerKeys_=[],this.sourceTiles_.forEach(function(e,n,i){var r=e.getState();if(0==r||1==r){t++;var o=O(e,x,(function(n){var i=e.getState();2!=i&&3!=i&&4!=i||(I(o),0==--t&&(this.unlistenSources_(),this.reproject_()))}),this);this.sourcesListenerKeys_.push(o)}}.bind(this)),0===t?setTimeout(this.reproject_.bind(this),0):this.sourceTiles_.forEach((function(t,e,n){0==t.getState()&&t.load()}))}},e.prototype.unlistenSources_=function(){this.sourcesListenerKeys_.forEach(I),this.sourcesListenerKeys_=null},e}(_r),Fr=function(){function t(t,e,n,i){this.minX=t,this.maxX=e,this.minY=n,this.maxY=i}return t.prototype.contains=function(t){return this.containsXY(t[1],t[2])},t.prototype.containsTileRange=function(t){return this.minX<=t.minX&&t.maxX<=this.maxX&&this.minY<=t.minY&&t.maxY<=this.maxY},t.prototype.containsXY=function(t,e){return this.minX<=t&&t<=this.maxX&&this.minY<=e&&e<=this.maxY},t.prototype.equals=function(t){return this.minX==t.minX&&this.minY==t.minY&&this.maxX==t.maxX&&this.maxY==t.maxY},t.prototype.extend=function(t){t.minX<this.minX&&(this.minX=t.minX),t.maxX>this.maxX&&(this.maxX=t.maxX),t.minY<this.minY&&(this.minY=t.minY),t.maxY>this.maxY&&(this.maxY=t.maxY)},t.prototype.getHeight=function(){return this.maxY-this.minY+1},t.prototype.getSize=function(){return[this.getWidth(),this.getHeight()]},t.prototype.getWidth=function(){return this.maxX-this.minX+1},t.prototype.intersects=function(t){return this.minX<=t.maxX&&this.maxX>=t.minX&&this.minY<=t.maxY&&this.maxY>=t.minY},t}();function Lr(t,e,n,i,r){return void 0!==r?(r.minX=t,r.maxX=e,r.minY=n,r.maxY=i,r):new Fr(t,e,n,i)}var Ar=Fr;function Dr(t){return t[0]>0&&t[1]>0}function kr(t,e){return Array.isArray(t)?t:(void 0===e?e=[t,t]:(e[0]=t,e[1]=t),e)}var jr=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),Gr=function(t){function e(e){var n=t.call(this,e)||this;return n.extentChanged=!0,n.renderedExtent_=null,n.renderedPixelRatio,n.renderedProjection=null,n.renderedRevision,n.renderedTiles=[],n.newTiles_=!1,n.tmpExtent=[1/0,1/0,-1/0,-1/0],n.tmpTileRange_=new Ar(0,0,0,0),n}return jr(e,t),e.prototype.isDrawableTile=function(t){var e=this.getLayer(),n=t.getState(),i=e.getUseInterimTilesOnError();return 2==n||4==n||3==n&&!i},e.prototype.getTile=function(t,e,n,i){var r=i.pixelRatio,o=i.viewState.projection,s=this.getLayer(),a=s.getSource().getTile(t,e,n,r,o);return 3==a.getState()&&(s.getUseInterimTilesOnError()?s.getPreload()>0&&(this.newTiles_=!0):a.setState(2)),this.isDrawableTile(a)||(a=a.getInterimTile()),a},e.prototype.getData=function(t){var e=this.frameState;if(!e)return null;var n=this.getLayer(),i=jn(e.pixelToCoordinateTransform,t.slice()),r=n.getExtent();if(r&&!de(r,i))return null;for(var o=e.pixelRatio,s=e.viewState.projection,a=e.viewState,l=n.getRenderSource(),h=l.getTileGridForProjection(a.projection),u=l.getTilePixelRatio(e.pixelRatio),c=h.getZForResolution(a.resolution);c>=h.getMinZoom();--c){var p=h.getTileCoordForCoordAndZ(i,c),f=l.getTile(c,p[1],p[2],o,s);if(!(f instanceof Sr||f instanceof Mr))return null;if(2===f.getState()){var d=h.getOrigin(c),g=kr(h.getTileSize(c)),_=h.getResolution(c),y=Math.floor(u*((i[0]-d[0])/_-p[1]*g[0])),v=Math.floor(u*((d[1]-i[1])/_-p[2]*g[1]));return this.getImageData(f.getImage(),y,v)}}return null},e.prototype.loadedTileCallback=function(e,n,i){return!!this.isDrawableTile(i)&&t.prototype.loadedTileCallback.call(this,e,n,i)},e.prototype.prepareFrame=function(t){return!!this.getLayer().getSource()},e.prototype.renderFrame=function(t,e){var n=t.layerStatesArray[t.layerIndex],i=t.viewState,r=i.projection,s=i.resolution,a=i.center,l=i.rotation,h=t.pixelRatio,u=this.getLayer(),c=u.getSource(),p=c.getRevision(),d=c.getTileGridForProjection(r),g=d.getZForResolution(s,c.zDirection),_=d.getResolution(g),y=t.extent,v=n.extent&&pn(n.extent);v&&(y=Le(y,pn(n.extent)));var m=c.getTilePixelRatio(h),x=Math.round(t.size[0]*m),C=Math.round(t.size[1]*m);if(l){var w=Math.round(Math.sqrt(x*x+C*C));x=w,C=w}var S=_*x/2/m,E=_*C/2/m,T=[a[0]-S,a[1]-E,a[0]+S,a[1]+E],b=d.getTileRangeForExtentAndZ(y,g),O={};O[g]={};var R=this.createLoadedTileFinder(c,r,O),I=this.tmpExtent,P=this.tmpTileRange_;this.newTiles_=!1;for(var M=b.minX;M<=b.maxX;++M)for(var F=b.minY;F<=b.maxY;++F){var L=this.getTile(g,M,F,t);if(this.isDrawableTile(L)){var A=D(this);if(2==L.getState()){O[g][L.tileCoord.toString()]=L;var k=L.inTransition(A);this.newTiles_||!k&&-1!==this.renderedTiles.indexOf(L)||(this.newTiles_=!0)}if(1===L.getAlpha(A,t.time))continue}var j=d.getTileCoordChildTileRange(L.tileCoord,P,I),G=!1;j&&(G=R(g+1,j)),G||d.forEachTileCoordParentTileRange(L.tileCoord,R,P,I)}var z=_/s;Gn(this.pixelTransform,t.size[0]/2,t.size[1]/2,1/m,1/m,l,-x/2,-C/2);var W=Wn(this.pixelTransform);this.useContainer(e,W,n.opacity,this.getBackground(t));var X=this.context,N=X.canvas;zn(this.inversePixelTransform,this.pixelTransform),Gn(this.tempTransform,x/2,C/2,z,z,0,-x/2,-C/2),N.width!=x||N.height!=C?(N.width=x,N.height=C):this.containerReused||X.clearRect(0,0,x,C),v&&this.clipUnrotated(X,t,v),c.getInterpolate()||f(X,Tr),this.preRender(X,t),this.renderedTiles.length=0;var Y,B,K,Z=Object.keys(O).map(Number);Z.sort(o),1!==n.opacity||this.containerReused&&!c.getOpaque(t.viewState.projection)?(Y=[],B=[]):Z=Z.reverse();for(var V=Z.length-1;V>=0;--V){var U=Z[V],H=c.getTilePixelSize(U,h,r),q=d.getResolution(U)/_,J=H[0]*q*z,Q=H[1]*q*z,$=d.getTileCoordForCoordAndZ(Ae(T),U),tt=d.getTileCoordExtent($),et=jn(this.tempTransform,[m*(tt[0]-T[0])/_,m*(T[3]-tt[3])/_]),nt=m*c.getGutterForProjection(r),it=O[U];for(var rt in it){var ot=(L=it[rt]).tileCoord,at=$[1]-ot[1],lt=Math.round(et[0]-(at-1)*J),ht=$[2]-ot[2],ut=Math.round(et[1]-(ht-1)*Q),ct=lt-(M=Math.round(et[0]-at*J)),pt=ut-(F=Math.round(et[1]-ht*Q)),ft=g===U,dt=!1;if(!(k=ft&&1!==L.getAlpha(D(this),t.time)))if(Y){K=[M,F,M+ct,F,M+ct,F+pt,M,F+pt];for(var gt=0,_t=Y.length;gt<_t;++gt)if(g!==U&&U<B[gt]){var yt=Y[gt];je([M,F,M+ct,F+pt],[yt[0],yt[3],yt[4],yt[7]])&&(dt||(X.save(),dt=!0),X.beginPath(),X.moveTo(K[0],K[1]),X.lineTo(K[2],K[3]),X.lineTo(K[4],K[5]),X.lineTo(K[6],K[7]),X.moveTo(yt[6],yt[7]),X.lineTo(yt[4],yt[5]),X.lineTo(yt[2],yt[3]),X.lineTo(yt[0],yt[1]),X.clip())}Y.push(K),B.push(U)}else X.clearRect(M,F,ct,pt);this.drawTileImage(L,t,M,F,ct,pt,nt,ft),Y&&!k?(dt&&X.restore(),this.renderedTiles.unshift(L)):this.renderedTiles.push(L),this.updateUsedTiles(t.usedTiles,c,L)}}this.renderedRevision=p,this.renderedResolution=_,this.extentChanged=!this.renderedExtent_||!Ce(this.renderedExtent_,T),this.renderedExtent_=T,this.renderedPixelRatio=h,this.renderedProjection=r,this.manageTilePyramid(t,c,d,h,r,y,g,u.getPreload()),this.scheduleExpireCache(t,c),this.postRender(X,t),n.extent&&X.restore(),f(X,br),W!==N.style.transform&&(N.style.transform=W);var vt=st(n.opacity),mt=this.container;return vt!==mt.style.opacity&&(mt.style.opacity=vt),this.container},e.prototype.drawTileImage=function(t,e,n,i,r,o,s,a){var l=this.getTileImage(t);if(l){var h=D(this),u=a?t.getAlpha(h,e.time):1,c=u!==this.context.globalAlpha;c&&(this.context.save(),this.context.globalAlpha=u),this.context.drawImage(l,s,s,l.width-2*s,l.height-2*s,n,i,r,o),c&&this.context.restore(),1!==u?e.animate=!0:a&&t.endTransition(h)}},e.prototype.getImage=function(){var t=this.context;return t?t.canvas:null},e.prototype.getTileImage=function(t){return t.getImage()},e.prototype.scheduleExpireCache=function(t,e){if(e.canExpireCache()){var n=function(t,e,n){var i=D(t);i in n.usedTiles&&t.expireCache(n.viewState.projection,n.usedTiles[i])}.bind(null,e);t.postRenderFunctions.push(n)}},e.prototype.updateUsedTiles=function(t,e,n){var i=D(e);i in t||(t[i]={}),t[i][n.getKey()]=!0},e.prototype.manageTilePyramid=function(t,e,n,i,r,o,s,a,l){var h=D(e);h in t.wantedTiles||(t.wantedTiles[h]={});var u,c,p,f,d,g,_=t.wantedTiles[h],y=t.tileQueue,v=0;for(g=n.getMinZoom();g<=s;++g)for(c=n.getTileRangeForExtentAndZ(o,g,c),p=n.getResolution(g),f=c.minX;f<=c.maxX;++f)for(d=c.minY;d<=c.maxY;++d)s-g<=a?(++v,0==(u=e.getTile(g,f,d,i,r)).getState()&&(_[u.getKey()]=!0,y.isKeyQueued(u.getKey())||y.enqueue([u,h,n.getTileCoordCenter(u.tileCoord),p])),void 0!==l&&l(u)):e.useTile(g,f,d,r);e.updateCacheSize(v,r)},e}(dr),zr=Gr,Wr=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),Xr=function(t){function e(e){return t.call(this,e)||this}return Wr(e,t),e.prototype.createRenderer=function(){return new zr(this)},e}($i),Nr=n(582),Yr=function(){function t(t){this.opacity_=t.opacity,this.rotateWithView_=t.rotateWithView,this.rotation_=t.rotation,this.scale_=t.scale,this.scaleArray_=kr(t.scale),this.displacement_=t.displacement}return t.prototype.clone=function(){var e=this.getScale();return new t({opacity:this.getOpacity(),scale:Array.isArray(e)?e.slice():e,rotation:this.getRotation(),rotateWithView:this.getRotateWithView(),displacement:this.getDisplacement().slice()})},t.prototype.getOpacity=function(){return this.opacity_},t.prototype.getRotateWithView=function(){return this.rotateWithView_},t.prototype.getRotation=function(){return this.rotation_},t.prototype.getScale=function(){return this.scale_},t.prototype.getScaleArray=function(){return this.scaleArray_},t.prototype.getDisplacement=function(){return this.displacement_},t.prototype.getAnchor=function(){return L()},t.prototype.getImage=function(t){return L()},t.prototype.getHitDetectionImage=function(){return L()},t.prototype.getPixelRatio=function(t){return 1},t.prototype.getImageState=function(){return L()},t.prototype.getImageSize=function(){return L()},t.prototype.getOrigin=function(){return L()},t.prototype.getSize=function(){return L()},t.prototype.setDisplacement=function(t){this.displacement_=t},t.prototype.setOpacity=function(t){this.opacity_=t},t.prototype.setRotateWithView=function(t){this.rotateWithView_=t},t.prototype.setRotation=function(t){this.rotation_=t},t.prototype.setScale=function(t){this.scale_=t,this.scaleArray_=kr(t)},t.prototype.listenImageChange=function(t){L()},t.prototype.load=function(){L()},t.prototype.unlistenImageChange=function(t){L()},t}();function Br(t){return Array.isArray(t)?ur(t):t}var Kr="10px sans-serif",Zr="#000",Vr="round",Ur=[],Hr="round",qr="#000",Jr="center",Qr="middle",$r=[0,0,0,0],to=new G;(new m).setSize=function(){console.warn("labelCache is deprecated.")};var eo,no,io=null,ro={},oo=function(){var t,e,n="32px ",i=["monospace","serif"],r=i.length,o="wmytzilWMYTZIL@#/&?$%10";function s(t,s,a){for(var l=!0,h=0;h<r;++h){var u=i[h];if(e=lo(t+" "+s+" "+n+u,o),a!=u){var c=lo(t+" "+s+" "+n+a+","+u,o);l=l&&c!=e}}return!!l}function a(){for(var e=!0,n=to.getKeys(),i=0,r=n.length;i<r;++i){var o=n[i];to.get(o)<100&&(s.apply(this,o.split("\n"))?(d(ro),io=null,eo=void 0,to.set(o,100)):(to.set(o,to.get(o)+1,!0),e=!1))}e&&(clearInterval(t),t=void 0)}return function(e){var n=ot(e);if(n)for(var i=n.families,r=0,o=i.length;r<o;++r){var l=i[r],h=n.style+"\n"+n.weight+"\n"+l;void 0===to.get(h)&&(to.set(h,100,!0),s(n.style,n.weight,l)||(to.set(h,0,!0),void 0===t&&(t=setInterval(a,32))))}}}(),so=function(t){var e=ro[t];if(null==e){if(V){var n=ot(t),i=ao(t,"Žg");e=(isNaN(Number(n.lineHeight))?1.2:Number(n.lineHeight))*(i.actualBoundingBoxAscent+i.actualBoundingBoxDescent)}else no||((no=document.createElement("div")).innerHTML="M",no.style.minHeight="0",no.style.maxHeight="none",no.style.height="auto",no.style.padding="0",no.style.border="none",no.style.position="absolute",no.style.display="block",no.style.left="-99999px"),no.style.font=t,document.body.appendChild(no),e=no.offsetHeight,document.body.removeChild(no);ro[t]=e}return e};function ao(t,e){return io||(io=q(1,1)),t!=eo&&(io.font=t,eo=io.font),io.measureText(e)}function lo(t,e){return ao(t,e).width}function ho(t,e,n){if(e in n)return n[e];var i=lo(t,e);return n[e]=i,i}var uo=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),co=function(t){function e(e){var n=this,i=void 0!==e.rotateWithView&&e.rotateWithView;return(n=t.call(this,{opacity:1,rotateWithView:i,rotation:void 0!==e.rotation?e.rotation:0,scale:void 0!==e.scale?e.scale:1,displacement:void 0!==e.displacement?e.displacement:[0,0]})||this).canvas_=void 0,n.hitDetectionCanvas_=null,n.fill_=void 0!==e.fill?e.fill:null,n.origin_=[0,0],n.points_=e.points,n.radius_=void 0!==e.radius?e.radius:e.radius1,n.radius2_=e.radius2,n.angle_=void 0!==e.angle?e.angle:0,n.stroke_=void 0!==e.stroke?e.stroke:null,n.size_=null,n.renderOptions_=null,n.render(),n}return uo(e,t),e.prototype.clone=function(){var t=this.getScale(),n=new e({fill:this.getFill()?this.getFill().clone():void 0,points:this.getPoints(),radius:this.getRadius(),radius2:this.getRadius2(),angle:this.getAngle(),stroke:this.getStroke()?this.getStroke().clone():void 0,rotation:this.getRotation(),rotateWithView:this.getRotateWithView(),scale:Array.isArray(t)?t.slice():t,displacement:this.getDisplacement().slice()});return n.setOpacity(this.getOpacity()),n},e.prototype.getAnchor=function(){var t=this.size_;if(!t)return null;var e=this.getDisplacement();return[t[0]/2-e[0],t[1]/2+e[1]]},e.prototype.getAngle=function(){return this.angle_},e.prototype.getFill=function(){return this.fill_},e.prototype.getHitDetectionImage=function(){return this.hitDetectionCanvas_||this.createHitDetectionCanvas_(this.renderOptions_),this.hitDetectionCanvas_},e.prototype.getImage=function(t){var e=this.canvas_[t];if(!e){var n=this.renderOptions_,i=q(n.size*t,n.size*t);this.draw_(n,i,t),e=i.canvas,this.canvas_[t]=e}return e},e.prototype.getPixelRatio=function(t){return t},e.prototype.getImageSize=function(){return this.size_},e.prototype.getImageState=function(){return 2},e.prototype.getOrigin=function(){return this.origin_},e.prototype.getPoints=function(){return this.points_},e.prototype.getRadius=function(){return this.radius_},e.prototype.getRadius2=function(){return this.radius2_},e.prototype.getSize=function(){return this.size_},e.prototype.getStroke=function(){return this.stroke_},e.prototype.listenImageChange=function(t){},e.prototype.load=function(){},e.prototype.unlistenImageChange=function(t){},e.prototype.calculateLineJoinSize_=function(t,e,n){if(0===e||this.points_===1/0||"bevel"!==t&&"miter"!==t)return e;var i=this.radius_,r=void 0===this.radius2_?i:this.radius2_;if(i<r){var o=i;i=r,r=o}var s=void 0===this.radius2_?this.points_:2*this.points_,a=2*Math.PI/s,l=r*Math.sin(a),h=i-Math.sqrt(r*r-l*l),u=Math.sqrt(l*l+h*h),c=u/l;if("miter"===t&&c<=n)return c*e;var p=e/2/c,f=e/2*(h/u),d=Math.sqrt((i+p)*(i+p)+f*f)-i;if(void 0===this.radius2_||"bevel"===t)return 2*d;var g=i*Math.sin(a),_=r-Math.sqrt(i*i-g*g),y=Math.sqrt(g*g+_*_)/g;if(y<=n){var v=y*e/2-r-i;return 2*Math.max(d,v)}return 2*d},e.prototype.createRenderOptions=function(){var t,e=Hr,n=0,i=null,r=0,o=0;this.stroke_&&(null===(t=this.stroke_.getColor())&&(t=qr),t=Br(t),void 0===(o=this.stroke_.getWidth())&&(o=1),i=this.stroke_.getLineDash(),r=this.stroke_.getLineDashOffset(),void 0===(e=this.stroke_.getLineJoin())&&(e=Hr),void 0===(n=this.stroke_.getMiterLimit())&&(n=10));var s=this.calculateLineJoinSize_(e,o,n),a=Math.max(this.radius_,this.radius2_||0);return{strokeStyle:t,strokeWidth:o,size:Math.ceil(2*a+s),lineDash:i,lineDashOffset:r,lineJoin:e,miterLimit:n}},e.prototype.render=function(){this.renderOptions_=this.createRenderOptions();var t=this.renderOptions_.size;this.canvas_={},this.size_=[t,t]},e.prototype.draw_=function(t,e,n){if(e.scale(n,n),e.translate(t.size/2,t.size/2),this.createPath_(e),this.fill_){var i=this.fill_.getColor();null===i&&(i=Zr),e.fillStyle=Br(i),e.fill()}this.stroke_&&(e.strokeStyle=t.strokeStyle,e.lineWidth=t.strokeWidth,e.setLineDash&&t.lineDash&&(e.setLineDash(t.lineDash),e.lineDashOffset=t.lineDashOffset),e.lineJoin=t.lineJoin,e.miterLimit=t.miterLimit,e.stroke())},e.prototype.createHitDetectionCanvas_=function(t){if(this.fill_){var e=this.fill_.getColor(),n=0;if("string"==typeof e&&(e=lr(e)),null===e?n=1:Array.isArray(e)&&(n=4===e.length?e[3]:1),0===n){var i=q(t.size,t.size);this.hitDetectionCanvas_=i.canvas,this.drawHitDetectionCanvas_(t,i)}}this.hitDetectionCanvas_||(this.hitDetectionCanvas_=this.getImage(1))},e.prototype.createPath_=function(t){var e=this.points_,n=this.radius_;if(e===1/0)t.arc(0,0,n,0,2*Math.PI);else{var i=void 0===this.radius2_?n:this.radius2_;void 0!==this.radius2_&&(e*=2);for(var r=this.angle_-Math.PI/2,o=2*Math.PI/e,s=0;s<e;s++){var a=r+s*o,l=s%2==0?n:i;t.lineTo(l*Math.cos(a),l*Math.sin(a))}t.closePath()}},e.prototype.drawHitDetectionCanvas_=function(t,e){e.translate(t.size/2,t.size/2),this.createPath_(e),e.fillStyle=Zr,e.fill(),this.stroke_&&(e.strokeStyle=t.strokeStyle,e.lineWidth=t.strokeWidth,t.lineDash&&(e.setLineDash(t.lineDash),e.lineDashOffset=t.lineDashOffset),e.lineJoin=t.lineJoin,e.miterLimit=t.miterLimit,e.stroke())},e}(Yr),po=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),fo=function(t){function e(e){var n=e||{};return t.call(this,{points:1/0,fill:n.fill,radius:n.radius,stroke:n.stroke,scale:void 0!==n.scale?n.scale:1,rotation:void 0!==n.rotation?n.rotation:0,rotateWithView:void 0!==n.rotateWithView&&n.rotateWithView,displacement:void 0!==n.displacement?n.displacement:[0,0]})||this}return po(e,t),e.prototype.clone=function(){var t=this.getScale(),n=new e({fill:this.getFill()?this.getFill().clone():void 0,stroke:this.getStroke()?this.getStroke().clone():void 0,radius:this.getRadius(),scale:Array.isArray(t)?t.slice():t,rotation:this.getRotation(),rotateWithView:this.getRotateWithView(),displacement:this.getDisplacement().slice()});return n.setOpacity(this.getOpacity()),n},e.prototype.setRadius=function(t){this.radius_=t,this.render()},e}(co),go=function(){function t(t){var e=t||{};this.color_=void 0!==e.color?e.color:null}return t.prototype.clone=function(){var e=this.getColor();return new t({color:Array.isArray(e)?e.slice():e||void 0})},t.prototype.getColor=function(){return this.color_},t.prototype.setColor=function(t){this.color_=t},t}(),_o=function(){function t(t){var e=t||{};this.color_=void 0!==e.color?e.color:null,this.lineCap_=e.lineCap,this.lineDash_=void 0!==e.lineDash?e.lineDash:null,this.lineDashOffset_=e.lineDashOffset,this.lineJoin_=e.lineJoin,this.miterLimit_=e.miterLimit,this.width_=e.width}return t.prototype.clone=function(){var e=this.getColor();return new t({color:Array.isArray(e)?e.slice():e||void 0,lineCap:this.getLineCap(),lineDash:this.getLineDash()?this.getLineDash().slice():void 0,lineDashOffset:this.getLineDashOffset(),lineJoin:this.getLineJoin(),miterLimit:this.getMiterLimit(),width:this.getWidth()})},t.prototype.getColor=function(){return this.color_},t.prototype.getLineCap=function(){return this.lineCap_},t.prototype.getLineDash=function(){return this.lineDash_},t.prototype.getLineDashOffset=function(){return this.lineDashOffset_},t.prototype.getLineJoin=function(){return this.lineJoin_},t.prototype.getMiterLimit=function(){return this.miterLimit_},t.prototype.getWidth=function(){return this.width_},t.prototype.setColor=function(t){this.color_=t},t.prototype.setLineCap=function(t){this.lineCap_=t},t.prototype.setLineDash=function(t){this.lineDash_=t},t.prototype.setLineDashOffset=function(t){this.lineDashOffset_=t},t.prototype.setLineJoin=function(t){this.lineJoin_=t},t.prototype.setMiterLimit=function(t){this.miterLimit_=t},t.prototype.setWidth=function(t){this.width_=t},t}(),yo=function(){function t(t){var e=t||{};this.geometry_=null,this.geometryFunction_=xo,void 0!==e.geometry&&this.setGeometry(e.geometry),this.fill_=void 0!==e.fill?e.fill:null,this.image_=void 0!==e.image?e.image:null,this.renderer_=void 0!==e.renderer?e.renderer:null,this.hitDetectionRenderer_=void 0!==e.hitDetectionRenderer?e.hitDetectionRenderer:null,this.stroke_=void 0!==e.stroke?e.stroke:null,this.text_=void 0!==e.text?e.text:null,this.zIndex_=e.zIndex}return t.prototype.clone=function(){var e=this.getGeometry();return e&&"object"==typeof e&&(e=e.clone()),new t({geometry:e,fill:this.getFill()?this.getFill().clone():void 0,image:this.getImage()?this.getImage().clone():void 0,renderer:this.getRenderer(),stroke:this.getStroke()?this.getStroke().clone():void 0,text:this.getText()?this.getText().clone():void 0,zIndex:this.getZIndex()})},t.prototype.getRenderer=function(){return this.renderer_},t.prototype.setRenderer=function(t){this.renderer_=t},t.prototype.setHitDetectionRenderer=function(t){this.hitDetectionRenderer_=t},t.prototype.getHitDetectionRenderer=function(){return this.hitDetectionRenderer_},t.prototype.getGeometry=function(){return this.geometry_},t.prototype.getGeometryFunction=function(){return this.geometryFunction_},t.prototype.getFill=function(){return this.fill_},t.prototype.setFill=function(t){this.fill_=t},t.prototype.getImage=function(){return this.image_},t.prototype.setImage=function(t){this.image_=t},t.prototype.getStroke=function(){return this.stroke_},t.prototype.setStroke=function(t){this.stroke_=t},t.prototype.getText=function(){return this.text_},t.prototype.setText=function(t){this.text_=t},t.prototype.getZIndex=function(){return this.zIndex_},t.prototype.setGeometry=function(t){"function"==typeof t?this.geometryFunction_=t:"string"==typeof t?this.geometryFunction_=function(e){return e.get(t)}:t?void 0!==t&&(this.geometryFunction_=function(){return t}):this.geometryFunction_=xo,this.geometry_=t},t.prototype.setZIndex=function(t){this.zIndex_=t},t}(),vo=null;function mo(t,e){if(!vo){var n=new go({color:"rgba(255,255,255,0.4)"}),i=new _o({color:"#3399CC",width:1.25});vo=[new yo({image:new fo({fill:n,stroke:i,radius:5}),fill:n,stroke:i})]}return vo}function xo(t){return t.getGeometry()}var Co=yo,wo=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),So="renderOrder",Eo=function(t){function e(e){var n=this,i=e||{},r=f({},i);return delete r.style,delete r.renderBuffer,delete r.updateWhileAnimating,delete r.updateWhileInteracting,(n=t.call(this,r)||this).declutter_=void 0!==i.declutter&&i.declutter,n.renderBuffer_=void 0!==i.renderBuffer?i.renderBuffer:100,n.style_=null,n.styleFunction_=void 0,n.setStyle(i.style),n.updateWhileAnimating_=void 0!==i.updateWhileAnimating&&i.updateWhileAnimating,n.updateWhileInteracting_=void 0!==i.updateWhileInteracting&&i.updateWhileInteracting,n}return wo(e,t),e.prototype.getDeclutter=function(){return this.declutter_},e.prototype.getFeatures=function(e){return t.prototype.getFeatures.call(this,e)},e.prototype.getRenderBuffer=function(){return this.renderBuffer_},e.prototype.getRenderOrder=function(){return this.get(So)},e.prototype.getStyle=function(){return this.style_},e.prototype.getStyleFunction=function(){return this.styleFunction_},e.prototype.getUpdateWhileAnimating=function(){return this.updateWhileAnimating_},e.prototype.getUpdateWhileInteracting=function(){return this.updateWhileInteracting_},e.prototype.renderDeclutter=function(t){t.declutterTree||(t.declutterTree=new Nr(9)),this.getRenderer().renderDeclutter(t)},e.prototype.setRenderOrder=function(t){this.set(So,t)},e.prototype.setStyle=function(t){this.style_=void 0!==t?t:mo,this.styleFunction_=null===t?void 0:function(t){var e,n;"function"==typeof t?e=t:(Array.isArray(t)?n=t:(vt("function"==typeof t.getZIndex,41),n=[t]),e=function(){return n});return e}(this.style_),this.changed()},e}(Gt),To={BEGIN_GEOMETRY:0,BEGIN_PATH:1,CIRCLE:2,CLOSE_PATH:3,CUSTOM:4,DRAW_CHARS:5,DRAW_IMAGE:6,END_GEOMETRY:7,FILL:8,MOVE_TO_LINE_TO:9,SET_FILL_STYLE:10,SET_STROKE_STYLE:11,STROKE:12},bo=[To.FILL],Oo=[To.STROKE],Ro=[To.BEGIN_PATH],Io=[To.CLOSE_PATH],Po=To,Mo=function(){function t(){}return t.prototype.drawCustom=function(t,e,n,i){},t.prototype.drawGeometry=function(t){},t.prototype.setStyle=function(t){},t.prototype.drawCircle=function(t,e){},t.prototype.drawFeature=function(t,e){},t.prototype.drawGeometryCollection=function(t,e){},t.prototype.drawLineString=function(t,e){},t.prototype.drawMultiLineString=function(t,e){},t.prototype.drawMultiPoint=function(t,e){},t.prototype.drawMultiPolygon=function(t,e){},t.prototype.drawPoint=function(t,e){},t.prototype.drawPolygon=function(t,e){},t.prototype.drawText=function(t,e){},t.prototype.setFillStrokeStyle=function(t,e){},t.prototype.setImageStyle=function(t,e){},t.prototype.setTextStyle=function(t,e){},t}(),Fo=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),Lo=function(t){function e(e,n,i,r){var o=t.call(this)||this;return o.tolerance=e,o.maxExtent=n,o.pixelRatio=r,o.maxLineWidth=0,o.resolution=i,o.beginGeometryInstruction1_=null,o.beginGeometryInstruction2_=null,o.bufferedMaxExtent_=null,o.instructions=[],o.coordinates=[],o.tmpCoordinate_=[],o.hitDetectionInstructions=[],o.state={},o}return Fo(e,t),e.prototype.applyPixelRatio=function(t){var e=this.pixelRatio;return 1==e?t:t.map((function(t){return t*e}))},e.prototype.appendFlatPointCoordinates=function(t,e){for(var n=this.getBufferedMaxExtent(),i=this.tmpCoordinate_,r=this.coordinates,o=r.length,s=0,a=t.length;s<a;s+=e)i[0]=t[s],i[1]=t[s+1],de(n,i)&&(r[o++]=i[0],r[o++]=i[1]);return o},e.prototype.appendFlatLineCoordinates=function(t,e,n,i,r,o){var s=this.coordinates,a=s.length,l=this.getBufferedMaxExtent();o&&(e+=i);var h,u,c,p=t[e],f=t[e+1],d=this.tmpCoordinate_,g=!0;for(h=e+i;h<n;h+=i)d[0]=t[h],d[1]=t[h+1],(c=ye(l,d))!==u?(g&&(s[a++]=p,s[a++]=f,g=!1),s[a++]=d[0],s[a++]=d[1]):1===c?(s[a++]=d[0],s[a++]=d[1],g=!1):g=!0,p=d[0],f=d[1],u=c;return(r&&g||h===e+i)&&(s[a++]=p,s[a++]=f),a},e.prototype.drawCustomCoordinates_=function(t,e,n,i,r){for(var o=0,s=n.length;o<s;++o){var a=n[o],l=this.appendFlatLineCoordinates(t,e,a,i,!1,!1);r.push(l),e=a}return e},e.prototype.drawCustom=function(t,e,n,i){this.beginGeometry(t,e);var r,o,s,a,l,h=t.getType(),u=t.getStride(),c=this.coordinates.length;switch(h){case An:r=t.getOrientedFlatCoordinates(),a=[];var p=t.getEndss();l=0;for(var f=0,d=p.length;f<d;++f){var g=[];l=this.drawCustomCoordinates_(r,l,p[f],u,g),a.push(g)}this.instructions.push([Po.CUSTOM,c,a,t,n,ci]),this.hitDetectionInstructions.push([Po.CUSTOM,c,a,t,i||n,ci]);break;case Mn:case Ln:s=[],r=h==Mn?t.getOrientedFlatCoordinates():t.getFlatCoordinates(),l=this.drawCustomCoordinates_(r,0,t.getEnds(),u,s),this.instructions.push([Po.CUSTOM,c,s,t,n,ui]),this.hitDetectionInstructions.push([Po.CUSTOM,c,s,t,i||n,ui]);break;case Pn:case kn:r=t.getFlatCoordinates(),o=this.appendFlatLineCoordinates(r,0,r.length,u,!1,!1),this.instructions.push([Po.CUSTOM,c,o,t,n,hi]),this.hitDetectionInstructions.push([Po.CUSTOM,c,o,t,i||n,hi]);break;case Fn:r=t.getFlatCoordinates(),(o=this.appendFlatPointCoordinates(r,u))>c&&(this.instructions.push([Po.CUSTOM,c,o,t,n,hi]),this.hitDetectionInstructions.push([Po.CUSTOM,c,o,t,i||n,hi]));break;case In:r=t.getFlatCoordinates(),this.coordinates.push(r[0],r[1]),o=this.coordinates.length,this.instructions.push([Po.CUSTOM,c,o,t,n]),this.hitDetectionInstructions.push([Po.CUSTOM,c,o,t,i||n])}this.endGeometry(e)},e.prototype.beginGeometry=function(t,e){this.beginGeometryInstruction1_=[Po.BEGIN_GEOMETRY,e,0,t],this.instructions.push(this.beginGeometryInstruction1_),this.beginGeometryInstruction2_=[Po.BEGIN_GEOMETRY,e,0,t],this.hitDetectionInstructions.push(this.beginGeometryInstruction2_)},e.prototype.finish=function(){return{instructions:this.instructions,hitDetectionInstructions:this.hitDetectionInstructions,coordinates:this.coordinates}},e.prototype.reverseHitDetectionInstructions=function(){var t,e=this.hitDetectionInstructions;e.reverse();var n,i,r=e.length,o=-1;for(t=0;t<r;++t)(i=(n=e[t])[0])==Po.END_GEOMETRY?o=t:i==Po.BEGIN_GEOMETRY&&(n[2]=t,a(this.hitDetectionInstructions,o,t),o=-1)},e.prototype.setFillStrokeStyle=function(t,e){var n=this.state;if(t){var i=t.getColor();n.fillStyle=Br(i||Zr)}else n.fillStyle=void 0;if(e){var r=e.getColor();n.strokeStyle=Br(r||qr);var o=e.getLineCap();n.lineCap=void 0!==o?o:Vr;var s=e.getLineDash();n.lineDash=s?s.slice():Ur;var a=e.getLineDashOffset();n.lineDashOffset=a||0;var l=e.getLineJoin();n.lineJoin=void 0!==l?l:Hr;var h=e.getWidth();n.lineWidth=void 0!==h?h:1;var u=e.getMiterLimit();n.miterLimit=void 0!==u?u:10,n.lineWidth>this.maxLineWidth&&(this.maxLineWidth=n.lineWidth,this.bufferedMaxExtent_=null)}else n.strokeStyle=void 0,n.lineCap=void 0,n.lineDash=null,n.lineDashOffset=void 0,n.lineJoin=void 0,n.lineWidth=void 0,n.miterLimit=void 0},e.prototype.createFill=function(t){var e=t.fillStyle,n=[Po.SET_FILL_STYLE,e];return"string"!=typeof e&&n.push(!0),n},e.prototype.applyStroke=function(t){this.instructions.push(this.createStroke(t))},e.prototype.createStroke=function(t){return[Po.SET_STROKE_STYLE,t.strokeStyle,t.lineWidth*this.pixelRatio,t.lineCap,t.lineJoin,t.miterLimit,this.applyPixelRatio(t.lineDash),t.lineDashOffset*this.pixelRatio]},e.prototype.updateFillStyle=function(t,e){var n=t.fillStyle;"string"==typeof n&&t.currentFillStyle==n||(void 0!==n&&this.instructions.push(e.call(this,t)),t.currentFillStyle=n)},e.prototype.updateStrokeStyle=function(t,e){var n=t.strokeStyle,i=t.lineCap,r=t.lineDash,o=t.lineDashOffset,s=t.lineJoin,a=t.lineWidth,l=t.miterLimit;(t.currentStrokeStyle!=n||t.currentLineCap!=i||r!=t.currentLineDash&&!h(t.currentLineDash,r)||t.currentLineDashOffset!=o||t.currentLineJoin!=s||t.currentLineWidth!=a||t.currentMiterLimit!=l)&&(void 0!==n&&e.call(this,t),t.currentStrokeStyle=n,t.currentLineCap=i,t.currentLineDash=r,t.currentLineDashOffset=o,t.currentLineJoin=s,t.currentLineWidth=a,t.currentMiterLimit=l)},e.prototype.endGeometry=function(t){this.beginGeometryInstruction1_[2]=this.instructions.length,this.beginGeometryInstruction1_=null,this.beginGeometryInstruction2_[2]=this.hitDetectionInstructions.length,this.beginGeometryInstruction2_=null;var e=[Po.END_GEOMETRY,t];this.instructions.push(e),this.hitDetectionInstructions.push(e)},e.prototype.getBufferedMaxExtent=function(){if(!this.bufferedMaxExtent_&&(this.bufferedMaxExtent_=pe(this.maxExtent),this.maxLineWidth>0)){var t=this.resolution*(this.maxLineWidth+1)/2;ce(this.bufferedMaxExtent_,t,this.bufferedMaxExtent_)}return this.bufferedMaxExtent_},e}(Mo),Ao=Lo,Do=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),ko=function(t){function e(e,n,i,r){var o=t.call(this,e,n,i,r)||this;return o.hitDetectionImage_=null,o.image_=null,o.imagePixelRatio_=void 0,o.anchorX_=void 0,o.anchorY_=void 0,o.height_=void 0,o.opacity_=void 0,o.originX_=void 0,o.originY_=void 0,o.rotateWithView_=void 0,o.rotation_=void 0,o.scale_=void 0,o.width_=void 0,o.declutterImageWithText_=void 0,o}return Do(e,t),e.prototype.drawPoint=function(t,e){if(this.image_){this.beginGeometry(t,e);var n=t.getFlatCoordinates(),i=t.getStride(),r=this.coordinates.length,o=this.appendFlatPointCoordinates(n,i);this.instructions.push([Po.DRAW_IMAGE,r,o,this.image_,this.anchorX_*this.imagePixelRatio_,this.anchorY_*this.imagePixelRatio_,Math.ceil(this.height_*this.imagePixelRatio_),this.opacity_,this.originX_,this.originY_,this.rotateWithView_,this.rotation_,[this.scale_[0]*this.pixelRatio/this.imagePixelRatio_,this.scale_[1]*this.pixelRatio/this.imagePixelRatio_],Math.ceil(this.width_*this.imagePixelRatio_),this.declutterImageWithText_]),this.hitDetectionInstructions.push([Po.DRAW_IMAGE,r,o,this.hitDetectionImage_,this.anchorX_,this.anchorY_,this.height_,this.opacity_,this.originX_,this.originY_,this.rotateWithView_,this.rotation_,this.scale_,this.width_,this.declutterImageWithText_]),this.endGeometry(e)}},e.prototype.drawMultiPoint=function(t,e){if(this.image_){this.beginGeometry(t,e);var n=t.getFlatCoordinates(),i=t.getStride(),r=this.coordinates.length,o=this.appendFlatPointCoordinates(n,i);this.instructions.push([Po.DRAW_IMAGE,r,o,this.image_,this.anchorX_*this.imagePixelRatio_,this.anchorY_*this.imagePixelRatio_,Math.ceil(this.height_*this.imagePixelRatio_),this.opacity_,this.originX_,this.originY_,this.rotateWithView_,this.rotation_,[this.scale_[0]*this.pixelRatio/this.imagePixelRatio_,this.scale_[1]*this.pixelRatio/this.imagePixelRatio_],Math.ceil(this.width_*this.imagePixelRatio_),this.declutterImageWithText_]),this.hitDetectionInstructions.push([Po.DRAW_IMAGE,r,o,this.hitDetectionImage_,this.anchorX_,this.anchorY_,this.height_,this.opacity_,this.originX_,this.originY_,this.rotateWithView_,this.rotation_,this.scale_,this.width_,this.declutterImageWithText_]),this.endGeometry(e)}},e.prototype.finish=function(){return this.reverseHitDetectionInstructions(),this.anchorX_=void 0,this.anchorY_=void 0,this.hitDetectionImage_=null,this.image_=null,this.imagePixelRatio_=void 0,this.height_=void 0,this.scale_=void 0,this.opacity_=void 0,this.originX_=void 0,this.originY_=void 0,this.rotateWithView_=void 0,this.rotation_=void 0,this.width_=void 0,t.prototype.finish.call(this)},e.prototype.setImageStyle=function(t,e){var n=t.getAnchor(),i=t.getSize(),r=t.getHitDetectionImage(),o=t.getImage(this.pixelRatio),s=t.getOrigin();this.imagePixelRatio_=t.getPixelRatio(this.pixelRatio),this.anchorX_=n[0],this.anchorY_=n[1],this.hitDetectionImage_=r,this.image_=o,this.height_=i[1],this.opacity_=t.getOpacity(),this.originX_=s[0]*this.imagePixelRatio_,this.originY_=s[1]*this.imagePixelRatio_,this.rotateWithView_=t.getRotateWithView(),this.rotation_=t.getRotation(),this.scale_=t.getScaleArray(),this.width_=i[0],this.declutterImageWithText_=e},e}(Ao),jo=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),Go=function(t){function e(e,n,i,r){return t.call(this,e,n,i,r)||this}return jo(e,t),e.prototype.drawFlatCoordinates_=function(t,e,n,i){var r=this.coordinates.length,o=this.appendFlatLineCoordinates(t,e,n,i,!1,!1),s=[Po.MOVE_TO_LINE_TO,r,o];return this.instructions.push(s),this.hitDetectionInstructions.push(s),n},e.prototype.drawLineString=function(t,e){var n=this.state,i=n.strokeStyle,r=n.lineWidth;if(void 0!==i&&void 0!==r){this.updateStrokeStyle(n,this.applyStroke),this.beginGeometry(t,e),this.hitDetectionInstructions.push([Po.SET_STROKE_STYLE,n.strokeStyle,n.lineWidth,n.lineCap,n.lineJoin,n.miterLimit,Ur,0],Ro);var o=t.getFlatCoordinates(),s=t.getStride();this.drawFlatCoordinates_(o,0,o.length,s),this.hitDetectionInstructions.push(Oo),this.endGeometry(e)}},e.prototype.drawMultiLineString=function(t,e){var n=this.state,i=n.strokeStyle,r=n.lineWidth;if(void 0!==i&&void 0!==r){this.updateStrokeStyle(n,this.applyStroke),this.beginGeometry(t,e),this.hitDetectionInstructions.push([Po.SET_STROKE_STYLE,n.strokeStyle,n.lineWidth,n.lineCap,n.lineJoin,n.miterLimit,n.lineDash,n.lineDashOffset],Ro);for(var o=t.getEnds(),s=t.getFlatCoordinates(),a=t.getStride(),l=0,h=0,u=o.length;h<u;++h)l=this.drawFlatCoordinates_(s,l,o[h],a);this.hitDetectionInstructions.push(Oo),this.endGeometry(e)}},e.prototype.finish=function(){var e=this.state;return null!=e.lastStroke&&e.lastStroke!=this.coordinates.length&&this.instructions.push(Oo),this.reverseHitDetectionInstructions(),this.state=null,t.prototype.finish.call(this)},e.prototype.applyStroke=function(e){null!=e.lastStroke&&e.lastStroke!=this.coordinates.length&&(this.instructions.push(Oo),e.lastStroke=this.coordinates.length),e.lastStroke=0,t.prototype.applyStroke.call(this,e),this.instructions.push(Ro)},e}(Ao),zo=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),Wo=function(t){function e(e,n,i,r){return t.call(this,e,n,i,r)||this}return zo(e,t),e.prototype.drawFlatCoordinatess_=function(t,e,n,i){var r=this.state,o=void 0!==r.fillStyle,s=void 0!==r.strokeStyle,a=n.length;this.instructions.push(Ro),this.hitDetectionInstructions.push(Ro);for(var l=0;l<a;++l){var h=n[l],u=this.coordinates.length,c=this.appendFlatLineCoordinates(t,e,h,i,!0,!s),p=[Po.MOVE_TO_LINE_TO,u,c];this.instructions.push(p),this.hitDetectionInstructions.push(p),s&&(this.instructions.push(Io),this.hitDetectionInstructions.push(Io)),e=h}return o&&(this.instructions.push(bo),this.hitDetectionInstructions.push(bo)),s&&(this.instructions.push(Oo),this.hitDetectionInstructions.push(Oo)),e},e.prototype.drawCircle=function(t,e){var n=this.state,i=n.fillStyle,r=n.strokeStyle;if(void 0!==i||void 0!==r){this.setFillStrokeStyles_(),this.beginGeometry(t,e),void 0!==n.fillStyle&&this.hitDetectionInstructions.push([Po.SET_FILL_STYLE,Zr]),void 0!==n.strokeStyle&&this.hitDetectionInstructions.push([Po.SET_STROKE_STYLE,n.strokeStyle,n.lineWidth,n.lineCap,n.lineJoin,n.miterLimit,n.lineDash,n.lineDashOffset]);var o=t.getFlatCoordinates(),s=t.getStride(),a=this.coordinates.length;this.appendFlatLineCoordinates(o,0,o.length,s,!1,!1);var l=[Po.CIRCLE,a];this.instructions.push(Ro,l),this.hitDetectionInstructions.push(Ro,l),void 0!==n.fillStyle&&(this.instructions.push(bo),this.hitDetectionInstructions.push(bo)),void 0!==n.strokeStyle&&(this.instructions.push(Oo),this.hitDetectionInstructions.push(Oo)),this.endGeometry(e)}},e.prototype.drawPolygon=function(t,e){var n=this.state,i=n.fillStyle,r=n.strokeStyle;if(void 0!==i||void 0!==r){this.setFillStrokeStyles_(),this.beginGeometry(t,e),void 0!==n.fillStyle&&this.hitDetectionInstructions.push([Po.SET_FILL_STYLE,Zr]),void 0!==n.strokeStyle&&this.hitDetectionInstructions.push([Po.SET_STROKE_STYLE,n.strokeStyle,n.lineWidth,n.lineCap,n.lineJoin,n.miterLimit,n.lineDash,n.lineDashOffset]);var o=t.getEnds(),s=t.getOrientedFlatCoordinates(),a=t.getStride();this.drawFlatCoordinatess_(s,0,o,a),this.endGeometry(e)}},e.prototype.drawMultiPolygon=function(t,e){var n=this.state,i=n.fillStyle,r=n.strokeStyle;if(void 0!==i||void 0!==r){this.setFillStrokeStyles_(),this.beginGeometry(t,e),void 0!==n.fillStyle&&this.hitDetectionInstructions.push([Po.SET_FILL_STYLE,Zr]),void 0!==n.strokeStyle&&this.hitDetectionInstructions.push([Po.SET_STROKE_STYLE,n.strokeStyle,n.lineWidth,n.lineCap,n.lineJoin,n.miterLimit,n.lineDash,n.lineDashOffset]);for(var o=t.getEndss(),s=t.getOrientedFlatCoordinates(),a=t.getStride(),l=0,h=0,u=o.length;h<u;++h)l=this.drawFlatCoordinatess_(s,l,o[h],a);this.endGeometry(e)}},e.prototype.finish=function(){this.reverseHitDetectionInstructions(),this.state=null;var e=this.tolerance;if(0!==e)for(var n=this.coordinates,i=0,r=n.length;i<r;++i)n[i]=oi(n[i],e);return t.prototype.finish.call(this)},e.prototype.setFillStrokeStyles_=function(){var t=this.state;void 0!==t.fillStyle&&this.updateFillStyle(t,this.createFill),void 0!==t.strokeStyle&&this.updateStrokeStyle(t,this.applyStroke)},e}(Ao),Xo=Wo;function No(t,e,n,i,r){var o,s,a,l,h,u,c,p,f,d=n,g=n,_=0,y=0,v=n;for(o=n;o<i;o+=r){var m=e[o],x=e[o+1];void 0!==l&&(p=m-l,f=x-h,a=Math.sqrt(p*p+f*f),void 0!==u&&(y+=s,Math.acos((u*p+c*f)/(s*a))>t&&(y>_&&(_=y,d=v,g=o),y=0,v=o-r)),s=a,u=p,c=f),l=m,h=x}return(y+=a)>_?[v,o]:[d,g]}var Yo=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),Bo={left:0,end:0,center:.5,right:1,start:1,top:0,middle:.5,hanging:.2,alphabetic:.8,ideographic:.8,bottom:1},Ko=function(t){function e(e,n,i,r){var o=t.call(this,e,n,i,r)||this;return o.labels_=null,o.text_="",o.textOffsetX_=0,o.textOffsetY_=0,o.textRotateWithView_=void 0,o.textRotation_=0,o.textFillState_=null,o.fillStates={},o.textStrokeState_=null,o.strokeStates={},o.textState_={},o.textStates={},o.textKey_="",o.fillKey_="",o.strokeKey_="",o.declutterImageWithText_=void 0,o}return Yo(e,t),e.prototype.finish=function(){var e=t.prototype.finish.call(this);return e.textStates=this.textStates,e.fillStates=this.fillStates,e.strokeStates=this.strokeStates,e},e.prototype.drawText=function(t,e){var n=this.textFillState_,i=this.textStrokeState_,r=this.textState_;if(""!==this.text_&&r&&(n||i)){var o=this.coordinates,s=o.length,a=t.getType(),l=null,h=t.getStride();if("line"!==r.placement||a!=Pn&&a!=Ln&&a!=Mn&&a!=An){var u=r.overflow?null:[];switch(a){case In:case Fn:l=t.getFlatCoordinates();break;case Pn:l=t.getFlatMidpoint();break;case kn:l=t.getCenter();break;case Ln:l=t.getFlatMidpoints(),h=2;break;case Mn:l=t.getFlatInteriorPoint(),r.overflow||u.push(l[2]/this.resolution),h=3;break;case An:var c=t.getFlatInteriorPoints();for(l=[],w=0,S=c.length;w<S;w+=3)r.overflow||u.push(c[w+2]/this.resolution),l.push(c[w],c[w+1]);if(0===l.length)return;h=2}if((P=this.appendFlatPointCoordinates(l,h))===s)return;if(u&&(P-s)/2!=l.length/h){var p=s/2;u=u.filter((function(t,e){var n=o[2*(p+e)]===l[e*h]&&o[2*(p+e)+1]===l[e*h+1];return n||--p,n}))}this.saveTextStates_(),(r.backgroundFill||r.backgroundStroke)&&(this.setFillStrokeStyle(r.backgroundFill,r.backgroundStroke),r.backgroundFill&&(this.updateFillStyle(this.state,this.createFill),this.hitDetectionInstructions.push(this.createFill(this.state))),r.backgroundStroke&&(this.updateStrokeStyle(this.state,this.applyStroke),this.hitDetectionInstructions.push(this.createStroke(this.state)))),this.beginGeometry(t,e);var f=r.padding;if(f!=$r&&(r.scale[0]<0||r.scale[1]<0)){var d=r.padding[0],g=r.padding[1],_=r.padding[2],y=r.padding[3];r.scale[0]<0&&(g=-g,y=-y),r.scale[1]<0&&(d=-d,_=-_),f=[d,g,_,y]}var v=this.pixelRatio;this.instructions.push([Po.DRAW_IMAGE,s,P,null,NaN,NaN,NaN,1,0,0,this.textRotateWithView_,this.textRotation_,[1,1],NaN,this.declutterImageWithText_,f==$r?$r:f.map((function(t){return t*v})),!!r.backgroundFill,!!r.backgroundStroke,this.text_,this.textKey_,this.strokeKey_,this.fillKey_,this.textOffsetX_,this.textOffsetY_,u]);var m=1/v;this.hitDetectionInstructions.push([Po.DRAW_IMAGE,s,P,null,NaN,NaN,NaN,1,0,0,this.textRotateWithView_,this.textRotation_,[m,m],NaN,this.declutterImageWithText_,f,!!r.backgroundFill,!!r.backgroundStroke,this.text_,this.textKey_,this.strokeKey_,this.fillKey_,this.textOffsetX_,this.textOffsetY_,u]),this.endGeometry(e)}else{if(!je(this.getBufferedMaxExtent(),t.getExtent()))return;var x=void 0;if(l=t.getFlatCoordinates(),a==Pn)x=[l.length];else if(a==Ln)x=t.getEnds();else if(a==Mn)x=t.getEnds().slice(0,1);else if(a==An){var C=t.getEndss();x=[];for(var w=0,S=C.length;w<S;++w)x.push(C[w][0])}this.beginGeometry(t,e);for(var E=r.textAlign,T=0,b=void 0,O=0,R=x.length;O<R;++O){if(null==E){var I=No(r.maxAngle,l,T,x[O],h);T=I[0],b=I[1]}else b=x[O];for(w=T;w<b;w+=h)o.push(l[w],l[w+1]);var P=o.length;T=x[O],this.drawChars_(s,P),s=P}this.endGeometry(e)}}},e.prototype.saveTextStates_=function(){var t=this.textStrokeState_,e=this.textState_,n=this.textFillState_,i=this.strokeKey_;t&&(i in this.strokeStates||(this.strokeStates[i]={strokeStyle:t.strokeStyle,lineCap:t.lineCap,lineDashOffset:t.lineDashOffset,lineWidth:t.lineWidth,lineJoin:t.lineJoin,miterLimit:t.miterLimit,lineDash:t.lineDash}));var r=this.textKey_;r in this.textStates||(this.textStates[r]={font:e.font,textAlign:e.textAlign||Jr,textBaseline:e.textBaseline||Qr,scale:e.scale});var o=this.fillKey_;n&&(o in this.fillStates||(this.fillStates[o]={fillStyle:n.fillStyle}))},e.prototype.drawChars_=function(t,e){var n=this.textStrokeState_,i=this.textState_,r=this.strokeKey_,o=this.textKey_,s=this.fillKey_;this.saveTextStates_();var a=this.pixelRatio,l=Bo[i.textBaseline],h=this.textOffsetY_*a,u=this.text_,c=n?n.lineWidth*Math.abs(i.scale[0])/2:0;this.instructions.push([Po.DRAW_CHARS,t,e,l,i.overflow,s,i.maxAngle,a,h,r,c*a,u,o,1]),this.hitDetectionInstructions.push([Po.DRAW_CHARS,t,e,l,i.overflow,s,i.maxAngle,1,h,r,c,u,o,1/a])},e.prototype.setTextStyle=function(t,e){var n,i,r;if(t){var o=t.getFill();o?((i=this.textFillState_)||(i={},this.textFillState_=i),i.fillStyle=Br(o.getColor()||Zr)):(i=null,this.textFillState_=i);var s=t.getStroke();if(s){(r=this.textStrokeState_)||(r={},this.textStrokeState_=r);var a=s.getLineDash(),l=s.getLineDashOffset(),h=s.getWidth(),u=s.getMiterLimit();r.lineCap=s.getLineCap()||Vr,r.lineDash=a?a.slice():Ur,r.lineDashOffset=void 0===l?0:l,r.lineJoin=s.getLineJoin()||Hr,r.lineWidth=void 0===h?1:h,r.miterLimit=void 0===u?10:u,r.strokeStyle=Br(s.getColor()||qr)}else r=null,this.textStrokeState_=r;n=this.textState_;var c=t.getFont()||Kr;oo(c);var p=t.getScaleArray();n.overflow=t.getOverflow(),n.font=c,n.maxAngle=t.getMaxAngle(),n.placement=t.getPlacement(),n.textAlign=t.getTextAlign(),n.textBaseline=t.getTextBaseline()||Qr,n.backgroundFill=t.getBackgroundFill(),n.backgroundStroke=t.getBackgroundStroke(),n.padding=t.getPadding()||$r,n.scale=void 0===p?[1,1]:p;var f=t.getOffsetX(),d=t.getOffsetY(),g=t.getRotateWithView(),_=t.getRotation();this.text_=t.getText()||"",this.textOffsetX_=void 0===f?0:f,this.textOffsetY_=void 0===d?0:d,this.textRotateWithView_=void 0!==g&&g,this.textRotation_=void 0===_?0:_,this.strokeKey_=r?("string"==typeof r.strokeStyle?r.strokeStyle:D(r.strokeStyle))+r.lineCap+r.lineDashOffset+"|"+r.lineWidth+r.lineJoin+r.miterLimit+"["+r.lineDash.join()+"]":"",this.textKey_=n.font+n.scale+(n.textAlign||"?")+(n.textBaseline||"?"),this.fillKey_=i?"string"==typeof i.fillStyle?i.fillStyle:"|"+D(i.fillStyle):""}else this.text_="";this.declutterImageWithText_=e},e}(Ao),Zo={Circle:Xo,Default:Ao,Image:ko,LineString:Go,Polygon:Xo,Text:Ko},Vo=function(){function t(t,e,n,i){this.tolerance_=t,this.maxExtent_=e,this.pixelRatio_=i,this.resolution_=n,this.buildersByZIndex_={}}return t.prototype.finish=function(){var t={};for(var e in this.buildersByZIndex_){t[e]=t[e]||{};var n=this.buildersByZIndex_[e];for(var i in n){var r=n[i].finish();t[e][i]=r}}return t},t.prototype.getBuilder=function(t,e){var n=void 0!==t?t.toString():"0",i=this.buildersByZIndex_[n];void 0===i&&(i={},this.buildersByZIndex_[n]=i);var r=i[e];return void 0===r&&(r=new(0,Zo[e])(this.tolerance_,this.maxExtent_,this.resolution_,this.pixelRatio_),i[e]=r),r},t}(),Uo="Circle",Ho="Default",qo="Image",Jo="LineString",Qo="Polygon",$o="Text";function ts(t,e,n,i,r,o,s,a,l,h,u,c){var p=t[e],f=t[e+1],d=0,g=0,_=0,y=0;function v(){d=p,g=f,p=t[e+=i],f=t[e+1],y+=_,_=Math.sqrt((p-d)*(p-d)+(f-g)*(f-g))}do{v()}while(e<n-i&&y+_<o);for(var m=0===_?0:(o-y)/_,x=bt(d,p,m),C=bt(g,f,m),w=e-i,S=y,E=o+a*l(h,r,u);e<n-i&&y+_<E;)v();var T,b=bt(d,p,m=0===_?0:(E-y)/_),O=bt(g,f,m);if(c){var R=[x,C,b,O];Nn(R,0,4,2,c,R,R),T=R[0]>R[2]}else T=x>b;var I,P=Math.PI,M=[],F=w+i===e;if(_=0,y=S,p=t[e=w],f=t[e+1],F){v(),I=Math.atan2(f-g,p-d),T&&(I+=I>0?-P:P);var L=(b+x)/2,A=(O+C)/2;return M[0]=[L,A,(E-o)/2,I,r],M}for(var D=0,k=r.length;D<k;){v();var j=Math.atan2(f-g,p-d);if(T&&(j+=j>0?-P:P),void 0!==I){var G=j-I;if(G+=G>P?-2*P:G<-P?2*P:0,Math.abs(G)>s)return null}I=j;for(var z=D,W=0;D<k;++D){var X=a*l(h,r[T?k-D-1:D],u);if(e+i<n&&y+_<o+W+X/2)break;W+=X}if(D!==z){var N=T?r.substring(k-z,k-D):r.substring(z,D);L=bt(d,p,m=0===_?0:(o+W/2-y)/_),A=bt(g,f,m),M.push([L,A,W/2,j,N]),o+=W}}return M}var es=[1/0,1/0,-1/0,-1/0],ns=[],is=[],rs=[],os=[];function ss(t){return t[3].declutterBox}var as=new RegExp("["+String.fromCharCode(1425)+"-"+String.fromCharCode(2303)+String.fromCharCode(64285)+"-"+String.fromCharCode(65023)+String.fromCharCode(65136)+"-"+String.fromCharCode(65276)+String.fromCharCode(67584)+"-"+String.fromCharCode(69631)+String.fromCharCode(124928)+"-"+String.fromCharCode(126975)+"]");function ls(t,e){return"start"!==e&&"end"!==e||as.test(t)||(e="start"===e?"left":"right"),Bo[e]}function hs(t,e,n){return n>0&&t.push("\n",""),t.push(e,""),t}var us=function(){function t(t,e,n,i){this.overlaps=n,this.pixelRatio=e,this.resolution=t,this.alignFill_,this.instructions=i.instructions,this.coordinates=i.coordinates,this.coordinateCache_={},this.renderedTransform_=[1,0,0,1,0,0],this.hitDetectionInstructions=i.hitDetectionInstructions,this.pixelCoordinates_=null,this.viewRotation_=0,this.fillStates=i.fillStates||{},this.strokeStates=i.strokeStates||{},this.textStates=i.textStates||{},this.widths_={},this.labels_={}}return t.prototype.createLabel=function(t,e,n,i){var r=t+e+n+i;if(this.labels_[r])return this.labels_[r];var o=i?this.strokeStates[i]:null,s=n?this.fillStates[n]:null,a=this.textStates[e],l=this.pixelRatio,h=[a.scale[0]*l,a.scale[1]*l],u=Array.isArray(t),c=ls(u?t[0]:t,a.textAlign||Jr),p=i&&o.lineWidth?o.lineWidth:0,f=u?t:t.split("\n").reduce(hs,[]),d=function(t,e){for(var n=[],i=[],r=[],o=0,s=0,a=0,l=0,h=0,u=e.length;h<=u;h+=2){var c=e[h];if("\n"!==c&&h!==u){var p=e[h+1]||t.font,f=lo(p,c);n.push(f),s+=f;var d=so(p);i.push(d),l=Math.max(l,d)}else o=Math.max(o,s),r.push(s),s=0,a+=l}return{width:o,height:a,widths:n,heights:i,lineWidths:r}}(a,f),g=d.width,_=d.height,y=d.widths,v=d.heights,m=d.lineWidths,x=g+p,C=[],w=(x+2)*h[0],S=(_+p)*h[1],E={width:w<0?Math.floor(w):Math.ceil(w),height:S<0?Math.floor(S):Math.ceil(S),contextInstructions:C};1==h[0]&&1==h[1]||C.push("scale",h),i&&(C.push("strokeStyle",o.strokeStyle),C.push("lineWidth",p),C.push("lineCap",o.lineCap),C.push("lineJoin",o.lineJoin),C.push("miterLimit",o.miterLimit),(V?OffscreenCanvasRenderingContext2D:CanvasRenderingContext2D).prototype.setLineDash&&(C.push("setLineDash",[o.lineDash]),C.push("lineDashOffset",o.lineDashOffset))),n&&C.push("fillStyle",s.fillStyle),C.push("textBaseline","middle"),C.push("textAlign","center");for(var T,b=.5-c,O=c*x+b*p,R=[],I=[],P=0,M=0,F=0,L=0,A=0,D=f.length;A<D;A+=2){var k=f[A];if("\n"!==k){var j=f[A+1]||a.font;j!==T&&(i&&R.push("font",j),n&&I.push("font",j),T=j),P=Math.max(P,v[F]);var G=[k,O+b*y[F]+c*(y[F]-m[L]),.5*(p+P)+M];O+=y[F],i&&R.push("strokeText",G),n&&I.push("fillText",G),++F}else M+=P,P=0,O=c*x+b*p,++L}return Array.prototype.push.apply(C,R),Array.prototype.push.apply(C,I),this.labels_[r]=E,E},t.prototype.replayTextBackground_=function(t,e,n,i,r,o,s){t.beginPath(),t.moveTo.apply(t,e),t.lineTo.apply(t,n),t.lineTo.apply(t,i),t.lineTo.apply(t,r),t.lineTo.apply(t,e),o&&(this.alignFill_=o[2],this.fill_(t)),s&&(this.setStrokeStyle_(t,s),t.stroke())},t.prototype.calculateImageOrLabelDimensions_=function(t,e,n,i,r,o,s,a,l,h,u,c,p,f,d,g){var _,y=n-(s*=c[0]),v=i-(a*=c[1]),m=r+l>t?t-l:r,x=o+h>e?e-h:o,C=f[3]+m*c[0]+f[1],w=f[0]+x*c[1]+f[2],S=y-f[3],E=v-f[0];return(d||0!==u)&&(ns[0]=S,os[0]=S,ns[1]=E,is[1]=E,is[0]=S+C,rs[0]=is[0],rs[1]=E+w,os[1]=rs[1]),0!==u?(jn(_=Gn([1,0,0,1,0,0],n,i,1,1,u,-n,-i),ns),jn(_,is),jn(_,rs),jn(_,os),ve(Math.min(ns[0],is[0],rs[0],os[0]),Math.min(ns[1],is[1],rs[1],os[1]),Math.max(ns[0],is[0],rs[0],os[0]),Math.max(ns[1],is[1],rs[1],os[1]),es)):ve(Math.min(S,S+C),Math.min(E,E+w),Math.max(S,S+C),Math.max(E,E+w),es),p&&(y=Math.round(y),v=Math.round(v)),{drawImageX:y,drawImageY:v,drawImageW:m,drawImageH:x,originX:l,originY:h,declutterBox:{minX:es[0],minY:es[1],maxX:es[2],maxY:es[3],value:g},canvasTransform:_,scale:c}},t.prototype.replayImageOrLabel_=function(t,e,n,i,r,o,s){var a=!(!o&&!s),l=i.declutterBox,h=t.canvas,u=s?s[2]*i.scale[0]/2:0;return l.minX-u<=h.width/e&&l.maxX+u>=0&&l.minY-u<=h.height/e&&l.maxY+u>=0&&(a&&this.replayTextBackground_(t,ns,is,rs,os,o,s),function(t,e,n,i,r,o,s,a,l,h,u){t.save(),1!==n&&(t.globalAlpha*=n),e&&t.setTransform.apply(t,e),i.contextInstructions?(t.translate(l,h),t.scale(u[0],u[1]),function(t,e){for(var n=t.contextInstructions,i=0,r=n.length;i<r;i+=2)Array.isArray(n[i+1])?e[n[i]].apply(e,n[i+1]):e[n[i]]=n[i+1]}(i,t)):u[0]<0||u[1]<0?(t.translate(l,h),t.scale(u[0],u[1]),t.drawImage(i,r,o,s,a,0,0,s,a)):t.drawImage(i,r,o,s,a,l,h,s*u[0],a*u[1]),t.restore()}(t,i.canvasTransform,r,n,i.originX,i.originY,i.drawImageW,i.drawImageH,i.drawImageX,i.drawImageY,i.scale)),!0},t.prototype.fill_=function(t){if(this.alignFill_){var e=jn(this.renderedTransform_,[0,0]),n=512*this.pixelRatio;t.save(),t.translate(e[0]%n,e[1]%n),t.rotate(this.viewRotation_)}t.fill(),this.alignFill_&&t.restore()},t.prototype.setStrokeStyle_=function(t,e){t.strokeStyle=e[1],t.lineWidth=e[2],t.lineCap=e[3],t.lineJoin=e[4],t.miterLimit=e[5],t.setLineDash&&(t.lineDashOffset=e[7],t.setLineDash(e[6]))},t.prototype.drawLabelWithPointPlacement_=function(t,e,n,i){var r=this.textStates[e],o=this.createLabel(t,e,i,n),s=this.strokeStates[n],a=this.pixelRatio,l=ls(Array.isArray(t)?t[0]:t,r.textAlign||Jr),h=Bo[r.textBaseline||Qr],u=s&&s.lineWidth?s.lineWidth:0;return{label:o,anchorX:l*(o.width/a-2*r.scale[0])+2*(.5-l)*u,anchorY:h*o.height/a+2*(.5-h)*u}},t.prototype.execute_=function(t,e,n,i,r,o,s,a){var l,u,c;this.pixelCoordinates_&&h(n,this.renderedTransform_)?l=this.pixelCoordinates_:(this.pixelCoordinates_||(this.pixelCoordinates_=[]),l=Xn(this.coordinates,0,this.coordinates.length,2,n,this.pixelCoordinates_),c=n,(u=this.renderedTransform_)[0]=c[0],u[1]=c[1],u[2]=c[2],u[3]=c[3],u[4]=c[4],u[5]=c[5]);for(var p,f,d,g,_,y,v,m,x,C,w,S,E,T,b,O,R=0,I=i.length,P=0,M=0,F=0,L=null,A=null,D=this.coordinateCache_,k=this.viewRotation_,j=Math.round(1e12*Math.atan2(-n[1],n[0]))/1e12,G={context:t,pixelRatio:this.pixelRatio,resolution:this.resolution,rotation:k},z=this.instructions!=i||this.overlaps?0:200;R<I;){var W=i[R];switch(W[0]){case Po.BEGIN_GEOMETRY:E=W[1],O=W[3],E.getGeometry()?void 0===s||je(s,O.getExtent())?++R:R=W[2]+1:R=W[2];break;case Po.BEGIN_PATH:M>z&&(this.fill_(t),M=0),F>z&&(t.stroke(),F=0),M||F||(t.beginPath(),g=NaN,_=NaN),++R;break;case Po.CIRCLE:var X=l[P=W[1]],N=l[P+1],Y=l[P+2]-X,B=l[P+3]-N,K=Math.sqrt(Y*Y+B*B);t.moveTo(X+K,N),t.arc(X,N,K,0,2*Math.PI,!0),++R;break;case Po.CLOSE_PATH:t.closePath(),++R;break;case Po.CUSTOM:P=W[1],p=W[2];var Z=W[3],V=W[4],U=6==W.length?W[5]:void 0;G.geometry=Z,G.feature=E,R in D||(D[R]=[]);var H=D[R];U?U(l,P,p,2,H):(H[0]=l[P],H[1]=l[P+1],H.length=2),V(H,G),++R;break;case Po.DRAW_IMAGE:P=W[1],p=W[2],m=W[3],f=W[4],d=W[5];var q=W[6],J=W[7],Q=W[8],$=W[9],tt=W[10],et=W[11],nt=W[12],it=W[13],rt=W[14];if(!m&&W.length>=19){x=W[18],C=W[19],w=W[20],S=W[21];var ot=this.drawLabelWithPointPlacement_(x,C,w,S);m=ot.label,W[3]=m;var st=W[22];f=(ot.anchorX-st)*this.pixelRatio,W[4]=f;var at=W[23];d=(ot.anchorY-at)*this.pixelRatio,W[5]=d,q=m.height,W[6]=q,it=m.width,W[13]=it}var lt=void 0;W.length>24&&(lt=W[24]);var ht=void 0,ut=void 0,ct=void 0;W.length>16?(ht=W[15],ut=W[16],ct=W[17]):(ht=$r,ut=!1,ct=!1),tt&&j?et+=k:tt||j||(et-=k);for(var pt=0;P<p;P+=2)if(!(lt&&lt[pt++]<it/this.pixelRatio)){var ft=[t,e,m,Wt=this.calculateImageOrLabelDimensions_(m.width,m.height,l[P],l[P+1],it,q,f,d,Q,$,et,nt,r,ht,ut||ct,E),J,ut?L:null,ct?A:null],dt=void 0,gt=void 0;if(a&&rt){var _t=p-P;if(!rt[_t]){rt[_t]=ft;continue}if(dt=rt[_t],delete rt[_t],gt=ss(dt),a.collides(gt))continue}a&&a.collides(Wt.declutterBox)||(dt&&(a&&a.insert(gt),this.replayImageOrLabel_.apply(this,dt)),a&&a.insert(Wt.declutterBox),this.replayImageOrLabel_.apply(this,ft))}++R;break;case Po.DRAW_CHARS:var yt=W[1],vt=W[2],mt=W[3],xt=W[4];S=W[5];var Ct=W[6],wt=W[7],St=W[8];w=W[9];var Et=W[10];x=W[11],C=W[12];var Tt=[W[13],W[13]],bt=this.textStates[C],Ot=bt.font,Rt=[bt.scale[0]*wt,bt.scale[1]*wt],It=void 0;Ot in this.widths_?It=this.widths_[Ot]:(It={},this.widths_[Ot]=It);var Pt=mi(l,yt,vt,2),Mt=Math.abs(Rt[0])*ho(Ot,x,It);if(xt||Mt<=Pt){var Ft=this.textStates[C].textAlign,Lt=ts(l,yt,vt,2,x,(Pt-Mt)*Bo[Ft],Ct,Math.abs(Rt[0]),ho,Ot,It,j?0:this.viewRotation_);t:if(Lt){var At=[],Dt=void 0,kt=void 0,jt=void 0,Gt=void 0,zt=void 0;if(w)for(Dt=0,kt=Lt.length;Dt<kt;++Dt){jt=(zt=Lt[Dt])[4],Gt=this.createLabel(jt,C,"",w),f=zt[2]+(Rt[0]<0?-Et:Et),d=mt*Gt.height+2*(.5-mt)*Et*Rt[1]/Rt[0]-St;var Wt=this.calculateImageOrLabelDimensions_(Gt.width,Gt.height,zt[0],zt[1],Gt.width,Gt.height,f,d,0,0,zt[3],Tt,!1,$r,!1,E);if(a&&a.collides(Wt.declutterBox))break t;At.push([t,e,Gt,Wt,1,null,null])}if(S)for(Dt=0,kt=Lt.length;Dt<kt;++Dt){if(jt=(zt=Lt[Dt])[4],Gt=this.createLabel(jt,C,S,""),f=zt[2],d=mt*Gt.height-St,Wt=this.calculateImageOrLabelDimensions_(Gt.width,Gt.height,zt[0],zt[1],Gt.width,Gt.height,f,d,0,0,zt[3],Tt,!1,$r,!1,E),a&&a.collides(Wt.declutterBox))break t;At.push([t,e,Gt,Wt,1,null,null])}a&&a.load(At.map(ss));for(var Xt=0,Nt=At.length;Xt<Nt;++Xt)this.replayImageOrLabel_.apply(this,At[Xt])}}++R;break;case Po.END_GEOMETRY:if(void 0!==o){var Yt=o(E=W[1],O);if(Yt)return Yt}++R;break;case Po.FILL:z?M++:this.fill_(t),++R;break;case Po.MOVE_TO_LINE_TO:for(P=W[1],p=W[2],T=l[P],v=(b=l[P+1])+.5|0,(y=T+.5|0)===g&&v===_||(t.moveTo(T,b),g=y,_=v),P+=2;P<p;P+=2)y=(T=l[P])+.5|0,v=(b=l[P+1])+.5|0,P!=p-2&&y===g&&v===_||(t.lineTo(T,b),g=y,_=v);++R;break;case Po.SET_FILL_STYLE:L=W,this.alignFill_=W[2],M&&(this.fill_(t),M=0,F&&(t.stroke(),F=0)),t.fillStyle=W[1],++R;break;case Po.SET_STROKE_STYLE:A=W,F&&(t.stroke(),F=0),this.setStrokeStyle_(t,W),++R;break;case Po.STROKE:z?F++:t.stroke(),++R;break;default:++R}}M&&this.fill_(t),F&&t.stroke()},t.prototype.execute=function(t,e,n,i,r,o){this.viewRotation_=i,this.execute_(t,e,n,this.instructions,r,void 0,void 0,o)},t.prototype.executeHitDetection=function(t,e,n,i,r){return this.viewRotation_=n,this.execute_(t,1,e,this.hitDetectionInstructions,!0,i,r)},t}(),cs=us,ps=[Qo,Uo,Jo,qo,$o,Ho],fs=function(){function t(t,e,n,i,r,o){this.maxExtent_=t,this.overlaps_=i,this.pixelRatio_=n,this.resolution_=e,this.renderBuffer_=o,this.executorsByZIndex_={},this.hitDetectionContext_=null,this.hitDetectionTransform_=[1,0,0,1,0,0],this.createExecutors_(r)}return t.prototype.clip=function(t,e){var n=this.getClipCoords(e);t.beginPath(),t.moveTo(n[0],n[1]),t.lineTo(n[2],n[3]),t.lineTo(n[4],n[5]),t.lineTo(n[6],n[7]),t.clip()},t.prototype.createExecutors_=function(t){for(var e in t){var n=this.executorsByZIndex_[e];void 0===n&&(n={},this.executorsByZIndex_[e]=n);var i=t[e];for(var r in i){var o=i[r];n[r]=new cs(this.resolution_,this.pixelRatio_,this.overlaps_,o)}}},t.prototype.hasExecutors=function(t){for(var e in this.executorsByZIndex_)for(var n=this.executorsByZIndex_[e],i=0,r=t.length;i<r;++i)if(t[i]in n)return!0;return!1},t.prototype.forEachFeatureAtCoordinate=function(t,e,n,i,r,s){var a=2*(i=Math.round(i))+1,l=Gn(this.hitDetectionTransform_,i+.5,i+.5,1/e,-1/e,-n,-t[0],-t[1]),h=!this.hitDetectionContext_;h&&(this.hitDetectionContext_=q(a,a));var u,c=this.hitDetectionContext_;c.canvas.width!==a||c.canvas.height!==a?(c.canvas.width=a,c.canvas.height=a):h||c.clearRect(0,0,a,a),void 0!==this.renderBuffer_&&(we(u=[1/0,1/0,-1/0,-1/0],t),ce(u,e*(this.renderBuffer_+i),u));var p,f=function(t){if(void 0!==ds[t])return ds[t];for(var e=2*t+1,n=t*t,i=new Array(n+1),r=0;r<=t;++r)for(var o=0;o<=t;++o){var s=r*r+o*o;if(s>n)break;var a=i[s];a||(a=[],i[s]=a),a.push(4*((t+r)*e+(t+o))+3),r>0&&a.push(4*((t-r)*e+(t+o))+3),o>0&&(a.push(4*((t+r)*e+(t-o))+3),r>0&&a.push(4*((t-r)*e+(t-o))+3))}for(var l=[],h=(r=0,i.length);r<h;++r)i[r]&&l.push.apply(l,i[r]);return ds[t]=l,l}(i);function d(t,e){for(var n=c.getImageData(0,0,a,a).data,o=0,l=f.length;o<l;o++)if(n[f[o]]>0){if(!s||p!==qo&&p!==$o||-1!==s.indexOf(t)){var h=(f[o]-3)/4,u=i-h%a,d=i-(h/a|0),g=r(t,e,u*u+d*d);if(g)return g}c.clearRect(0,0,a,a);break}}var g,_,y,v,m,x=Object.keys(this.executorsByZIndex_).map(Number);for(x.sort(o),g=x.length-1;g>=0;--g){var C=x[g].toString();for(y=this.executorsByZIndex_[C],_=ps.length-1;_>=0;--_)if(void 0!==(v=y[p=ps[_]])&&(m=v.executeHitDetection(c,l,n,d,u)))return m}},t.prototype.getClipCoords=function(t){var e=this.maxExtent_;if(!e)return null;var n=e[0],i=e[1],r=e[2],o=e[3],s=[n,i,n,o,r,o,r,i];return Xn(s,0,8,2,t,s),s},t.prototype.isEmpty=function(){return _(this.executorsByZIndex_)},t.prototype.execute=function(t,e,n,i,r,s,a){var l=Object.keys(this.executorsByZIndex_).map(Number);l.sort(o),this.maxExtent_&&(t.save(),this.clip(t,n));var h,u,c,p,f,d,g=s||ps;for(a&&l.reverse(),h=0,u=l.length;h<u;++h){var _=l[h].toString();for(f=this.executorsByZIndex_[_],c=0,p=g.length;c<p;++c)void 0!==(d=f[g[c]])&&d.execute(t,e,n,i,r,a)}this.maxExtent_&&t.restore()},t}(),ds={},gs=fs,_s=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),ys=function(t){function e(e,n,i,r,o,s,a){var l=t.call(this)||this;return l.context_=e,l.pixelRatio_=n,l.extent_=i,l.transform_=r,l.viewRotation_=o,l.squaredTolerance_=s,l.userTransform_=a,l.contextFillState_=null,l.contextStrokeState_=null,l.contextTextState_=null,l.fillState_=null,l.strokeState_=null,l.image_=null,l.imageAnchorX_=0,l.imageAnchorY_=0,l.imageHeight_=0,l.imageOpacity_=0,l.imageOriginX_=0,l.imageOriginY_=0,l.imageRotateWithView_=!1,l.imageRotation_=0,l.imageScale_=[0,0],l.imageWidth_=0,l.text_="",l.textOffsetX_=0,l.textOffsetY_=0,l.textRotateWithView_=!1,l.textRotation_=0,l.textScale_=[0,0],l.textFillState_=null,l.textStrokeState_=null,l.textState_=null,l.pixelCoordinates_=[],l.tmpLocalTransform_=[1,0,0,1,0,0],l}return _s(e,t),e.prototype.drawImages_=function(t,e,n,i){if(this.image_){var r=Xn(t,e,n,i,this.transform_,this.pixelCoordinates_),o=this.context_,s=this.tmpLocalTransform_,a=o.globalAlpha;1!=this.imageOpacity_&&(o.globalAlpha=a*this.imageOpacity_);var l=this.imageRotation_;this.imageRotateWithView_&&(l+=this.viewRotation_);for(var h=0,u=r.length;h<u;h+=2){var c=r[h]-this.imageAnchorX_,p=r[h+1]-this.imageAnchorY_;if(0!==l||1!=this.imageScale_[0]||1!=this.imageScale_[1]){var f=c+this.imageAnchorX_,d=p+this.imageAnchorY_;Gn(s,f,d,1,1,l,-f,-d),o.setTransform.apply(o,s),o.translate(f,d),o.scale(this.imageScale_[0],this.imageScale_[1]),o.drawImage(this.image_,this.imageOriginX_,this.imageOriginY_,this.imageWidth_,this.imageHeight_,-this.imageAnchorX_,-this.imageAnchorY_,this.imageWidth_,this.imageHeight_),o.setTransform(1,0,0,1,0,0)}else o.drawImage(this.image_,this.imageOriginX_,this.imageOriginY_,this.imageWidth_,this.imageHeight_,c,p,this.imageWidth_,this.imageHeight_)}1!=this.imageOpacity_&&(o.globalAlpha=a)}},e.prototype.drawText_=function(t,e,n,i){if(this.textState_&&""!==this.text_){this.textFillState_&&this.setContextFillState_(this.textFillState_),this.textStrokeState_&&this.setContextStrokeState_(this.textStrokeState_),this.setContextTextState_(this.textState_);var r=Xn(t,e,n,i,this.transform_,this.pixelCoordinates_),o=this.context_,s=this.textRotation_;for(this.textRotateWithView_&&(s+=this.viewRotation_);e<n;e+=i){var a=r[e]+this.textOffsetX_,l=r[e+1]+this.textOffsetY_;if(0!==s||1!=this.textScale_[0]||1!=this.textScale_[1]){var h=Gn(this.tmpLocalTransform_,a,l,1,1,s,-a,-l);o.setTransform.apply(o,h),o.translate(a,l),o.scale(this.textScale_[0],this.textScale_[1]),this.textStrokeState_&&o.strokeText(this.text_,0,0),this.textFillState_&&o.fillText(this.text_,0,0),o.setTransform(1,0,0,1,0,0)}else this.textStrokeState_&&o.strokeText(this.text_,a,l),this.textFillState_&&o.fillText(this.text_,a,l)}}},e.prototype.moveToLineTo_=function(t,e,n,i,r){var o=this.context_,s=Xn(t,e,n,i,this.transform_,this.pixelCoordinates_);o.moveTo(s[0],s[1]);var a=s.length;r&&(a-=2);for(var l=2;l<a;l+=2)o.lineTo(s[l],s[l+1]);return r&&o.closePath(),n},e.prototype.drawRings_=function(t,e,n,i){for(var r=0,o=n.length;r<o;++r)e=this.moveToLineTo_(t,e,n[r],i,!0);return e},e.prototype.drawCircle=function(t){if(je(this.extent_,t.getExtent())){if(this.fillState_||this.strokeState_){this.fillState_&&this.setContextFillState_(this.fillState_),this.strokeState_&&this.setContextStrokeState_(this.strokeState_);var e=function(t,e,n){var i=t.getFlatCoordinates();if(i){var r=t.getStride();return Xn(i,0,i.length,r,e,n)}return null}(t,this.transform_,this.pixelCoordinates_),n=e[2]-e[0],i=e[3]-e[1],r=Math.sqrt(n*n+i*i),o=this.context_;o.beginPath(),o.arc(e[0],e[1],r,0,2*Math.PI),this.fillState_&&o.fill(),this.strokeState_&&o.stroke()}""!==this.text_&&this.drawText_(t.getCenter(),0,2,2)}},e.prototype.setStyle=function(t){this.setFillStrokeStyle(t.getFill(),t.getStroke()),this.setImageStyle(t.getImage()),this.setTextStyle(t.getText())},e.prototype.setTransform=function(t){this.transform_=t},e.prototype.drawGeometry=function(t){switch(t.getType()){case In:this.drawPoint(t);break;case Pn:this.drawLineString(t);break;case Mn:this.drawPolygon(t);break;case Fn:this.drawMultiPoint(t);break;case Ln:this.drawMultiLineString(t);break;case An:this.drawMultiPolygon(t);break;case Dn:this.drawGeometryCollection(t);break;case kn:this.drawCircle(t)}},e.prototype.drawFeature=function(t,e){var n=e.getGeometryFunction()(t);n&&je(this.extent_,n.getExtent())&&(this.setStyle(e),this.drawGeometry(n))},e.prototype.drawGeometryCollection=function(t){for(var e=t.getGeometriesArray(),n=0,i=e.length;n<i;++n)this.drawGeometry(e[n])},e.prototype.drawPoint=function(t){this.squaredTolerance_&&(t=t.simplifyTransformed(this.squaredTolerance_,this.userTransform_));var e=t.getFlatCoordinates(),n=t.getStride();this.image_&&this.drawImages_(e,0,e.length,n),""!==this.text_&&this.drawText_(e,0,e.length,n)},e.prototype.drawMultiPoint=function(t){this.squaredTolerance_&&(t=t.simplifyTransformed(this.squaredTolerance_,this.userTransform_));var e=t.getFlatCoordinates(),n=t.getStride();this.image_&&this.drawImages_(e,0,e.length,n),""!==this.text_&&this.drawText_(e,0,e.length,n)},e.prototype.drawLineString=function(t){if(this.squaredTolerance_&&(t=t.simplifyTransformed(this.squaredTolerance_,this.userTransform_)),je(this.extent_,t.getExtent())){if(this.strokeState_){this.setContextStrokeState_(this.strokeState_);var e=this.context_,n=t.getFlatCoordinates();e.beginPath(),this.moveToLineTo_(n,0,n.length,t.getStride(),!1),e.stroke()}if(""!==this.text_){var i=t.getFlatMidpoint();this.drawText_(i,0,2,2)}}},e.prototype.drawMultiLineString=function(t){this.squaredTolerance_&&(t=t.simplifyTransformed(this.squaredTolerance_,this.userTransform_));var e=t.getExtent();if(je(this.extent_,e)){if(this.strokeState_){this.setContextStrokeState_(this.strokeState_);var n=this.context_,i=t.getFlatCoordinates(),r=0,o=t.getEnds(),s=t.getStride();n.beginPath();for(var a=0,l=o.length;a<l;++a)r=this.moveToLineTo_(i,r,o[a],s,!1);n.stroke()}if(""!==this.text_){var h=t.getFlatMidpoints();this.drawText_(h,0,h.length,2)}}},e.prototype.drawPolygon=function(t){if(this.squaredTolerance_&&(t=t.simplifyTransformed(this.squaredTolerance_,this.userTransform_)),je(this.extent_,t.getExtent())){if(this.strokeState_||this.fillState_){this.fillState_&&this.setContextFillState_(this.fillState_),this.strokeState_&&this.setContextStrokeState_(this.strokeState_);var e=this.context_;e.beginPath(),this.drawRings_(t.getOrientedFlatCoordinates(),0,t.getEnds(),t.getStride()),this.fillState_&&e.fill(),this.strokeState_&&e.stroke()}if(""!==this.text_){var n=t.getFlatInteriorPoint();this.drawText_(n,0,2,2)}}},e.prototype.drawMultiPolygon=function(t){if(this.squaredTolerance_&&(t=t.simplifyTransformed(this.squaredTolerance_,this.userTransform_)),je(this.extent_,t.getExtent())){if(this.strokeState_||this.fillState_){this.fillState_&&this.setContextFillState_(this.fillState_),this.strokeState_&&this.setContextStrokeState_(this.strokeState_);var e=this.context_,n=t.getOrientedFlatCoordinates(),i=0,r=t.getEndss(),o=t.getStride();e.beginPath();for(var s=0,a=r.length;s<a;++s){var l=r[s];i=this.drawRings_(n,i,l,o)}this.fillState_&&e.fill(),this.strokeState_&&e.stroke()}if(""!==this.text_){var h=t.getFlatInteriorPoints();this.drawText_(h,0,h.length,2)}}},e.prototype.setContextFillState_=function(t){var e=this.context_,n=this.contextFillState_;n?n.fillStyle!=t.fillStyle&&(n.fillStyle=t.fillStyle,e.fillStyle=t.fillStyle):(e.fillStyle=t.fillStyle,this.contextFillState_={fillStyle:t.fillStyle})},e.prototype.setContextStrokeState_=function(t){var e=this.context_,n=this.contextStrokeState_;n?(n.lineCap!=t.lineCap&&(n.lineCap=t.lineCap,e.lineCap=t.lineCap),e.setLineDash&&(h(n.lineDash,t.lineDash)||e.setLineDash(n.lineDash=t.lineDash),n.lineDashOffset!=t.lineDashOffset&&(n.lineDashOffset=t.lineDashOffset,e.lineDashOffset=t.lineDashOffset)),n.lineJoin!=t.lineJoin&&(n.lineJoin=t.lineJoin,e.lineJoin=t.lineJoin),n.lineWidth!=t.lineWidth&&(n.lineWidth=t.lineWidth,e.lineWidth=t.lineWidth),n.miterLimit!=t.miterLimit&&(n.miterLimit=t.miterLimit,e.miterLimit=t.miterLimit),n.strokeStyle!=t.strokeStyle&&(n.strokeStyle=t.strokeStyle,e.strokeStyle=t.strokeStyle)):(e.lineCap=t.lineCap,e.setLineDash&&(e.setLineDash(t.lineDash),e.lineDashOffset=t.lineDashOffset),e.lineJoin=t.lineJoin,e.lineWidth=t.lineWidth,e.miterLimit=t.miterLimit,e.strokeStyle=t.strokeStyle,this.contextStrokeState_={lineCap:t.lineCap,lineDash:t.lineDash,lineDashOffset:t.lineDashOffset,lineJoin:t.lineJoin,lineWidth:t.lineWidth,miterLimit:t.miterLimit,strokeStyle:t.strokeStyle})},e.prototype.setContextTextState_=function(t){var e=this.context_,n=this.contextTextState_,i=t.textAlign?t.textAlign:Jr;n?(n.font!=t.font&&(n.font=t.font,e.font=t.font),n.textAlign!=i&&(n.textAlign=i,e.textAlign=i),n.textBaseline!=t.textBaseline&&(n.textBaseline=t.textBaseline,e.textBaseline=t.textBaseline)):(e.font=t.font,e.textAlign=i,e.textBaseline=t.textBaseline,this.contextTextState_={font:t.font,textAlign:i,textBaseline:t.textBaseline})},e.prototype.setFillStrokeStyle=function(t,e){var n=this;if(t){var i=t.getColor();this.fillState_={fillStyle:Br(i||Zr)}}else this.fillState_=null;if(e){var r=e.getColor(),o=e.getLineCap(),s=e.getLineDash(),a=e.getLineDashOffset(),l=e.getLineJoin(),h=e.getWidth(),u=e.getMiterLimit(),c=s||Ur;this.strokeState_={lineCap:void 0!==o?o:Vr,lineDash:1===this.pixelRatio_?c:c.map((function(t){return t*n.pixelRatio_})),lineDashOffset:(a||0)*this.pixelRatio_,lineJoin:void 0!==l?l:Hr,lineWidth:(void 0!==h?h:1)*this.pixelRatio_,miterLimit:void 0!==u?u:10,strokeStyle:Br(r||qr)}}else this.strokeState_=null},e.prototype.setImageStyle=function(t){var e;if(t&&(e=t.getSize())){var n=t.getAnchor(),i=t.getOrigin();this.image_=t.getImage(this.pixelRatio_),this.imageAnchorX_=n[0]*this.pixelRatio_,this.imageAnchorY_=n[1]*this.pixelRatio_,this.imageHeight_=e[1]*this.pixelRatio_,this.imageOpacity_=t.getOpacity(),this.imageOriginX_=i[0],this.imageOriginY_=i[1],this.imageRotateWithView_=t.getRotateWithView(),this.imageRotation_=t.getRotation(),this.imageScale_=t.getScaleArray(),this.imageWidth_=e[0]*this.pixelRatio_}else this.image_=null},e.prototype.setTextStyle=function(t){if(t){var e=t.getFill();if(e){var n=e.getColor();this.textFillState_={fillStyle:Br(n||Zr)}}else this.textFillState_=null;var i=t.getStroke();if(i){var r=i.getColor(),o=i.getLineCap(),s=i.getLineDash(),a=i.getLineDashOffset(),l=i.getLineJoin(),h=i.getWidth(),u=i.getMiterLimit();this.textStrokeState_={lineCap:void 0!==o?o:Vr,lineDash:s||Ur,lineDashOffset:a||0,lineJoin:void 0!==l?l:Hr,lineWidth:void 0!==h?h:1,miterLimit:void 0!==u?u:10,strokeStyle:Br(r||qr)}}else this.textStrokeState_=null;var c=t.getFont(),p=t.getOffsetX(),f=t.getOffsetY(),d=t.getRotateWithView(),g=t.getRotation(),_=t.getScaleArray(),y=t.getText(),v=t.getTextAlign(),m=t.getTextBaseline();this.textState_={font:void 0!==c?c:Kr,textAlign:void 0!==v?v:Jr,textBaseline:void 0!==m?m:Qr},this.text_=void 0!==y?Array.isArray(y)?y.reduce((function(t,e,n){return t+(n%2?" ":e)}),""):y:"",this.textOffsetX_=void 0!==p?this.pixelRatio_*p:0,this.textOffsetY_=void 0!==f?this.pixelRatio_*f:0,this.textRotateWithView_=void 0!==d&&d,this.textRotation_=void 0!==g?g:0,this.textScale_=[this.pixelRatio_*_[0],this.pixelRatio_*_[1]]}else this.text_=""},e}(Mo),vs=ys,ms="fraction",xs="pixels",Cs="bottom-left",ws="bottom-right",Ss="top-left",Es="top-right";function Ts(t,e,n){return e+":"+t+":"+(n?sr(n):"null")}var bs=new(function(){function t(){this.cache_={},this.cacheSize_=0,this.maxCacheSize_=32}return t.prototype.clear=function(){this.cache_={},this.cacheSize_=0},t.prototype.canExpireCache=function(){return this.cacheSize_>this.maxCacheSize_},t.prototype.expire=function(){if(this.canExpireCache()){var t=0;for(var e in this.cache_){var n=this.cache_[e];0!=(3&t++)||n.hasListener()||(delete this.cache_[e],--this.cacheSize_)}}},t.prototype.get=function(t,e,n){var i=Ts(t,e,n);return i in this.cache_?this.cache_[i]:null},t.prototype.set=function(t,e,n,i){var r=Ts(t,e,n);this.cache_[r]=i,++this.cacheSize_},t.prototype.setSize=function(t){this.maxCacheSize_=t,this.expire()},t}()),Os=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),Rs=null,Is=function(t){function e(e,n,i,r,o,s){var a=t.call(this)||this;return a.hitDetectionImage_=null,a.image_=e||new Image,null!==r&&(a.image_.crossOrigin=r),a.canvas_={},a.color_=s,a.unlisten_=null,a.imageState_=o,a.size_=i,a.src_=n,a.tainted_,a}return Os(e,t),e.prototype.isTainted_=function(){if(void 0===this.tainted_&&2===this.imageState_){Rs||(Rs=q(1,1)),Rs.drawImage(this.image_,0,0);try{Rs.getImageData(0,0,1,1),this.tainted_=!1}catch(t){Rs=null,this.tainted_=!0}}return!0===this.tainted_},e.prototype.dispatchChangeEvent_=function(){this.dispatchEvent(x)},e.prototype.handleImageError_=function(){this.imageState_=3,this.unlistenImage_(),this.dispatchChangeEvent_()},e.prototype.handleImageLoad_=function(){this.imageState_=2,this.size_?(this.image_.width=this.size_[0],this.image_.height=this.size_[1]):this.size_=[this.image_.width,this.image_.height],this.unlistenImage_(),this.dispatchChangeEvent_()},e.prototype.getImage=function(t){return this.replaceColor_(t),this.canvas_[t]?this.canvas_[t]:this.image_},e.prototype.getPixelRatio=function(t){return this.replaceColor_(t),this.canvas_[t]?t:1},e.prototype.getImageState=function(){return this.imageState_},e.prototype.getHitDetectionImage=function(){if(!this.hitDetectionImage_)if(this.isTainted_()){var t=this.size_[0],e=this.size_[1],n=q(t,e);n.fillRect(0,0,t,e),this.hitDetectionImage_=n.canvas}else this.hitDetectionImage_=this.image_;return this.hitDetectionImage_},e.prototype.getSize=function(){return this.size_},e.prototype.getSrc=function(){return this.src_},e.prototype.load=function(){if(0==this.imageState_){this.imageState_=1;try{this.image_.src=this.src_}catch(t){this.handleImageError_()}this.unlisten_=xr(this.image_,this.handleImageLoad_.bind(this),this.handleImageError_.bind(this))}},e.prototype.replaceColor_=function(t){if(this.color_&&!this.canvas_[t]&&2===this.imageState_){var e=document.createElement("canvas");this.canvas_[t]=e,e.width=Math.ceil(this.image_.width*t),e.height=Math.ceil(this.image_.height*t);var n=e.getContext("2d");if(n.scale(t,t),n.drawImage(this.image_,0,0),n.globalCompositeOperation="multiply","multiply"===n.globalCompositeOperation||this.isTainted_())n.fillStyle=sr(this.color_),n.fillRect(0,0,e.width/t,e.height/t),n.globalCompositeOperation="destination-in",n.drawImage(this.image_,0,0);else{for(var i=n.getImageData(0,0,e.width,e.height),r=i.data,o=this.color_[0]/255,s=this.color_[1]/255,a=this.color_[2]/255,l=this.color_[3],h=0,u=r.length;h<u;h+=4)r[h]*=o,r[h+1]*=s,r[h+2]*=a,r[h+3]*=l;n.putImageData(i,0,0)}}},e.prototype.unlistenImage_=function(){this.unlisten_&&(this.unlisten_(),this.unlisten_=null)},e}(m),Ps=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),Ms=function(t){function e(e){var n=this,i=e||{},r=void 0!==i.opacity?i.opacity:1,o=void 0!==i.rotation?i.rotation:0,s=void 0!==i.scale?i.scale:1,a=void 0!==i.rotateWithView&&i.rotateWithView;(n=t.call(this,{opacity:r,rotation:o,scale:s,displacement:void 0!==i.displacement?i.displacement:[0,0],rotateWithView:a})||this).anchor_=void 0!==i.anchor?i.anchor:[.5,.5],n.normalizedAnchor_=null,n.anchorOrigin_=void 0!==i.anchorOrigin?i.anchorOrigin:Ss,n.anchorXUnits_=void 0!==i.anchorXUnits?i.anchorXUnits:ms,n.anchorYUnits_=void 0!==i.anchorYUnits?i.anchorYUnits:ms,n.crossOrigin_=void 0!==i.crossOrigin?i.crossOrigin:null;var l=void 0!==i.img?i.img:null;n.imgSize_=i.imgSize;var h=i.src;vt(!(void 0!==h&&l),4),vt(!l||l&&n.imgSize_,5),void 0!==h&&0!==h.length||!l||(h=l.src||D(l)),vt(void 0!==h&&h.length>0,6);var u=void 0!==i.src?0:2;return n.color_=void 0!==i.color?lr(i.color):null,n.iconImage_=function(t,e,n,i,r,o){var s=bs.get(e,i,o);return s||(s=new Is(t,e,n,i,r,o),bs.set(e,i,o,s)),s}(l,h,void 0!==n.imgSize_?n.imgSize_:null,n.crossOrigin_,u,n.color_),n.offset_=void 0!==i.offset?i.offset:[0,0],n.offsetOrigin_=void 0!==i.offsetOrigin?i.offsetOrigin:Ss,n.origin_=null,n.size_=void 0!==i.size?i.size:null,n}return Ps(e,t),e.prototype.clone=function(){var t=this.getScale();return new e({anchor:this.anchor_.slice(),anchorOrigin:this.anchorOrigin_,anchorXUnits:this.anchorXUnits_,anchorYUnits:this.anchorYUnits_,color:this.color_&&this.color_.slice?this.color_.slice():this.color_||void 0,crossOrigin:this.crossOrigin_,imgSize:this.imgSize_,offset:this.offset_.slice(),offsetOrigin:this.offsetOrigin_,opacity:this.getOpacity(),rotateWithView:this.getRotateWithView(),rotation:this.getRotation(),scale:Array.isArray(t)?t.slice():t,size:null!==this.size_?this.size_.slice():void 0,src:this.getSrc()})},e.prototype.getAnchor=function(){var t=this.normalizedAnchor_;if(!t){t=this.anchor_;var e=this.getSize();if(this.anchorXUnits_==ms||this.anchorYUnits_==ms){if(!e)return null;t=this.anchor_.slice(),this.anchorXUnits_==ms&&(t[0]*=e[0]),this.anchorYUnits_==ms&&(t[1]*=e[1])}if(this.anchorOrigin_!=Ss){if(!e)return null;t===this.anchor_&&(t=this.anchor_.slice()),this.anchorOrigin_!=Es&&this.anchorOrigin_!=ws||(t[0]=-t[0]+e[0]),this.anchorOrigin_!=Cs&&this.anchorOrigin_!=ws||(t[1]=-t[1]+e[1])}this.normalizedAnchor_=t}var n=this.getDisplacement();return[t[0]-n[0],t[1]+n[1]]},e.prototype.setAnchor=function(t){this.anchor_=t,this.normalizedAnchor_=null},e.prototype.getColor=function(){return this.color_},e.prototype.getImage=function(t){return this.iconImage_.getImage(t)},e.prototype.getPixelRatio=function(t){return this.iconImage_.getPixelRatio(t)},e.prototype.getImageSize=function(){return this.iconImage_.getSize()},e.prototype.getImageState=function(){return this.iconImage_.getImageState()},e.prototype.getHitDetectionImage=function(){return this.iconImage_.getHitDetectionImage()},e.prototype.getOrigin=function(){if(this.origin_)return this.origin_;var t=this.offset_;if(this.offsetOrigin_!=Ss){var e=this.getSize(),n=this.iconImage_.getSize();if(!e||!n)return null;t=t.slice(),this.offsetOrigin_!=Es&&this.offsetOrigin_!=ws||(t[0]=n[0]-e[0]-t[0]),this.offsetOrigin_!=Cs&&this.offsetOrigin_!=ws||(t[1]=n[1]-e[1]-t[1])}return this.origin_=t,this.origin_},e.prototype.getSrc=function(){return this.iconImage_.getSrc()},e.prototype.getSize=function(){return this.size_?this.size_:this.iconImage_.getSize()},e.prototype.listenImageChange=function(t){this.iconImage_.addEventListener(x,t)},e.prototype.load=function(){this.iconImage_.load()},e.prototype.unlistenImageChange=function(t){this.iconImage_.removeEventListener(x,t)},e}(Yr),Fs=.5,Ls={Point:function(t,e,n,i,r){var o,s=n.getImage(),a=n.getText();if(r&&(t=r,o=s&&a&&a.getText()?{}:void 0),s){if(2!=s.getImageState())return;var l=t.getBuilder(n.getZIndex(),qo);l.setImageStyle(s,o),l.drawPoint(e,i)}if(a&&a.getText()){var h=t.getBuilder(n.getZIndex(),$o);h.setTextStyle(a,o),h.drawText(e,i)}},LineString:function(t,e,n,i,r){var o=n.getStroke();if(o){var s=t.getBuilder(n.getZIndex(),Jo);s.setFillStrokeStyle(null,o),s.drawLineString(e,i)}var a=n.getText();if(a&&a.getText()){var l=(r||t).getBuilder(n.getZIndex(),$o);l.setTextStyle(a),l.drawText(e,i)}},Polygon:function(t,e,n,i,r){var o=n.getFill(),s=n.getStroke();if(o||s){var a=t.getBuilder(n.getZIndex(),Qo);a.setFillStrokeStyle(o,s),a.drawPolygon(e,i)}var l=n.getText();if(l&&l.getText()){var h=(r||t).getBuilder(n.getZIndex(),$o);h.setTextStyle(l),h.drawText(e,i)}},MultiPoint:function(t,e,n,i,r){var o,s=n.getImage(),a=n.getText();if(r&&(t=r,o=s&&a&&a.getText()?{}:void 0),s){if(2!=s.getImageState())return;var l=t.getBuilder(n.getZIndex(),qo);l.setImageStyle(s,o),l.drawMultiPoint(e,i)}if(a&&a.getText()){var h=(r||t).getBuilder(n.getZIndex(),$o);h.setTextStyle(a,o),h.drawText(e,i)}},MultiLineString:function(t,e,n,i,r){var o=n.getStroke();if(o){var s=t.getBuilder(n.getZIndex(),Jo);s.setFillStrokeStyle(null,o),s.drawMultiLineString(e,i)}var a=n.getText();if(a&&a.getText()){var l=(r||t).getBuilder(n.getZIndex(),$o);l.setTextStyle(a),l.drawText(e,i)}},MultiPolygon:function(t,e,n,i,r){var o=n.getFill(),s=n.getStroke();if(s||o){var a=t.getBuilder(n.getZIndex(),Qo);a.setFillStrokeStyle(o,s),a.drawMultiPolygon(e,i)}var l=n.getText();if(l&&l.getText()){var h=(r||t).getBuilder(n.getZIndex(),$o);h.setTextStyle(l),h.drawText(e,i)}},GeometryCollection:function(t,e,n,i,r){var o,s,a=e.getGeometriesArray();for(o=0,s=a.length;o<s;++o)(0,Ls[a[o].getType()])(t,a[o],n,i,r)},Circle:function(t,e,n,i,r){var o=n.getFill(),s=n.getStroke();if(o||s){var a=t.getBuilder(n.getZIndex(),Uo);a.setFillStrokeStyle(o,s),a.drawCircle(e,i)}var l=n.getText();if(l&&l.getText()){var h=(r||t).getBuilder(n.getZIndex(),$o);h.setTextStyle(l),h.drawText(e,i)}}};function As(t,e){return parseInt(D(t),10)-parseInt(D(e),10)}function Ds(t,e){return.5*t/e}function ks(t,e,n,i,r,o,s){var a=!1,l=n.getImage();if(l){var h=l.getImageState();2==h||3==h?l.unlistenImageChange(r):(0==h&&l.load(),h=l.getImageState(),l.listenImageChange(r),a=!0)}return function(t,e,n,i,r,o){var s=n.getGeometryFunction()(e);if(s){var a=s.simplifyTransformed(i,r);n.getRenderer()?js(t,a,n,e):(0,Ls[a.getType()])(t,a,n,e,o)}}(t,e,n,i,o,s),a}function js(t,e,n,i){if(e.getType()!=Dn)t.getBuilder(n.getZIndex(),Ho).drawCustom(e,i,n.getRenderer(),n.getHitDetectionRenderer());else for(var r=e.getGeometries(),o=0,s=r.length;o<s;++o)js(t,r[o],n,i)}var Gs=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),zs=function(t){function e(e){var n=t.call(this,e)||this;return n.boundHandleStyleImageChange_=n.handleStyleImageChange_.bind(n),n.animatingOrInteracting_,n.dirty_=!1,n.hitDetectionImageData_=null,n.renderedFeatures_=null,n.renderedRevision_=-1,n.renderedResolution_=NaN,n.renderedExtent_=[1/0,1/0,-1/0,-1/0],n.wrappedRenderedExtent_=[1/0,1/0,-1/0,-1/0],n.renderedRotation_,n.renderedCenter_=null,n.renderedProjection_=null,n.renderedRenderOrder_=null,n.replayGroup_=null,n.replayGroupChanged=!0,n.declutterExecutorGroup=null,n.clipping=!0,n}return Gs(e,t),e.prototype.renderWorlds=function(t,e,n){var i=e.extent,r=e.viewState,o=r.center,s=r.resolution,a=r.projection,l=r.rotation,h=a.getExtent(),u=this.getLayer().getSource(),c=e.pixelRatio,p=e.viewHints,f=!(p[0]||p[1]),d=this.context,g=Math.round(e.size[0]*c),_=Math.round(e.size[1]*c),y=u.getWrapX()&&a.canWrapX(),v=y?ke(h):null,m=y?Math.ceil((i[2]-h[2])/v)+1:1,x=y?Math.floor((i[0]-h[0])/v):0;do{var C=this.getRenderTransform(o,s,l,c,g,_,x*v);t.execute(d,1,C,l,f,void 0,n)}while(++x<m)},e.prototype.renderDeclutter=function(t){this.declutterExecutorGroup&&this.renderWorlds(this.declutterExecutorGroup,t,t.declutterTree)},e.prototype.renderFrame=function(t,e){var n=t.pixelRatio,i=t.layerStatesArray[t.layerIndex];!function(t,e,n){!function(t,e,n,i,r,o,s){t[0]=e,t[1]=n,t[2]=i,t[3]=r,t[4]=o,t[5]=s}(t,e,0,0,n,0,0)}(this.pixelTransform,1/n,1/n),zn(this.inversePixelTransform,this.pixelTransform);var r=Wn(this.pixelTransform);this.useContainer(e,r,i.opacity,this.getBackground(t));var o=this.context,s=o.canvas,a=this.replayGroup_,l=this.declutterExecutorGroup;if((!a||a.isEmpty())&&(!l||l.isEmpty()))return null;var h=Math.round(t.size[0]*n),u=Math.round(t.size[1]*n);s.width!=h||s.height!=u?(s.width=h,s.height=u,s.style.transform!==r&&(s.style.transform=r)):this.containerReused||o.clearRect(0,0,h,u),this.preRender(o,t);var c=t.viewState,p=(c.projection,!1),f=!0;if(i.extent&&this.clipping){var d=pn(i.extent);(p=(f=je(d,t.extent))&&!ge(d,t.extent))&&this.clipUnrotated(o,t,d)}f&&this.renderWorlds(a,t),p&&o.restore(),this.postRender(o,t);var g=st(i.opacity),_=this.container;return g!==_.style.opacity&&(_.style.opacity=g),this.renderedRotation_!==c.rotation&&(this.renderedRotation_=c.rotation,this.hitDetectionImageData_=null),this.container},e.prototype.getFeatures=function(t){return new Promise(function(e){if(!this.hitDetectionImageData_&&!this.animatingOrInteracting_){var n=[this.context.canvas.width,this.context.canvas.height];jn(this.pixelTransform,n);var i=this.renderedCenter_,r=this.renderedResolution_,s=this.renderedRotation_,a=this.renderedProjection_,l=this.wrappedRenderedExtent_,h=this.getLayer(),u=[],c=n[0]*Fs,p=n[1]*Fs;u.push(this.getRenderTransform(i,r,s,Fs,c,p,0).slice());var f=h.getSource(),d=a.getExtent();if(f.getWrapX()&&a.canWrapX()&&!ge(d,l)){for(var g=l[0],_=ke(d),y=0,v=void 0;g<d[0];)v=_*--y,u.push(this.getRenderTransform(i,r,s,Fs,c,p,v).slice()),g+=_;for(y=0,g=l[2];g>d[2];)v=_*++y,u.push(this.getRenderTransform(i,r,s,Fs,c,p,v).slice()),g-=_}this.hitDetectionImageData_=function(t,e,n,i,r,s,a){var l=q(t[0]*Fs,t[1]*Fs);l.imageSmoothingEnabled=!1;for(var h=l.canvas,u=new vs(l,Fs,r,null,a),c=n.length,p=Math.floor(16777215/c),f={},d=1;d<=c;++d){var g=n[d-1],_=g.getStyleFunction()||i;if(i){var y=_(g,s);if(y){Array.isArray(y)||(y=[y]);for(var v="#"+("000000"+(d*p).toString(16)).slice(-6),m=0,x=y.length;m<x;++m){var C=y[m],w=C.getGeometryFunction()(g);if(w&&je(r,w.getExtent())){var S=C.clone(),E=S.getFill();E&&E.setColor(v);var T=S.getStroke();T&&(T.setColor(v),T.setLineDash(null)),S.setText(void 0);var b=C.getImage();if(b&&0!==b.getOpacity()){var O=b.getImageSize();if(!O)continue;var R=q(O[0],O[1],void 0,{alpha:!1}),I=R.canvas;R.fillStyle=v,R.fillRect(0,0,I.width,I.height),S.setImage(new Ms({img:I,imgSize:O,anchor:b.getAnchor(),anchorXUnits:xs,anchorYUnits:xs,offset:b.getOrigin(),opacity:1,size:b.getSize(),scale:b.getScale(),rotation:b.getRotation(),rotateWithView:b.getRotateWithView()}))}var P=S.getZIndex()||0;(L=f[P])||(L={},f[P]=L,L.Polygon=[],L.Circle=[],L.LineString=[],L.Point=[]),L[w.getType().replace("Multi","")].push(w,S)}}}}}for(var M=Object.keys(f).map(Number).sort(o),F=(d=0,M.length);d<F;++d){var L=f[M[d]];for(var A in L){var D=L[A];for(m=0,x=D.length;m<x;m+=2){u.setStyle(D[m+1]);for(var k=0,j=e.length;k<j;++k)u.setTransform(e[k]),u.drawGeometry(D[m])}}}return l.getImageData(0,0,h.width,h.height)}(n,u,this.renderedFeatures_,h.getStyleFunction(),l,r,s)}e(function(t,e,n){var i=[];if(n){var r=Math.floor(Math.round(t[0])*Fs),o=Math.floor(Math.round(t[1])*Fs),s=4*(mt(r,0,n.width-1)+mt(o,0,n.height-1)*n.width),a=n.data[s],l=n.data[s+1],h=n.data[s+2]+256*(l+256*a),u=Math.floor(16777215/e.length);h&&h%u==0&&i.push(e[h/u-1])}return i}(t,this.renderedFeatures_,this.hitDetectionImageData_))}.bind(this))},e.prototype.forEachFeatureAtCoordinate=function(t,e,n,i,r){var o=this;if(this.replayGroup_){var s,a=e.viewState.resolution,l=e.viewState.rotation,h=this.getLayer(),u={},c=function(t,e,n){var o=D(t),s=u[o];if(s){if(!0!==s&&n<s.distanceSq){if(0===n)return u[o]=!0,r.splice(r.lastIndexOf(s),1),i(t,h,e);s.geometry=e,s.distanceSq=n}}else{if(0===n)return u[o]=!0,i(t,h,e);r.push(u[o]={feature:t,layer:h,geometry:e,distanceSq:n,callback:i})}},p=[this.replayGroup_];return this.declutterExecutorGroup&&p.push(this.declutterExecutorGroup),p.some((function(i){return s=i.forEachFeatureAtCoordinate(t,a,l,n,c,i===o.declutterExecutorGroup&&e.declutterTree?e.declutterTree.all().map((function(t){return t.value})):null)})),s}},e.prototype.handleFontsChanged=function(){var t=this.getLayer();t.getVisible()&&this.replayGroup_&&t.changed()},e.prototype.handleStyleImageChange_=function(t){this.renderIfReadyAndVisible()},e.prototype.prepareFrame=function(t){var e=this.getLayer(),n=e.getSource();if(!n)return!1;var i=t.viewHints[0],r=t.viewHints[1],o=e.getUpdateWhileAnimating(),s=e.getUpdateWhileInteracting();if(!this.dirty_&&!o&&i||!s&&r)return this.animatingOrInteracting_=!0,!0;this.animatingOrInteracting_=!1;var a=t.extent,l=t.viewState,u=l.projection,c=l.resolution,p=t.pixelRatio,f=e.getRevision(),d=e.getRenderBuffer(),g=e.getRenderOrder();void 0===g&&(g=As);var _=l.center.slice(),y=ce(a,d*c),v=y.slice(),m=[y.slice()],x=u.getExtent();if(n.getWrapX()&&u.canWrapX()&&!ge(x,t.extent)){var C=ke(x),w=Math.max(ke(y)/2,C);y[0]=x[0]-w,y[2]=x[2]+w,Xe(_,u);var S=function(t,e){var n=e.getExtent(),i=Ie(t);if(e.canWrapX()&&(i[0]<n[0]||i[0]>=n[2])){var r=ke(n),o=Math.floor((i[0]-n[0])/r)*r;t[0]-=o,t[2]-=o}return t}(m[0],u);S[0]<x[0]&&S[2]<x[2]?m.push([S[0]+C,S[1],S[2]+C,S[3]]):S[0]>x[0]&&S[2]>x[2]&&m.push([S[0]-C,S[1],S[2]-C,S[3]])}if(!this.dirty_&&this.renderedResolution_==c&&this.renderedRevision_==f&&this.renderedRenderOrder_==g&&ge(this.wrappedRenderedExtent_,y))return h(this.renderedExtent_,v)||(this.hitDetectionImageData_=null,this.renderedExtent_=v),this.renderedCenter_=_,this.replayGroupChanged=!1,!0;this.replayGroup_=null,this.dirty_=!1;var E,T=new Vo(Ds(c,p),y,c,p);this.getLayer().getDeclutter()&&(E=new Vo(Ds(c,p),y,c,p));var b,O=ln();if(O){for(var R=0,I=m.length;R<I;++R){var P=cn(m[R]);n.loadFeatures(P,fn(c),O)}b=$e(O,u)}else for(R=0,I=m.length;R<I;++R)n.loadFeatures(m[R],c,u);var M=function(t,e){var n=Ds(t,e);return n*n}(c,p),F=function(t){var n,i=t.getStyleFunction()||e.getStyleFunction();if(i&&(n=i(t,c)),n){var r=this.renderFeature(t,M,n,T,b,E);this.dirty_=this.dirty_||r}}.bind(this),L=cn(y),A=n.getFeaturesInExtent(L);for(g&&A.sort(g),R=0,I=A.length;R<I;++R)F(A[R]);this.renderedFeatures_=A;var D=T.finish(),k=new gs(y,c,p,n.getOverlaps(),D,e.getRenderBuffer());return E&&(this.declutterExecutorGroup=new gs(y,c,p,n.getOverlaps(),E.finish(),e.getRenderBuffer())),this.renderedResolution_=c,this.renderedRevision_=f,this.renderedRenderOrder_=g,this.renderedExtent_=v,this.wrappedRenderedExtent_=y,this.renderedCenter_=_,this.renderedProjection_=u,this.replayGroup_=k,this.hitDetectionImageData_=null,this.replayGroupChanged=!0,!0},e.prototype.renderFeature=function(t,e,n,i,r,o){if(!n)return!1;var s=!1;if(Array.isArray(n))for(var a=0,l=n.length;a<l;++a)s=ks(i,t,n[a],e,this.boundHandleStyleImageChange_,r,o)||s;else s=ks(i,t,n,e,this.boundHandleStyleImageChange_,r,o);return s},e}(dr),Ws=zs,Xs=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),Ns=function(t){function e(e){return t.call(this,e)||this}return Xs(e,t),e.prototype.createRenderer=function(){return new Ws(this)},e}(Eo),Ys=function(){function t(t){this.highWaterMark=void 0!==t?t:2048,this.count_=0,this.entries_={},this.oldest_=null,this.newest_=null}return t.prototype.canExpireCache=function(){return this.highWaterMark>0&&this.getCount()>this.highWaterMark},t.prototype.expireCache=function(t){for(;this.canExpireCache();)this.pop()},t.prototype.clear=function(){this.count_=0,this.entries_={},this.oldest_=null,this.newest_=null},t.prototype.containsKey=function(t){return this.entries_.hasOwnProperty(t)},t.prototype.forEach=function(t){for(var e=this.oldest_;e;)t(e.value_,e.key_,this),e=e.newer},t.prototype.get=function(t,e){var n=this.entries_[t];return vt(void 0!==n,15),n===this.newest_||(n===this.oldest_?(this.oldest_=this.oldest_.newer,this.oldest_.older=null):(n.newer.older=n.older,n.older.newer=n.newer),n.newer=null,n.older=this.newest_,this.newest_.newer=n,this.newest_=n),n.value_},t.prototype.remove=function(t){var e=this.entries_[t];return vt(void 0!==e,15),e===this.newest_?(this.newest_=e.older,this.newest_&&(this.newest_.newer=null)):e===this.oldest_?(this.oldest_=e.newer,this.oldest_&&(this.oldest_.older=null)):(e.newer.older=e.older,e.older.newer=e.newer),delete this.entries_[t],--this.count_,e.value_},t.prototype.getCount=function(){return this.count_},t.prototype.getKeys=function(){var t,e=new Array(this.count_),n=0;for(t=this.newest_;t;t=t.older)e[n++]=t.key_;return e},t.prototype.getValues=function(){var t,e=new Array(this.count_),n=0;for(t=this.newest_;t;t=t.older)e[n++]=t.value_;return e},t.prototype.peekLast=function(){return this.oldest_.value_},t.prototype.peekLastKey=function(){return this.oldest_.key_},t.prototype.peekFirstKey=function(){return this.newest_.key_},t.prototype.pop=function(){var t=this.oldest_;return delete this.entries_[t.key_],t.newer&&(t.newer.older=null),this.oldest_=t.newer,this.oldest_||(this.newest_=null),--this.count_,t.value_},t.prototype.replace=function(t,e){this.get(t),this.entries_[t].value_=e},t.prototype.set=function(t,e){vt(!(t in this.entries_),16);var n={key_:t,newer:null,older:this.newest_,value_:e};this.newest_?this.newest_.newer=n:this.oldest_=n,this.newest_=n,this.entries_[t]=n,++this.count_},t.prototype.setSize=function(t){this.highWaterMark=t},t}();function Bs(t,e,n,i){return void 0!==i?(i[0]=t,i[1]=e,i[2]=n,i):[t,e,n]}function Ks(t,e,n){return t+"/"+e+"/"+n}function Zs(t){return Ks(t[0],t[1],t[2])}var Vs=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),Us=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return Vs(e,t),e.prototype.expireCache=function(t){for(;this.canExpireCache()&&!(this.peekLast().getKey()in t);)this.pop().release()},e.prototype.pruneExceptNewestZ=function(){if(0!==this.getCount()){var t=this.peekFirstKey().split("/").map(Number)[0];this.forEach(function(e){e.tileCoord[0]!==t&&(this.remove(Zs(e.tileCoord)),e.release())}.bind(this))}},e}(Ys),Hs=Us,qs=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}();function Js(t){return t?Array.isArray(t)?function(e){return t}:"function"==typeof t?t:function(e){return[t]}:null}var Qs=function(t){function e(e){var n=t.call(this)||this;n.projection=Ue(e.projection),n.attributions_=Js(e.attributions),n.attributionsCollapsible_=void 0===e.attributionsCollapsible||e.attributionsCollapsible,n.loading=!1,n.state_=void 0!==e.state?e.state:Dt,n.wrapX_=void 0!==e.wrapX&&e.wrapX,n.interpolate_=!!e.interpolate,n.viewResolver=null,n.viewRejector=null;var i=n;return n.viewPromise_=new Promise((function(t,e){i.viewResolver=t,i.viewRejector=e})),n}return qs(e,t),e.prototype.getAttributions=function(){return this.attributions_},e.prototype.getAttributionsCollapsible=function(){return this.attributionsCollapsible_},e.prototype.getProjection=function(){return this.projection},e.prototype.getResolutions=function(){return L()},e.prototype.getView=function(){return this.viewPromise_},e.prototype.getState=function(){return this.state_},e.prototype.getWrapX=function(){return this.wrapX_},e.prototype.getInterpolate=function(){return this.interpolate_},e.prototype.refresh=function(){this.changed()},e.prototype.setAttributions=function(t){this.attributions_=Js(t),this.changed()},e.prototype.setState=function(t){this.state_=t,this.changed()},e}(G),$s=[0,0,0],ta=function(){function t(t){var e,n,i;if(this.minZoom=void 0!==t.minZoom?t.minZoom:0,this.resolutions_=t.resolutions,vt((e=this.resolutions_,!0,n=function(t,e){return e-t}||o,e.every((function(t,i){if(0===i)return!0;var r=n(e[i-1],t);return!(r>0||0===r)}))),17),!t.origins)for(var r=0,s=this.resolutions_.length-1;r<s;++r)if(i){if(this.resolutions_[r]/this.resolutions_[r+1]!==i){i=void 0;break}}else i=this.resolutions_[r]/this.resolutions_[r+1];this.zoomFactor_=i,this.maxZoom=this.resolutions_.length-1,this.origin_=void 0!==t.origin?t.origin:null,this.origins_=null,void 0!==t.origins&&(this.origins_=t.origins,vt(this.origins_.length==this.resolutions_.length,20));var a=t.extent;void 0===a||this.origin_||this.origins_||(this.origin_=Ae(a)),vt(!this.origin_&&this.origins_||this.origin_&&!this.origins_,18),this.tileSizes_=null,void 0!==t.tileSizes&&(this.tileSizes_=t.tileSizes,vt(this.tileSizes_.length==this.resolutions_.length,19)),this.tileSize_=void 0!==t.tileSize?t.tileSize:this.tileSizes_?null:256,vt(!this.tileSize_&&this.tileSizes_||this.tileSize_&&!this.tileSizes_,22),this.extent_=void 0!==a?a:null,this.fullTileRanges_=null,this.tmpSize_=[0,0],this.tmpExtent_=[0,0,0,0],void 0!==t.sizes?this.fullTileRanges_=t.sizes.map((function(t,e){var n=new Ar(Math.min(0,t[0]),Math.max(t[0]-1,-1),Math.min(0,t[1]),Math.max(t[1]-1,-1));if(a){var i=this.getTileRangeForExtentAndZ(a,e);n.minX=Math.max(i.minX,n.minX),n.maxX=Math.min(i.maxX,n.maxX),n.minY=Math.max(i.minY,n.minY),n.maxY=Math.min(i.maxY,n.maxY)}return n}),this):a&&this.calculateTileRanges_(a)}return t.prototype.forEachTileCoord=function(t,e,n){for(var i=this.getTileRangeForExtentAndZ(t,e),r=i.minX,o=i.maxX;r<=o;++r)for(var s=i.minY,a=i.maxY;s<=a;++s)n([e,r,s])},t.prototype.forEachTileCoordParentTileRange=function(t,e,n,i){var r,o,s=null,a=t[0]-1;for(2===this.zoomFactor_?(r=t[1],o=t[2]):s=this.getTileCoordExtent(t,i);a>=this.minZoom;){if(e(a,2===this.zoomFactor_?Lr(r=Math.floor(r/2),r,o=Math.floor(o/2),o,n):this.getTileRangeForExtentAndZ(s,a,n)))return!0;--a}return!1},t.prototype.getExtent=function(){return this.extent_},t.prototype.getMaxZoom=function(){return this.maxZoom},t.prototype.getMinZoom=function(){return this.minZoom},t.prototype.getOrigin=function(t){return this.origin_?this.origin_:this.origins_[t]},t.prototype.getResolution=function(t){return this.resolutions_[t]},t.prototype.getResolutions=function(){return this.resolutions_},t.prototype.getTileCoordChildTileRange=function(t,e,n){if(t[0]<this.maxZoom){if(2===this.zoomFactor_){var i=2*t[1],r=2*t[2];return Lr(i,i+1,r,r+1,e)}var o=this.getTileCoordExtent(t,n||this.tmpExtent_);return this.getTileRangeForExtentAndZ(o,t[0]+1,e)}return null},t.prototype.getTileRangeForTileCoordAndZ=function(t,e,n){if(e>this.maxZoom||e<this.minZoom)return null;var i=t[0],r=t[1],o=t[2];if(e===i)return Lr(r,o,r,o,n);if(this.zoomFactor_){var s=Math.pow(this.zoomFactor_,e-i),a=Math.floor(r*s),l=Math.floor(o*s);return e<i?Lr(a,a,l,l,n):Lr(a,Math.floor(s*(r+1))-1,l,Math.floor(s*(o+1))-1,n)}var h=this.getTileCoordExtent(t,this.tmpExtent_);return this.getTileRangeForExtentAndZ(h,e,n)},t.prototype.getTileRangeExtent=function(t,e,n){var i=this.getOrigin(t),r=this.getResolution(t),o=kr(this.getTileSize(t),this.tmpSize_),s=i[0]+e.minX*o[0]*r,a=i[0]+(e.maxX+1)*o[0]*r;return ve(s,i[1]+e.minY*o[1]*r,a,i[1]+(e.maxY+1)*o[1]*r,n)},t.prototype.getTileRangeForExtentAndZ=function(t,e,n){var i=$s;this.getTileCoordForXYAndZ_(t[0],t[3],e,!1,i);var r=i[1],o=i[2];return this.getTileCoordForXYAndZ_(t[2],t[1],e,!0,i),Lr(r,i[1],o,i[2],n)},t.prototype.getTileCoordCenter=function(t){var e=this.getOrigin(t[0]),n=this.getResolution(t[0]),i=kr(this.getTileSize(t[0]),this.tmpSize_);return[e[0]+(t[1]+.5)*i[0]*n,e[1]-(t[2]+.5)*i[1]*n]},t.prototype.getTileCoordExtent=function(t,e){var n=this.getOrigin(t[0]),i=this.getResolution(t[0]),r=kr(this.getTileSize(t[0]),this.tmpSize_),o=n[0]+t[1]*r[0]*i,s=n[1]-(t[2]+1)*r[1]*i;return ve(o,s,o+r[0]*i,s+r[1]*i,e)},t.prototype.getTileCoordForCoordAndResolution=function(t,e,n){return this.getTileCoordForXYAndResolution_(t[0],t[1],e,!1,n)},t.prototype.getTileCoordForXYAndResolution_=function(t,e,n,i,r){var o=this.getZForResolution(n),s=n/this.getResolution(o),a=this.getOrigin(o),l=kr(this.getTileSize(o),this.tmpSize_),h=s*(t-a[0])/n/l[0],u=s*(a[1]-e)/n/l[1];return i?(h=It(h,5)-1,u=It(u,5)-1):(h=Rt(h,5),u=Rt(u,5)),Bs(o,h,u,r)},t.prototype.getTileCoordForXYAndZ_=function(t,e,n,i,r){var o=this.getOrigin(n),s=this.getResolution(n),a=kr(this.getTileSize(n),this.tmpSize_),l=(t-o[0])/s/a[0],h=(o[1]-e)/s/a[1];return i?(l=It(l,5)-1,h=It(h,5)-1):(l=Rt(l,5),h=Rt(h,5)),Bs(n,l,h,r)},t.prototype.getTileCoordForCoordAndZ=function(t,e,n){return this.getTileCoordForXYAndZ_(t[0],t[1],e,!1,n)},t.prototype.getTileCoordResolution=function(t){return this.resolutions_[t[0]]},t.prototype.getTileSize=function(t){return this.tileSize_?this.tileSize_:this.tileSizes_[t]},t.prototype.getFullTileRange=function(t){return this.fullTileRanges_?this.fullTileRanges_[t]:this.extent_?this.getTileRangeForExtentAndZ(this.extent_,t):null},t.prototype.getZForResolution=function(t,e){return mt(s(this.resolutions_,t,e||0),this.minZoom,this.maxZoom)},t.prototype.calculateTileRanges_=function(t){for(var e=this.resolutions_.length,n=new Array(e),i=this.minZoom;i<e;++i)n[i]=this.getTileRangeForExtentAndZ(t,i);this.fullTileRanges_=n},t}();function ea(t){var e=t.getDefaultTileGrid();return e||(e=function(t,e,n,i){return function(t,e,n,i){var r=na(t,undefined,n);return new ta({extent:t,origin:Pe(t,"top-left"),resolutions:r,tileSize:n})}(ia(t),0,void 0)}(t),t.setDefaultTileGrid(e)),e}function na(t,e,n,i){for(var r=void 0!==e?e:42,o=Fe(t),s=ke(t),a=kr(void 0!==n?n:256),l=i>0?i:Math.max(s/a[0],o/a[1]),h=r+1,u=new Array(h),c=0;c<h;++c)u[c]=l/Math.pow(2,c);return u}function ia(t){var e=(t=Ue(t)).getExtent();if(!e){var n=180*Bt[Kt.DEGREES]/t.getMetersPerUnit();e=ve(-n,-n,n,n)}return e}var ra=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),oa=function(t){function e(e){var n=t.call(this,{attributions:e.attributions,attributionsCollapsible:e.attributionsCollapsible,projection:e.projection,state:e.state,wrapX:e.wrapX,interpolate:e.interpolate})||this;return n.on,n.once,n.un,n.opaque_=void 0!==e.opaque&&e.opaque,n.tilePixelRatio_=void 0!==e.tilePixelRatio?e.tilePixelRatio:1,n.tileGrid=void 0!==e.tileGrid?e.tileGrid:null,n.tileGrid&&kr(n.tileGrid.getTileSize(n.tileGrid.getMinZoom()),[256,256]),n.tileCache=new Hs(e.cacheSize||0),n.tmpSize=[0,0],n.key_=e.key||"",n.tileOptions={transition:e.transition,interpolate:e.interpolate},n.zDirection=e.zDirection?e.zDirection:0,n}return ra(e,t),e.prototype.canExpireCache=function(){return this.tileCache.canExpireCache()},e.prototype.expireCache=function(t,e){var n=this.getTileCacheForProjection(t);n&&n.expireCache(e)},e.prototype.forEachLoadedTile=function(t,e,n,i){var r=this.getTileCacheForProjection(t);if(!r)return!1;for(var o,s,a,l=!0,h=n.minX;h<=n.maxX;++h)for(var u=n.minY;u<=n.maxY;++u)s=Ks(e,h,u),a=!1,r.containsKey(s)&&(a=2===(o=r.get(s)).getState())&&(a=!1!==i(o)),a||(l=!1);return l},e.prototype.getGutterForProjection=function(t){return 0},e.prototype.getKey=function(){return this.key_},e.prototype.setKey=function(t){this.key_!==t&&(this.key_=t,this.changed())},e.prototype.getOpaque=function(t){return this.opaque_},e.prototype.getResolutions=function(){return this.tileGrid?this.tileGrid.getResolutions():null},e.prototype.getTile=function(t,e,n,i,r){return L()},e.prototype.getTileGrid=function(){return this.tileGrid},e.prototype.getTileGridForProjection=function(t){return this.tileGrid?this.tileGrid:ea(t)},e.prototype.getTileCacheForProjection=function(t){return vt(Qe(this.getProjection(),t),68),this.tileCache},e.prototype.getTilePixelRatio=function(t){return this.tilePixelRatio_},e.prototype.getTilePixelSize=function(t,e,n){var i,r,o,s=this.getTileGridForProjection(n),a=this.getTilePixelRatio(e),l=kr(s.getTileSize(t),this.tmpSize);return 1==a?l:(i=l,r=a,void 0===(o=this.tmpSize)&&(o=[0,0]),o[0]=i[0]*r+.5|0,o[1]=i[1]*r+.5|0,o)},e.prototype.getTileCoordForTileUrlFunction=function(t,e){var n=void 0!==e?e:this.getProjection(),i=this.getTileGridForProjection(n);return this.getWrapX()&&n.isGlobal()&&(t=function(t,e,n){var i=e[0],r=t.getTileCoordCenter(e),o=ia(n);if(de(o,r))return e;var s=ke(o),a=Math.ceil((o[0]-r[0])/s);return r[0]+=s*a,t.getTileCoordForCoordAndZ(r,i)}(i,t,n)),function(t,e){var n=t[0],i=t[1],r=t[2];if(e.getMinZoom()>n||n>e.getMaxZoom())return!1;var o=e.getFullTileRange(n);return!o||o.containsXY(i,r)}(t,i)?t:null},e.prototype.clear=function(){this.tileCache.clear()},e.prototype.refresh=function(){this.clear(),t.prototype.refresh.call(this)},e.prototype.updateCacheSize=function(t,e){var n=this.getTileCacheForProjection(e);t>n.highWaterMark&&(n.highWaterMark=t)},e.prototype.useTile=function(t,e,n,i){},e}(Qs),sa=function(t){function e(e,n){var i=t.call(this,e)||this;return i.tile=n,i}return ra(e,t),e}(t),aa=oa;function la(t,e){var n=/\{z\}/g,i=/\{x\}/g,r=/\{y\}/g,o=/\{-y\}/g;return function(s,a,l){return s?t.replace(n,s[0].toString()).replace(i,s[1].toString()).replace(r,s[2].toString()).replace(o,(function(){var t=s[0],n=e.getFullTileRange(t);return vt(n,55),(n.getHeight()-s[2]-1).toString()})):void 0}}var ha=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),ua=function(t){function e(n){var i=t.call(this,{attributions:n.attributions,cacheSize:n.cacheSize,opaque:n.opaque,projection:n.projection,state:n.state,tileGrid:n.tileGrid,tilePixelRatio:n.tilePixelRatio,wrapX:n.wrapX,transition:n.transition,interpolate:n.interpolate,key:n.key,attributionsCollapsible:n.attributionsCollapsible,zDirection:n.zDirection})||this;return i.generateTileUrlFunction_=i.tileUrlFunction===e.prototype.tileUrlFunction,i.tileLoadFunction=n.tileLoadFunction,n.tileUrlFunction&&(i.tileUrlFunction=n.tileUrlFunction),i.urls=null,n.urls?i.setUrls(n.urls):n.url&&i.setUrl(n.url),i.tileLoadingKeys_={},i}return ha(e,t),e.prototype.getTileLoadFunction=function(){return this.tileLoadFunction},e.prototype.getTileUrlFunction=function(){return Object.getPrototypeOf(this).tileUrlFunction===this.tileUrlFunction?this.tileUrlFunction.bind(this):this.tileUrlFunction},e.prototype.getUrls=function(){return this.urls},e.prototype.handleTileChange=function(t){var e,n=t.target,i=D(n),r=n.getState();1==r?(this.tileLoadingKeys_[i]=!0,e="tileloadstart"):i in this.tileLoadingKeys_&&(delete this.tileLoadingKeys_[i],e=3==r?"tileloaderror":2==r?"tileloadend":void 0),null!=e&&this.dispatchEvent(new sa(e,n))},e.prototype.setTileLoadFunction=function(t){this.tileCache.clear(),this.tileLoadFunction=t,this.changed()},e.prototype.setTileUrlFunction=function(t,e){this.tileUrlFunction=t,this.tileCache.pruneExceptNewestZ(),void 0!==e?this.setKey(e):this.changed()},e.prototype.setUrl=function(t){var e=function(t){var e=[],n=/\{([a-z])-([a-z])\}/.exec(t);if(n){var i=n[1].charCodeAt(0),r=n[2].charCodeAt(0),o=void 0;for(o=i;o<=r;++o)e.push(t.replace(n[0],String.fromCharCode(o)));return e}if(n=/\{(\d+)-(\d+)\}/.exec(t)){for(var s=parseInt(n[2],10),a=parseInt(n[1],10);a<=s;a++)e.push(t.replace(n[0],a.toString()));return e}return e.push(t),e}(t);this.urls=e,this.setUrls(e)},e.prototype.setUrls=function(t){this.urls=t;var e=t.join("\n");this.generateTileUrlFunction_?this.setTileUrlFunction(function(t,e){for(var n=t.length,i=new Array(n),r=0;r<n;++r)i[r]=la(t[r],e);return function(t){return 1===t.length?t[0]:function(e,n,i){if(e){var r=function(t){return(t[1]<<t[0])+t[2]}(e),o=Tt(r,t.length);return t[o](e,n,i)}}}(i)}(t,this.tileGrid),e):this.setKey(e)},e.prototype.tileUrlFunction=function(t,e,n){},e.prototype.useTile=function(t,e,n){var i=Ks(t,e,n);this.tileCache.containsKey(i)&&this.tileCache.get(i)},e}(aa),ca=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),pa=function(t){function e(e){var n=this,i=void 0===e.imageSmoothing||e.imageSmoothing;return void 0!==e.interpolate&&(i=e.interpolate),(n=t.call(this,{attributions:e.attributions,cacheSize:e.cacheSize,opaque:e.opaque,projection:e.projection,state:e.state,tileGrid:e.tileGrid,tileLoadFunction:e.tileLoadFunction?e.tileLoadFunction:fa,tilePixelRatio:e.tilePixelRatio,tileUrlFunction:e.tileUrlFunction,url:e.url,urls:e.urls,wrapX:e.wrapX,transition:e.transition,interpolate:i,key:e.key,attributionsCollapsible:e.attributionsCollapsible,zDirection:e.zDirection})||this).crossOrigin=void 0!==e.crossOrigin?e.crossOrigin:null,n.tileClass=void 0!==e.tileClass?e.tileClass:Sr,n.tileCacheForProjection={},n.tileGridForProjection={},n.reprojectionErrorThreshold_=e.reprojectionErrorThreshold,n.renderReprojectionEdges_=!1,n}return ca(e,t),e.prototype.canExpireCache=function(){if(this.tileCache.canExpireCache())return!0;for(var t in this.tileCacheForProjection)if(this.tileCacheForProjection[t].canExpireCache())return!0;return!1},e.prototype.expireCache=function(t,e){var n=this.getTileCacheForProjection(t);for(var i in this.tileCache.expireCache(this.tileCache==n?e:{}),this.tileCacheForProjection){var r=this.tileCacheForProjection[i];r.expireCache(r==n?e:{})}},e.prototype.getGutterForProjection=function(t){return this.getProjection()&&t&&!Qe(this.getProjection(),t)?0:this.getGutter()},e.prototype.getGutter=function(){return 0},e.prototype.getKey=function(){var e=t.prototype.getKey.call(this);return this.getInterpolate()||(e+=":disable-interpolation"),e},e.prototype.getOpaque=function(e){return!(this.getProjection()&&e&&!Qe(this.getProjection(),e))&&t.prototype.getOpaque.call(this,e)},e.prototype.getTileGridForProjection=function(t){var e=this.getProjection();if(!this.tileGrid||e&&!Qe(e,t)){var n=D(t);return n in this.tileGridForProjection||(this.tileGridForProjection[n]=ea(t)),this.tileGridForProjection[n]}return this.tileGrid},e.prototype.getTileCacheForProjection=function(t){var e=this.getProjection();if(!e||Qe(e,t))return this.tileCache;var n=D(t);return n in this.tileCacheForProjection||(this.tileCacheForProjection[n]=new Hs(this.tileCache.highWaterMark)),this.tileCacheForProjection[n]},e.prototype.createTile_=function(t,e,n,i,r,o){var s=[t,e,n],a=this.getTileCoordForTileUrlFunction(s,r),l=a?this.tileUrlFunction(a,i,r):void 0,h=new this.tileClass(s,void 0!==l?0:4,void 0!==l?l:"",this.crossOrigin,this.tileLoadFunction,this.tileOptions);return h.key=o,h.addEventListener(x,this.handleTileChange.bind(this)),h},e.prototype.getTile=function(t,e,n,i,r){var o=this.getProjection();if(o&&r&&!Qe(o,r)){var s=this.getTileCacheForProjection(r),a=[t,e,n],l=void 0,h=Zs(a);s.containsKey(h)&&(l=s.get(h));var u=this.getKey();if(l&&l.key==u)return l;var c=this.getTileGridForProjection(o),p=this.getTileGridForProjection(r),f=this.getTileCoordForTileUrlFunction(a,r),d=new Mr(o,c,r,p,a,f,this.getTilePixelRatio(i),this.getGutter(),function(t,e,n,i){return this.getTileInternal(t,e,n,i,o)}.bind(this),this.reprojectionErrorThreshold_,this.renderReprojectionEdges_,this.getInterpolate());return d.key=u,l?(d.interimTile=l,d.refreshInterimChain(),s.replace(h,d)):s.set(h,d),d}return this.getTileInternal(t,e,n,i,o||r)},e.prototype.getTileInternal=function(t,e,n,i,r){var o=null,s=Ks(t,e,n),a=this.getKey();if(this.tileCache.containsKey(s)){if((o=this.tileCache.get(s)).key!=a){var l=o;o=this.createTile_(t,e,n,i,r,a),0==l.getState()?o.interimTile=l.interimTile:o.interimTile=l,o.refreshInterimChain(),this.tileCache.replace(s,o)}}else o=this.createTile_(t,e,n,i,r,a),this.tileCache.set(s,o);return o},e.prototype.setRenderReprojectionEdges=function(t){if(this.renderReprojectionEdges_!=t){for(var e in this.renderReprojectionEdges_=t,this.tileCacheForProjection)this.tileCacheForProjection[e].clear();this.changed()}},e.prototype.setTileGridForProjection=function(t,e){var n=Ue(t);if(n){var i=D(n);i in this.tileGridForProjection||(this.tileGridForProjection[i]=e)}},e}(ua);function fa(t,e){t.getImage().src=e}var da=pa,ga=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),_a=function(t){function e(e){var n=e||{},i=void 0===n.imageSmoothing||n.imageSmoothing;void 0!==n.interpolate&&(i=n.interpolate);var r=void 0!==n.projection?n.projection:"EPSG:3857",o=void 0!==n.tileGrid?n.tileGrid:function(t){var e=t||{},n=e.extent||Ue("EPSG:3857").getExtent(),i={extent:n,minZoom:e.minZoom,tileSize:e.tileSize,resolutions:na(n,e.maxZoom,e.tileSize,e.maxResolution)};return new ta(i)}({extent:ia(r),maxResolution:n.maxResolution,maxZoom:n.maxZoom,minZoom:n.minZoom,tileSize:n.tileSize});return t.call(this,{attributions:n.attributions,cacheSize:n.cacheSize,crossOrigin:n.crossOrigin,interpolate:i,opaque:n.opaque,projection:r,reprojectionErrorThreshold:n.reprojectionErrorThreshold,tileGrid:o,tileLoadFunction:n.tileLoadFunction,tilePixelRatio:n.tilePixelRatio,tileUrlFunction:n.tileUrlFunction,url:n.url,urls:n.urls,wrapX:void 0===n.wrapX||n.wrapX,transition:n.transition,attributionsCollapsible:n.attributionsCollapsible,zDirection:n.zDirection})||this}return ga(e,t),e}(da),ya=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),va=function(t){function e(e){var n,i=e||{},r=void 0===i.imageSmoothing||i.imageSmoothing;void 0!==i.interpolate&&(r=i.interpolate),n=void 0!==i.attributions?i.attributions:['&#169; <a href="https://www.openstreetmap.org/copyright" target="_blank">OpenStreetMap</a> contributors.'];var o=void 0!==i.crossOrigin?i.crossOrigin:"anonymous",s=void 0!==i.url?i.url:"https://{a-c}.tile.openstreetmap.org/{z}/{x}/{y}.png";return t.call(this,{attributions:n,attributionsCollapsible:!1,cacheSize:i.cacheSize,crossOrigin:o,interpolate:r,maxZoom:void 0!==i.maxZoom?i.maxZoom:19,opaque:void 0===i.opaque||i.opaque,reprojectionErrorThreshold:i.reprojectionErrorThreshold,tileLoadFunction:i.tileLoadFunction,transition:i.transition,url:s,wrapX:i.wrapX,zDirection:i.zDirection})||this}return ya(e,t),e}(_a),ma="add",xa="remove",Ca=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),wa="length",Sa=function(t){function e(e,n,i){var r=t.call(this,e)||this;return r.element=n,r.index=i,r}return Ca(e,t),e}(t),Ea=function(t){function e(e,n){var i=t.call(this)||this;i.on,i.once,i.un;var r=n||{};if(i.unique_=!!r.unique,i.array_=e||[],i.unique_)for(var o=0,s=i.array_.length;o<s;++o)i.assertUnique_(i.array_[o],o);return i.updateLength_(),i}return Ca(e,t),e.prototype.clear=function(){for(;this.getLength()>0;)this.pop()},e.prototype.extend=function(t){for(var e=0,n=t.length;e<n;++e)this.push(t[e]);return this},e.prototype.forEach=function(t){for(var e=this.array_,n=0,i=e.length;n<i;++n)t(e[n],n,e)},e.prototype.getArray=function(){return this.array_},e.prototype.item=function(t){return this.array_[t]},e.prototype.getLength=function(){return this.get(wa)},e.prototype.insertAt=function(t,e){this.unique_&&this.assertUnique_(e),this.array_.splice(t,0,e),this.updateLength_(),this.dispatchEvent(new Sa(ma,e,t))},e.prototype.pop=function(){return this.removeAt(this.getLength()-1)},e.prototype.push=function(t){this.unique_&&this.assertUnique_(t);var e=this.getLength();return this.insertAt(e,t),this.getLength()},e.prototype.remove=function(t){for(var e=this.array_,n=0,i=e.length;n<i;++n)if(e[n]===t)return this.removeAt(n)},e.prototype.removeAt=function(t){var e=this.array_[t];return this.array_.splice(t,1),this.updateLength_(),this.dispatchEvent(new Sa(xa,e,t)),e},e.prototype.setAt=function(t,e){var n=this.getLength();if(t<n){this.unique_&&this.assertUnique_(e,t);var i=this.array_[t];this.array_[t]=e,this.dispatchEvent(new Sa(xa,i,t)),this.dispatchEvent(new Sa(ma,e,t))}else{for(var r=n;r<t;++r)this.insertAt(r,void 0);this.insertAt(t,e)}},e.prototype.updateLength_=function(){this.set(wa,this.array_.length)},e.prototype.assertUnique_=function(t,e){for(var n=0,i=this.array_.length;n<i;++n)if(this.array_[n]===t&&n!==e)throw new yt(58)},e}(G),Ta=function(){function t(t){this.rbush_=new Nr(t),this.items_={}}return t.prototype.insert=function(t,e){var n={minX:t[0],minY:t[1],maxX:t[2],maxY:t[3],value:e};this.rbush_.insert(n),this.items_[D(e)]=n},t.prototype.load=function(t,e){for(var n=new Array(e.length),i=0,r=e.length;i<r;i++){var o=t[i],s=e[i],a={minX:o[0],minY:o[1],maxX:o[2],maxY:o[3],value:s};n[i]=a,this.items_[D(s)]=a}this.rbush_.load(n)},t.prototype.remove=function(t){var e=D(t),n=this.items_[e];return delete this.items_[e],null!==this.rbush_.remove(n)},t.prototype.update=function(t,e){var n=this.items_[D(e)];Ce([n.minX,n.minY,n.maxX,n.maxY],t)||(this.remove(e),this.insert(t,e))},t.prototype.getAll=function(){return this.rbush_.all().map((function(t){return t.value}))},t.prototype.getInExtent=function(t){var e={minX:t[0],minY:t[1],maxX:t[2],maxY:t[3]};return this.rbush_.search(e).map((function(t){return t.value}))},t.prototype.forEach=function(t){return this.forEach_(this.getAll(),t)},t.prototype.forEachInExtent=function(t,e){return this.forEach_(this.getInExtent(t),e)},t.prototype.forEach_=function(t,e){for(var n,i=0,r=t.length;i<r;i++)if(n=e(t[i]))return n;return n},t.prototype.isEmpty=function(){return _(this.items_)},t.prototype.clear=function(){this.rbush_.clear(),this.items_={}},t.prototype.getExtent=function(t){var e=this.rbush_.toJSON();return ve(e.minX,e.minY,e.maxX,e.maxY,t)},t.prototype.concat=function(t){for(var e in this.rbush_.load(t.rbush_.all()),t.items_)this.items_[e]=t.items_[e]},t}(),ba="addfeature",Oa="removefeature";function Ra(t,e){return[[-1/0,-1/0,1/0,1/0]]}var Ia="arraybuffer";function Pa(t,e){return function(n,i,r,o,s){var a=this;!function(t,e,n,i,r,o,s){var a=new XMLHttpRequest;a.open("GET","function"==typeof t?t(n,i,r):t,!0),e.getType()==Ia&&(a.responseType="arraybuffer"),a.withCredentials=false,a.onload=function(t){if(!a.status||a.status>=200&&a.status<300){var i=e.getType(),l=void 0;"json"==i||"text"==i?l=a.responseText:"xml"==i?(l=a.responseXML)||(l=(new DOMParser).parseFromString(a.responseText,"application/xml")):i==Ia&&(l=a.response),l?o(e.readFeatures(l,{extent:n,featureProjection:r}),e.readProjection(l)):s()}else s()},a.onerror=s,a.send()}(t,e,n,i,r,(function(t,e){a.addFeatures(t),void 0!==o&&o(t)}),s||p)}}var Ma=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),Fa=function(t){function e(e,n,i){var r=t.call(this,e)||this;return r.feature=n,r.features=i,r}return Ma(e,t),e}(t),La=function(t){function n(e){var n=this,i=e||{};(n=t.call(this,{attributions:i.attributions,interpolate:!0,projection:void 0,state:Dt,wrapX:void 0===i.wrapX||i.wrapX})||this).on,n.once,n.un,n.loader_=p,n.format_=i.format,n.overlaps_=void 0===i.overlaps||i.overlaps,n.url_=i.url,void 0!==i.loader?n.loader_=i.loader:void 0!==n.url_&&(vt(n.format_,7),n.loader_=Pa(n.url_,n.format_)),n.strategy_=void 0!==i.strategy?i.strategy:Ra;var r,o,s=void 0===i.useSpatialIndex||i.useSpatialIndex;return n.featuresRtree_=s?new Ta:null,n.loadedExtentsRtree_=new Ta,n.loadingExtentsCount_=0,n.nullGeometryFeatures_={},n.idIndex_={},n.uidIndex_={},n.featureChangeKeys_={},n.featuresCollection_=null,Array.isArray(i.features)?o=i.features:i.features&&(o=(r=i.features).getArray()),s||void 0!==r||(r=new Ea(o)),void 0!==o&&n.addFeaturesInternal(o),void 0!==r&&n.bindFeaturesCollection_(r),n}return Ma(n,t),n.prototype.addFeature=function(t){this.addFeatureInternal(t),this.changed()},n.prototype.addFeatureInternal=function(t){var e=D(t);if(this.addToIndex_(e,t)){this.setupChangeEvents_(e,t);var n=t.getGeometry();if(n){var i=n.getExtent();this.featuresRtree_&&this.featuresRtree_.insert(i,t)}else this.nullGeometryFeatures_[e]=t;this.dispatchEvent(new Fa(ba,t))}else this.featuresCollection_&&this.featuresCollection_.remove(t)},n.prototype.setupChangeEvents_=function(t,n){this.featureChangeKeys_[t]=[O(n,x,this.handleFeatureChange_,this),O(n,e,this.handleFeatureChange_,this)]},n.prototype.addToIndex_=function(t,e){var n=!0,i=e.getId();return void 0!==i&&(i.toString()in this.idIndex_?n=!1:this.idIndex_[i.toString()]=e),n&&(vt(!(t in this.uidIndex_),30),this.uidIndex_[t]=e),n},n.prototype.addFeatures=function(t){this.addFeaturesInternal(t),this.changed()},n.prototype.addFeaturesInternal=function(t){for(var e=[],n=[],i=[],r=0,o=t.length;r<o;r++){var s=D(l=t[r]);this.addToIndex_(s,l)&&n.push(l)}r=0;for(var a=n.length;r<a;r++){var l;s=D(l=n[r]),this.setupChangeEvents_(s,l);var h=l.getGeometry();if(h){var u=h.getExtent();e.push(u),i.push(l)}else this.nullGeometryFeatures_[s]=l}if(this.featuresRtree_&&this.featuresRtree_.load(e,i),this.hasListener(ba)){r=0;for(var c=n.length;r<c;r++)this.dispatchEvent(new Fa(ba,n[r]))}},n.prototype.bindFeaturesCollection_=function(t){var e=!1;this.addEventListener(ba,(function(n){e||(e=!0,t.push(n.feature),e=!1)})),this.addEventListener(Oa,(function(n){e||(e=!0,t.remove(n.feature),e=!1)})),t.addEventListener(ma,function(t){e||(e=!0,this.addFeature(t.element),e=!1)}.bind(this)),t.addEventListener(xa,function(t){e||(e=!0,this.removeFeature(t.element),e=!1)}.bind(this)),this.featuresCollection_=t},n.prototype.clear=function(t){if(t){for(var e in this.featureChangeKeys_)this.featureChangeKeys_[e].forEach(I);this.featuresCollection_||(this.featureChangeKeys_={},this.idIndex_={},this.uidIndex_={})}else if(this.featuresRtree_){var n=function(t){this.removeFeatureInternal(t)}.bind(this);for(var i in this.featuresRtree_.forEach(n),this.nullGeometryFeatures_)this.removeFeatureInternal(this.nullGeometryFeatures_[i])}this.featuresCollection_&&this.featuresCollection_.clear(),this.featuresRtree_&&this.featuresRtree_.clear(),this.nullGeometryFeatures_={};var r=new Fa("clear");this.dispatchEvent(r),this.changed()},n.prototype.forEachFeature=function(t){if(this.featuresRtree_)return this.featuresRtree_.forEach(t);this.featuresCollection_&&this.featuresCollection_.forEach(t)},n.prototype.forEachFeatureAtCoordinateDirect=function(t,e){var n=[t[0],t[1],t[0],t[1]];return this.forEachFeatureInExtent(n,(function(n){return n.getGeometry().intersectsCoordinate(t)?e(n):void 0}))},n.prototype.forEachFeatureInExtent=function(t,e){if(this.featuresRtree_)return this.featuresRtree_.forEachInExtent(t,e);this.featuresCollection_&&this.featuresCollection_.forEach(e)},n.prototype.forEachFeatureIntersectingExtent=function(t,e){return this.forEachFeatureInExtent(t,(function(n){if(n.getGeometry().intersectsExtent(t)){var i=e(n);if(i)return i}}))},n.prototype.getFeaturesCollection=function(){return this.featuresCollection_},n.prototype.getFeatures=function(){var t;return this.featuresCollection_?t=this.featuresCollection_.getArray().slice(0):this.featuresRtree_&&(t=this.featuresRtree_.getAll(),_(this.nullGeometryFeatures_)||l(t,g(this.nullGeometryFeatures_))),t},n.prototype.getFeaturesAtCoordinate=function(t){var e=[];return this.forEachFeatureAtCoordinateDirect(t,(function(t){e.push(t)})),e},n.prototype.getFeaturesInExtent=function(t){return this.featuresRtree_?this.featuresRtree_.getInExtent(t):this.featuresCollection_?this.featuresCollection_.getArray().slice(0):[]},n.prototype.getClosestFeatureToCoordinate=function(t,e){var n=t[0],i=t[1],r=null,o=[NaN,NaN],s=1/0,a=[-1/0,-1/0,1/0,1/0],l=e||u;return this.featuresRtree_.forEachInExtent(a,(function(t){if(l(t)){var e=t.getGeometry(),h=s;if((s=e.closestPointXY(n,i,o,s))<h){r=t;var u=Math.sqrt(s);a[0]=n-u,a[1]=i-u,a[2]=n+u,a[3]=i+u}}})),r},n.prototype.getExtent=function(t){return this.featuresRtree_.getExtent(t)},n.prototype.getFeatureById=function(t){var e=this.idIndex_[t.toString()];return void 0!==e?e:null},n.prototype.getFeatureByUid=function(t){var e=this.uidIndex_[t];return void 0!==e?e:null},n.prototype.getFormat=function(){return this.format_},n.prototype.getOverlaps=function(){return this.overlaps_},n.prototype.getUrl=function(){return this.url_},n.prototype.handleFeatureChange_=function(t){var e=t.target,n=D(e),i=e.getGeometry();if(i){var r=i.getExtent();n in this.nullGeometryFeatures_?(delete this.nullGeometryFeatures_[n],this.featuresRtree_&&this.featuresRtree_.insert(r,e)):this.featuresRtree_&&this.featuresRtree_.update(r,e)}else n in this.nullGeometryFeatures_||(this.featuresRtree_&&this.featuresRtree_.remove(e),this.nullGeometryFeatures_[n]=e);var o=e.getId();if(void 0!==o){var s=o.toString();this.idIndex_[s]!==e&&(this.removeFromIdIndex_(e),this.idIndex_[s]=e)}else this.removeFromIdIndex_(e),this.uidIndex_[n]=e;this.changed(),this.dispatchEvent(new Fa("changefeature",e))},n.prototype.hasFeature=function(t){var e=t.getId();return void 0!==e?e in this.idIndex_:D(t)in this.uidIndex_},n.prototype.isEmpty=function(){return this.featuresRtree_?this.featuresRtree_.isEmpty()&&_(this.nullGeometryFeatures_):!this.featuresCollection_||0===this.featuresCollection_.getLength()},n.prototype.loadFeatures=function(t,e,n){for(var i=this.loadedExtentsRtree_,r=this.strategy_(t,e,n),o=function(t,o){var a=r[t];i.forEachInExtent(a,(function(t){return ge(t.extent,a)}))||(++s.loadingExtentsCount_,s.dispatchEvent(new Fa("featuresloadstart")),s.loader_.call(s,a,e,n,function(t){--this.loadingExtentsCount_,this.dispatchEvent(new Fa("featuresloadend",void 0,t))}.bind(s),function(){--this.loadingExtentsCount_,this.dispatchEvent(new Fa("featuresloaderror"))}.bind(s)),i.insert(a,{extent:a.slice()}))},s=this,a=0,l=r.length;a<l;++a)o(a);this.loading=!(this.loader_.length<4)&&this.loadingExtentsCount_>0},n.prototype.refresh=function(){this.clear(!0),this.loadedExtentsRtree_.clear(),t.prototype.refresh.call(this)},n.prototype.removeLoadedExtent=function(t){var e,n=this.loadedExtentsRtree_;n.forEachInExtent(t,(function(n){if(Ce(n.extent,t))return e=n,!0})),e&&n.remove(e)},n.prototype.removeFeature=function(t){if(t){var e=D(t);e in this.nullGeometryFeatures_?delete this.nullGeometryFeatures_[e]:this.featuresRtree_&&this.featuresRtree_.remove(t),this.removeFeatureInternal(t)&&this.changed()}},n.prototype.removeFeatureInternal=function(t){var e=D(t),n=this.featureChangeKeys_[e];if(n){n.forEach(I),delete this.featureChangeKeys_[e];var i=t.getId();return void 0!==i&&delete this.idIndex_[i.toString()],delete this.uidIndex_[e],this.dispatchEvent(new Fa(Oa,t)),t}},n.prototype.removeFromIdIndex_=function(t){var e=!1;for(var n in this.idIndex_)if(this.idIndex_[n]===t){delete this.idIndex_[n],e=!0;break}return e},n.prototype.setLoader=function(t){this.loader_=t},n.prototype.setUrl=function(t){vt(this.format_,7),this.url_=t,this.setLoader(Pa(t,this.format_))},n}(Qs),Aa=function(){function t(t){var e=t||{};this.font_=e.font,this.rotation_=e.rotation,this.rotateWithView_=e.rotateWithView,this.scale_=e.scale,this.scaleArray_=kr(void 0!==e.scale?e.scale:1),this.text_=e.text,this.textAlign_=e.textAlign,this.textBaseline_=e.textBaseline,this.fill_=void 0!==e.fill?e.fill:new go({color:"#333"}),this.maxAngle_=void 0!==e.maxAngle?e.maxAngle:Math.PI/4,this.placement_=void 0!==e.placement?e.placement:"point",this.overflow_=!!e.overflow,this.stroke_=void 0!==e.stroke?e.stroke:null,this.offsetX_=void 0!==e.offsetX?e.offsetX:0,this.offsetY_=void 0!==e.offsetY?e.offsetY:0,this.backgroundFill_=e.backgroundFill?e.backgroundFill:null,this.backgroundStroke_=e.backgroundStroke?e.backgroundStroke:null,this.padding_=void 0===e.padding?null:e.padding}return t.prototype.clone=function(){var e=this.getScale();return new t({font:this.getFont(),placement:this.getPlacement(),maxAngle:this.getMaxAngle(),overflow:this.getOverflow(),rotation:this.getRotation(),rotateWithView:this.getRotateWithView(),scale:Array.isArray(e)?e.slice():e,text:this.getText(),textAlign:this.getTextAlign(),textBaseline:this.getTextBaseline(),fill:this.getFill()?this.getFill().clone():void 0,stroke:this.getStroke()?this.getStroke().clone():void 0,offsetX:this.getOffsetX(),offsetY:this.getOffsetY(),backgroundFill:this.getBackgroundFill()?this.getBackgroundFill().clone():void 0,backgroundStroke:this.getBackgroundStroke()?this.getBackgroundStroke().clone():void 0,padding:this.getPadding()||void 0})},t.prototype.getOverflow=function(){return this.overflow_},t.prototype.getFont=function(){return this.font_},t.prototype.getMaxAngle=function(){return this.maxAngle_},t.prototype.getPlacement=function(){return this.placement_},t.prototype.getOffsetX=function(){return this.offsetX_},t.prototype.getOffsetY=function(){return this.offsetY_},t.prototype.getFill=function(){return this.fill_},t.prototype.getRotateWithView=function(){return this.rotateWithView_},t.prototype.getRotation=function(){return this.rotation_},t.prototype.getScale=function(){return this.scale_},t.prototype.getScaleArray=function(){return this.scaleArray_},t.prototype.getStroke=function(){return this.stroke_},t.prototype.getText=function(){return this.text_},t.prototype.getTextAlign=function(){return this.textAlign_},t.prototype.getTextBaseline=function(){return this.textBaseline_},t.prototype.getBackgroundFill=function(){return this.backgroundFill_},t.prototype.getBackgroundStroke=function(){return this.backgroundStroke_},t.prototype.getPadding=function(){return this.padding_},t.prototype.setOverflow=function(t){this.overflow_=t},t.prototype.setFont=function(t){this.font_=t},t.prototype.setMaxAngle=function(t){this.maxAngle_=t},t.prototype.setOffsetX=function(t){this.offsetX_=t},t.prototype.setOffsetY=function(t){this.offsetY_=t},t.prototype.setPlacement=function(t){this.placement_=t},t.prototype.setRotateWithView=function(t){this.rotateWithView_=t},t.prototype.setFill=function(t){this.fill_=t},t.prototype.setRotation=function(t){this.rotation_=t},t.prototype.setScale=function(t){this.scale_=t,this.scaleArray_=kr(void 0!==t?t:1)},t.prototype.setStroke=function(t){this.stroke_=t},t.prototype.setText=function(t){this.text_=t},t.prototype.setTextAlign=function(t){this.textAlign_=t},t.prototype.setTextBaseline=function(t){this.textBaseline_=t},t.prototype.setBackgroundFill=function(t){this.backgroundFill_=t},t.prototype.setBackgroundStroke=function(t){this.backgroundStroke_=t},t.prototype.setPadding=function(t){this.padding_=t},t}(),Da=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),ka=function(t){function e(e){var n=t.call(this)||this;if(n.on,n.once,n.un,n.id_=void 0,n.geometryName_="geometry",n.style_=null,n.styleFunction_=void 0,n.geometryChangeKey_=null,n.addChangeListener(n.geometryName_,n.handleGeometryChanged_),e)if("function"==typeof e.getSimplifiedGeometry){var i=e;n.setGeometry(i)}else{var r=e;n.setProperties(r)}return n}return Da(e,t),e.prototype.clone=function(){var t=new e(this.hasProperties()?this.getProperties():null);t.setGeometryName(this.getGeometryName());var n=this.getGeometry();n&&t.setGeometry(n.clone());var i=this.getStyle();return i&&t.setStyle(i),t},e.prototype.getGeometry=function(){return this.get(this.geometryName_)},e.prototype.getId=function(){return this.id_},e.prototype.getGeometryName=function(){return this.geometryName_},e.prototype.getStyle=function(){return this.style_},e.prototype.getStyleFunction=function(){return this.styleFunction_},e.prototype.handleGeometryChange_=function(){this.changed()},e.prototype.handleGeometryChanged_=function(){this.geometryChangeKey_&&(I(this.geometryChangeKey_),this.geometryChangeKey_=null);var t=this.getGeometry();t&&(this.geometryChangeKey_=O(t,x,this.handleGeometryChange_,this)),this.changed()},e.prototype.setGeometry=function(t){this.set(this.geometryName_,t)},e.prototype.setStyle=function(t){var e,n;this.style_=t,this.styleFunction_=t?"function"==typeof(e=t)?e:(Array.isArray(e)?n=e:(vt("function"==typeof e.getZIndex,41),n=[e]),function(){return n}):void 0,this.changed()},e.prototype.setId=function(t){this.id_=t,this.changed()},e.prototype.setGeometryName=function(t){this.removeChangeListener(this.geometryName_,this.handleGeometryChanged_),this.geometryName_=t,this.addChangeListener(this.geometryName_,this.handleGeometryChanged_),this.handleGeometryChanged_()},e}(G),ja=ka,Ga=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),za=function(t){function e(e){var n=t.call(this)||this;return n.map_=e,n}return Ga(e,t),e.prototype.dispatchRenderEvent=function(t,e){L()},e.prototype.calculateMatrices2D=function(t){var e=t.viewState,n=t.coordinateToPixelTransform,i=t.pixelToCoordinateTransform;Gn(n,t.size[0]/2,t.size[1]/2,1/e.resolution,-1/e.resolution,-e.rotation,-e.center[0],-e.center[1]),zn(i,n)},e.prototype.forEachFeatureAtCoordinate=function(t,e,n,i,r,o,s,a){var l,h=e.viewState;function u(t,e,n,i){return r.call(o,e,t?n:null,i)}var c=h.projection,p=Xe(t.slice(),c),f=[[0,0]];if(c.canWrapX()&&i){var d=ke(c.getExtent());f.push([-d,0],[d,0])}for(var g=e.layerStatesArray,_=g.length,y=[],v=[],m=0;m<f.length;m++)for(var x=_-1;x>=0;--x){var C=g[x],w=C.layer;if(w.hasRenderer()&&jt(C,h)&&s.call(a,w)){var S=w.getRenderer(),E=w.getSource();if(S&&E){var T=E.getWrapX()?p:t,b=u.bind(null,C.managed);v[0]=T[0]+f[m][0],v[1]=T[1]+f[m][1],l=S.forEachFeatureAtCoordinate(v,e,n,b,y)}if(l)return l}}if(0!==y.length){var O=1/y.length;return y.forEach((function(t,e){return t.distanceSq+=e*O})),y.sort((function(t,e){return t.distanceSq-e.distanceSq})),y.some((function(t){return l=t.callback(t.feature,t.layer,t.geometry)})),l}},e.prototype.forEachLayerAtPixel=function(t,e,n,i,r){return L()},e.prototype.hasFeatureAtCoordinate=function(t,e,n,i,r,o){return void 0!==this.forEachFeatureAtCoordinate(t,e,n,i,u,this,r,o)},e.prototype.getMap=function(){return this.map_},e.prototype.renderFrame=function(t){L()},e.prototype.scheduleExpireIconCache=function(t){bs.canExpireCache()&&t.postRenderFunctions.push(Wa)},e}(r);function Wa(t,e){bs.expire()}var Xa=za,Na=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),Ya=function(t){function n(n){var i=t.call(this,n)||this;i.fontChangeListenerKey_=O(to,e,n.redrawText.bind(n)),i.element_=document.createElement("div");var r=i.element_.style;r.position="absolute",r.width="100%",r.height="100%",r.zIndex="0",i.element_.className="ol-unselectable ol-layers";var o=n.getViewport();return o.insertBefore(i.element_,o.firstChild||null),i.children_=[],i.renderedVisible_=!0,i}return Na(n,t),n.prototype.dispatchRenderEvent=function(t,e){var n=this.getMap();if(n.hasListener(t)){var i=new ir(t,void 0,e);n.dispatchEvent(i)}},n.prototype.disposeInternal=function(){I(this.fontChangeListenerKey_),this.element_.parentNode.removeChild(this.element_),t.prototype.disposeInternal.call(this)},n.prototype.renderFrame=function(t){if(t){this.calculateMatrices2D(t),this.dispatchRenderEvent(Ft,t);var e=t.layerStatesArray.sort((function(t,e){return t.zIndex-e.zIndex})),n=t.viewState;this.children_.length=0;for(var i=[],r=null,o=0,s=e.length;o<s;++o){var a=e[o];t.layerIndex=o;var l=a.layer,h=l.getSourceState();if(!jt(a,n)||h!=Dt&&h!=At)l.unrender();else{var u=l.render(t,r);u&&(u!==r&&(this.children_.push(u),r=u),"getDeclutter"in l&&i.push(l))}}for(o=i.length-1;o>=0;--o)i[o].renderDeclutter(t);!function(t,e){for(var n=t.childNodes,i=0;;++i){var r=n[i],o=e[i];if(!r&&!o)break;r!==o&&(r?o?t.insertBefore(o,r):(t.removeChild(r),--i):t.appendChild(o))}}(this.element_,this.children_),this.dispatchRenderEvent("postcompose",t),this.renderedVisible_||(this.element_.style.display="",this.renderedVisible_=!0),this.scheduleExpireIconCache(t)}else this.renderedVisible_&&(this.element_.style.display="none",this.renderedVisible_=!1)},n.prototype.forEachLayerAtPixel=function(t,e,n,i,r){for(var o=e.viewState,s=e.layerStatesArray,a=s.length-1;a>=0;--a){var l=s[a],h=l.layer;if(h.hasRenderer()&&jt(l,o)&&r(h)){var u=h.getRenderer().getDataAtPixel(t,e,n);if(u){var c=i(h,u);if(c)return c}}}},n}(Xa),Ba=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),Ka=function(t){function e(e,n){var i=t.call(this,e)||this;return i.layer=n,i}return Ba(e,t),e}(t),Za="layers",Va=function(t){function n(e){var n=this,i=e||{},r=f({},i);delete r.layers;var o=i.layers;return(n=t.call(this,r)||this).on,n.once,n.un,n.layersListenerKeys_=[],n.listenerKeys_={},n.addChangeListener(Za,n.handleLayersChanged_),o?Array.isArray(o)?o=new Ea(o.slice(),{unique:!0}):vt("function"==typeof o.getArray,43):o=new Ea(void 0,{unique:!0}),n.setLayers(o),n}return Ba(n,t),n.prototype.handleLayerChange_=function(){this.changed()},n.prototype.handleLayersChanged_=function(){this.layersListenerKeys_.forEach(I),this.layersListenerKeys_.length=0;var t=this.getLayers();for(var e in this.layersListenerKeys_.push(O(t,ma,this.handleLayersAdd_,this),O(t,xa,this.handleLayersRemove_,this)),this.listenerKeys_)this.listenerKeys_[e].forEach(I);d(this.listenerKeys_);for(var n=t.getArray(),i=0,r=n.length;i<r;i++){var o=n[i];this.registerLayerListeners_(o),this.dispatchEvent(new Ka("addlayer",o))}this.changed()},n.prototype.registerLayerListeners_=function(t){var i=[O(t,e,this.handleLayerChange_,this),O(t,x,this.handleLayerChange_,this)];t instanceof n&&i.push(O(t,"addlayer",this.handleLayerGroupAdd_,this),O(t,"removelayer",this.handleLayerGroupRemove_,this)),this.listenerKeys_[D(t)]=i},n.prototype.handleLayerGroupAdd_=function(t){this.dispatchEvent(new Ka("addlayer",t.layer))},n.prototype.handleLayerGroupRemove_=function(t){this.dispatchEvent(new Ka("removelayer",t.layer))},n.prototype.handleLayersAdd_=function(t){var e=t.element;this.registerLayerListeners_(e),this.dispatchEvent(new Ka("addlayer",e)),this.changed()},n.prototype.handleLayersRemove_=function(t){var e=t.element,n=D(e);this.listenerKeys_[n].forEach(I),delete this.listenerKeys_[n],this.dispatchEvent(new Ka("removelayer",e)),this.changed()},n.prototype.getLayers=function(){return this.get(Za)},n.prototype.setLayers=function(t){var e=this.getLayers();if(e)for(var n=e.getArray(),i=0,r=n.length;i<r;++i)this.dispatchEvent(new Ka("removelayer",n[i]));this.set(Za,t)},n.prototype.getLayersArray=function(t){var e=void 0!==t?t:[];return this.getLayers().forEach((function(t){t.getLayersArray(e)})),e},n.prototype.getLayerStatesArray=function(t){var e=void 0!==t?t:[],n=e.length;this.getLayers().forEach((function(t){t.getLayerStatesArray(e)}));var i=this.getLayerState(),r=i.zIndex;t||void 0!==i.zIndex||(r=0);for(var o=n,s=e.length;o<s;o++){var a=e[o];a.opacity*=i.opacity,a.visible=a.visible&&i.visible,a.maxResolution=Math.min(a.maxResolution,i.maxResolution),a.minResolution=Math.max(a.minResolution,i.minResolution),a.minZoom=Math.max(a.minZoom,i.minZoom),a.maxZoom=Math.min(a.maxZoom,i.maxZoom),void 0!==i.extent&&(void 0!==a.extent?a.extent=Le(a.extent,i.extent):a.extent=i.extent),void 0===a.zIndex&&(a.zIndex=r)}return e},n.prototype.getSourceState=function(){return Dt},n}(Mt),Ua=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),Ha=function(t){function e(e,n,i){var r=t.call(this,e)||this;return r.map=n,r.frameState=void 0!==i?i:null,r}return Ua(e,t),e}(t),qa=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),Ja=function(t){function e(e,n,i,r,o){var s=t.call(this,e,n,o)||this;return s.originalEvent=i,s.pixel_=null,s.coordinate_=null,s.dragging=void 0!==r&&r,s}return qa(e,t),Object.defineProperty(e.prototype,"pixel",{get:function(){return this.pixel_||(this.pixel_=this.map.getEventPixel(this.originalEvent)),this.pixel_},set:function(t){this.pixel_=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"coordinate",{get:function(){return this.coordinate_||(this.coordinate_=this.map.getCoordinateFromPixel(this.pixel)),this.coordinate_},set:function(t){this.coordinate_=t},enumerable:!1,configurable:!0}),e.prototype.preventDefault=function(){t.prototype.preventDefault.call(this),"preventDefault"in this.originalEvent&&this.originalEvent.preventDefault()},e.prototype.stopPropagation=function(){t.prototype.stopPropagation.call(this),"stopPropagation"in this.originalEvent&&this.originalEvent.stopPropagation()},e}(Ha),Qa={SINGLECLICK:"singleclick",CLICK:w,DBLCLICK:"dblclick",POINTERDRAG:"pointerdrag",POINTERMOVE:"pointermove",POINTERDOWN:"pointerdown",POINTERUP:"pointerup",POINTEROVER:"pointerover",POINTEROUT:"pointerout",POINTERENTER:"pointerenter",POINTERLEAVE:"pointerleave",POINTERCANCEL:"pointercancel"},$a=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),tl=function(t){function e(e,n){var i=t.call(this,e)||this;i.map_=e,i.clickTimeoutId_,i.emulateClicks_=!1,i.dragging_=!1,i.dragListenerKeys_=[],i.moveTolerance_=void 0===n?1:n,i.down_=null;var r=i.map_.getViewport();return i.activePointers_=0,i.trackedTouches_={},i.element_=r,i.pointerdownListenerKey_=O(r,Nt,i.handlePointerDown_,i),i.originalPointerMoveEvent_,i.relayedListenerKey_=O(r,Xt,i.relayEvent_,i),i.boundHandleTouchMove_=i.handleTouchMove_.bind(i),i.element_.addEventListener(T,i.boundHandleTouchMove_,!!H&&{passive:!1}),i}return $a(e,t),e.prototype.emulateClick_=function(t){var e=new Ja(Qa.CLICK,this.map_,t);this.dispatchEvent(e),void 0!==this.clickTimeoutId_?(clearTimeout(this.clickTimeoutId_),this.clickTimeoutId_=void 0,e=new Ja(Qa.DBLCLICK,this.map_,t),this.dispatchEvent(e)):this.clickTimeoutId_=setTimeout(function(){this.clickTimeoutId_=void 0;var e=new Ja(Qa.SINGLECLICK,this.map_,t);this.dispatchEvent(e)}.bind(this),250)},e.prototype.updateActivePointers_=function(t){var e=t;e.type==Qa.POINTERUP||e.type==Qa.POINTERCANCEL?delete this.trackedTouches_[e.pointerId]:e.type==Qa.POINTERDOWN&&(this.trackedTouches_[e.pointerId]=!0),this.activePointers_=Object.keys(this.trackedTouches_).length},e.prototype.handlePointerUp_=function(t){this.updateActivePointers_(t);var e=new Ja(Qa.POINTERUP,this.map_,t);this.dispatchEvent(e),this.emulateClicks_&&!e.defaultPrevented&&!this.dragging_&&this.isMouseActionButton_(t)&&this.emulateClick_(this.down_),0===this.activePointers_&&(this.dragListenerKeys_.forEach(I),this.dragListenerKeys_.length=0,this.dragging_=!1,this.down_=null)},e.prototype.isMouseActionButton_=function(t){return 0===t.button},e.prototype.handlePointerDown_=function(t){this.emulateClicks_=0===this.activePointers_,this.updateActivePointers_(t);var e=new Ja(Qa.POINTERDOWN,this.map_,t);for(var n in this.dispatchEvent(e),this.down_={},t){var i=t[n];this.down_[n]="function"==typeof i?p:i}if(0===this.dragListenerKeys_.length){var r=this.map_.getOwnerDocument();this.dragListenerKeys_.push(O(r,Qa.POINTERMOVE,this.handlePointerMove_,this),O(r,Qa.POINTERUP,this.handlePointerUp_,this),O(this.element_,Qa.POINTERCANCEL,this.handlePointerUp_,this)),this.element_.getRootNode&&this.element_.getRootNode()!==r&&this.dragListenerKeys_.push(O(this.element_.getRootNode(),Qa.POINTERUP,this.handlePointerUp_,this))}},e.prototype.handlePointerMove_=function(t){if(this.isMoving_(t)){this.dragging_=!0;var e=new Ja(Qa.POINTERDRAG,this.map_,t,this.dragging_);this.dispatchEvent(e)}},e.prototype.relayEvent_=function(t){this.originalPointerMoveEvent_=t;var e=!(!this.down_||!this.isMoving_(t));this.dispatchEvent(new Ja(t.type,this.map_,t,e))},e.prototype.handleTouchMove_=function(t){var e=this.originalPointerMoveEvent_;e&&!e.defaultPrevented||"boolean"==typeof t.cancelable&&!0!==t.cancelable||t.preventDefault()},e.prototype.isMoving_=function(t){return this.dragging_||Math.abs(t.clientX-this.down_.clientX)>this.moveTolerance_||Math.abs(t.clientY-this.down_.clientY)>this.moveTolerance_},e.prototype.disposeInternal=function(){this.relayedListenerKey_&&(I(this.relayedListenerKey_),this.relayedListenerKey_=null),this.element_.removeEventListener(T,this.boundHandleTouchMove_),this.pointerdownListenerKey_&&(I(this.pointerdownListenerKey_),this.pointerdownListenerKey_=null),this.dragListenerKeys_.forEach(I),this.dragListenerKeys_.length=0,this.element_=null,t.prototype.disposeInternal.call(this)},e}(m),el="layergroup",nl="size",il="target",rl="view",ol=1/0,sl=function(){function t(t,e){this.priorityFunction_=t,this.keyFunction_=e,this.elements_=[],this.priorities_=[],this.queuedElements_={}}return t.prototype.clear=function(){this.elements_.length=0,this.priorities_.length=0,d(this.queuedElements_)},t.prototype.dequeue=function(){var t=this.elements_,e=this.priorities_,n=t[0];1==t.length?(t.length=0,e.length=0):(t[0]=t.pop(),e[0]=e.pop(),this.siftUp_(0));var i=this.keyFunction_(n);return delete this.queuedElements_[i],n},t.prototype.enqueue=function(t){vt(!(this.keyFunction_(t)in this.queuedElements_),31);var e=this.priorityFunction_(t);return e!=ol&&(this.elements_.push(t),this.priorities_.push(e),this.queuedElements_[this.keyFunction_(t)]=!0,this.siftDown_(0,this.elements_.length-1),!0)},t.prototype.getCount=function(){return this.elements_.length},t.prototype.getLeftChildIndex_=function(t){return 2*t+1},t.prototype.getRightChildIndex_=function(t){return 2*t+2},t.prototype.getParentIndex_=function(t){return t-1>>1},t.prototype.heapify_=function(){var t;for(t=(this.elements_.length>>1)-1;t>=0;t--)this.siftUp_(t)},t.prototype.isEmpty=function(){return 0===this.elements_.length},t.prototype.isKeyQueued=function(t){return t in this.queuedElements_},t.prototype.isQueued=function(t){return this.isKeyQueued(this.keyFunction_(t))},t.prototype.siftUp_=function(t){for(var e=this.elements_,n=this.priorities_,i=e.length,r=e[t],o=n[t],s=t;t<i>>1;){var a=this.getLeftChildIndex_(t),l=this.getRightChildIndex_(t),h=l<i&&n[l]<n[a]?l:a;e[t]=e[h],n[t]=n[h],t=h}e[t]=r,n[t]=o,this.siftDown_(s,t)},t.prototype.siftDown_=function(t,e){for(var n=this.elements_,i=this.priorities_,r=n[e],o=i[e];e>t;){var s=this.getParentIndex_(e);if(!(i[s]>o))break;n[e]=n[s],i[e]=i[s],e=s}n[e]=r,i[e]=o},t.prototype.reprioritize=function(){var t,e,n,i=this.priorityFunction_,r=this.elements_,o=this.priorities_,s=0,a=r.length;for(e=0;e<a;++e)(n=i(t=r[e]))==ol?delete this.queuedElements_[this.keyFunction_(t)]:(o[s]=n,r[s++]=t);r.length=s,o.length=s,this.heapify_()},t}(),al=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),ll=function(t){function e(e,n){var i=t.call(this,(function(t){return e.apply(null,t)}),(function(t){return t[0].getKey()}))||this;return i.boundHandleTileChange_=i.handleTileChange.bind(i),i.tileChangeCallback_=n,i.tilesLoading_=0,i.tilesLoadingKeys_={},i}return al(e,t),e.prototype.enqueue=function(e){var n=t.prototype.enqueue.call(this,e);return n&&e[0].addEventListener(x,this.boundHandleTileChange_),n},e.prototype.getTilesLoading=function(){return this.tilesLoading_},e.prototype.handleTileChange=function(t){var e=t.target,n=e.getState();if(2===n||3===n||4===n){e.removeEventListener(x,this.boundHandleTileChange_);var i=e.getKey();i in this.tilesLoadingKeys_&&(delete this.tilesLoadingKeys_[i],--this.tilesLoading_),this.tileChangeCallback_()}},e.prototype.loadMoreTiles=function(t,e){for(var n,i,r=0;this.tilesLoading_<t&&r<e&&this.getCount()>0;)i=(n=this.dequeue()[0]).getKey(),0!==n.getState()||i in this.tilesLoadingKeys_||(this.tilesLoadingKeys_[i]=!0,++this.tilesLoading_,++r,n.load())},e}(sl),hl={CENTER:"center",RESOLUTION:"resolution",ROTATION:"rotation"};function ul(t,e,n){return function(i,r,o,s,a){if(i){if(!r&&!e)return i;var l=e?0:o[0]*r,h=e?0:o[1]*r,u=a?a[0]:0,c=a?a[1]:0,p=t[0]+l/2+u,f=t[2]-l/2+u,d=t[1]+h/2+c,g=t[3]-h/2+c;p>f&&(f=p=(f+p)/2),d>g&&(g=d=(g+d)/2);var _=mt(i[0],p,f),y=mt(i[1],d,g);if(s&&n&&r){var v=30*r;_+=-v*Math.log(1+Math.max(0,p-i[0])/v)+v*Math.log(1+Math.max(0,i[0]-f)/v),y+=-v*Math.log(1+Math.max(0,d-i[1])/v)+v*Math.log(1+Math.max(0,i[1]-g)/v)}return[_,y]}}}function cl(t){return t}function pl(t,e,n,i){var r=ke(e)/n[0],o=Fe(e)/n[1];return i?Math.min(t,Math.max(r,o)):Math.min(t,Math.min(r,o))}function fl(t,e,n){var i=Math.min(t,e);return i*=Math.log(1+50*Math.max(0,t/e-1))/50+1,n&&(i=Math.max(i,n),i/=Math.log(1+50*Math.max(0,n/t-1))/50+1),mt(i,n/2,2*e)}function dl(t,e,n,i,r){return function(o,s,a,l){if(void 0!==o){var h=i?pl(t,i,a,r):t;return(void 0===n||n)&&l?fl(o,h,e):mt(o,e,h)}}}function gl(t){return void 0!==t?0:void 0}function _l(t){return void 0!==t?t:void 0}var yl=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),vl=function(t){function e(e){var n=t.call(this)||this;n.on,n.once,n.un;var i=f({},e);return n.hints_=[0,0],n.animations_=[],n.updateAnimationKey_,n.projection_=Je(i.projection,"EPSG:3857"),n.viewportSize_=[100,100],n.targetCenter_=null,n.targetResolution_,n.targetRotation_,n.nextCenter_=null,n.nextResolution_,n.nextRotation_,n.cancelAnchor_=void 0,i.projection&&Be(),i.center&&(i.center=un(i.center,n.projection_)),i.extent&&(i.extent=pn(i.extent,n.projection_)),n.applyOptions_(i),n}return yl(e,t),e.prototype.applyOptions_=function(t){var e=f({},t);for(var n in hl)delete e[n];this.setProperties(e,!0);var i=function(t){var e,n,i,r=void 0!==t.minZoom?t.minZoom:0,o=void 0!==t.maxZoom?t.maxZoom:28,a=void 0!==t.zoomFactor?t.zoomFactor:2,l=void 0!==t.multiWorld&&t.multiWorld,h=void 0===t.smoothResolutionConstraint||t.smoothResolutionConstraint,u=void 0!==t.showFullExtent&&t.showFullExtent,c=Je(t.projection,"EPSG:3857"),p=c.getExtent(),f=t.constrainOnlyCenter,d=t.extent;if(l||d||!c.isGlobal()||(f=!1,d=p),void 0!==t.resolutions){var g=t.resolutions;n=g[r],i=void 0!==g[o]?g[o]:g[g.length-1],e=t.constrainResolution?function(t,e,n,i){return function(r,o,a,l){if(void 0!==r){var h=t[0],u=t[t.length-1],c=n?pl(h,n,a,i):h;if(l)return void 0===e||e?fl(r,c,u):mt(r,u,c);var p=Math.min(c,r),f=Math.floor(s(t,p,o));return t[f]>c&&f<t.length-1?t[f+1]:t[f]}}}(g,h,!f&&d,u):dl(n,i,h,!f&&d,u)}else{var _=(p?Math.max(ke(p),Fe(p)):360*Bt[Kt.DEGREES]/c.getMetersPerUnit())/256/Math.pow(2,0),y=_/Math.pow(2,28);void 0!==(n=t.maxResolution)?r=0:n=_/Math.pow(a,r),void 0===(i=t.minResolution)&&(i=void 0!==t.maxZoom?void 0!==t.maxResolution?n/Math.pow(a,o):_/Math.pow(a,o):y),o=r+Math.floor(Math.log(n/i)/Math.log(a)),i=n/Math.pow(a,o-r),e=t.constrainResolution?function(t,e,n,i,r,o){return function(s,a,l,h){if(void 0!==s){var u=r?pl(e,r,l,o):e,c=void 0!==n?n:0;if(h)return void 0===i||i?fl(s,u,c):mt(s,c,u);var p=Math.ceil(Math.log(e/u)/Math.log(t)-1e-9),f=-a*(.5-1e-9)+.5,d=Math.min(u,s),g=Math.floor(Math.log(e/d)/Math.log(t)+f),_=Math.max(p,g);return mt(e/Math.pow(t,_),c,u)}}}(a,n,i,h,!f&&d,u):dl(n,i,h,!f&&d,u)}return{constraint:e,maxResolution:n,minResolution:i,minZoom:r,zoomFactor:a}}(t);this.maxResolution_=i.maxResolution,this.minResolution_=i.minResolution,this.zoomFactor_=i.zoomFactor,this.resolutions_=t.resolutions,this.padding_=t.padding,this.minZoom_=i.minZoom;var r=function(t){if(void 0!==t.extent){var e=void 0===t.smoothExtentConstraint||t.smoothExtentConstraint;return ul(t.extent,t.constrainOnlyCenter,e)}var n=Je(t.projection,"EPSG:3857");if(!0!==t.multiWorld&&n.isGlobal()){var i=n.getExtent().slice();return i[0]=-1/0,i[2]=1/0,ul(i,!1,!1)}return cl}(t),o=i.constraint,a=function(t){if(void 0===t.enableRotation||t.enableRotation){var e=t.constrainRotation;return void 0===e||!0===e?(r=Et(5),function(t,e){return e?t:void 0!==t?Math.abs(t)<=r?0:t:void 0}):!1===e?_l:"number"==typeof e?(n=e,i=2*Math.PI/n,function(t,e){return e?t:void 0!==t?t=Math.floor(t/i+.5)*i:void 0}):_l}return gl;var n,i,r}(t);this.constraints_={center:r,resolution:o,rotation:a},this.setRotation(void 0!==t.rotation?t.rotation:0),this.setCenterInternal(void 0!==t.center?t.center:null),void 0!==t.resolution?this.setResolution(t.resolution):void 0!==t.zoom&&this.setZoom(t.zoom)},Object.defineProperty(e.prototype,"padding",{get:function(){return this.padding_},set:function(t){var e=this.padding_;this.padding_=t;var n=this.getCenter();if(n){var i=t||[0,0,0,0];e=e||[0,0,0,0];var r=this.getResolution(),o=r/2*(i[3]-e[3]+e[1]-i[1]),s=r/2*(i[0]-e[0]+e[2]-i[2]);this.setCenterInternal([n[0]+o,n[1]-s])}},enumerable:!1,configurable:!0}),e.prototype.getUpdatedOptions_=function(t){var e=this.getProperties();return void 0!==e.resolution?e.resolution=this.getResolution():e.zoom=this.getZoom(),e.center=this.getCenterInternal(),e.rotation=this.getRotation(),f({},e,t)},e.prototype.animate=function(t){this.isDef()&&!this.getAnimating()&&this.resolveConstraints(0);for(var e=new Array(arguments.length),n=0;n<e.length;++n){var i=arguments[n];i.center&&((i=f({},i)).center=un(i.center,this.getProjection())),i.anchor&&((i=f({},i)).anchor=un(i.anchor,this.getProjection())),e[n]=i}this.animateInternal.apply(this,e)},e.prototype.animateInternal=function(t){var e,n=arguments.length;n>1&&"function"==typeof arguments[n-1]&&(e=arguments[n-1],--n);for(var i=0;i<n&&!this.isDef();++i){var r=arguments[i];r.center&&this.setCenterInternal(r.center),void 0!==r.zoom?this.setZoom(r.zoom):r.resolution&&this.setResolution(r.resolution),void 0!==r.rotation&&this.setRotation(r.rotation)}if(i!==n){for(var o=Date.now(),s=this.targetCenter_.slice(),a=this.targetResolution_,l=this.targetRotation_,h=[];i<n;++i){var u=arguments[i],c={start:o,complete:!1,anchor:u.anchor,duration:void 0!==u.duration?u.duration:1e3,easing:u.easing||Cn,callback:e};if(u.center&&(c.sourceCenter=s,c.targetCenter=u.center.slice(),s=c.targetCenter),void 0!==u.zoom?(c.sourceResolution=a,c.targetResolution=this.getResolutionForZoom(u.zoom),a=c.targetResolution):u.resolution&&(c.sourceResolution=a,c.targetResolution=u.resolution,a=c.targetResolution),void 0!==u.rotation){c.sourceRotation=l;var p=Tt(u.rotation-l+Math.PI,2*Math.PI)-Math.PI;c.targetRotation=l+p,l=c.targetRotation}xl(c)?c.complete=!0:o+=c.duration,h.push(c)}this.animations_.push(h),this.setHint(0,1),this.updateAnimations_()}else e&&ml(e,!0)},e.prototype.getAnimating=function(){return this.hints_[0]>0},e.prototype.getInteracting=function(){return this.hints_[1]>0},e.prototype.cancelAnimations=function(){var t;this.setHint(0,-this.hints_[0]);for(var e=0,n=this.animations_.length;e<n;++e){var i=this.animations_[e];if(i[0].callback&&ml(i[0].callback,!1),!t)for(var r=0,o=i.length;r<o;++r){var s=i[r];if(!s.complete){t=s.anchor;break}}}this.animations_.length=0,this.cancelAnchor_=t,this.nextCenter_=null,this.nextResolution_=NaN,this.nextRotation_=NaN},e.prototype.updateAnimations_=function(){if(void 0!==this.updateAnimationKey_&&(cancelAnimationFrame(this.updateAnimationKey_),this.updateAnimationKey_=void 0),this.getAnimating()){for(var t=Date.now(),e=!1,n=this.animations_.length-1;n>=0;--n){for(var i=this.animations_[n],r=!0,o=0,s=i.length;o<s;++o){var a=i[o];if(!a.complete){var l=t-a.start,h=a.duration>0?l/a.duration:1;h>=1?(a.complete=!0,h=1):r=!1;var u=a.easing(h);if(a.sourceCenter){var c=a.sourceCenter[0],p=a.sourceCenter[1],f=a.targetCenter[0],d=a.targetCenter[1];this.nextCenter_=a.targetCenter;var g=c+u*(f-c),_=p+u*(d-p);this.targetCenter_=[g,_]}if(a.sourceResolution&&a.targetResolution){var y=1===u?a.targetResolution:a.sourceResolution+u*(a.targetResolution-a.sourceResolution);if(a.anchor){var v=this.getViewportSize_(this.getRotation()),m=this.constraints_.resolution(y,0,v,!0);this.targetCenter_=this.calculateCenterZoom(m,a.anchor)}this.nextResolution_=a.targetResolution,this.targetResolution_=y,this.applyTargetState_(!0)}if(void 0!==a.sourceRotation&&void 0!==a.targetRotation){var x=1===u?Tt(a.targetRotation+Math.PI,2*Math.PI)-Math.PI:a.sourceRotation+u*(a.targetRotation-a.sourceRotation);if(a.anchor){var C=this.constraints_.rotation(x,!0);this.targetCenter_=this.calculateCenterRotate(C,a.anchor)}this.nextRotation_=a.targetRotation,this.targetRotation_=x}if(this.applyTargetState_(!0),e=!0,!a.complete)break}}if(r){this.animations_[n]=null,this.setHint(0,-1),this.nextCenter_=null,this.nextResolution_=NaN,this.nextRotation_=NaN;var w=i[0].callback;w&&ml(w,!0)}}this.animations_=this.animations_.filter(Boolean),e&&void 0===this.updateAnimationKey_&&(this.updateAnimationKey_=requestAnimationFrame(this.updateAnimations_.bind(this)))}},e.prototype.calculateCenterRotate=function(t,e){var n,i,r,o=this.getCenterInternal();return void 0!==o&&(We(n=[o[0]-e[0],o[1]-e[1]],t-this.getRotation()),r=e,(i=n)[0]+=+r[0],i[1]+=+r[1]),n},e.prototype.calculateCenterZoom=function(t,e){var n,i=this.getCenterInternal(),r=this.getResolution();return void 0!==i&&void 0!==r&&(n=[e[0]-t*(e[0]-i[0])/r,e[1]-t*(e[1]-i[1])/r]),n},e.prototype.getViewportSize_=function(t){var e=this.viewportSize_;if(t){var n=e[0],i=e[1];return[Math.abs(n*Math.cos(t))+Math.abs(i*Math.sin(t)),Math.abs(n*Math.sin(t))+Math.abs(i*Math.cos(t))]}return e},e.prototype.setViewportSize=function(t){this.viewportSize_=Array.isArray(t)?t.slice():[100,100],this.getAnimating()||this.resolveConstraints(0)},e.prototype.getCenter=function(){var t=this.getCenterInternal();return t?hn(t,this.getProjection()):t},e.prototype.getCenterInternal=function(){return this.get(hl.CENTER)},e.prototype.getConstraints=function(){return this.constraints_},e.prototype.getConstrainResolution=function(){return this.get("constrainResolution")},e.prototype.getHints=function(t){return void 0!==t?(t[0]=this.hints_[0],t[1]=this.hints_[1],t):this.hints_.slice()},e.prototype.calculateExtent=function(t){return cn(this.calculateExtentInternal(t),this.getProjection())},e.prototype.calculateExtentInternal=function(t){var e=t||this.getViewportSizeMinusPadding_(),n=this.getCenterInternal();vt(n,1);var i=this.getResolution();vt(void 0!==i,2);var r=this.getRotation();return vt(void 0!==r,3),Me(n,i,r,e)},e.prototype.getMaxResolution=function(){return this.maxResolution_},e.prototype.getMinResolution=function(){return this.minResolution_},e.prototype.getMaxZoom=function(){return this.getZoomForResolution(this.minResolution_)},e.prototype.setMaxZoom=function(t){this.applyOptions_(this.getUpdatedOptions_({maxZoom:t}))},e.prototype.getMinZoom=function(){return this.getZoomForResolution(this.maxResolution_)},e.prototype.setMinZoom=function(t){this.applyOptions_(this.getUpdatedOptions_({minZoom:t}))},e.prototype.setConstrainResolution=function(t){this.applyOptions_(this.getUpdatedOptions_({constrainResolution:t}))},e.prototype.getProjection=function(){return this.projection_},e.prototype.getResolution=function(){return this.get(hl.RESOLUTION)},e.prototype.getResolutions=function(){return this.resolutions_},e.prototype.getResolutionForExtent=function(t,e){return this.getResolutionForExtentInternal(pn(t,this.getProjection()),e)},e.prototype.getResolutionForExtentInternal=function(t,e){var n=e||this.getViewportSizeMinusPadding_(),i=ke(t)/n[0],r=Fe(t)/n[1];return Math.max(i,r)},e.prototype.getResolutionForValueFunction=function(t){var e=t||2,n=this.getConstrainedResolution(this.maxResolution_),i=this.minResolution_,r=Math.log(n/i)/Math.log(e);return function(t){return n/Math.pow(e,t*r)}},e.prototype.getRotation=function(){return this.get(hl.ROTATION)},e.prototype.getValueForResolutionFunction=function(t){var e=Math.log(t||2),n=this.getConstrainedResolution(this.maxResolution_),i=this.minResolution_,r=Math.log(n/i)/e;return function(t){return Math.log(n/t)/e/r}},e.prototype.getViewportSizeMinusPadding_=function(t){var e=this.getViewportSize_(t),n=this.padding_;return n&&(e=[e[0]-n[1]-n[3],e[1]-n[0]-n[2]]),e},e.prototype.getState=function(){var t=this.getProjection(),e=this.getResolution(),n=this.getRotation(),i=this.getCenterInternal(),r=this.padding_;if(r){var o=this.getViewportSizeMinusPadding_();i=Cl(i,this.getViewportSize_(),[o[0]/2+r[3],o[1]/2+r[0]],e,n)}return{center:i.slice(0),projection:void 0!==t?t:null,resolution:e,nextCenter:this.nextCenter_,nextResolution:this.nextResolution_,nextRotation:this.nextRotation_,rotation:n,zoom:this.getZoom()}},e.prototype.getZoom=function(){var t,e=this.getResolution();return void 0!==e&&(t=this.getZoomForResolution(e)),t},e.prototype.getZoomForResolution=function(t){var e,n,i=this.minZoom_||0;if(this.resolutions_){var r=s(this.resolutions_,t,1);i=r,e=this.resolutions_[r],n=r==this.resolutions_.length-1?2:e/this.resolutions_[r+1]}else e=this.maxResolution_,n=this.zoomFactor_;return i+Math.log(e/t)/Math.log(n)},e.prototype.getResolutionForZoom=function(t){if(this.resolutions_){if(this.resolutions_.length<=1)return 0;var e=mt(Math.floor(t),0,this.resolutions_.length-2),n=this.resolutions_[e]/this.resolutions_[e+1];return this.resolutions_[e]/Math.pow(n,mt(t-e,0,1))}return this.maxResolution_/Math.pow(this.zoomFactor_,t-this.minZoom_)},e.prototype.fit=function(t,e){var n;if(vt(Array.isArray(t)||"function"==typeof t.getSimplifiedGeometry,24),Array.isArray(t))vt(!Ge(t),25),n=Zi(i=pn(t,this.getProjection()));else if(t.getType()===kn){var i;(n=Zi(i=pn(t.getExtent(),this.getProjection()))).rotate(this.getRotation(),Ie(i))}else{var r=ln();n=r?t.clone().transform(r,this.getProjection()):t}this.fitInternal(n,e)},e.prototype.rotatedExtentForGeometry=function(t){for(var e=this.getRotation(),n=Math.cos(e),i=Math.sin(-e),r=t.getFlatCoordinates(),o=t.getStride(),s=1/0,a=1/0,l=-1/0,h=-1/0,u=0,c=r.length;u<c;u+=o){var p=r[u]*n-r[u+1]*i,f=r[u]*i+r[u+1]*n;s=Math.min(s,p),a=Math.min(a,f),l=Math.max(l,p),h=Math.max(h,f)}return[s,a,l,h]},e.prototype.fitInternal=function(t,e){var n=e||{},i=n.size;i||(i=this.getViewportSizeMinusPadding_());var r,o=void 0!==n.padding?n.padding:[0,0,0,0],s=void 0!==n.nearest&&n.nearest;r=void 0!==n.minResolution?n.minResolution:void 0!==n.maxZoom?this.getResolutionForZoom(n.maxZoom):0;var a=this.rotatedExtentForGeometry(t),l=this.getResolutionForExtentInternal(a,[i[0]-o[1]-o[3],i[1]-o[0]-o[2]]);l=isNaN(l)?r:Math.max(l,r),l=this.getConstrainedResolution(l,s?0:1);var h=this.getRotation(),u=Math.sin(h),c=Math.cos(h),f=Ie(a);f[0]+=(o[1]-o[3])/2*l,f[1]+=(o[0]-o[2])/2*l;var d=f[0]*c-f[1]*u,g=f[1]*c+f[0]*u,_=this.getConstrainedCenter([d,g],l),y=n.callback?n.callback:p;void 0!==n.duration?this.animateInternal({resolution:l,center:_,duration:n.duration,easing:n.easing},y):(this.targetResolution_=l,this.targetCenter_=_,this.applyTargetState_(!1,!0),ml(y,!0))},e.prototype.centerOn=function(t,e,n){this.centerOnInternal(un(t,this.getProjection()),e,n)},e.prototype.centerOnInternal=function(t,e,n){this.setCenterInternal(Cl(t,e,n,this.getResolution(),this.getRotation()))},e.prototype.calculateCenterShift=function(t,e,n,i){var r,o=this.padding_;if(o&&t){var s=this.getViewportSizeMinusPadding_(-n),a=Cl(t,i,[s[0]/2+o[3],s[1]/2+o[0]],e,n);r=[t[0]-a[0],t[1]-a[1]]}return r},e.prototype.isDef=function(){return!!this.getCenterInternal()&&void 0!==this.getResolution()},e.prototype.adjustCenter=function(t){var e=hn(this.targetCenter_,this.getProjection());this.setCenter([e[0]+t[0],e[1]+t[1]])},e.prototype.adjustCenterInternal=function(t){var e=this.targetCenter_;this.setCenterInternal([e[0]+t[0],e[1]+t[1]])},e.prototype.adjustResolution=function(t,e){var n=e&&un(e,this.getProjection());this.adjustResolutionInternal(t,n)},e.prototype.adjustResolutionInternal=function(t,e){var n=this.getAnimating()||this.getInteracting(),i=this.getViewportSize_(this.getRotation()),r=this.constraints_.resolution(this.targetResolution_*t,0,i,n);e&&(this.targetCenter_=this.calculateCenterZoom(r,e)),this.targetResolution_*=t,this.applyTargetState_()},e.prototype.adjustZoom=function(t,e){this.adjustResolution(Math.pow(this.zoomFactor_,-t),e)},e.prototype.adjustRotation=function(t,e){e&&(e=un(e,this.getProjection())),this.adjustRotationInternal(t,e)},e.prototype.adjustRotationInternal=function(t,e){var n=this.getAnimating()||this.getInteracting(),i=this.constraints_.rotation(this.targetRotation_+t,n);e&&(this.targetCenter_=this.calculateCenterRotate(i,e)),this.targetRotation_+=t,this.applyTargetState_()},e.prototype.setCenter=function(t){this.setCenterInternal(t?un(t,this.getProjection()):t)},e.prototype.setCenterInternal=function(t){this.targetCenter_=t,this.applyTargetState_()},e.prototype.setHint=function(t,e){return this.hints_[t]+=e,this.changed(),this.hints_[t]},e.prototype.setResolution=function(t){this.targetResolution_=t,this.applyTargetState_()},e.prototype.setRotation=function(t){this.targetRotation_=t,this.applyTargetState_()},e.prototype.setZoom=function(t){this.setResolution(this.getResolutionForZoom(t))},e.prototype.applyTargetState_=function(t,e){var n=this.getAnimating()||this.getInteracting()||e,i=this.constraints_.rotation(this.targetRotation_,n),r=this.getViewportSize_(i),o=this.constraints_.resolution(this.targetResolution_,0,r,n),s=this.constraints_.center(this.targetCenter_,o,r,n,this.calculateCenterShift(this.targetCenter_,o,i,r));this.get(hl.ROTATION)!==i&&this.set(hl.ROTATION,i),this.get(hl.RESOLUTION)!==o&&(this.set(hl.RESOLUTION,o),this.set("zoom",this.getZoom(),!0)),s&&this.get(hl.CENTER)&&ze(this.get(hl.CENTER),s)||this.set(hl.CENTER,s),this.getAnimating()&&!t&&this.cancelAnimations(),this.cancelAnchor_=void 0},e.prototype.resolveConstraints=function(t,e,n){var i=void 0!==t?t:200,r=e||0,o=this.constraints_.rotation(this.targetRotation_),s=this.getViewportSize_(o),a=this.constraints_.resolution(this.targetResolution_,r,s),l=this.constraints_.center(this.targetCenter_,a,s,!1,this.calculateCenterShift(this.targetCenter_,a,o,s));if(0===i&&!this.cancelAnchor_)return this.targetResolution_=a,this.targetRotation_=o,this.targetCenter_=l,void this.applyTargetState_();var h=n||(0===i?this.cancelAnchor_:void 0);this.cancelAnchor_=void 0,this.getResolution()===a&&this.getRotation()===o&&this.getCenterInternal()&&ze(this.getCenterInternal(),l)||(this.getAnimating()&&this.cancelAnimations(),this.animateInternal({rotation:o,center:l,resolution:a,duration:i,easing:xn,anchor:h}))},e.prototype.beginInteraction=function(){this.resolveConstraints(0),this.setHint(1,1)},e.prototype.endInteraction=function(t,e,n){var i=n&&un(n,this.getProjection());this.endInteractionInternal(t,e,i)},e.prototype.endInteractionInternal=function(t,e,n){this.setHint(1,-1),this.resolveConstraints(t,e,n)},e.prototype.getConstrainedCenter=function(t,e){var n=this.getViewportSize_(this.getRotation());return this.constraints_.center(t,e||this.getResolution(),n)},e.prototype.getConstrainedZoom=function(t,e){var n=this.getResolutionForZoom(t);return this.getZoomForResolution(this.getConstrainedResolution(n,e))},e.prototype.getConstrainedResolution=function(t,e){var n=e||0,i=this.getViewportSize_(this.getRotation());return this.constraints_.resolution(t,n,i)},e}(G);function ml(t,e){setTimeout((function(){t(e)}),0)}function xl(t){return!(t.sourceCenter&&t.targetCenter&&!ze(t.sourceCenter,t.targetCenter))&&t.sourceResolution===t.targetResolution&&t.sourceRotation===t.targetRotation}function Cl(t,e,n,i,r){var o=Math.cos(-r),s=Math.sin(-r),a=t[0]*o-t[1]*s,l=t[1]*o+t[0]*s;return[(a+=(e[0]/2-n[0])*i)*o-(l+=(n[1]-e[1]/2)*i)*(s=-s),l*o+a*s]}var wl=vl,Sl=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}();function El(t){t instanceof Gt?t.setMapInternal(null):t instanceof Va&&t.getLayers().forEach(El)}function Tl(t,e){if(t instanceof Gt)t.setMapInternal(e);else if(t instanceof Va)for(var n=t.getLayers().getArray(),i=0,r=n.length;i<r;++i)Tl(n[i],e)}var bl=function(t){function n(e){var n=t.call(this)||this;n.on,n.once,n.un;var i=function(t){var e=null;void 0!==t.keyboardEventTarget&&(e="string"==typeof t.keyboardEventTarget?document.getElementById(t.keyboardEventTarget):t.keyboardEventTarget);var n,i,r,o={},s=t.layers&&"function"==typeof t.layers.getLayers?t.layers:new Va({layers:t.layers});return o.layergroup=s,o.target=t.target,o.view=t.view instanceof wl?t.view:new wl,void 0!==t.controls&&(Array.isArray(t.controls)?n=new Ea(t.controls.slice()):(vt("function"==typeof t.controls.getArray,47),n=t.controls)),void 0!==t.interactions&&(Array.isArray(t.interactions)?i=new Ea(t.interactions.slice()):(vt("function"==typeof t.interactions.getArray,48),i=t.interactions)),void 0!==t.overlays?Array.isArray(t.overlays)?r=new Ea(t.overlays.slice()):(vt("function"==typeof t.overlays.getArray,49),r=t.overlays):r=new Ea,{controls:n,interactions:i,keyboardEventTarget:e,overlays:r,values:o}}(e);n.renderComplete_,n.loaded_=!0,n.boundHandleBrowserEvent_=n.handleBrowserEvent.bind(n),n.maxTilesLoading_=void 0!==e.maxTilesLoading?e.maxTilesLoading:16,n.pixelRatio_=void 0!==e.pixelRatio?e.pixelRatio:Z,n.postRenderTimeoutHandle_,n.animationDelayKey_,n.animationDelay_=function(){this.animationDelayKey_=void 0,this.renderFrame_(Date.now())}.bind(n),n.coordinateToPixelTransform_=[1,0,0,1,0,0],n.pixelToCoordinateTransform_=[1,0,0,1,0,0],n.frameIndex_=0,n.frameState_=null,n.previousExtent_=null,n.viewPropertyListenerKey_=null,n.viewChangeListenerKey_=null,n.layerGroupPropertyListenerKeys_=null,n.viewport_=document.createElement("div"),n.viewport_.className="ol-viewport"+("ontouchstart"in window?" ol-touch":""),n.viewport_.style.position="relative",n.viewport_.style.overflow="hidden",n.viewport_.style.width="100%",n.viewport_.style.height="100%",n.overlayContainer_=document.createElement("div"),n.overlayContainer_.style.position="absolute",n.overlayContainer_.style.zIndex="0",n.overlayContainer_.style.width="100%",n.overlayContainer_.style.height="100%",n.overlayContainer_.style.pointerEvents="none",n.overlayContainer_.className="ol-overlaycontainer",n.viewport_.appendChild(n.overlayContainer_),n.overlayContainerStopEvent_=document.createElement("div"),n.overlayContainerStopEvent_.style.position="absolute",n.overlayContainerStopEvent_.style.zIndex="0",n.overlayContainerStopEvent_.style.width="100%",n.overlayContainerStopEvent_.style.height="100%",n.overlayContainerStopEvent_.style.pointerEvents="none",n.overlayContainerStopEvent_.className="ol-overlaycontainer-stopevent",n.viewport_.appendChild(n.overlayContainerStopEvent_),n.mapBrowserEventHandler_=null,n.moveTolerance_=e.moveTolerance,n.keyboardEventTarget_=i.keyboardEventTarget,n.targetChangeHandlerKeys_=null,n.controls=i.controls||new Ea,n.interactions=i.interactions||new Ea,n.overlays_=i.overlays,n.overlayIdIndex_={},n.renderer_=null,n.postRenderFunctions_=[],n.tileQueue_=new ll(n.getTilePriority.bind(n),n.handleTileChange_.bind(n)),n.addChangeListener(el,n.handleLayerGroupChanged_),n.addChangeListener(rl,n.handleViewChanged_),n.addChangeListener(nl,n.handleSizeChanged_),n.addChangeListener(il,n.handleTargetChanged_),n.setProperties(i.values);var r=n;return!e.view||e.view instanceof wl||e.view.then((function(t){r.setView(new wl(t))})),n.controls.addEventListener(ma,function(t){t.element.setMap(this)}.bind(n)),n.controls.addEventListener(xa,function(t){t.element.setMap(null)}.bind(n)),n.interactions.addEventListener(ma,function(t){t.element.setMap(this)}.bind(n)),n.interactions.addEventListener(xa,function(t){t.element.setMap(null)}.bind(n)),n.overlays_.addEventListener(ma,function(t){this.addOverlayInternal_(t.element)}.bind(n)),n.overlays_.addEventListener(xa,function(t){var e=t.element.getId();void 0!==e&&delete this.overlayIdIndex_[e.toString()],t.element.setMap(null)}.bind(n)),n.controls.forEach(function(t){t.setMap(this)}.bind(n)),n.interactions.forEach(function(t){t.setMap(this)}.bind(n)),n.overlays_.forEach(n.addOverlayInternal_.bind(n)),n}return Sl(n,t),n.prototype.createRenderer=function(){throw new Error("Use a map type that has a createRenderer method")},n.prototype.addControl=function(t){this.getControls().push(t)},n.prototype.addInteraction=function(t){this.getInteractions().push(t)},n.prototype.addLayer=function(t){this.getLayerGroup().getLayers().push(t)},n.prototype.handleLayerAdd_=function(t){Tl(t.layer,this)},n.prototype.addOverlay=function(t){this.getOverlays().push(t)},n.prototype.addOverlayInternal_=function(t){var e=t.getId();void 0!==e&&(this.overlayIdIndex_[e.toString()]=t),t.setMap(this)},n.prototype.disposeInternal=function(){this.setTarget(null),t.prototype.disposeInternal.call(this)},n.prototype.forEachFeatureAtPixel=function(t,e,n){if(this.frameState_&&this.renderer_){var i=this.getCoordinateFromPixelInternal(t),r=void 0!==(n=void 0!==n?n:{}).hitTolerance?n.hitTolerance:0,o=void 0!==n.layerFilter?n.layerFilter:u,s=!1!==n.checkWrapped;return this.renderer_.forEachFeatureAtCoordinate(i,this.frameState_,r,s,e,null,o,null)}},n.prototype.getFeaturesAtPixel=function(t,e){var n=[];return this.forEachFeatureAtPixel(t,(function(t){n.push(t)}),e),n},n.prototype.getAllLayers=function(){var t=[];return function e(n){n.forEach((function(n){n instanceof Va?e(n.getLayers()):t.push(n)}))}(this.getLayers()),t},n.prototype.forEachLayerAtPixel=function(t,e,n){if(this.frameState_&&this.renderer_){var i=n||{},r=void 0!==i.hitTolerance?i.hitTolerance:0,o=i.layerFilter||u;return this.renderer_.forEachLayerAtPixel(t,this.frameState_,r,e,o)}},n.prototype.hasFeatureAtPixel=function(t,e){if(!this.frameState_||!this.renderer_)return!1;var n=this.getCoordinateFromPixelInternal(t),i=void 0!==(e=void 0!==e?e:{}).layerFilter?e.layerFilter:u,r=void 0!==e.hitTolerance?e.hitTolerance:0,o=!1!==e.checkWrapped;return this.renderer_.hasFeatureAtCoordinate(n,this.frameState_,r,o,i,null)},n.prototype.getEventCoordinate=function(t){return this.getCoordinateFromPixel(this.getEventPixel(t))},n.prototype.getEventCoordinateInternal=function(t){return this.getCoordinateFromPixelInternal(this.getEventPixel(t))},n.prototype.getEventPixel=function(t){var e=this.viewport_.getBoundingClientRect(),n="changedTouches"in t?t.changedTouches[0]:t;return[n.clientX-e.left,n.clientY-e.top]},n.prototype.getTarget=function(){return this.get(il)},n.prototype.getTargetElement=function(){var t=this.getTarget();return void 0!==t?"string"==typeof t?document.getElementById(t):t:null},n.prototype.getCoordinateFromPixel=function(t){return hn(this.getCoordinateFromPixelInternal(t),this.getView().getProjection())},n.prototype.getCoordinateFromPixelInternal=function(t){var e=this.frameState_;return e?jn(e.pixelToCoordinateTransform,t.slice()):null},n.prototype.getControls=function(){return this.controls},n.prototype.getOverlays=function(){return this.overlays_},n.prototype.getOverlayById=function(t){var e=this.overlayIdIndex_[t.toString()];return void 0!==e?e:null},n.prototype.getInteractions=function(){return this.interactions},n.prototype.getLayerGroup=function(){return this.get(el)},n.prototype.setLayers=function(t){var e=this.getLayerGroup();if(t instanceof Ea)e.setLayers(t);else{var n=e.getLayers();n.clear(),n.extend(t)}},n.prototype.getLayers=function(){return this.getLayerGroup().getLayers()},n.prototype.getLoadingOrNotReady=function(){for(var t=this.getLayerGroup().getLayerStatesArray(),e=0,n=t.length;e<n;++e){var i=t[e];if(i.visible){var r=i.layer.getRenderer();if(r&&!r.ready)return!0;var o=i.layer.getSource();if(o&&o.loading)return!0}}return!1},n.prototype.getPixelFromCoordinate=function(t){var e=un(t,this.getView().getProjection());return this.getPixelFromCoordinateInternal(e)},n.prototype.getPixelFromCoordinateInternal=function(t){var e=this.frameState_;return e?jn(e.coordinateToPixelTransform,t.slice(0,2)):null},n.prototype.getRenderer=function(){return this.renderer_},n.prototype.getSize=function(){return this.get(nl)},n.prototype.getView=function(){return this.get(rl)},n.prototype.getViewport=function(){return this.viewport_},n.prototype.getOverlayContainer=function(){return this.overlayContainer_},n.prototype.getOverlayContainerStopEvent=function(){return this.overlayContainerStopEvent_},n.prototype.getOwnerDocument=function(){var t=this.getTargetElement();return t?t.ownerDocument:document},n.prototype.getTilePriority=function(t,e,n,i){return function(t,e,n,i,r){if(!t||!(n in t.wantedTiles))return ol;if(!t.wantedTiles[n][e.getKey()])return ol;var o=t.viewState.center,s=i[0]-o[0],a=i[1]-o[1];return 65536*Math.log(r)+Math.sqrt(s*s+a*a)/r}(this.frameState_,t,e,n,i)},n.prototype.handleBrowserEvent=function(t,e){var n=e||t.type,i=new Ja(n,this,t);this.handleMapBrowserEvent(i)},n.prototype.handleMapBrowserEvent=function(t){if(this.frameState_){var e=t.originalEvent,n=e.type;if(n===Nt||n===b||n===S){var i=this.getOwnerDocument(),r=this.viewport_.getRootNode?this.viewport_.getRootNode():i,o=e.target;if(this.overlayContainerStopEvent_.contains(o)||!(r===i?i.documentElement:r).contains(o))return}if(t.frameState=this.frameState_,!1!==this.dispatchEvent(t))for(var s=this.getInteractions().getArray().slice(),a=s.length-1;a>=0;a--){var l=s[a];if(l.getMap()===this&&l.getActive()&&this.getTargetElement()&&(!l.handleEvent(t)||t.propagationStopped))break}}},n.prototype.handlePostRender=function(){var t=this.frameState_,e=this.tileQueue_;if(!e.isEmpty()){var n=this.maxTilesLoading_,i=n;if(t){var r=t.viewHints;if(r[0]||r[1]){var o=Date.now()-t.time>8;n=o?0:8,i=o?0:2}}e.getTilesLoading()<n&&(e.reprioritize(),e.loadMoreTiles(n,i))}t&&this.renderer_&&!t.animate&&(!0===this.renderComplete_?(this.hasListener(Lt)&&this.renderer_.dispatchRenderEvent(Lt,t),!1===this.loaded_&&(this.loaded_=!0,this.dispatchEvent(new Ha(X,this,t)))):!0===this.loaded_&&(this.loaded_=!1,this.dispatchEvent(new Ha(W,this,t))));for(var s=this.postRenderFunctions_,a=0,l=s.length;a<l;++a)s[a](this,t);s.length=0},n.prototype.handleSizeChanged_=function(){this.getView()&&!this.getView().getAnimating()&&this.getView().resolveConstraints(0),this.render()},n.prototype.handleTargetChanged_=function(){if(this.mapBrowserEventHandler_){for(var t=0,e=this.targetChangeHandlerKeys_.length;t<e;++t)I(this.targetChangeHandlerKeys_[t]);this.targetChangeHandlerKeys_=null,this.viewport_.removeEventListener(C,this.boundHandleBrowserEvent_),this.viewport_.removeEventListener(b,this.boundHandleBrowserEvent_),this.mapBrowserEventHandler_.dispose(),this.mapBrowserEventHandler_=null,Q(this.viewport_)}var n=this.getTargetElement();if(n){for(var i in n.appendChild(this.viewport_),this.renderer_||(this.renderer_=this.createRenderer()),this.mapBrowserEventHandler_=new tl(this,this.moveTolerance_),Qa)this.mapBrowserEventHandler_.addEventListener(Qa[i],this.handleMapBrowserEvent.bind(this));this.viewport_.addEventListener(C,this.boundHandleBrowserEvent_,!1),this.viewport_.addEventListener(b,this.boundHandleBrowserEvent_,!!H&&{passive:!1});var r=this.getOwnerDocument().defaultView,o=this.keyboardEventTarget_?this.keyboardEventTarget_:n;this.targetChangeHandlerKeys_=[O(o,S,this.handleBrowserEvent,this),O(o,E,this.handleBrowserEvent,this),O(r,"resize",this.updateSize,this)]}else this.renderer_&&(clearTimeout(this.postRenderTimeoutHandle_),this.postRenderTimeoutHandle_=void 0,this.postRenderFunctions_.length=0,this.renderer_.dispose(),this.renderer_=null),this.animationDelayKey_&&(cancelAnimationFrame(this.animationDelayKey_),this.animationDelayKey_=void 0);this.updateSize()},n.prototype.handleTileChange_=function(){this.render()},n.prototype.handleViewPropertyChanged_=function(){this.render()},n.prototype.handleViewChanged_=function(){this.viewPropertyListenerKey_&&(I(this.viewPropertyListenerKey_),this.viewPropertyListenerKey_=null),this.viewChangeListenerKey_&&(I(this.viewChangeListenerKey_),this.viewChangeListenerKey_=null);var t=this.getView();t&&(this.updateViewportSize_(),this.viewPropertyListenerKey_=O(t,e,this.handleViewPropertyChanged_,this),this.viewChangeListenerKey_=O(t,x,this.handleViewPropertyChanged_,this),t.resolveConstraints(0)),this.render()},n.prototype.handleLayerGroupChanged_=function(){this.layerGroupPropertyListenerKeys_&&(this.layerGroupPropertyListenerKeys_.forEach(I),this.layerGroupPropertyListenerKeys_=null);var t=this.getLayerGroup();t&&(this.handleLayerAdd_(new Ka("addlayer",t)),this.layerGroupPropertyListenerKeys_=[O(t,e,this.render,this),O(t,x,this.render,this),O(t,"addlayer",this.handleLayerAdd_,this),O(t,"removelayer",this.handleLayerRemove_,this)]),this.render()},n.prototype.isRendered=function(){return!!this.frameState_},n.prototype.renderSync=function(){this.animationDelayKey_&&cancelAnimationFrame(this.animationDelayKey_),this.animationDelay_()},n.prototype.redrawText=function(){for(var t=this.getLayerGroup().getLayerStatesArray(),e=0,n=t.length;e<n;++e){var i=t[e].layer;i.hasRenderer()&&i.getRenderer().handleFontsChanged()}},n.prototype.render=function(){this.renderer_&&void 0===this.animationDelayKey_&&(this.animationDelayKey_=requestAnimationFrame(this.animationDelay_))},n.prototype.removeControl=function(t){return this.getControls().remove(t)},n.prototype.removeInteraction=function(t){return this.getInteractions().remove(t)},n.prototype.removeLayer=function(t){return this.getLayerGroup().getLayers().remove(t)},n.prototype.handleLayerRemove_=function(t){El(t.layer)},n.prototype.removeOverlay=function(t){return this.getOverlays().remove(t)},n.prototype.renderFrame_=function(t){var e=this,n=this.getSize(),i=this.getView(),r=this.frameState_,o=null;if(void 0!==n&&Dr(n)&&i&&i.isDef()){var s=i.getHints(this.frameState_?this.frameState_.viewHints:void 0),a=i.getState();if(o={animate:!1,coordinateToPixelTransform:this.coordinateToPixelTransform_,declutterTree:null,extent:Me(a.center,a.resolution,a.rotation,n),index:this.frameIndex_++,layerIndex:0,layerStatesArray:this.getLayerGroup().getLayerStatesArray(),pixelRatio:this.pixelRatio_,pixelToCoordinateTransform:this.pixelToCoordinateTransform_,postRenderFunctions:[],size:n,tileQueue:this.tileQueue_,time:t,usedTiles:{},viewState:a,viewHints:s,wantedTiles:{},mapId:D(this),renderTargets:{}},a.nextCenter&&a.nextResolution){var l=isNaN(a.nextRotation)?a.rotation:a.nextRotation;o.nextExtent=Me(a.nextCenter,a.nextResolution,l,n)}}this.frameState_=o,this.renderer_.renderFrame(o),o&&(o.animate&&this.render(),Array.prototype.push.apply(this.postRenderFunctions_,o.postRenderFunctions),r&&(!this.previousExtent_||!Ge(this.previousExtent_)&&!Ce(o.extent,this.previousExtent_))&&(this.dispatchEvent(new Ha("movestart",this,r)),this.previousExtent_=me(this.previousExtent_)),this.previousExtent_&&!o.viewHints[0]&&!o.viewHints[1]&&!Ce(o.extent,this.previousExtent_)&&(this.dispatchEvent(new Ha("moveend",this,o)),pe(o.extent,this.previousExtent_))),this.dispatchEvent(new Ha(z,this,o)),this.renderComplete_=this.hasListener(W)||this.hasListener(X)||this.hasListener(Lt)?!this.tileQueue_.getTilesLoading()&&!this.tileQueue_.getCount()&&!this.getLoadingOrNotReady():void 0,this.postRenderTimeoutHandle_||(this.postRenderTimeoutHandle_=setTimeout((function(){e.postRenderTimeoutHandle_=void 0,e.handlePostRender()}),0))},n.prototype.setLayerGroup=function(t){var e=this.getLayerGroup();e&&this.handleLayerRemove_(new Ka("removelayer",e)),this.set(el,t)},n.prototype.setSize=function(t){this.set(nl,t)},n.prototype.setTarget=function(t){this.set(il,t)},n.prototype.setView=function(t){if(!t||t instanceof wl)this.set(rl,t);else{this.set(rl,new wl);var e=this;t.then((function(t){e.setView(new wl(t))}))}},n.prototype.updateSize=function(){var t=this.getTargetElement(),e=void 0;if(t){var n=getComputedStyle(t),i=t.offsetWidth-parseFloat(n.borderLeftWidth)-parseFloat(n.paddingLeft)-parseFloat(n.paddingRight)-parseFloat(n.borderRightWidth),r=t.offsetHeight-parseFloat(n.borderTopWidth)-parseFloat(n.paddingTop)-parseFloat(n.paddingBottom)-parseFloat(n.borderBottomWidth);isNaN(i)||isNaN(r)||!Dr(e=[i,r])&&(t.offsetWidth||t.offsetHeight||t.getClientRects().length)&&console.warn("No map visible because the map container's width or height are 0.")}this.setSize(e),this.updateViewportSize_()},n.prototype.updateViewportSize_=function(){var t=this.getView();if(t){var e=void 0,n=getComputedStyle(this.viewport_);n.width&&n.height&&(e=[parseInt(n.width,10),parseInt(n.height,10)]),t.setViewportSize(e)}},n}(G),Ol=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),Rl=function(t){function e(e){var n=this,i=e||{};n=t.call(this,{element:document.createElement("div"),render:i.render,target:i.target})||this;var r=void 0!==i.className?i.className:"ol-rotate",o=void 0!==i.label?i.label:"⇧",s=void 0!==i.compassClassName?i.compassClassName:"ol-compass";n.label_=null,"string"==typeof o?(n.label_=document.createElement("span"),n.label_.className=s,n.label_.textContent=o):(n.label_=o,n.label_.classList.add(s));var a=i.tipLabel?i.tipLabel:"Reset rotation",l=document.createElement("button");l.className=r+"-reset",l.setAttribute("type","button"),l.title=a,l.appendChild(n.label_),l.addEventListener(w,n.handleClick_.bind(n),!1);var h=r+" ol-unselectable "+nt,u=n.element;return u.className=h,u.appendChild(l),n.callResetNorth_=i.resetNorth?i.resetNorth:void 0,n.duration_=void 0!==i.duration?i.duration:250,n.autoHide_=void 0===i.autoHide||i.autoHide,n.rotation_=void 0,n.autoHide_&&n.element.classList.add(et),n}return Ol(e,t),e.prototype.handleClick_=function(t){t.preventDefault(),void 0!==this.callResetNorth_?this.callResetNorth_():this.resetNorth_()},e.prototype.resetNorth_=function(){var t=this.getMap().getView();if(t){var e=t.getRotation();void 0!==e&&(this.duration_>0&&e%(2*Math.PI)!=0?t.animate({rotation:0,duration:this.duration_,easing:xn}):t.setRotation(0))}},e.prototype.render=function(t){var e=t.frameState;if(e){var n=e.viewState.rotation;if(n!=this.rotation_){var i="rotate("+n+"rad)";if(this.autoHide_){var r=this.element.classList.contains(et);r||0!==n?r&&0!==n&&this.element.classList.remove(et):this.element.classList.add(et)}this.label_.style.transform=i}this.rotation_=n}},e}(tt),Il=Rl,Pl="active",Ml=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}();function Fl(t,e,n,i){var r=t.getZoom();if(void 0!==r){var o=t.getConstrainedZoom(r+e),s=t.getResolutionForZoom(o);t.getAnimating()&&t.cancelAnimations(),t.animate({resolution:s,anchor:n,duration:void 0!==i?i:250,easing:xn})}}var Ll=function(t){function e(e){var n=t.call(this)||this;return n.on,n.once,n.un,e&&e.handleEvent&&(n.handleEvent=e.handleEvent),n.map_=null,n.setActive(!0),n}return Ml(e,t),e.prototype.getActive=function(){return this.get(Pl)},e.prototype.getMap=function(){return this.map_},e.prototype.handleEvent=function(t){return!0},e.prototype.setActive=function(t){this.set(Pl,t)},e.prototype.setMap=function(t){this.map_=t},e}(G),Al=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),Dl=function(t){function e(e){var n=t.call(this)||this,i=e||{};return n.delta_=i.delta?i.delta:1,n.duration_=void 0!==i.duration?i.duration:250,n}return Al(e,t),e.prototype.handleEvent=function(t){var e=!1;if(t.type==Qa.DBLCLICK){var n=t.originalEvent,i=t.map,r=t.coordinate,o=n.shiftKey?-this.delta_:this.delta_;Fl(i.getView(),o,r,this.duration_),n.preventDefault(),e=!0}return!e},e}(Ll),kl=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}();function jl(t){for(var e=t.length,n=0,i=0,r=0;r<e;r++)n+=t[r].clientX,i+=t[r].clientY;return[n/e,i/e]}var Gl=function(t){function e(e){var n=this,i=e||{};return n=t.call(this,i)||this,i.handleDownEvent&&(n.handleDownEvent=i.handleDownEvent),i.handleDragEvent&&(n.handleDragEvent=i.handleDragEvent),i.handleMoveEvent&&(n.handleMoveEvent=i.handleMoveEvent),i.handleUpEvent&&(n.handleUpEvent=i.handleUpEvent),i.stopDown&&(n.stopDown=i.stopDown),n.handlingDownUpSequence=!1,n.trackedPointers_={},n.targetPointers=[],n}return kl(e,t),e.prototype.getPointerCount=function(){return this.targetPointers.length},e.prototype.handleDownEvent=function(t){return!1},e.prototype.handleDragEvent=function(t){},e.prototype.handleEvent=function(t){if(!t.originalEvent)return!0;var e=!1;if(this.updateTrackedPointers_(t),this.handlingDownUpSequence){if(t.type==Qa.POINTERDRAG)this.handleDragEvent(t),t.originalEvent.preventDefault();else if(t.type==Qa.POINTERUP){var n=this.handleUpEvent(t);this.handlingDownUpSequence=n&&this.targetPointers.length>0}}else if(t.type==Qa.POINTERDOWN){var i=this.handleDownEvent(t);this.handlingDownUpSequence=i,e=this.stopDown(i)}else t.type==Qa.POINTERMOVE&&this.handleMoveEvent(t);return!e},e.prototype.handleMoveEvent=function(t){},e.prototype.handleUpEvent=function(t){return!1},e.prototype.stopDown=function(t){return t},e.prototype.updateTrackedPointers_=function(t){if(function(t){var e=t.type;return e===Qa.POINTERDOWN||e===Qa.POINTERDRAG||e===Qa.POINTERUP}(t)){var e=t.originalEvent,n=e.pointerId.toString();t.type==Qa.POINTERUP?delete this.trackedPointers_[n]:(t.type==Qa.POINTERDOWN||n in this.trackedPointers_)&&(this.trackedPointers_[n]=e),this.targetPointers=g(this.trackedPointers_)}},e}(Ll);function zl(t){var e=arguments;return function(t){for(var n=!0,i=0,r=e.length;i<r&&(n=n&&e[i](t));++i);return n}}var Wl=function(t){var e=t.originalEvent;return e.altKey&&!(e.metaKey||e.ctrlKey)&&e.shiftKey},Xl=function(t){return!t.map.getTargetElement().hasAttribute("tabindex")||function(t){var e=t.map.getTargetElement(),n=t.map.getOwnerDocument().activeElement;return e.contains(n)}(t)},Nl=u,Yl=function(t){var e=t.originalEvent;return 0==e.button&&!(B&&K&&e.ctrlKey)},Bl=function(t){var e=t.originalEvent;return!e.altKey&&!(e.metaKey||e.ctrlKey)&&!e.shiftKey},Kl=function(t){var e=t.originalEvent;return!e.altKey&&!(e.metaKey||e.ctrlKey)&&e.shiftKey},Zl=function(t){var e=t.originalEvent.target.tagName;return"INPUT"!==e&&"SELECT"!==e&&"TEXTAREA"!==e},Vl=function(t){var e=t.originalEvent;return vt(void 0!==e,56),"mouse"==e.pointerType},Ul=function(t){var e=t.originalEvent;return vt(void 0!==e,56),e.isPrimary&&0===e.button},Hl=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),ql=function(t){function e(e){var n=t.call(this,{stopDown:c})||this,i=e||{};n.kinetic_=i.kinetic,n.lastCentroid=null,n.lastPointersCount_,n.panning_=!1;var r=i.condition?i.condition:zl(Bl,Ul);return n.condition_=i.onFocusOnly?zl(Xl,r):r,n.noKinetic_=!1,n}return Hl(e,t),e.prototype.handleDragEvent=function(t){this.panning_||(this.panning_=!0,this.getMap().getView().beginInteraction());var e,n,i=this.targetPointers,r=jl(i);if(i.length==this.lastPointersCount_){if(this.kinetic_&&this.kinetic_.update(r[0],r[1]),this.lastCentroid){var o=[this.lastCentroid[0]-r[0],r[1]-this.lastCentroid[1]],s=t.map.getView();e=o,n=s.getResolution(),e[0]*=n,e[1]*=n,We(o,s.getRotation()),s.adjustCenterInternal(o)}}else this.kinetic_&&this.kinetic_.begin();this.lastCentroid=r,this.lastPointersCount_=i.length,t.originalEvent.preventDefault()},e.prototype.handleUpEvent=function(t){var e=t.map,n=e.getView();if(0===this.targetPointers.length){if(!this.noKinetic_&&this.kinetic_&&this.kinetic_.end()){var i=this.kinetic_.getDistance(),r=this.kinetic_.getAngle(),o=n.getCenterInternal(),s=e.getPixelFromCoordinateInternal(o),a=e.getCoordinateFromPixelInternal([s[0]-i*Math.cos(r),s[1]-i*Math.sin(r)]);n.animateInternal({center:n.getConstrainedCenter(a),duration:500,easing:xn})}return this.panning_&&(this.panning_=!1,n.endInteraction()),!1}return this.kinetic_&&this.kinetic_.begin(),this.lastCentroid=null,!0},e.prototype.handleDownEvent=function(t){if(this.targetPointers.length>0&&this.condition_(t)){var e=t.map.getView();return this.lastCentroid=null,e.getAnimating()&&e.cancelAnimations(),this.kinetic_&&this.kinetic_.begin(),this.noKinetic_=this.targetPointers.length>1,!0}return!1},e}(Gl),Jl=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),Ql=function(t){function e(e){var n=this,i=e||{};return(n=t.call(this,{stopDown:c})||this).condition_=i.condition?i.condition:Wl,n.lastAngle_=void 0,n.duration_=void 0!==i.duration?i.duration:250,n}return Jl(e,t),e.prototype.handleDragEvent=function(t){if(Vl(t)){var e=t.map,n=e.getView();if(n.getConstraints().rotation!==gl){var i=e.getSize(),r=t.pixel,o=Math.atan2(i[1]/2-r[1],r[0]-i[0]/2);if(void 0!==this.lastAngle_){var s=o-this.lastAngle_;n.adjustRotationInternal(-s)}this.lastAngle_=o}}},e.prototype.handleUpEvent=function(t){return!Vl(t)||(t.map.getView().endInteraction(this.duration_),!1)},e.prototype.handleDownEvent=function(t){return!(!Vl(t)||!Yl(t)||!this.condition_(t)||(t.map.getView().beginInteraction(),this.lastAngle_=void 0,0))},e}(Gl),$l=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),th=function(t){function e(e){var n=t.call(this)||this;return n.geometry_=null,n.element_=document.createElement("div"),n.element_.style.position="absolute",n.element_.style.pointerEvents="auto",n.element_.className="ol-box "+e,n.map_=null,n.startPixel_=null,n.endPixel_=null,n}return $l(e,t),e.prototype.disposeInternal=function(){this.setMap(null)},e.prototype.render_=function(){var t=this.startPixel_,e=this.endPixel_,n="px",i=this.element_.style;i.left=Math.min(t[0],e[0])+n,i.top=Math.min(t[1],e[1])+n,i.width=Math.abs(e[0]-t[0])+n,i.height=Math.abs(e[1]-t[1])+n},e.prototype.setMap=function(t){if(this.map_){this.map_.getOverlayContainer().removeChild(this.element_);var e=this.element_.style;e.left="inherit",e.top="inherit",e.width="inherit",e.height="inherit"}this.map_=t,this.map_&&this.map_.getOverlayContainer().appendChild(this.element_)},e.prototype.setPixels=function(t,e){this.startPixel_=t,this.endPixel_=e,this.createOrUpdateGeometry(),this.render_()},e.prototype.createOrUpdateGeometry=function(){var t=this.startPixel_,e=this.endPixel_,n=[t,[t[0],e[1]],e,[e[0],t[1]]].map(this.map_.getCoordinateFromPixelInternal,this.map_);n[4]=n[0].slice(),this.geometry_?this.geometry_.setCoordinates([n]):this.geometry_=new Ki([n])},e.prototype.getGeometry=function(){return this.geometry_},e}(r),eh=th,nh=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),ih=function(t){function e(e,n,i){var r=t.call(this,e)||this;return r.coordinate=n,r.mapBrowserEvent=i,r}return nh(e,t),e}(t),rh=function(t){function e(e){var n=t.call(this)||this;n.on,n.once,n.un;var i=e||{};return n.box_=new eh(i.className||"ol-dragbox"),n.minArea_=void 0!==i.minArea?i.minArea:64,i.onBoxEnd&&(n.onBoxEnd=i.onBoxEnd),n.startPixel_=null,n.condition_=i.condition?i.condition:Yl,n.boxEndCondition_=i.boxEndCondition?i.boxEndCondition:n.defaultBoxEndCondition,n}return nh(e,t),e.prototype.defaultBoxEndCondition=function(t,e,n){var i=n[0]-e[0],r=n[1]-e[1];return i*i+r*r>=this.minArea_},e.prototype.getGeometry=function(){return this.box_.getGeometry()},e.prototype.handleDragEvent=function(t){this.box_.setPixels(this.startPixel_,t.pixel),this.dispatchEvent(new ih("boxdrag",t.coordinate,t))},e.prototype.handleUpEvent=function(t){this.box_.setMap(null);var e=this.boxEndCondition_(t,this.startPixel_,t.pixel);return e&&this.onBoxEnd(t),this.dispatchEvent(new ih(e?"boxend":"boxcancel",t.coordinate,t)),!1},e.prototype.handleDownEvent=function(t){return!!this.condition_(t)&&(this.startPixel_=t.pixel,this.box_.setMap(t.map),this.box_.setPixels(this.startPixel_,this.startPixel_),this.dispatchEvent(new ih("boxstart",t.coordinate,t)),!0)},e.prototype.onBoxEnd=function(t){},e}(Gl),oh=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),sh=function(t){function e(e){var n=this,i=e||{},r=i.condition?i.condition:Kl;return(n=t.call(this,{condition:r,className:i.className||"ol-dragzoom",minArea:i.minArea})||this).duration_=void 0!==i.duration?i.duration:200,n.out_=void 0!==i.out&&i.out,n}return oh(e,t),e.prototype.onBoxEnd=function(t){var e=this.getMap().getView(),n=this.getGeometry();if(this.out_){var i=e.rotatedExtentForGeometry(n),r=e.getResolutionForExtentInternal(i),o=e.getResolution()/r;(n=n.clone()).scale(o*o)}e.fitInternal(n,{duration:this.duration_,easing:xn})},e}(rh),ah=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),lh=function(t){function e(e){var n=t.call(this)||this,i=e||{};return n.defaultCondition_=function(t){return Bl(t)&&Zl(t)},n.condition_=void 0!==i.condition?i.condition:n.defaultCondition_,n.duration_=void 0!==i.duration?i.duration:100,n.pixelDelta_=void 0!==i.pixelDelta?i.pixelDelta:128,n}return ah(e,t),e.prototype.handleEvent=function(t){var e=!1;if(t.type==S){var n=t.originalEvent,i=n.keyCode;if(this.condition_(t)&&(40==i||37==i||39==i||38==i)){var r=t.map.getView(),o=r.getResolution()*this.pixelDelta_,s=0,a=0;40==i?a=-o:37==i?s=-o:39==i?s=o:a=o;var l=[s,a];We(l,r.getRotation()),function(t,e,n){var i=t.getCenterInternal();if(i){var r=[i[0]+e[0],i[1]+e[1]];t.animateInternal({duration:void 0!==n?n:250,easing:wn,center:t.getConstrainedCenter(r)})}}(r,l,this.duration_),n.preventDefault(),e=!0}}return!e},e}(Ll),hh=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),uh=function(t){function e(e){var n=t.call(this)||this,i=e||{};return n.condition_=i.condition?i.condition:Zl,n.delta_=i.delta?i.delta:1,n.duration_=void 0!==i.duration?i.duration:100,n}return hh(e,t),e.prototype.handleEvent=function(t){var e=!1;if(t.type==S||t.type==E){var n=t.originalEvent,i=n.charCode;if(this.condition_(t)&&(i=="+".charCodeAt(0)||i=="-".charCodeAt(0))){var r=t.map,o=i=="+".charCodeAt(0)?this.delta_:-this.delta_;Fl(r.getView(),o,void 0,this.duration_),n.preventDefault(),e=!0}}return!e},e}(Ll),ch=function(){function t(t,e,n){this.decay_=t,this.minVelocity_=e,this.delay_=n,this.points_=[],this.angle_=0,this.initialVelocity_=0}return t.prototype.begin=function(){this.points_.length=0,this.angle_=0,this.initialVelocity_=0},t.prototype.update=function(t,e){this.points_.push(t,e,Date.now())},t.prototype.end=function(){if(this.points_.length<6)return!1;var t=Date.now()-this.delay_,e=this.points_.length-3;if(this.points_[e+2]<t)return!1;for(var n=e-3;n>0&&this.points_[n+2]>t;)n-=3;var i=this.points_[e+2]-this.points_[n+2];if(i<1e3/60)return!1;var r=this.points_[e]-this.points_[n],o=this.points_[e+1]-this.points_[n+1];return this.angle_=Math.atan2(o,r),this.initialVelocity_=Math.sqrt(r*r+o*o)/i,this.initialVelocity_>this.minVelocity_},t.prototype.getDistance=function(){return(this.minVelocity_-this.initialVelocity_)/this.decay_},t.prototype.getAngle=function(){return this.angle_},t}(),ph=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),fh="trackpad",dh=function(t){function e(e){var n=this,i=e||{};(n=t.call(this,i)||this).totalDelta_=0,n.lastDelta_=0,n.maxDelta_=void 0!==i.maxDelta?i.maxDelta:1,n.duration_=void 0!==i.duration?i.duration:250,n.timeout_=void 0!==i.timeout?i.timeout:80,n.useAnchor_=void 0===i.useAnchor||i.useAnchor,n.constrainResolution_=void 0!==i.constrainResolution&&i.constrainResolution;var r=i.condition?i.condition:Nl;return n.condition_=i.onFocusOnly?zl(Xl,r):r,n.lastAnchor_=null,n.startTime_=void 0,n.timeoutId_,n.mode_=void 0,n.trackpadEventGap_=400,n.trackpadTimeoutId_,n.deltaPerZoom_=300,n}return ph(e,t),e.prototype.endInteraction_=function(){this.trackpadTimeoutId_=void 0,this.getMap().getView().endInteraction(void 0,this.lastDelta_?this.lastDelta_>0?1:-1:0,this.lastAnchor_)},e.prototype.handleEvent=function(t){if(!this.condition_(t))return!0;if(t.type!==b)return!0;var e,n=t.map,i=t.originalEvent;if(i.preventDefault(),this.useAnchor_&&(this.lastAnchor_=t.coordinate),t.type==b&&(e=i.deltaY,Y&&i.deltaMode===WheelEvent.DOM_DELTA_PIXEL&&(e/=Z),i.deltaMode===WheelEvent.DOM_DELTA_LINE&&(e*=40)),0===e)return!1;this.lastDelta_=e;var r=Date.now();void 0===this.startTime_&&(this.startTime_=r),(!this.mode_||r-this.startTime_>this.trackpadEventGap_)&&(this.mode_=Math.abs(e)<4?fh:"wheel");var o=n.getView();if(this.mode_===fh&&!o.getConstrainResolution()&&!this.constrainResolution_)return this.trackpadTimeoutId_?clearTimeout(this.trackpadTimeoutId_):(o.getAnimating()&&o.cancelAnimations(),o.beginInteraction()),this.trackpadTimeoutId_=setTimeout(this.endInteraction_.bind(this),this.timeout_),o.adjustZoom(-e/this.deltaPerZoom_,this.lastAnchor_),this.startTime_=r,!1;this.totalDelta_+=e;var s=Math.max(this.timeout_-(r-this.startTime_),0);return clearTimeout(this.timeoutId_),this.timeoutId_=setTimeout(this.handleWheelZoom_.bind(this,n),s),!1},e.prototype.handleWheelZoom_=function(t){var e=t.getView();e.getAnimating()&&e.cancelAnimations();var n=-mt(this.totalDelta_,-this.maxDelta_*this.deltaPerZoom_,this.maxDelta_*this.deltaPerZoom_)/this.deltaPerZoom_;(e.getConstrainResolution()||this.constrainResolution_)&&(n=n?n>0?1:-1:0),Fl(e,n,this.lastAnchor_,this.duration_),this.mode_=void 0,this.totalDelta_=0,this.lastAnchor_=null,this.startTime_=void 0,this.timeoutId_=void 0},e.prototype.setMouseAnchor=function(t){this.useAnchor_=t,t||(this.lastAnchor_=null)},e}(Ll),gh=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),_h=function(t){function e(e){var n=this,i=e||{},r=i;return r.stopDown||(r.stopDown=c),(n=t.call(this,r)||this).anchor_=null,n.lastAngle_=void 0,n.rotating_=!1,n.rotationDelta_=0,n.threshold_=void 0!==i.threshold?i.threshold:.3,n.duration_=void 0!==i.duration?i.duration:250,n}return gh(e,t),e.prototype.handleDragEvent=function(t){var e=0,n=this.targetPointers[0],i=this.targetPointers[1],r=Math.atan2(i.clientY-n.clientY,i.clientX-n.clientX);if(void 0!==this.lastAngle_){var o=r-this.lastAngle_;this.rotationDelta_+=o,!this.rotating_&&Math.abs(this.rotationDelta_)>this.threshold_&&(this.rotating_=!0),e=o}this.lastAngle_=r;var s=t.map,a=s.getView();if(a.getConstraints().rotation!==gl){var l=s.getViewport().getBoundingClientRect(),h=jl(this.targetPointers);h[0]-=l.left,h[1]-=l.top,this.anchor_=s.getCoordinateFromPixelInternal(h),this.rotating_&&(s.render(),a.adjustRotationInternal(e,this.anchor_))}},e.prototype.handleUpEvent=function(t){return!(this.targetPointers.length<2&&(t.map.getView().endInteraction(this.duration_),1))},e.prototype.handleDownEvent=function(t){if(this.targetPointers.length>=2){var e=t.map;return this.anchor_=null,this.lastAngle_=void 0,this.rotating_=!1,this.rotationDelta_=0,this.handlingDownUpSequence||e.getView().beginInteraction(),!0}return!1},e}(Gl),yh=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),vh=function(t){function e(e){var n=this,i=e||{},r=i;return r.stopDown||(r.stopDown=c),(n=t.call(this,r)||this).anchor_=null,n.duration_=void 0!==i.duration?i.duration:400,n.lastDistance_=void 0,n.lastScaleDelta_=1,n}return yh(e,t),e.prototype.handleDragEvent=function(t){var e=1,n=this.targetPointers[0],i=this.targetPointers[1],r=n.clientX-i.clientX,o=n.clientY-i.clientY,s=Math.sqrt(r*r+o*o);void 0!==this.lastDistance_&&(e=this.lastDistance_/s),this.lastDistance_=s;var a=t.map,l=a.getView();1!=e&&(this.lastScaleDelta_=e);var h=a.getViewport().getBoundingClientRect(),u=jl(this.targetPointers);u[0]-=h.left,u[1]-=h.top,this.anchor_=a.getCoordinateFromPixelInternal(u),a.render(),l.adjustResolutionInternal(e,this.anchor_)},e.prototype.handleUpEvent=function(t){if(this.targetPointers.length<2){var e=t.map.getView(),n=this.lastScaleDelta_>1?1:-1;return e.endInteraction(this.duration_,n),!1}return!0},e.prototype.handleDownEvent=function(t){if(this.targetPointers.length>=2){var e=t.map;return this.anchor_=null,this.lastDistance_=void 0,this.lastScaleDelta_=1,this.handlingDownUpSequence||e.getView().beginInteraction(),!0}return!1},e}(Gl),mh=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}(),xh=function(t){function e(e){return(e=f({},e)).controls||(e.controls=function(t){var e={},n=new Ea;return(void 0===e.zoom||e.zoom)&&n.push(new Tn(e.zoomOptions)),(void 0===e.rotate||e.rotate)&&n.push(new Il(e.rotateOptions)),(void 0===e.attribution||e.attribution)&&n.push(new Wt(e.attributionOptions)),n}()),e.interactions||(e.interactions=function(t){var e={onFocusOnly:!0}||{},n=new Ea,i=new ch(-.005,.05,100);return(void 0===e.altShiftDragRotate||e.altShiftDragRotate)&&n.push(new Ql),(void 0===e.doubleClickZoom||e.doubleClickZoom)&&n.push(new Dl({delta:e.zoomDelta,duration:e.zoomDuration})),(void 0===e.dragPan||e.dragPan)&&n.push(new ql({onFocusOnly:e.onFocusOnly,kinetic:i})),(void 0===e.pinchRotate||e.pinchRotate)&&n.push(new _h),(void 0===e.pinchZoom||e.pinchZoom)&&n.push(new vh({duration:e.zoomDuration})),(void 0===e.keyboard||e.keyboard)&&(n.push(new lh),n.push(new uh({delta:e.zoomDelta,duration:e.zoomDuration}))),(void 0===e.mouseWheelZoom||e.mouseWheelZoom)&&n.push(new dh({onFocusOnly:e.onFocusOnly,duration:e.zoomDuration})),(void 0===e.shiftDragZoom||e.shiftDragZoom)&&n.push(new sh({duration:e.zoomDuration})),n}()),t.call(this,e)||this}return mh(e,t),e.prototype.createRenderer=function(){return new Ya(this)},e}(bl),Ch={control:{Attribution:Wt,MousePosition:vn,Zoom:Tn},coordinate:{createStringXY:function(t){return function(e){return function(t,e){return function(t,e,n){return t?"{x}, {y}".replace("{x}",t[0].toFixed(n)).replace("{y}",t[1].toFixed(n)):""}(t,0,e)}(e,t)}}},extent:{boundingExtent:ue},geom:{LineString:wi,LinearRing:Oi,MultiLineString:Pi,MultiPoint:ki,MultiPolygon:Hi,Point:Li,Polygon:Ki},layer:{Tile:Xr,Vector:Ns},proj:{fromLonLat:function(t,e){return Be(),en(t,"EPSG:4326",void 0!==e?e:"EPSG:3857")},get:Ue,transformExtent:nn},source:{OSM:va,Vector:La},style:{Circle:fo,Fill:go,Stroke:_o,Style:Co,Text:Aa},Feature:ja,Map:xh,View:wl}}(),i.default}()}));
//# sourceMappingURL=OpenLayers.js.map
diff --git a/js/vendor/openlayers/OpenLayers.js.map b/js/vendor/openlayers/OpenLayers.js.map
index 0708e0886f..538512d654 100644
--- a/js/vendor/openlayers/OpenLayers.js.map
+++ b/js/vendor/openlayers/OpenLayers.js.map
@@ -1 +1 @@
-{"version":3,"file":"OpenLayers.js","mappings":"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","sources":["webpack://ol/webpack/universalModuleDefinition","webpack://ol/./node_modules/rbush/rbush.min.js","webpack://ol/webpack/bootstrap","webpack://ol/webpack/runtime/define property getters","webpack://ol/webpack/runtime/hasOwnProperty shorthand","webpack://ol/./node_modules/ol/events/Event.js","webpack://ol/./node_modules/ol/ObjectEventType.js","webpack://ol/./node_modules/ol/Disposable.js","webpack://ol/./node_modules/ol/array.js","webpack://ol/./node_modules/ol/functions.js","webpack://ol/./node_modules/ol/obj.js","webpack://ol/./node_modules/ol/events/Target.js","webpack://ol/./node_modules/ol/events/EventType.js","webpack://ol/./node_modules/ol/events.js","webpack://ol/./node_modules/ol/Observable.js","webpack://ol/./node_modules/ol/util.js","webpack://ol/./node_modules/ol/Object.js","webpack://ol/./node_modules/ol/MapEventType.js","webpack://ol/./node_modules/ol/has.js","webpack://ol/./node_modules/ol/dom.js","webpack://ol/./node_modules/ol/control/Control.js","webpack://ol/./node_modules/ol/css.js","webpack://ol/./node_modules/ol/layer/Property.js","webpack://ol/./node_modules/ol/AssertionError.js","webpack://ol/./node_modules/ol/asserts.js","webpack://ol/./node_modules/ol/math.js","webpack://ol/./node_modules/ol/layer/Base.js","webpack://ol/./node_modules/ol/render/EventType.js","webpack://ol/./node_modules/ol/source/State.js","webpack://ol/./node_modules/ol/layer/Layer.js","webpack://ol/./node_modules/ol/control/Attribution.js","webpack://ol/./node_modules/ol/pointer/EventType.js","webpack://ol/./node_modules/ol/proj/Units.js","webpack://ol/./node_modules/ol/proj/Projection.js","webpack://ol/./node_modules/ol/proj/epsg3857.js","webpack://ol/./node_modules/ol/proj/epsg4326.js","webpack://ol/./node_modules/ol/proj/projections.js","webpack://ol/./node_modules/ol/proj/transforms.js","webpack://ol/./node_modules/ol/extent/Corner.js","webpack://ol/./node_modules/ol/extent.js","webpack://ol/./node_modules/ol/extent/Relationship.js","webpack://ol/./node_modules/ol/sphere.js","webpack://ol/./node_modules/ol/proj.js","webpack://ol/./node_modules/ol/control/MousePosition.js","webpack://ol/./node_modules/ol/easing.js","webpack://ol/./node_modules/ol/control/Zoom.js","webpack://ol/./node_modules/ol/coordinate.js","webpack://ol/./node_modules/ol/geom/GeometryLayout.js","webpack://ol/./node_modules/ol/transform.js","webpack://ol/./node_modules/ol/geom/GeometryType.js","webpack://ol/./node_modules/ol/geom/flat/transform.js","webpack://ol/./node_modules/ol/geom/Geometry.js","webpack://ol/./node_modules/ol/geom/SimpleGeometry.js","webpack://ol/./node_modules/ol/geom/flat/closest.js","webpack://ol/./node_modules/ol/geom/flat/deflate.js","webpack://ol/./node_modules/ol/geom/flat/simplify.js","webpack://ol/./node_modules/ol/geom/flat/segments.js","webpack://ol/./node_modules/ol/geom/flat/inflate.js","webpack://ol/./node_modules/ol/geom/flat/interpolate.js","webpack://ol/./node_modules/ol/geom/flat/contains.js","webpack://ol/./node_modules/ol/geom/flat/intersectsextent.js","webpack://ol/./node_modules/ol/geom/flat/length.js","webpack://ol/./node_modules/ol/geom/LineString.js","webpack://ol/./node_modules/ol/geom/flat/area.js","webpack://ol/./node_modules/ol/geom/LinearRing.js","webpack://ol/./node_modules/ol/geom/MultiLineString.js","webpack://ol/./node_modules/ol/geom/Point.js","webpack://ol/./node_modules/ol/geom/MultiPoint.js","webpack://ol/./node_modules/ol/geom/flat/interiorpoint.js","webpack://ol/./node_modules/ol/geom/flat/reverse.js","webpack://ol/./node_modules/ol/geom/flat/orient.js","webpack://ol/./node_modules/ol/geom/Polygon.js","webpack://ol/./node_modules/ol/geom/MultiPolygon.js","webpack://ol/./node_modules/ol/geom/flat/center.js","webpack://ol/./node_modules/ol/layer/TileProperty.js","webpack://ol/./node_modules/ol/layer/BaseTile.js","webpack://ol/./node_modules/ol/renderer/Layer.js","webpack://ol/./node_modules/ol/ImageState.js","webpack://ol/./node_modules/ol/render/Event.js","webpack://ol/./node_modules/ol/renderer/canvas/Layer.js","webpack://ol/./node_modules/ol/TileRange.js","webpack://ol/./node_modules/ol/renderer/canvas/TileLayer.js","webpack://ol/./node_modules/ol/TileState.js","webpack://ol/./node_modules/ol/layer/Tile.js","webpack://ol/./node_modules/ol/size.js","webpack://ol/./node_modules/ol/style/Image.js","webpack://ol/./node_modules/ol/color.js","webpack://ol/./node_modules/ol/colorlike.js","webpack://ol/./node_modules/ol/render/canvas.js","webpack://ol/./node_modules/ol/style/RegularShape.js","webpack://ol/./node_modules/ol/style/Circle.js","webpack://ol/./node_modules/ol/style/Fill.js","webpack://ol/./node_modules/ol/style/Stroke.js","webpack://ol/./node_modules/ol/style/Style.js","webpack://ol/./node_modules/ol/layer/BaseVector.js","webpack://ol/./node_modules/ol/render/canvas/Instruction.js","webpack://ol/./node_modules/ol/render/VectorContext.js","webpack://ol/./node_modules/ol/render/canvas/Builder.js","webpack://ol/./node_modules/ol/render/canvas/ImageBuilder.js","webpack://ol/./node_modules/ol/render/canvas/LineStringBuilder.js","webpack://ol/./node_modules/ol/render/canvas/PolygonBuilder.js","webpack://ol/./node_modules/ol/geom/flat/straightchunk.js","webpack://ol/./node_modules/ol/render/canvas/TextBuilder.js","webpack://ol/./node_modules/ol/style/TextPlacement.js","webpack://ol/./node_modules/ol/render/canvas/BuilderGroup.js","webpack://ol/./node_modules/ol/render/canvas/BuilderType.js","webpack://ol/./node_modules/ol/geom/flat/textpath.js","webpack://ol/./node_modules/ol/render/canvas/Executor.js","webpack://ol/./node_modules/ol/render/canvas/ExecutorGroup.js","webpack://ol/./node_modules/ol/render/canvas/Immediate.js","webpack://ol/./node_modules/ol/style/IconAnchorUnits.js","webpack://ol/./node_modules/ol/style/IconOrigin.js","webpack://ol/./node_modules/ol/style/IconImageCache.js","webpack://ol/./node_modules/ol/ImageBase.js","webpack://ol/./node_modules/ol/Image.js","webpack://ol/./node_modules/ol/style/IconImage.js","webpack://ol/./node_modules/ol/style/Icon.js","webpack://ol/./node_modules/ol/render/canvas/hitdetect.js","webpack://ol/./node_modules/ol/renderer/vector.js","webpack://ol/./node_modules/ol/renderer/canvas/VectorLayer.js","webpack://ol/./node_modules/ol/reproj.js","webpack://ol/./node_modules/ol/ViewHint.js","webpack://ol/./node_modules/ol/layer/Vector.js","webpack://ol/./node_modules/ol/Tile.js","webpack://ol/./node_modules/ol/ImageTile.js","webpack://ol/./node_modules/ol/reproj/Triangulation.js","webpack://ol/./node_modules/ol/source/common.js","webpack://ol/./node_modules/ol/reproj/Tile.js","webpack://ol/./node_modules/ol/reproj/common.js","webpack://ol/./node_modules/ol/structs/LRUCache.js","webpack://ol/./node_modules/ol/tilecoord.js","webpack://ol/./node_modules/ol/TileCache.js","webpack://ol/./node_modules/ol/source/Source.js","webpack://ol/./node_modules/ol/tilegrid/TileGrid.js","webpack://ol/./node_modules/ol/tilegrid/common.js","webpack://ol/./node_modules/ol/tilegrid.js","webpack://ol/./node_modules/ol/source/Tile.js","webpack://ol/./node_modules/ol/tileurlfunction.js","webpack://ol/./node_modules/ol/source/UrlTile.js","webpack://ol/./node_modules/ol/source/TileEventType.js","webpack://ol/./node_modules/ol/source/TileImage.js","webpack://ol/./node_modules/ol/source/XYZ.js","webpack://ol/./node_modules/ol/source/OSM.js","webpack://ol/./node_modules/ol/CollectionEventType.js","webpack://ol/./node_modules/ol/Collection.js","webpack://ol/./node_modules/ol/structs/RBush.js","webpack://ol/./node_modules/ol/source/VectorEventType.js","webpack://ol/./node_modules/ol/loadingstrategy.js","webpack://ol/./node_modules/ol/format/FormatType.js","webpack://ol/./node_modules/ol/featureloader.js","webpack://ol/./node_modules/ol/source/Vector.js","webpack://ol/./node_modules/ol/style/Text.js","webpack://ol/./node_modules/ol/Feature.js","webpack://ol/./node_modules/ol/renderer/Map.js","webpack://ol/./node_modules/ol/renderer/Composite.js","webpack://ol/./node_modules/ol/layer/Group.js","webpack://ol/./node_modules/ol/MapEvent.js","webpack://ol/./node_modules/ol/MapBrowserEvent.js","webpack://ol/./node_modules/ol/MapBrowserEventType.js","webpack://ol/./node_modules/ol/MapBrowserEventHandler.js","webpack://ol/./node_modules/ol/MapProperty.js","webpack://ol/./node_modules/ol/structs/PriorityQueue.js","webpack://ol/./node_modules/ol/TileQueue.js","webpack://ol/./node_modules/ol/ViewProperty.js","webpack://ol/./node_modules/ol/centerconstraint.js","webpack://ol/./node_modules/ol/resolutionconstraint.js","webpack://ol/./node_modules/ol/rotationconstraint.js","webpack://ol/./node_modules/ol/View.js","webpack://ol/./node_modules/ol/PluggableMap.js","webpack://ol/./node_modules/ol/control/Rotate.js","webpack://ol/./node_modules/ol/interaction/Property.js","webpack://ol/./node_modules/ol/interaction/Interaction.js","webpack://ol/./node_modules/ol/interaction/DoubleClickZoom.js","webpack://ol/./node_modules/ol/interaction/Pointer.js","webpack://ol/./node_modules/ol/events/condition.js","webpack://ol/./node_modules/ol/interaction/DragPan.js","webpack://ol/./node_modules/ol/interaction/DragRotate.js","webpack://ol/./node_modules/ol/render/Box.js","webpack://ol/./node_modules/ol/interaction/DragBox.js","webpack://ol/./node_modules/ol/interaction/DragZoom.js","webpack://ol/./node_modules/ol/interaction/KeyboardPan.js","webpack://ol/./node_modules/ol/events/KeyCode.js","webpack://ol/./node_modules/ol/interaction/KeyboardZoom.js","webpack://ol/./node_modules/ol/Kinetic.js","webpack://ol/./node_modules/ol/interaction/MouseWheelZoom.js","webpack://ol/./node_modules/ol/interaction/PinchRotate.js","webpack://ol/./node_modules/ol/interaction/PinchZoom.js","webpack://ol/./node_modules/ol/Map.js","webpack://ol/./node_modules/ol/control.js","webpack://ol/./node_modules/ol/interaction.js","webpack://ol/./js/src/ol.mjs"],"sourcesContent":["(function webpackUniversalModuleDefinition(root, factory) {\n\tif(typeof exports === 'object' && typeof module === 'object')\n\t\tmodule.exports = factory();\n\telse if(typeof define === 'function' && define.amd)\n\t\tdefine([], factory);\n\telse if(typeof exports === 'object')\n\t\texports[\"ol\"] = factory();\n\telse\n\t\troot[\"ol\"] = factory();\n})(self, function() {\nreturn ","!function(t,i){\"object\"==typeof exports&&\"undefined\"!=typeof module?module.exports=i():\"function\"==typeof define&&define.amd?define(i):(t=t||self).RBush=i()}(this,function(){\"use strict\";function t(t,r,e,a,h){!function t(n,r,e,a,h){for(;a>e;){if(a-e>600){var o=a-e+1,s=r-e+1,l=Math.log(o),f=.5*Math.exp(2*l/3),u=.5*Math.sqrt(l*f*(o-f)/o)*(s-o/2<0?-1:1),m=Math.max(e,Math.floor(r-s*f/o+u)),c=Math.min(a,Math.floor(r+(o-s)*f/o+u));t(n,r,m,c,h)}var p=n[r],d=e,x=a;for(i(n,e,r),h(n[a],p)>0&&i(n,e,a);d<x;){for(i(n,d,x),d++,x--;h(n[d],p)<0;)d++;for(;h(n[x],p)>0;)x--}0===h(n[e],p)?i(n,e,x):i(n,++x,a),x<=r&&(e=x+1),r<=x&&(a=x-1)}}(t,r,e||0,a||t.length-1,h||n)}function i(t,i,n){var r=t[i];t[i]=t[n],t[n]=r}function n(t,i){return t<i?-1:t>i?1:0}var r=function(t){void 0===t&&(t=9),this._maxEntries=Math.max(4,t),this._minEntries=Math.max(2,Math.ceil(.4*this._maxEntries)),this.clear()};function e(t,i,n){if(!n)return i.indexOf(t);for(var r=0;r<i.length;r++)if(n(t,i[r]))return r;return-1}function a(t,i){h(t,0,t.children.length,i,t)}function h(t,i,n,r,e){e||(e=p(null)),e.minX=1/0,e.minY=1/0,e.maxX=-1/0,e.maxY=-1/0;for(var a=i;a<n;a++){var h=t.children[a];o(e,t.leaf?r(h):h)}return e}function o(t,i){return t.minX=Math.min(t.minX,i.minX),t.minY=Math.min(t.minY,i.minY),t.maxX=Math.max(t.maxX,i.maxX),t.maxY=Math.max(t.maxY,i.maxY),t}function s(t,i){return t.minX-i.minX}function l(t,i){return t.minY-i.minY}function f(t){return(t.maxX-t.minX)*(t.maxY-t.minY)}function u(t){return t.maxX-t.minX+(t.maxY-t.minY)}function m(t,i){return t.minX<=i.minX&&t.minY<=i.minY&&i.maxX<=t.maxX&&i.maxY<=t.maxY}function c(t,i){return i.minX<=t.maxX&&i.minY<=t.maxY&&i.maxX>=t.minX&&i.maxY>=t.minY}function p(t){return{children:t,height:1,leaf:!0,minX:1/0,minY:1/0,maxX:-1/0,maxY:-1/0}}function d(i,n,r,e,a){for(var h=[n,r];h.length;)if(!((r=h.pop())-(n=h.pop())<=e)){var o=n+Math.ceil((r-n)/e/2)*e;t(i,o,n,r,a),h.push(n,o,o,r)}}return r.prototype.all=function(){return this._all(this.data,[])},r.prototype.search=function(t){var i=this.data,n=[];if(!c(t,i))return n;for(var r=this.toBBox,e=[];i;){for(var a=0;a<i.children.length;a++){var h=i.children[a],o=i.leaf?r(h):h;c(t,o)&&(i.leaf?n.push(h):m(t,o)?this._all(h,n):e.push(h))}i=e.pop()}return n},r.prototype.collides=function(t){var i=this.data;if(!c(t,i))return!1;for(var n=[];i;){for(var r=0;r<i.children.length;r++){var e=i.children[r],a=i.leaf?this.toBBox(e):e;if(c(t,a)){if(i.leaf||m(t,a))return!0;n.push(e)}}i=n.pop()}return!1},r.prototype.load=function(t){if(!t||!t.length)return this;if(t.length<this._minEntries){for(var i=0;i<t.length;i++)this.insert(t[i]);return this}var n=this._build(t.slice(),0,t.length-1,0);if(this.data.children.length)if(this.data.height===n.height)this._splitRoot(this.data,n);else{if(this.data.height<n.height){var r=this.data;this.data=n,n=r}this._insert(n,this.data.height-n.height-1,!0)}else this.data=n;return this},r.prototype.insert=function(t){return t&&this._insert(t,this.data.height-1),this},r.prototype.clear=function(){return this.data=p([]),this},r.prototype.remove=function(t,i){if(!t)return this;for(var n,r,a,h=this.data,o=this.toBBox(t),s=[],l=[];h||s.length;){if(h||(h=s.pop(),r=s[s.length-1],n=l.pop(),a=!0),h.leaf){var f=e(t,h.children,i);if(-1!==f)return h.children.splice(f,1),s.push(h),this._condense(s),this}a||h.leaf||!m(h,o)?r?(n++,h=r.children[n],a=!1):h=null:(s.push(h),l.push(n),n=0,r=h,h=h.children[0])}return this},r.prototype.toBBox=function(t){return t},r.prototype.compareMinX=function(t,i){return t.minX-i.minX},r.prototype.compareMinY=function(t,i){return t.minY-i.minY},r.prototype.toJSON=function(){return this.data},r.prototype.fromJSON=function(t){return this.data=t,this},r.prototype._all=function(t,i){for(var n=[];t;)t.leaf?i.push.apply(i,t.children):n.push.apply(n,t.children),t=n.pop();return i},r.prototype._build=function(t,i,n,r){var e,h=n-i+1,o=this._maxEntries;if(h<=o)return a(e=p(t.slice(i,n+1)),this.toBBox),e;r||(r=Math.ceil(Math.log(h)/Math.log(o)),o=Math.ceil(h/Math.pow(o,r-1))),(e=p([])).leaf=!1,e.height=r;var s=Math.ceil(h/o),l=s*Math.ceil(Math.sqrt(o));d(t,i,n,l,this.compareMinX);for(var f=i;f<=n;f+=l){var u=Math.min(f+l-1,n);d(t,f,u,s,this.compareMinY);for(var m=f;m<=u;m+=s){var c=Math.min(m+s-1,u);e.children.push(this._build(t,m,c,r-1))}}return a(e,this.toBBox),e},r.prototype._chooseSubtree=function(t,i,n,r){for(;r.push(i),!i.leaf&&r.length-1!==n;){for(var e=1/0,a=1/0,h=void 0,o=0;o<i.children.length;o++){var s=i.children[o],l=f(s),u=(m=t,c=s,(Math.max(c.maxX,m.maxX)-Math.min(c.minX,m.minX))*(Math.max(c.maxY,m.maxY)-Math.min(c.minY,m.minY))-l);u<a?(a=u,e=l<e?l:e,h=s):u===a&&l<e&&(e=l,h=s)}i=h||i.children[0]}var m,c;return i},r.prototype._insert=function(t,i,n){var r=n?t:this.toBBox(t),e=[],a=this._chooseSubtree(r,this.data,i,e);for(a.children.push(t),o(a,r);i>=0&&e[i].children.length>this._maxEntries;)this._split(e,i),i--;this._adjustParentBBoxes(r,e,i)},r.prototype._split=function(t,i){var n=t[i],r=n.children.length,e=this._minEntries;this._chooseSplitAxis(n,e,r);var h=this._chooseSplitIndex(n,e,r),o=p(n.children.splice(h,n.children.length-h));o.height=n.height,o.leaf=n.leaf,a(n,this.toBBox),a(o,this.toBBox),i?t[i-1].children.push(o):this._splitRoot(n,o)},r.prototype._splitRoot=function(t,i){this.data=p([t,i]),this.data.height=t.height+1,this.data.leaf=!1,a(this.data,this.toBBox)},r.prototype._chooseSplitIndex=function(t,i,n){for(var r,e,a,o,s,l,u,m=1/0,c=1/0,p=i;p<=n-i;p++){var d=h(t,0,p,this.toBBox),x=h(t,p,n,this.toBBox),v=(e=d,a=x,o=void 0,s=void 0,l=void 0,u=void 0,o=Math.max(e.minX,a.minX),s=Math.max(e.minY,a.minY),l=Math.min(e.maxX,a.maxX),u=Math.min(e.maxY,a.maxY),Math.max(0,l-o)*Math.max(0,u-s)),M=f(d)+f(x);v<m?(m=v,r=p,c=M<c?M:c):v===m&&M<c&&(c=M,r=p)}return r||n-i},r.prototype._chooseSplitAxis=function(t,i,n){var r=t.leaf?this.compareMinX:s,e=t.leaf?this.compareMinY:l;this._allDistMargin(t,i,n,r)<this._allDistMargin(t,i,n,e)&&t.children.sort(r)},r.prototype._allDistMargin=function(t,i,n,r){t.children.sort(r);for(var e=this.toBBox,a=h(t,0,i,e),s=h(t,n-i,n,e),l=u(a)+u(s),f=i;f<n-i;f++){var m=t.children[f];o(a,t.leaf?e(m):m),l+=u(a)}for(var c=n-i-1;c>=i;c--){var p=t.children[c];o(s,t.leaf?e(p):p),l+=u(s)}return l},r.prototype._adjustParentBBoxes=function(t,i,n){for(var r=n;r>=0;r--)o(i[r],t)},r.prototype._condense=function(t){for(var i=t.length-1,n=void 0;i>=0;i--)0===t[i].children.length?i>0?(n=t[i-1].children).splice(n.indexOf(t[i]),1):this.clear():a(t[i],this.toBBox)},r});\n","// The module cache\nvar __webpack_module_cache__ = {};\n\n// The require function\nfunction __webpack_require__(moduleId) {\n\t// Check if module is in cache\n\tvar cachedModule = __webpack_module_cache__[moduleId];\n\tif (cachedModule !== undefined) {\n\t\treturn cachedModule.exports;\n\t}\n\t// Create a new module (and put it into the cache)\n\tvar module = __webpack_module_cache__[moduleId] = {\n\t\t// no module.id needed\n\t\t// no module.loaded needed\n\t\texports: {}\n\t};\n\n\t// Execute the module function\n\t__webpack_modules__[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n\t// Return the exports of the module\n\treturn module.exports;\n}\n\n","// define getter functions for harmony exports\n__webpack_require__.d = function(exports, definition) {\n\tfor(var key in definition) {\n\t\tif(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {\n\t\t\tObject.defineProperty(exports, key, { enumerable: true, get: definition[key] });\n\t\t}\n\t}\n};","__webpack_require__.o = function(obj, prop) { return Object.prototype.hasOwnProperty.call(obj, prop); }","/**\n * @module ol/events/Event\n */\n/**\n * @classdesc\n * Stripped down implementation of the W3C DOM Level 2 Event interface.\n * See https://www.w3.org/TR/DOM-Level-2-Events/events.html#Events-interface.\n *\n * This implementation only provides `type` and `target` properties, and\n * `stopPropagation` and `preventDefault` methods. It is meant as base class\n * for higher level events defined in the library, and works with\n * {@link module:ol/events/Target~Target}.\n */\nvar BaseEvent = /** @class */ (function () {\n /**\n * @param {string} type Type.\n */\n function BaseEvent(type) {\n /**\n * @type {boolean}\n */\n this.propagationStopped;\n /**\n * @type {boolean}\n */\n this.defaultPrevented;\n /**\n * The event type.\n * @type {string}\n * @api\n */\n this.type = type;\n /**\n * The event target.\n * @type {Object}\n * @api\n */\n this.target = null;\n }\n /**\n * Prevent default. This means that no emulated `click`, `singleclick` or `doubleclick` events\n * will be fired.\n * @api\n */\n BaseEvent.prototype.preventDefault = function () {\n this.defaultPrevented = true;\n };\n /**\n * Stop event propagation.\n * @api\n */\n BaseEvent.prototype.stopPropagation = function () {\n this.propagationStopped = true;\n };\n return BaseEvent;\n}());\n/**\n * @param {Event|import(\"./Event.js\").default} evt Event\n */\nexport function stopPropagation(evt) {\n evt.stopPropagation();\n}\n/**\n * @param {Event|import(\"./Event.js\").default} evt Event\n */\nexport function preventDefault(evt) {\n evt.preventDefault();\n}\nexport default BaseEvent;\n//# sourceMappingURL=Event.js.map","/**\n * @module ol/ObjectEventType\n */\n/**\n * @enum {string}\n */\nexport default {\n /**\n * Triggered when a property is changed.\n * @event module:ol/Object.ObjectEvent#propertychange\n * @api\n */\n PROPERTYCHANGE: 'propertychange',\n};\n/**\n * @typedef {'propertychange'} Types\n */\n//# sourceMappingURL=ObjectEventType.js.map","/**\n * @module ol/Disposable\n */\n/**\n * @classdesc\n * Objects that need to clean up after themselves.\n */\nvar Disposable = /** @class */ (function () {\n function Disposable() {\n /**\n * The object has already been disposed.\n * @type {boolean}\n * @protected\n */\n this.disposed = false;\n }\n /**\n * Clean up.\n */\n Disposable.prototype.dispose = function () {\n if (!this.disposed) {\n this.disposed = true;\n this.disposeInternal();\n }\n };\n /**\n * Extension point for disposable objects.\n * @protected\n */\n Disposable.prototype.disposeInternal = function () { };\n return Disposable;\n}());\nexport default Disposable;\n//# sourceMappingURL=Disposable.js.map","/**\n * @module ol/array\n */\n/**\n * Performs a binary search on the provided sorted list and returns the index of the item if found. If it can't be found it'll return -1.\n * https://github.com/darkskyapp/binary-search\n *\n * @param {Array<*>} haystack Items to search through.\n * @param {*} needle The item to look for.\n * @param {Function} [opt_comparator] Comparator function.\n * @return {number} The index of the item if found, -1 if not.\n */\nexport function binarySearch(haystack, needle, opt_comparator) {\n var mid, cmp;\n var comparator = opt_comparator || numberSafeCompareFunction;\n var low = 0;\n var high = haystack.length;\n var found = false;\n while (low < high) {\n /* Note that \"(low + high) >>> 1\" may overflow, and results in a typecast\n * to double (which gives the wrong results). */\n mid = low + ((high - low) >> 1);\n cmp = +comparator(haystack[mid], needle);\n if (cmp < 0.0) {\n /* Too low. */\n low = mid + 1;\n }\n else {\n /* Key found or too high */\n high = mid;\n found = !cmp;\n }\n }\n /* Key not found. */\n return found ? low : ~low;\n}\n/**\n * Compare function for array sort that is safe for numbers.\n * @param {*} a The first object to be compared.\n * @param {*} b The second object to be compared.\n * @return {number} A negative number, zero, or a positive number as the first\n * argument is less than, equal to, or greater than the second.\n */\nexport function numberSafeCompareFunction(a, b) {\n return a > b ? 1 : a < b ? -1 : 0;\n}\n/**\n * Whether the array contains the given object.\n * @param {Array<*>} arr The array to test for the presence of the element.\n * @param {*} obj The object for which to test.\n * @return {boolean} The object is in the array.\n */\nexport function includes(arr, obj) {\n return arr.indexOf(obj) >= 0;\n}\n/**\n * {@link module:ol/tilegrid/TileGrid~TileGrid#getZForResolution} can use a function\n * of this type to determine which nearest resolution to use.\n *\n * This function takes a `{number}` representing a value between two array entries,\n * a `{number}` representing the value of the nearest higher entry and\n * a `{number}` representing the value of the nearest lower entry\n * as arguments and returns a `{number}`. If a negative number or zero is returned\n * the lower value will be used, if a positive number is returned the higher value\n * will be used.\n * @typedef {function(number, number, number): number} NearestDirectionFunction\n * @api\n */\n/**\n * @param {Array<number>} arr Array in descending order.\n * @param {number} target Target.\n * @param {number|NearestDirectionFunction} direction\n * 0 means return the nearest,\n * > 0 means return the largest nearest,\n * < 0 means return the smallest nearest.\n * @return {number} Index.\n */\nexport function linearFindNearest(arr, target, direction) {\n var n = arr.length;\n if (arr[0] <= target) {\n return 0;\n }\n else if (target <= arr[n - 1]) {\n return n - 1;\n }\n else {\n var i = void 0;\n if (direction > 0) {\n for (i = 1; i < n; ++i) {\n if (arr[i] < target) {\n return i - 1;\n }\n }\n }\n else if (direction < 0) {\n for (i = 1; i < n; ++i) {\n if (arr[i] <= target) {\n return i;\n }\n }\n }\n else {\n for (i = 1; i < n; ++i) {\n if (arr[i] == target) {\n return i;\n }\n else if (arr[i] < target) {\n if (typeof direction === 'function') {\n if (direction(target, arr[i - 1], arr[i]) > 0) {\n return i - 1;\n }\n else {\n return i;\n }\n }\n else if (arr[i - 1] - target < target - arr[i]) {\n return i - 1;\n }\n else {\n return i;\n }\n }\n }\n }\n return n - 1;\n }\n}\n/**\n * @param {Array<*>} arr Array.\n * @param {number} begin Begin index.\n * @param {number} end End index.\n */\nexport function reverseSubArray(arr, begin, end) {\n while (begin < end) {\n var tmp = arr[begin];\n arr[begin] = arr[end];\n arr[end] = tmp;\n ++begin;\n --end;\n }\n}\n/**\n * @param {Array<VALUE>} arr The array to modify.\n * @param {!Array<VALUE>|VALUE} data The elements or arrays of elements to add to arr.\n * @template VALUE\n */\nexport function extend(arr, data) {\n var extension = Array.isArray(data) ? data : [data];\n var length = extension.length;\n for (var i = 0; i < length; i++) {\n arr[arr.length] = extension[i];\n }\n}\n/**\n * @param {Array<VALUE>} arr The array to modify.\n * @param {VALUE} obj The element to remove.\n * @template VALUE\n * @return {boolean} If the element was removed.\n */\nexport function remove(arr, obj) {\n var i = arr.indexOf(obj);\n var found = i > -1;\n if (found) {\n arr.splice(i, 1);\n }\n return found;\n}\n/**\n * @param {Array<VALUE>} arr The array to search in.\n * @param {function(VALUE, number, ?) : boolean} func The function to compare.\n * @template VALUE\n * @return {VALUE|null} The element found or null.\n */\nexport function find(arr, func) {\n var length = arr.length >>> 0;\n var value;\n for (var i = 0; i < length; i++) {\n value = arr[i];\n if (func(value, i, arr)) {\n return value;\n }\n }\n return null;\n}\n/**\n * @param {Array|Uint8ClampedArray} arr1 The first array to compare.\n * @param {Array|Uint8ClampedArray} arr2 The second array to compare.\n * @return {boolean} Whether the two arrays are equal.\n */\nexport function equals(arr1, arr2) {\n var len1 = arr1.length;\n if (len1 !== arr2.length) {\n return false;\n }\n for (var i = 0; i < len1; i++) {\n if (arr1[i] !== arr2[i]) {\n return false;\n }\n }\n return true;\n}\n/**\n * Sort the passed array such that the relative order of equal elements is preserved.\n * See https://en.wikipedia.org/wiki/Sorting_algorithm#Stability for details.\n * @param {Array<*>} arr The array to sort (modifies original).\n * @param {!function(*, *): number} compareFnc Comparison function.\n * @api\n */\nexport function stableSort(arr, compareFnc) {\n var length = arr.length;\n var tmp = Array(arr.length);\n var i;\n for (i = 0; i < length; i++) {\n tmp[i] = { index: i, value: arr[i] };\n }\n tmp.sort(function (a, b) {\n return compareFnc(a.value, b.value) || a.index - b.index;\n });\n for (i = 0; i < arr.length; i++) {\n arr[i] = tmp[i].value;\n }\n}\n/**\n * @param {Array<*>} arr The array to search in.\n * @param {Function} func Comparison function.\n * @return {number} Return index.\n */\nexport function findIndex(arr, func) {\n var index;\n var found = !arr.every(function (el, idx) {\n index = idx;\n return !func(el, idx, arr);\n });\n return found ? index : -1;\n}\n/**\n * @param {Array<*>} arr The array to test.\n * @param {Function} [opt_func] Comparison function.\n * @param {boolean} [opt_strict] Strictly sorted (default false).\n * @return {boolean} Return index.\n */\nexport function isSorted(arr, opt_func, opt_strict) {\n var compare = opt_func || numberSafeCompareFunction;\n return arr.every(function (currentVal, index) {\n if (index === 0) {\n return true;\n }\n var res = compare(arr[index - 1], currentVal);\n return !(res > 0 || (opt_strict && res === 0));\n });\n}\n//# sourceMappingURL=array.js.map","/**\n * @module ol/functions\n */\nimport { equals as arrayEquals } from './array.js';\n/**\n * Always returns true.\n * @return {boolean} true.\n */\nexport function TRUE() {\n return true;\n}\n/**\n * Always returns false.\n * @return {boolean} false.\n */\nexport function FALSE() {\n return false;\n}\n/**\n * A reusable function, used e.g. as a default for callbacks.\n *\n * @return {void} Nothing.\n */\nexport function VOID() { }\n/**\n * Wrap a function in another function that remembers the last return. If the\n * returned function is called twice in a row with the same arguments and the same\n * this object, it will return the value from the first call in the second call.\n *\n * @param {function(...any): ReturnType} fn The function to memoize.\n * @return {function(...any): ReturnType} The memoized function.\n * @template ReturnType\n */\nexport function memoizeOne(fn) {\n var called = false;\n /** @type {ReturnType} */\n var lastResult;\n /** @type {Array<any>} */\n var lastArgs;\n var lastThis;\n return function () {\n var nextArgs = Array.prototype.slice.call(arguments);\n if (!called || this !== lastThis || !arrayEquals(nextArgs, lastArgs)) {\n called = true;\n lastThis = this;\n lastArgs = nextArgs;\n lastResult = fn.apply(this, arguments);\n }\n return lastResult;\n };\n}\n//# sourceMappingURL=functions.js.map","/**\n * @module ol/obj\n */\n/**\n * Polyfill for Object.assign(). Assigns enumerable and own properties from\n * one or more source objects to a target object.\n * See https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/Object/assign.\n *\n * @param {!Object} target The target object.\n * @param {...Object} var_sources The source object(s).\n * @return {!Object} The modified target object.\n */\nexport var assign = typeof Object.assign === 'function'\n ? Object.assign\n : function (target, var_sources) {\n if (target === undefined || target === null) {\n throw new TypeError('Cannot convert undefined or null to object');\n }\n var output = Object(target);\n for (var i = 1, ii = arguments.length; i < ii; ++i) {\n var source = arguments[i];\n if (source !== undefined && source !== null) {\n for (var key in source) {\n if (source.hasOwnProperty(key)) {\n output[key] = source[key];\n }\n }\n }\n }\n return output;\n };\n/**\n * Removes all properties from an object.\n * @param {Object} object The object to clear.\n */\nexport function clear(object) {\n for (var property in object) {\n delete object[property];\n }\n}\n/**\n * Polyfill for Object.values(). Get an array of property values from an object.\n * See https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/values\n *\n * @param {!Object<K,V>} object The object from which to get the values.\n * @return {!Array<V>} The property values.\n * @template K,V\n */\nexport var getValues = typeof Object.values === 'function'\n ? Object.values\n : function (object) {\n var values = [];\n for (var property in object) {\n values.push(object[property]);\n }\n return values;\n };\n/**\n * Determine if an object has any properties.\n * @param {Object} object The object to check.\n * @return {boolean} The object is empty.\n */\nexport function isEmpty(object) {\n var property;\n for (property in object) {\n return false;\n }\n return !property;\n}\n//# sourceMappingURL=obj.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/events/Target\n */\nimport Disposable from '../Disposable.js';\nimport Event from './Event.js';\nimport { VOID } from '../functions.js';\nimport { clear } from '../obj.js';\n/**\n * @typedef {EventTarget|Target} EventTargetLike\n */\n/**\n * @classdesc\n * A simplified implementation of the W3C DOM Level 2 EventTarget interface.\n * See https://www.w3.org/TR/2000/REC-DOM-Level-2-Events-20001113/events.html#Events-EventTarget.\n *\n * There are two important simplifications compared to the specification:\n *\n * 1. The handling of `useCapture` in `addEventListener` and\n * `removeEventListener`. There is no real capture model.\n * 2. The handling of `stopPropagation` and `preventDefault` on `dispatchEvent`.\n * There is no event target hierarchy. When a listener calls\n * `stopPropagation` or `preventDefault` on an event object, it means that no\n * more listeners after this one will be called. Same as when the listener\n * returns false.\n */\nvar Target = /** @class */ (function (_super) {\n __extends(Target, _super);\n /**\n * @param {*} [opt_target] Default event target for dispatched events.\n */\n function Target(opt_target) {\n var _this = _super.call(this) || this;\n /**\n * @private\n * @type {*}\n */\n _this.eventTarget_ = opt_target;\n /**\n * @private\n * @type {Object<string, number>}\n */\n _this.pendingRemovals_ = null;\n /**\n * @private\n * @type {Object<string, number>}\n */\n _this.dispatching_ = null;\n /**\n * @private\n * @type {Object<string, Array<import(\"../events.js\").Listener>>}\n */\n _this.listeners_ = null;\n return _this;\n }\n /**\n * @param {string} type Type.\n * @param {import(\"../events.js\").Listener} listener Listener.\n */\n Target.prototype.addEventListener = function (type, listener) {\n if (!type || !listener) {\n return;\n }\n var listeners = this.listeners_ || (this.listeners_ = {});\n var listenersForType = listeners[type] || (listeners[type] = []);\n if (listenersForType.indexOf(listener) === -1) {\n listenersForType.push(listener);\n }\n };\n /**\n * Dispatches an event and calls all listeners listening for events\n * of this type. The event parameter can either be a string or an\n * Object with a `type` property.\n *\n * @param {import(\"./Event.js\").default|string} event Event object.\n * @return {boolean|undefined} `false` if anyone called preventDefault on the\n * event object or if any of the listeners returned false.\n * @api\n */\n Target.prototype.dispatchEvent = function (event) {\n /** @type {import(\"./Event.js\").default|Event} */\n var evt = typeof event === 'string' ? new Event(event) : event;\n var type = evt.type;\n if (!evt.target) {\n evt.target = this.eventTarget_ || this;\n }\n var listeners = this.listeners_ && this.listeners_[type];\n var propagate;\n if (listeners) {\n var dispatching = this.dispatching_ || (this.dispatching_ = {});\n var pendingRemovals = this.pendingRemovals_ || (this.pendingRemovals_ = {});\n if (!(type in dispatching)) {\n dispatching[type] = 0;\n pendingRemovals[type] = 0;\n }\n ++dispatching[type];\n for (var i = 0, ii = listeners.length; i < ii; ++i) {\n if ('handleEvent' in listeners[i]) {\n propagate = /** @type {import(\"../events.js\").ListenerObject} */ (listeners[i]).handleEvent(evt);\n }\n else {\n propagate = /** @type {import(\"../events.js\").ListenerFunction} */ (listeners[i]).call(this, evt);\n }\n if (propagate === false || evt.propagationStopped) {\n propagate = false;\n break;\n }\n }\n --dispatching[type];\n if (dispatching[type] === 0) {\n var pr = pendingRemovals[type];\n delete pendingRemovals[type];\n while (pr--) {\n this.removeEventListener(type, VOID);\n }\n delete dispatching[type];\n }\n return propagate;\n }\n };\n /**\n * Clean up.\n */\n Target.prototype.disposeInternal = function () {\n this.listeners_ && clear(this.listeners_);\n };\n /**\n * Get the listeners for a specified event type. Listeners are returned in the\n * order that they will be called in.\n *\n * @param {string} type Type.\n * @return {Array<import(\"../events.js\").Listener>|undefined} Listeners.\n */\n Target.prototype.getListeners = function (type) {\n return (this.listeners_ && this.listeners_[type]) || undefined;\n };\n /**\n * @param {string} [opt_type] Type. If not provided,\n * `true` will be returned if this event target has any listeners.\n * @return {boolean} Has listeners.\n */\n Target.prototype.hasListener = function (opt_type) {\n if (!this.listeners_) {\n return false;\n }\n return opt_type\n ? opt_type in this.listeners_\n : Object.keys(this.listeners_).length > 0;\n };\n /**\n * @param {string} type Type.\n * @param {import(\"../events.js\").Listener} listener Listener.\n */\n Target.prototype.removeEventListener = function (type, listener) {\n var listeners = this.listeners_ && this.listeners_[type];\n if (listeners) {\n var index = listeners.indexOf(listener);\n if (index !== -1) {\n if (this.pendingRemovals_ && type in this.pendingRemovals_) {\n // make listener a no-op, and remove later in #dispatchEvent()\n listeners[index] = VOID;\n ++this.pendingRemovals_[type];\n }\n else {\n listeners.splice(index, 1);\n if (listeners.length === 0) {\n delete this.listeners_[type];\n }\n }\n }\n }\n };\n return Target;\n}(Disposable));\nexport default Target;\n//# sourceMappingURL=Target.js.map","/**\n * @module ol/events/EventType\n */\n/**\n * @enum {string}\n * @const\n */\nexport default {\n /**\n * Generic change event. Triggered when the revision counter is increased.\n * @event module:ol/events/Event~BaseEvent#change\n * @api\n */\n CHANGE: 'change',\n /**\n * Generic error event. Triggered when an error occurs.\n * @event module:ol/events/Event~BaseEvent#error\n * @api\n */\n ERROR: 'error',\n BLUR: 'blur',\n CLEAR: 'clear',\n CONTEXTMENU: 'contextmenu',\n CLICK: 'click',\n DBLCLICK: 'dblclick',\n DRAGENTER: 'dragenter',\n DRAGOVER: 'dragover',\n DROP: 'drop',\n FOCUS: 'focus',\n KEYDOWN: 'keydown',\n KEYPRESS: 'keypress',\n LOAD: 'load',\n RESIZE: 'resize',\n TOUCHMOVE: 'touchmove',\n WHEEL: 'wheel',\n};\n//# sourceMappingURL=EventType.js.map","/**\n * @module ol/events\n */\nimport { clear } from './obj.js';\n/**\n * Key to use with {@link module:ol/Observable~Observable#unByKey}.\n * @typedef {Object} EventsKey\n * @property {ListenerFunction} listener Listener.\n * @property {import(\"./events/Target.js\").EventTargetLike} target Target.\n * @property {string} type Type.\n * @api\n */\n/**\n * Listener function. This function is called with an event object as argument.\n * When the function returns `false`, event propagation will stop.\n *\n * @typedef {function((Event|import(\"./events/Event.js\").default)): (void|boolean)} ListenerFunction\n * @api\n */\n/**\n * @typedef {Object} ListenerObject\n * @property {ListenerFunction} handleEvent HandleEvent listener function.\n */\n/**\n * @typedef {ListenerFunction|ListenerObject} Listener\n */\n/**\n * Registers an event listener on an event target. Inspired by\n * https://google.github.io/closure-library/api/source/closure/goog/events/events.js.src.html\n *\n * This function efficiently binds a `listener` to a `this` object, and returns\n * a key for use with {@link module:ol/events.unlistenByKey}.\n *\n * @param {import(\"./events/Target.js\").EventTargetLike} target Event target.\n * @param {string} type Event type.\n * @param {ListenerFunction} listener Listener.\n * @param {Object} [opt_this] Object referenced by the `this` keyword in the\n * listener. Default is the `target`.\n * @param {boolean} [opt_once] If true, add the listener as one-off listener.\n * @return {EventsKey} Unique key for the listener.\n */\nexport function listen(target, type, listener, opt_this, opt_once) {\n if (opt_this && opt_this !== target) {\n listener = listener.bind(opt_this);\n }\n if (opt_once) {\n var originalListener_1 = listener;\n listener = function () {\n target.removeEventListener(type, listener);\n originalListener_1.apply(this, arguments);\n };\n }\n var eventsKey = {\n target: target,\n type: type,\n listener: listener,\n };\n target.addEventListener(type, listener);\n return eventsKey;\n}\n/**\n * Registers a one-off event listener on an event target. Inspired by\n * https://google.github.io/closure-library/api/source/closure/goog/events/events.js.src.html\n *\n * This function efficiently binds a `listener` as self-unregistering listener\n * to a `this` object, and returns a key for use with\n * {@link module:ol/events.unlistenByKey} in case the listener needs to be\n * unregistered before it is called.\n *\n * When {@link module:ol/events.listen} is called with the same arguments after this\n * function, the self-unregistering listener will be turned into a permanent\n * listener.\n *\n * @param {import(\"./events/Target.js\").EventTargetLike} target Event target.\n * @param {string} type Event type.\n * @param {ListenerFunction} listener Listener.\n * @param {Object} [opt_this] Object referenced by the `this` keyword in the\n * listener. Default is the `target`.\n * @return {EventsKey} Key for unlistenByKey.\n */\nexport function listenOnce(target, type, listener, opt_this) {\n return listen(target, type, listener, opt_this, true);\n}\n/**\n * Unregisters event listeners on an event target. Inspired by\n * https://google.github.io/closure-library/api/source/closure/goog/events/events.js.src.html\n *\n * The argument passed to this function is the key returned from\n * {@link module:ol/events.listen} or {@link module:ol/events.listenOnce}.\n *\n * @param {EventsKey} key The key.\n */\nexport function unlistenByKey(key) {\n if (key && key.target) {\n key.target.removeEventListener(key.type, key.listener);\n clear(key);\n }\n}\n//# sourceMappingURL=events.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/Observable\n */\nimport EventTarget from './events/Target.js';\nimport EventType from './events/EventType.js';\nimport { listen, listenOnce, unlistenByKey } from './events.js';\n/***\n * @template {string} Type\n * @template {Event|import(\"./events/Event.js\").default} EventClass\n * @template Return\n * @typedef {(type: Type, listener: (event: EventClass) => ?) => Return} OnSignature\n */\n/***\n * @template {string} Type\n * @template Return\n * @typedef {(type: Type[], listener: (event: Event|import(\"./events/Event\").default) => ?) => Return extends void ? void : Return[]} CombinedOnSignature\n */\n/**\n * @typedef {'change'|'error'} EventTypes\n */\n/***\n * @template Return\n * @typedef {OnSignature<EventTypes, import(\"./events/Event.js\").default, Return> & CombinedOnSignature<EventTypes, Return>} ObservableOnSignature\n */\n/**\n * @classdesc\n * Abstract base class; normally only used for creating subclasses and not\n * instantiated in apps.\n * An event target providing convenient methods for listener registration\n * and unregistration. A generic `change` event is always available through\n * {@link module:ol/Observable~Observable#changed}.\n *\n * @fires import(\"./events/Event.js\").default\n * @api\n */\nvar Observable = /** @class */ (function (_super) {\n __extends(Observable, _super);\n function Observable() {\n var _this = _super.call(this) || this;\n _this.on =\n /** @type {ObservableOnSignature<import(\"./events\").EventsKey>} */ (_this.onInternal);\n _this.once =\n /** @type {ObservableOnSignature<import(\"./events\").EventsKey>} */ (_this.onceInternal);\n _this.un = /** @type {ObservableOnSignature<void>} */ (_this.unInternal);\n /**\n * @private\n * @type {number}\n */\n _this.revision_ = 0;\n return _this;\n }\n /**\n * Increases the revision counter and dispatches a 'change' event.\n * @api\n */\n Observable.prototype.changed = function () {\n ++this.revision_;\n this.dispatchEvent(EventType.CHANGE);\n };\n /**\n * Get the version number for this object. Each time the object is modified,\n * its version number will be incremented.\n * @return {number} Revision.\n * @api\n */\n Observable.prototype.getRevision = function () {\n return this.revision_;\n };\n /**\n * @param {string|Array<string>} type Type.\n * @param {function((Event|import(\"./events/Event\").default)): ?} listener Listener.\n * @return {import(\"./events.js\").EventsKey|Array<import(\"./events.js\").EventsKey>} Event key.\n * @protected\n */\n Observable.prototype.onInternal = function (type, listener) {\n if (Array.isArray(type)) {\n var len = type.length;\n var keys = new Array(len);\n for (var i = 0; i < len; ++i) {\n keys[i] = listen(this, type[i], listener);\n }\n return keys;\n }\n else {\n return listen(this, /** @type {string} */ (type), listener);\n }\n };\n /**\n * @param {string|Array<string>} type Type.\n * @param {function((Event|import(\"./events/Event\").default)): ?} listener Listener.\n * @return {import(\"./events.js\").EventsKey|Array<import(\"./events.js\").EventsKey>} Event key.\n * @protected\n */\n Observable.prototype.onceInternal = function (type, listener) {\n var key;\n if (Array.isArray(type)) {\n var len = type.length;\n key = new Array(len);\n for (var i = 0; i < len; ++i) {\n key[i] = listenOnce(this, type[i], listener);\n }\n }\n else {\n key = listenOnce(this, /** @type {string} */ (type), listener);\n }\n /** @type {Object} */ (listener).ol_key = key;\n return key;\n };\n /**\n * Unlisten for a certain type of event.\n * @param {string|Array<string>} type Type.\n * @param {function((Event|import(\"./events/Event\").default)): ?} listener Listener.\n * @protected\n */\n Observable.prototype.unInternal = function (type, listener) {\n var key = /** @type {Object} */ (listener).ol_key;\n if (key) {\n unByKey(key);\n }\n else if (Array.isArray(type)) {\n for (var i = 0, ii = type.length; i < ii; ++i) {\n this.removeEventListener(type[i], listener);\n }\n }\n else {\n this.removeEventListener(type, listener);\n }\n };\n return Observable;\n}(EventTarget));\n/**\n * Listen for a certain type of event.\n * @function\n * @param {string|Array<string>} type The event type or array of event types.\n * @param {function((Event|import(\"./events/Event\").default)): ?} listener The listener function.\n * @return {import(\"./events.js\").EventsKey|Array<import(\"./events.js\").EventsKey>} Unique key for the listener. If\n * called with an array of event types as the first argument, the return\n * will be an array of keys.\n * @api\n */\nObservable.prototype.on;\n/**\n * Listen once for a certain type of event.\n * @function\n * @param {string|Array<string>} type The event type or array of event types.\n * @param {function((Event|import(\"./events/Event\").default)): ?} listener The listener function.\n * @return {import(\"./events.js\").EventsKey|Array<import(\"./events.js\").EventsKey>} Unique key for the listener. If\n * called with an array of event types as the first argument, the return\n * will be an array of keys.\n * @api\n */\nObservable.prototype.once;\n/**\n * Unlisten for a certain type of event.\n * @function\n * @param {string|Array<string>} type The event type or array of event types.\n * @param {function((Event|import(\"./events/Event\").default)): ?} listener The listener function.\n * @api\n */\nObservable.prototype.un;\n/**\n * Removes an event listener using the key returned by `on()` or `once()`.\n * @param {import(\"./events.js\").EventsKey|Array<import(\"./events.js\").EventsKey>} key The key returned by `on()`\n * or `once()` (or an array of keys).\n * @api\n */\nexport function unByKey(key) {\n if (Array.isArray(key)) {\n for (var i = 0, ii = key.length; i < ii; ++i) {\n unlistenByKey(key[i]);\n }\n }\n else {\n unlistenByKey(/** @type {import(\"./events.js\").EventsKey} */ (key));\n }\n}\nexport default Observable;\n//# sourceMappingURL=Observable.js.map","/**\n * @module ol/util\n */\n/**\n * @return {?} Any return.\n */\nexport function abstract() {\n return /** @type {?} */ ((function () {\n throw new Error('Unimplemented abstract method.');\n })());\n}\n/**\n * Counter for getUid.\n * @type {number}\n * @private\n */\nvar uidCounter_ = 0;\n/**\n * Gets a unique ID for an object. This mutates the object so that further calls\n * with the same object as a parameter returns the same value. Unique IDs are generated\n * as a strictly increasing sequence. Adapted from goog.getUid.\n *\n * @param {Object} obj The object to get the unique ID for.\n * @return {string} The unique ID for the object.\n * @api\n */\nexport function getUid(obj) {\n return obj.ol_uid || (obj.ol_uid = String(++uidCounter_));\n}\n/**\n * OpenLayers version.\n * @type {string}\n */\nexport var VERSION = '6.9.0';\n//# sourceMappingURL=util.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/Object\n */\nimport Event from './events/Event.js';\nimport ObjectEventType from './ObjectEventType.js';\nimport Observable from './Observable.js';\nimport { assign, isEmpty } from './obj.js';\nimport { getUid } from './util.js';\n/**\n * @classdesc\n * Events emitted by {@link module:ol/Object~BaseObject} instances are instances of this type.\n */\nvar ObjectEvent = /** @class */ (function (_super) {\n __extends(ObjectEvent, _super);\n /**\n * @param {string} type The event type.\n * @param {string} key The property name.\n * @param {*} oldValue The old value for `key`.\n */\n function ObjectEvent(type, key, oldValue) {\n var _this = _super.call(this, type) || this;\n /**\n * The name of the property whose value is changing.\n * @type {string}\n * @api\n */\n _this.key = key;\n /**\n * The old value. To get the new value use `e.target.get(e.key)` where\n * `e` is the event object.\n * @type {*}\n * @api\n */\n _this.oldValue = oldValue;\n return _this;\n }\n return ObjectEvent;\n}(Event));\nexport { ObjectEvent };\n/***\n * @template Return\n * @typedef {import(\"./Observable\").OnSignature<import(\"./Observable\").EventTypes, import(\"./events/Event.js\").default, Return> &\n * import(\"./Observable\").OnSignature<import(\"./ObjectEventType\").Types, ObjectEvent, Return> &\n * import(\"./Observable\").CombinedOnSignature<import(\"./Observable\").EventTypes|import(\"./ObjectEventType\").Types, Return>} ObjectOnSignature\n */\n/**\n * @classdesc\n * Abstract base class; normally only used for creating subclasses and not\n * instantiated in apps.\n * Most non-trivial classes inherit from this.\n *\n * This extends {@link module:ol/Observable} with observable\n * properties, where each property is observable as well as the object as a\n * whole.\n *\n * Classes that inherit from this have pre-defined properties, to which you can\n * add your owns. The pre-defined properties are listed in this documentation as\n * 'Observable Properties', and have their own accessors; for example,\n * {@link module:ol/Map~Map} has a `target` property, accessed with\n * `getTarget()` and changed with `setTarget()`. Not all properties are however\n * settable. There are also general-purpose accessors `get()` and `set()`. For\n * example, `get('target')` is equivalent to `getTarget()`.\n *\n * The `set` accessors trigger a change event, and you can monitor this by\n * registering a listener. For example, {@link module:ol/View~View} has a\n * `center` property, so `view.on('change:center', function(evt) {...});` would\n * call the function whenever the value of the center property changes. Within\n * the function, `evt.target` would be the view, so `evt.target.getCenter()`\n * would return the new center.\n *\n * You can add your own observable properties with\n * `object.set('prop', 'value')`, and retrieve that with `object.get('prop')`.\n * You can listen for changes on that property value with\n * `object.on('change:prop', listener)`. You can get a list of all\n * properties with {@link module:ol/Object~BaseObject#getProperties}.\n *\n * Note that the observable properties are separate from standard JS properties.\n * You can, for example, give your map object a title with\n * `map.title='New title'` and with `map.set('title', 'Another title')`. The\n * first will be a `hasOwnProperty`; the second will appear in\n * `getProperties()`. Only the second is observable.\n *\n * Properties can be deleted by using the unset method. E.g.\n * object.unset('foo').\n *\n * @fires ObjectEvent\n * @api\n */\nvar BaseObject = /** @class */ (function (_super) {\n __extends(BaseObject, _super);\n /**\n * @param {Object<string, *>} [opt_values] An object with key-value pairs.\n */\n function BaseObject(opt_values) {\n var _this = _super.call(this) || this;\n /***\n * @type {ObjectOnSignature<import(\"./events\").EventsKey>}\n */\n _this.on;\n /***\n * @type {ObjectOnSignature<import(\"./events\").EventsKey>}\n */\n _this.once;\n /***\n * @type {ObjectOnSignature<void>}\n */\n _this.un;\n // Call {@link module:ol/util.getUid} to ensure that the order of objects' ids is\n // the same as the order in which they were created. This also helps to\n // ensure that object properties are always added in the same order, which\n // helps many JavaScript engines generate faster code.\n getUid(_this);\n /**\n * @private\n * @type {Object<string, *>}\n */\n _this.values_ = null;\n if (opt_values !== undefined) {\n _this.setProperties(opt_values);\n }\n return _this;\n }\n /**\n * Gets a value.\n * @param {string} key Key name.\n * @return {*} Value.\n * @api\n */\n BaseObject.prototype.get = function (key) {\n var value;\n if (this.values_ && this.values_.hasOwnProperty(key)) {\n value = this.values_[key];\n }\n return value;\n };\n /**\n * Get a list of object property names.\n * @return {Array<string>} List of property names.\n * @api\n */\n BaseObject.prototype.getKeys = function () {\n return (this.values_ && Object.keys(this.values_)) || [];\n };\n /**\n * Get an object of all property names and values.\n * @return {Object<string, *>} Object.\n * @api\n */\n BaseObject.prototype.getProperties = function () {\n return (this.values_ && assign({}, this.values_)) || {};\n };\n /**\n * @return {boolean} The object has properties.\n */\n BaseObject.prototype.hasProperties = function () {\n return !!this.values_;\n };\n /**\n * @param {string} key Key name.\n * @param {*} oldValue Old value.\n */\n BaseObject.prototype.notify = function (key, oldValue) {\n var eventType;\n eventType = \"change:\" + key;\n this.dispatchEvent(new ObjectEvent(eventType, key, oldValue));\n eventType = ObjectEventType.PROPERTYCHANGE;\n this.dispatchEvent(new ObjectEvent(eventType, key, oldValue));\n };\n /**\n * @param {string} key Key name.\n * @param {import(\"./events.js\").Listener} listener Listener.\n */\n BaseObject.prototype.addChangeListener = function (key, listener) {\n this.addEventListener(\"change:\" + key, listener);\n };\n /**\n * @param {string} key Key name.\n * @param {import(\"./events.js\").Listener} listener Listener.\n */\n BaseObject.prototype.removeChangeListener = function (key, listener) {\n this.removeEventListener(\"change:\" + key, listener);\n };\n /**\n * Sets a value.\n * @param {string} key Key name.\n * @param {*} value Value.\n * @param {boolean} [opt_silent] Update without triggering an event.\n * @api\n */\n BaseObject.prototype.set = function (key, value, opt_silent) {\n var values = this.values_ || (this.values_ = {});\n if (opt_silent) {\n values[key] = value;\n }\n else {\n var oldValue = values[key];\n values[key] = value;\n if (oldValue !== value) {\n this.notify(key, oldValue);\n }\n }\n };\n /**\n * Sets a collection of key-value pairs. Note that this changes any existing\n * properties and adds new ones (it does not remove any existing properties).\n * @param {Object<string, *>} values Values.\n * @param {boolean} [opt_silent] Update without triggering an event.\n * @api\n */\n BaseObject.prototype.setProperties = function (values, opt_silent) {\n for (var key in values) {\n this.set(key, values[key], opt_silent);\n }\n };\n /**\n * Apply any properties from another object without triggering events.\n * @param {BaseObject} source The source object.\n * @protected\n */\n BaseObject.prototype.applyProperties = function (source) {\n if (!source.values_) {\n return;\n }\n assign(this.values_ || (this.values_ = {}), source.values_);\n };\n /**\n * Unsets a property.\n * @param {string} key Key name.\n * @param {boolean} [opt_silent] Unset without triggering an event.\n * @api\n */\n BaseObject.prototype.unset = function (key, opt_silent) {\n if (this.values_ && key in this.values_) {\n var oldValue = this.values_[key];\n delete this.values_[key];\n if (isEmpty(this.values_)) {\n this.values_ = null;\n }\n if (!opt_silent) {\n this.notify(key, oldValue);\n }\n }\n };\n return BaseObject;\n}(Observable));\nexport default BaseObject;\n//# sourceMappingURL=Object.js.map","/**\n * @module ol/MapEventType\n */\n/**\n * @enum {string}\n */\nexport default {\n /**\n * Triggered after a map frame is rendered.\n * @event module:ol/MapEvent~MapEvent#postrender\n * @api\n */\n POSTRENDER: 'postrender',\n /**\n * Triggered when the map starts moving.\n * @event module:ol/MapEvent~MapEvent#movestart\n * @api\n */\n MOVESTART: 'movestart',\n /**\n * Triggered after the map is moved.\n * @event module:ol/MapEvent~MapEvent#moveend\n * @api\n */\n MOVEEND: 'moveend',\n};\n/***\n * @typedef {'postrender'|'movestart'|'moveend'} Types\n */\n//# sourceMappingURL=MapEventType.js.map","/**\n * @module ol/has\n */\nvar ua = typeof navigator !== 'undefined' && typeof navigator.userAgent !== 'undefined'\n ? navigator.userAgent.toLowerCase()\n : '';\n/**\n * User agent string says we are dealing with Firefox as browser.\n * @type {boolean}\n */\nexport var FIREFOX = ua.indexOf('firefox') !== -1;\n/**\n * User agent string says we are dealing with Safari as browser.\n * @type {boolean}\n */\nexport var SAFARI = ua.indexOf('safari') !== -1 && ua.indexOf('chrom') == -1;\n/**\n * User agent string says we are dealing with a WebKit engine.\n * @type {boolean}\n */\nexport var WEBKIT = ua.indexOf('webkit') !== -1 && ua.indexOf('edge') == -1;\n/**\n * User agent string says we are dealing with a Mac as platform.\n * @type {boolean}\n */\nexport var MAC = ua.indexOf('macintosh') !== -1;\n/**\n * The ratio between physical pixels and device-independent pixels\n * (dips) on the device (`window.devicePixelRatio`).\n * @const\n * @type {number}\n * @api\n */\nexport var DEVICE_PIXEL_RATIO = typeof devicePixelRatio !== 'undefined' ? devicePixelRatio : 1;\n/**\n * The execution context is a worker with OffscreenCanvas available.\n * @const\n * @type {boolean}\n */\nexport var WORKER_OFFSCREEN_CANVAS = typeof WorkerGlobalScope !== 'undefined' &&\n typeof OffscreenCanvas !== 'undefined' &&\n self instanceof WorkerGlobalScope; //eslint-disable-line\n/**\n * Image.prototype.decode() is supported.\n * @type {boolean}\n */\nexport var IMAGE_DECODE = typeof Image !== 'undefined' && Image.prototype.decode;\n/**\n * @type {boolean}\n */\nexport var PASSIVE_EVENT_LISTENERS = (function () {\n var passive = false;\n try {\n var options = Object.defineProperty({}, 'passive', {\n get: function () {\n passive = true;\n },\n });\n window.addEventListener('_', null, options);\n window.removeEventListener('_', null, options);\n }\n catch (error) {\n // passive not supported\n }\n return passive;\n})();\n//# sourceMappingURL=has.js.map","import { WORKER_OFFSCREEN_CANVAS } from './has.js';\n/**\n * @module ol/dom\n */\n//FIXME Move this function to the canvas module\n/**\n * Create an html canvas element and returns its 2d context.\n * @param {number} [opt_width] Canvas width.\n * @param {number} [opt_height] Canvas height.\n * @param {Array<HTMLCanvasElement>} [opt_canvasPool] Canvas pool to take existing canvas from.\n * @param {CanvasRenderingContext2DSettings} [opt_Context2DSettings] CanvasRenderingContext2DSettings\n * @return {CanvasRenderingContext2D} The context.\n */\nexport function createCanvasContext2D(opt_width, opt_height, opt_canvasPool, opt_Context2DSettings) {\n /** @type {HTMLCanvasElement|OffscreenCanvas} */\n var canvas;\n if (opt_canvasPool && opt_canvasPool.length) {\n canvas = opt_canvasPool.shift();\n }\n else if (WORKER_OFFSCREEN_CANVAS) {\n canvas = new OffscreenCanvas(opt_width || 300, opt_height || 300);\n }\n else {\n canvas = document.createElement('canvas');\n canvas.style.all = 'unset';\n }\n if (opt_width) {\n canvas.width = opt_width;\n }\n if (opt_height) {\n canvas.height = opt_height;\n }\n //FIXME Allow OffscreenCanvasRenderingContext2D as return type\n return /** @type {CanvasRenderingContext2D} */ (canvas.getContext('2d', opt_Context2DSettings));\n}\n/**\n * Get the current computed width for the given element including margin,\n * padding and border.\n * Equivalent to jQuery's `$(el).outerWidth(true)`.\n * @param {!HTMLElement} element Element.\n * @return {number} The width.\n */\nexport function outerWidth(element) {\n var width = element.offsetWidth;\n var style = getComputedStyle(element);\n width += parseInt(style.marginLeft, 10) + parseInt(style.marginRight, 10);\n return width;\n}\n/**\n * Get the current computed height for the given element including margin,\n * padding and border.\n * Equivalent to jQuery's `$(el).outerHeight(true)`.\n * @param {!HTMLElement} element Element.\n * @return {number} The height.\n */\nexport function outerHeight(element) {\n var height = element.offsetHeight;\n var style = getComputedStyle(element);\n height += parseInt(style.marginTop, 10) + parseInt(style.marginBottom, 10);\n return height;\n}\n/**\n * @param {Node} newNode Node to replace old node\n * @param {Node} oldNode The node to be replaced\n */\nexport function replaceNode(newNode, oldNode) {\n var parent = oldNode.parentNode;\n if (parent) {\n parent.replaceChild(newNode, oldNode);\n }\n}\n/**\n * @param {Node} node The node to remove.\n * @return {Node} The node that was removed or null.\n */\nexport function removeNode(node) {\n return node && node.parentNode ? node.parentNode.removeChild(node) : null;\n}\n/**\n * @param {Node} node The node to remove the children from.\n */\nexport function removeChildren(node) {\n while (node.lastChild) {\n node.removeChild(node.lastChild);\n }\n}\n/**\n * Transform the children of a parent node so they match the\n * provided list of children. This function aims to efficiently\n * remove, add, and reorder child nodes while maintaining a simple\n * implementation (it is not guaranteed to minimize DOM operations).\n * @param {Node} node The parent node whose children need reworking.\n * @param {Array<Node>} children The desired children.\n */\nexport function replaceChildren(node, children) {\n var oldChildren = node.childNodes;\n for (var i = 0; true; ++i) {\n var oldChild = oldChildren[i];\n var newChild = children[i];\n // check if our work is done\n if (!oldChild && !newChild) {\n break;\n }\n // check if children match\n if (oldChild === newChild) {\n continue;\n }\n // check if a new child needs to be added\n if (!oldChild) {\n node.appendChild(newChild);\n continue;\n }\n // check if an old child needs to be removed\n if (!newChild) {\n node.removeChild(oldChild);\n --i;\n continue;\n }\n // reorder\n node.insertBefore(newChild, oldChild);\n }\n}\n//# sourceMappingURL=dom.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/control/Control\n */\nimport BaseObject from '../Object.js';\nimport MapEventType from '../MapEventType.js';\nimport { VOID } from '../functions.js';\nimport { listen, unlistenByKey } from '../events.js';\nimport { removeNode } from '../dom.js';\n/**\n * @typedef {Object} Options\n * @property {HTMLElement} [element] The element is the control's\n * container element. This only needs to be specified if you're developing\n * a custom control.\n * @property {function(import(\"../MapEvent.js\").default):void} [render] Function called when\n * the control should be re-rendered. This is called in a `requestAnimationFrame`\n * callback.\n * @property {HTMLElement|string} [target] Specify a target if you want\n * the control to be rendered outside of the map's viewport.\n */\n/**\n * @classdesc\n * A control is a visible widget with a DOM element in a fixed position on the\n * screen. They can involve user input (buttons), or be informational only;\n * the position is determined using CSS. By default these are placed in the\n * container with CSS class name `ol-overlaycontainer-stopevent`, but can use\n * any outside DOM element.\n *\n * This is the base class for controls. You can use it for simple custom\n * controls by creating the element with listeners, creating an instance:\n * ```js\n * var myControl = new Control({element: myElement});\n * ```\n * and then adding this to the map.\n *\n * The main advantage of having this as a control rather than a simple separate\n * DOM element is that preventing propagation is handled for you. Controls\n * will also be objects in a {@link module:ol/Collection~Collection}, so you can use their methods.\n *\n * You can also extend this base for your own control class. See\n * examples/custom-controls for an example of how to do this.\n *\n * @api\n */\nvar Control = /** @class */ (function (_super) {\n __extends(Control, _super);\n /**\n * @param {Options} options Control options.\n */\n function Control(options) {\n var _this = _super.call(this) || this;\n var element = options.element;\n if (element && !options.target && !element.style.pointerEvents) {\n element.style.pointerEvents = 'auto';\n }\n /**\n * @protected\n * @type {HTMLElement}\n */\n _this.element = element ? element : null;\n /**\n * @private\n * @type {HTMLElement}\n */\n _this.target_ = null;\n /**\n * @private\n * @type {import(\"../PluggableMap.js\").default}\n */\n _this.map_ = null;\n /**\n * @protected\n * @type {!Array<import(\"../events.js\").EventsKey>}\n */\n _this.listenerKeys = [];\n if (options.render) {\n _this.render = options.render;\n }\n if (options.target) {\n _this.setTarget(options.target);\n }\n return _this;\n }\n /**\n * Clean up.\n */\n Control.prototype.disposeInternal = function () {\n removeNode(this.element);\n _super.prototype.disposeInternal.call(this);\n };\n /**\n * Get the map associated with this control.\n * @return {import(\"../PluggableMap.js\").default|undefined} Map.\n * @api\n */\n Control.prototype.getMap = function () {\n return this.map_;\n };\n /**\n * Remove the control from its current map and attach it to the new map.\n * Subclasses may set up event handlers to get notified about changes to\n * the map here.\n * @param {import(\"../PluggableMap.js\").default} [map] Map.\n * @api\n */\n Control.prototype.setMap = function (map) {\n if (this.map_) {\n removeNode(this.element);\n }\n for (var i = 0, ii = this.listenerKeys.length; i < ii; ++i) {\n unlistenByKey(this.listenerKeys[i]);\n }\n this.listenerKeys.length = 0;\n this.map_ = map;\n if (this.map_) {\n var target = this.target_\n ? this.target_\n : map.getOverlayContainerStopEvent();\n target.appendChild(this.element);\n if (this.render !== VOID) {\n this.listenerKeys.push(listen(map, MapEventType.POSTRENDER, this.render, this));\n }\n map.render();\n }\n };\n /**\n * Renders the control.\n * @param {import(\"../MapEvent.js\").default} mapEvent Map event.\n * @api\n */\n Control.prototype.render = function (mapEvent) { };\n /**\n * This function is used to set a target element for the control. It has no\n * effect if it is called after the control has been added to the map (i.e.\n * after `setMap` is called on the control). If no `target` is set in the\n * options passed to the control constructor and if `setTarget` is not called\n * then the control is added to the map's overlay container.\n * @param {HTMLElement|string} target Target.\n * @api\n */\n Control.prototype.setTarget = function (target) {\n this.target_ =\n typeof target === 'string' ? document.getElementById(target) : target;\n };\n return Control;\n}(BaseObject));\nexport default Control;\n//# sourceMappingURL=Control.js.map","/**\n * @module ol/css\n */\n/**\n * @typedef {Object} FontParameters\n * @property {string} style Style.\n * @property {string} variant Variant.\n * @property {string} weight Weight.\n * @property {string} size Size.\n * @property {string} lineHeight LineHeight.\n * @property {string} family Family.\n * @property {Array<string>} families Families.\n */\n/**\n * The CSS class for hidden feature.\n *\n * @const\n * @type {string}\n */\nexport var CLASS_HIDDEN = 'ol-hidden';\n/**\n * The CSS class that we'll give the DOM elements to have them selectable.\n *\n * @const\n * @type {string}\n */\nexport var CLASS_SELECTABLE = 'ol-selectable';\n/**\n * The CSS class that we'll give the DOM elements to have them unselectable.\n *\n * @const\n * @type {string}\n */\nexport var CLASS_UNSELECTABLE = 'ol-unselectable';\n/**\n * The CSS class for unsupported feature.\n *\n * @const\n * @type {string}\n */\nexport var CLASS_UNSUPPORTED = 'ol-unsupported';\n/**\n * The CSS class for controls.\n *\n * @const\n * @type {string}\n */\nexport var CLASS_CONTROL = 'ol-control';\n/**\n * The CSS class that we'll give the DOM elements that are collapsed, i.e.\n * to those elements which usually can be expanded.\n *\n * @const\n * @type {string}\n */\nexport var CLASS_COLLAPSED = 'ol-collapsed';\n/**\n * From https://stackoverflow.com/questions/10135697/regex-to-parse-any-css-font\n * @type {RegExp}\n */\nvar fontRegEx = new RegExp([\n '^\\\\s*(?=(?:(?:[-a-z]+\\\\s*){0,2}(italic|oblique))?)',\n '(?=(?:(?:[-a-z]+\\\\s*){0,2}(small-caps))?)',\n '(?=(?:(?:[-a-z]+\\\\s*){0,2}(bold(?:er)?|lighter|[1-9]00 ))?)',\n '(?:(?:normal|\\\\1|\\\\2|\\\\3)\\\\s*){0,3}((?:xx?-)?',\n '(?:small|large)|medium|smaller|larger|[\\\\.\\\\d]+(?:\\\\%|in|[cem]m|ex|p[ctx]))',\n '(?:\\\\s*\\\\/\\\\s*(normal|[\\\\.\\\\d]+(?:\\\\%|in|[cem]m|ex|p[ctx])?))',\n '?\\\\s*([-,\\\\\"\\\\\\'\\\\sa-z]+?)\\\\s*$',\n].join(''), 'i');\nvar fontRegExMatchIndex = [\n 'style',\n 'variant',\n 'weight',\n 'size',\n 'lineHeight',\n 'family',\n];\n/**\n * Get the list of font families from a font spec. Note that this doesn't work\n * for font families that have commas in them.\n * @param {string} fontSpec The CSS font property.\n * @return {FontParameters} The font parameters (or null if the input spec is invalid).\n */\nexport var getFontParameters = function (fontSpec) {\n var match = fontSpec.match(fontRegEx);\n if (!match) {\n return null;\n }\n var style = /** @type {FontParameters} */ ({\n lineHeight: 'normal',\n size: '1.2em',\n style: 'normal',\n weight: 'normal',\n variant: 'normal',\n });\n for (var i = 0, ii = fontRegExMatchIndex.length; i < ii; ++i) {\n var value = match[i + 1];\n if (value !== undefined) {\n style[fontRegExMatchIndex[i]] = value;\n }\n }\n style.families = style.family.split(/,\\s?/);\n return style;\n};\n/**\n * @param {number} opacity Opacity (0..1).\n * @return {string} CSS opacity.\n */\nexport function cssOpacity(opacity) {\n return opacity === 1 ? '' : String(Math.round(opacity * 100) / 100);\n}\n//# sourceMappingURL=css.js.map","/**\n * @module ol/layer/Property\n */\n/**\n * @enum {string}\n */\nexport default {\n OPACITY: 'opacity',\n VISIBLE: 'visible',\n EXTENT: 'extent',\n Z_INDEX: 'zIndex',\n MAX_RESOLUTION: 'maxResolution',\n MIN_RESOLUTION: 'minResolution',\n MAX_ZOOM: 'maxZoom',\n MIN_ZOOM: 'minZoom',\n SOURCE: 'source',\n};\n//# sourceMappingURL=Property.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/AssertionError\n */\nimport { VERSION } from './util.js';\n/**\n * Error object thrown when an assertion failed. This is an ECMA-262 Error,\n * extended with a `code` property.\n * See https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error.\n */\nvar AssertionError = /** @class */ (function (_super) {\n __extends(AssertionError, _super);\n /**\n * @param {number} code Error code.\n */\n function AssertionError(code) {\n var _this = this;\n var path = VERSION === 'latest' ? VERSION : 'v' + VERSION.split('-')[0];\n var message = 'Assertion failed. See https://openlayers.org/en/' +\n path +\n '/doc/errors/#' +\n code +\n ' for details.';\n _this = _super.call(this, message) || this;\n /**\n * Error code. The meaning of the code can be found on\n * https://openlayers.org/en/latest/doc/errors/ (replace `latest` with\n * the version found in the OpenLayers script's header comment if a version\n * other than the latest is used).\n * @type {number}\n * @api\n */\n _this.code = code;\n /**\n * @type {string}\n */\n _this.name = 'AssertionError';\n // Re-assign message, see https://github.com/Rich-Harris/buble/issues/40\n _this.message = message;\n return _this;\n }\n return AssertionError;\n}(Error));\nexport default AssertionError;\n//# sourceMappingURL=AssertionError.js.map","/**\n * @module ol/asserts\n */\nimport AssertionError from './AssertionError.js';\n/**\n * @param {*} assertion Assertion we expected to be truthy.\n * @param {number} errorCode Error code.\n */\nexport function assert(assertion, errorCode) {\n if (!assertion) {\n throw new AssertionError(errorCode);\n }\n}\n//# sourceMappingURL=asserts.js.map","/**\n * @module ol/math\n */\n/**\n * Takes a number and clamps it to within the provided bounds.\n * @param {number} value The input number.\n * @param {number} min The minimum value to return.\n * @param {number} max The maximum value to return.\n * @return {number} The input number if it is within bounds, or the nearest\n * number within the bounds.\n */\nexport function clamp(value, min, max) {\n return Math.min(Math.max(value, min), max);\n}\n/**\n * Return the hyperbolic cosine of a given number. The method will use the\n * native `Math.cosh` function if it is available, otherwise the hyperbolic\n * cosine will be calculated via the reference implementation of the Mozilla\n * developer network.\n *\n * @param {number} x X.\n * @return {number} Hyperbolic cosine of x.\n */\nexport var cosh = (function () {\n // Wrapped in a iife, to save the overhead of checking for the native\n // implementation on every invocation.\n var cosh;\n if ('cosh' in Math) {\n // The environment supports the native Math.cosh function, use it…\n cosh = Math.cosh;\n }\n else {\n // … else, use the reference implementation of MDN:\n cosh = function (x) {\n var y = /** @type {Math} */ (Math).exp(x);\n return (y + 1 / y) / 2;\n };\n }\n return cosh;\n})();\n/**\n * Return the base 2 logarithm of a given number. The method will use the\n * native `Math.log2` function if it is available, otherwise the base 2\n * logarithm will be calculated via the reference implementation of the\n * Mozilla developer network.\n *\n * @param {number} x X.\n * @return {number} Base 2 logarithm of x.\n */\nexport var log2 = (function () {\n // Wrapped in a iife, to save the overhead of checking for the native\n // implementation on every invocation.\n var log2;\n if ('log2' in Math) {\n // The environment supports the native Math.log2 function, use it…\n log2 = Math.log2;\n }\n else {\n // … else, use the reference implementation of MDN:\n log2 = function (x) {\n return Math.log(x) * Math.LOG2E;\n };\n }\n return log2;\n})();\n/**\n * Returns the square of the closest distance between the point (x, y) and the\n * line segment (x1, y1) to (x2, y2).\n * @param {number} x X.\n * @param {number} y Y.\n * @param {number} x1 X1.\n * @param {number} y1 Y1.\n * @param {number} x2 X2.\n * @param {number} y2 Y2.\n * @return {number} Squared distance.\n */\nexport function squaredSegmentDistance(x, y, x1, y1, x2, y2) {\n var dx = x2 - x1;\n var dy = y2 - y1;\n if (dx !== 0 || dy !== 0) {\n var t = ((x - x1) * dx + (y - y1) * dy) / (dx * dx + dy * dy);\n if (t > 1) {\n x1 = x2;\n y1 = y2;\n }\n else if (t > 0) {\n x1 += dx * t;\n y1 += dy * t;\n }\n }\n return squaredDistance(x, y, x1, y1);\n}\n/**\n * Returns the square of the distance between the points (x1, y1) and (x2, y2).\n * @param {number} x1 X1.\n * @param {number} y1 Y1.\n * @param {number} x2 X2.\n * @param {number} y2 Y2.\n * @return {number} Squared distance.\n */\nexport function squaredDistance(x1, y1, x2, y2) {\n var dx = x2 - x1;\n var dy = y2 - y1;\n return dx * dx + dy * dy;\n}\n/**\n * Solves system of linear equations using Gaussian elimination method.\n *\n * @param {Array<Array<number>>} mat Augmented matrix (n x n + 1 column)\n * in row-major order.\n * @return {Array<number>} The resulting vector.\n */\nexport function solveLinearSystem(mat) {\n var n = mat.length;\n for (var i = 0; i < n; i++) {\n // Find max in the i-th column (ignoring i - 1 first rows)\n var maxRow = i;\n var maxEl = Math.abs(mat[i][i]);\n for (var r = i + 1; r < n; r++) {\n var absValue = Math.abs(mat[r][i]);\n if (absValue > maxEl) {\n maxEl = absValue;\n maxRow = r;\n }\n }\n if (maxEl === 0) {\n return null; // matrix is singular\n }\n // Swap max row with i-th (current) row\n var tmp = mat[maxRow];\n mat[maxRow] = mat[i];\n mat[i] = tmp;\n // Subtract the i-th row to make all the remaining rows 0 in the i-th column\n for (var j = i + 1; j < n; j++) {\n var coef = -mat[j][i] / mat[i][i];\n for (var k = i; k < n + 1; k++) {\n if (i == k) {\n mat[j][k] = 0;\n }\n else {\n mat[j][k] += coef * mat[i][k];\n }\n }\n }\n }\n // Solve Ax=b for upper triangular matrix A (mat)\n var x = new Array(n);\n for (var l = n - 1; l >= 0; l--) {\n x[l] = mat[l][n] / mat[l][l];\n for (var m = l - 1; m >= 0; m--) {\n mat[m][n] -= mat[m][l] * x[l];\n }\n }\n return x;\n}\n/**\n * Converts radians to to degrees.\n *\n * @param {number} angleInRadians Angle in radians.\n * @return {number} Angle in degrees.\n */\nexport function toDegrees(angleInRadians) {\n return (angleInRadians * 180) / Math.PI;\n}\n/**\n * Converts degrees to radians.\n *\n * @param {number} angleInDegrees Angle in degrees.\n * @return {number} Angle in radians.\n */\nexport function toRadians(angleInDegrees) {\n return (angleInDegrees * Math.PI) / 180;\n}\n/**\n * Returns the modulo of a / b, depending on the sign of b.\n *\n * @param {number} a Dividend.\n * @param {number} b Divisor.\n * @return {number} Modulo.\n */\nexport function modulo(a, b) {\n var r = a % b;\n return r * b < 0 ? r + b : r;\n}\n/**\n * Calculates the linearly interpolated value of x between a and b.\n *\n * @param {number} a Number\n * @param {number} b Number\n * @param {number} x Value to be interpolated.\n * @return {number} Interpolated value.\n */\nexport function lerp(a, b, x) {\n return a + x * (b - a);\n}\n//# sourceMappingURL=math.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/layer/Base\n */\nimport BaseObject from '../Object.js';\nimport LayerProperty from './Property.js';\nimport { abstract } from '../util.js';\nimport { assert } from '../asserts.js';\nimport { assign } from '../obj.js';\nimport { clamp } from '../math.js';\n/**\n * @typedef {import(\"../ObjectEventType\").Types|'change:extent'|'change:maxResolution'|'change:maxZoom'|\n * 'change:minResolution'|'change:minZoom'|'change:opacity'|'change:visible'|'change:zIndex'} BaseLayerObjectEventTypes\n */\n/***\n * @template Return\n * @typedef {import(\"../Observable\").OnSignature<import(\"../Observable\").EventTypes, import(\"../events/Event.js\").default, Return> &\n * import(\"../Observable\").OnSignature<BaseLayerObjectEventTypes, import(\"../Object\").ObjectEvent, Return> &\n * import(\"../Observable\").CombinedOnSignature<import(\"../Observable\").EventTypes|BaseLayerObjectEventTypes, Return>} BaseLayerOnSignature\n */\n/**\n * @typedef {Object} Options\n * @property {string} [className='ol-layer'] A CSS class name to set to the layer element.\n * @property {number} [opacity=1] Opacity (0, 1).\n * @property {boolean} [visible=true] Visibility.\n * @property {import(\"../extent.js\").Extent} [extent] The bounding extent for layer rendering. The layer will not be\n * rendered outside of this extent.\n * @property {number} [zIndex] The z-index for layer rendering. At rendering time, the layers\n * will be ordered, first by Z-index and then by position. When `undefined`, a `zIndex` of 0 is assumed\n * for layers that are added to the map's `layers` collection, or `Infinity` when the layer's `setMap()`\n * method was used.\n * @property {number} [minResolution] The minimum resolution (inclusive) at which this layer will be\n * visible.\n * @property {number} [maxResolution] The maximum resolution (exclusive) below which this layer will\n * be visible.\n * @property {number} [minZoom] The minimum view zoom level (exclusive) above which this layer will be\n * visible.\n * @property {number} [maxZoom] The maximum view zoom level (inclusive) at which this layer will\n * be visible.\n * @property {Object<string, *>} [properties] Arbitrary observable properties. Can be accessed with `#get()` and `#set()`.\n */\n/**\n * @classdesc\n * Abstract base class; normally only used for creating subclasses and not\n * instantiated in apps.\n * Note that with {@link module:ol/layer/Base} and all its subclasses, any property set in\n * the options is set as a {@link module:ol/Object} property on the layer object, so\n * is observable, and has get/set accessors.\n *\n * @api\n */\nvar BaseLayer = /** @class */ (function (_super) {\n __extends(BaseLayer, _super);\n /**\n * @param {Options} options Layer options.\n */\n function BaseLayer(options) {\n var _this = _super.call(this) || this;\n /***\n * @type {BaseLayerOnSignature<import(\"../events\").EventsKey>}\n */\n _this.on;\n /***\n * @type {BaseLayerOnSignature<import(\"../events\").EventsKey>}\n */\n _this.once;\n /***\n * @type {BaseLayerOnSignature<void>}\n */\n _this.un;\n /**\n * @type {Object<string, *>}\n */\n var properties = assign({}, options);\n if (typeof options.properties === 'object') {\n delete properties.properties;\n assign(properties, options.properties);\n }\n properties[LayerProperty.OPACITY] =\n options.opacity !== undefined ? options.opacity : 1;\n assert(typeof properties[LayerProperty.OPACITY] === 'number', 64); // Layer opacity must be a number\n properties[LayerProperty.VISIBLE] =\n options.visible !== undefined ? options.visible : true;\n properties[LayerProperty.Z_INDEX] = options.zIndex;\n properties[LayerProperty.MAX_RESOLUTION] =\n options.maxResolution !== undefined ? options.maxResolution : Infinity;\n properties[LayerProperty.MIN_RESOLUTION] =\n options.minResolution !== undefined ? options.minResolution : 0;\n properties[LayerProperty.MIN_ZOOM] =\n options.minZoom !== undefined ? options.minZoom : -Infinity;\n properties[LayerProperty.MAX_ZOOM] =\n options.maxZoom !== undefined ? options.maxZoom : Infinity;\n /**\n * @type {string}\n * @private\n */\n _this.className_ =\n properties.className !== undefined ? options.className : 'ol-layer';\n delete properties.className;\n _this.setProperties(properties);\n /**\n * @type {import(\"./Layer.js\").State}\n * @private\n */\n _this.state_ = null;\n return _this;\n }\n /**\n * @return {string} CSS class name.\n */\n BaseLayer.prototype.getClassName = function () {\n return this.className_;\n };\n /**\n * This method is not meant to be called by layers or layer renderers because the state\n * is incorrect if the layer is included in a layer group.\n *\n * @param {boolean} [opt_managed] Layer is managed.\n * @return {import(\"./Layer.js\").State} Layer state.\n */\n BaseLayer.prototype.getLayerState = function (opt_managed) {\n /** @type {import(\"./Layer.js\").State} */\n var state = this.state_ ||\n /** @type {?} */ ({\n layer: this,\n managed: opt_managed === undefined ? true : opt_managed,\n });\n var zIndex = this.getZIndex();\n state.opacity = clamp(Math.round(this.getOpacity() * 100) / 100, 0, 1);\n state.sourceState = this.getSourceState();\n state.visible = this.getVisible();\n state.extent = this.getExtent();\n state.zIndex = zIndex === undefined && !state.managed ? Infinity : zIndex;\n state.maxResolution = this.getMaxResolution();\n state.minResolution = Math.max(this.getMinResolution(), 0);\n state.minZoom = this.getMinZoom();\n state.maxZoom = this.getMaxZoom();\n this.state_ = state;\n return state;\n };\n /**\n * @abstract\n * @param {Array<import(\"./Layer.js\").default>} [opt_array] Array of layers (to be\n * modified in place).\n * @return {Array<import(\"./Layer.js\").default>} Array of layers.\n */\n BaseLayer.prototype.getLayersArray = function (opt_array) {\n return abstract();\n };\n /**\n * @abstract\n * @param {Array<import(\"./Layer.js\").State>} [opt_states] Optional list of layer\n * states (to be modified in place).\n * @return {Array<import(\"./Layer.js\").State>} List of layer states.\n */\n BaseLayer.prototype.getLayerStatesArray = function (opt_states) {\n return abstract();\n };\n /**\n * Return the {@link module:ol/extent~Extent extent} of the layer or `undefined` if it\n * will be visible regardless of extent.\n * @return {import(\"../extent.js\").Extent|undefined} The layer extent.\n * @observable\n * @api\n */\n BaseLayer.prototype.getExtent = function () {\n return /** @type {import(\"../extent.js\").Extent|undefined} */ (this.get(LayerProperty.EXTENT));\n };\n /**\n * Return the maximum resolution of the layer.\n * @return {number} The maximum resolution of the layer.\n * @observable\n * @api\n */\n BaseLayer.prototype.getMaxResolution = function () {\n return /** @type {number} */ (this.get(LayerProperty.MAX_RESOLUTION));\n };\n /**\n * Return the minimum resolution of the layer.\n * @return {number} The minimum resolution of the layer.\n * @observable\n * @api\n */\n BaseLayer.prototype.getMinResolution = function () {\n return /** @type {number} */ (this.get(LayerProperty.MIN_RESOLUTION));\n };\n /**\n * Return the minimum zoom level of the layer.\n * @return {number} The minimum zoom level of the layer.\n * @observable\n * @api\n */\n BaseLayer.prototype.getMinZoom = function () {\n return /** @type {number} */ (this.get(LayerProperty.MIN_ZOOM));\n };\n /**\n * Return the maximum zoom level of the layer.\n * @return {number} The maximum zoom level of the layer.\n * @observable\n * @api\n */\n BaseLayer.prototype.getMaxZoom = function () {\n return /** @type {number} */ (this.get(LayerProperty.MAX_ZOOM));\n };\n /**\n * Return the opacity of the layer (between 0 and 1).\n * @return {number} The opacity of the layer.\n * @observable\n * @api\n */\n BaseLayer.prototype.getOpacity = function () {\n return /** @type {number} */ (this.get(LayerProperty.OPACITY));\n };\n /**\n * @abstract\n * @return {import(\"../source/State.js\").default} Source state.\n */\n BaseLayer.prototype.getSourceState = function () {\n return abstract();\n };\n /**\n * Return the visibility of the layer (`true` or `false`).\n * @return {boolean} The visibility of the layer.\n * @observable\n * @api\n */\n BaseLayer.prototype.getVisible = function () {\n return /** @type {boolean} */ (this.get(LayerProperty.VISIBLE));\n };\n /**\n * Return the Z-index of the layer, which is used to order layers before\n * rendering. The default Z-index is 0.\n * @return {number} The Z-index of the layer.\n * @observable\n * @api\n */\n BaseLayer.prototype.getZIndex = function () {\n return /** @type {number} */ (this.get(LayerProperty.Z_INDEX));\n };\n /**\n * Set the extent at which the layer is visible. If `undefined`, the layer\n * will be visible at all extents.\n * @param {import(\"../extent.js\").Extent|undefined} extent The extent of the layer.\n * @observable\n * @api\n */\n BaseLayer.prototype.setExtent = function (extent) {\n this.set(LayerProperty.EXTENT, extent);\n };\n /**\n * Set the maximum resolution at which the layer is visible.\n * @param {number} maxResolution The maximum resolution of the layer.\n * @observable\n * @api\n */\n BaseLayer.prototype.setMaxResolution = function (maxResolution) {\n this.set(LayerProperty.MAX_RESOLUTION, maxResolution);\n };\n /**\n * Set the minimum resolution at which the layer is visible.\n * @param {number} minResolution The minimum resolution of the layer.\n * @observable\n * @api\n */\n BaseLayer.prototype.setMinResolution = function (minResolution) {\n this.set(LayerProperty.MIN_RESOLUTION, minResolution);\n };\n /**\n * Set the maximum zoom (exclusive) at which the layer is visible.\n * Note that the zoom levels for layer visibility are based on the\n * view zoom level, which may be different from a tile source zoom level.\n * @param {number} maxZoom The maximum zoom of the layer.\n * @observable\n * @api\n */\n BaseLayer.prototype.setMaxZoom = function (maxZoom) {\n this.set(LayerProperty.MAX_ZOOM, maxZoom);\n };\n /**\n * Set the minimum zoom (inclusive) at which the layer is visible.\n * Note that the zoom levels for layer visibility are based on the\n * view zoom level, which may be different from a tile source zoom level.\n * @param {number} minZoom The minimum zoom of the layer.\n * @observable\n * @api\n */\n BaseLayer.prototype.setMinZoom = function (minZoom) {\n this.set(LayerProperty.MIN_ZOOM, minZoom);\n };\n /**\n * Set the opacity of the layer, allowed values range from 0 to 1.\n * @param {number} opacity The opacity of the layer.\n * @observable\n * @api\n */\n BaseLayer.prototype.setOpacity = function (opacity) {\n assert(typeof opacity === 'number', 64); // Layer opacity must be a number\n this.set(LayerProperty.OPACITY, opacity);\n };\n /**\n * Set the visibility of the layer (`true` or `false`).\n * @param {boolean} visible The visibility of the layer.\n * @observable\n * @api\n */\n BaseLayer.prototype.setVisible = function (visible) {\n this.set(LayerProperty.VISIBLE, visible);\n };\n /**\n * Set Z-index of the layer, which is used to order layers before rendering.\n * The default Z-index is 0.\n * @param {number} zindex The z-index of the layer.\n * @observable\n * @api\n */\n BaseLayer.prototype.setZIndex = function (zindex) {\n this.set(LayerProperty.Z_INDEX, zindex);\n };\n /**\n * Clean up.\n */\n BaseLayer.prototype.disposeInternal = function () {\n if (this.state_) {\n this.state_.layer = null;\n this.state_ = null;\n }\n _super.prototype.disposeInternal.call(this);\n };\n return BaseLayer;\n}(BaseObject));\nexport default BaseLayer;\n//# sourceMappingURL=Base.js.map","/**\n * @module ol/render/EventType\n */\n/**\n * @enum {string}\n */\nexport default {\n /**\n * Triggered before a layer is rendered.\n * @event module:ol/render/Event~RenderEvent#prerender\n * @api\n */\n PRERENDER: 'prerender',\n /**\n * Triggered after a layer is rendered.\n * @event module:ol/render/Event~RenderEvent#postrender\n * @api\n */\n POSTRENDER: 'postrender',\n /**\n * Triggered before layers are rendered.\n * The event object will not have a `context` set.\n * @event module:ol/render/Event~RenderEvent#precompose\n * @api\n */\n PRECOMPOSE: 'precompose',\n /**\n * Triggered after all layers are rendered.\n * The event object will not have a `context` set.\n * @event module:ol/render/Event~RenderEvent#postcompose\n * @api\n */\n POSTCOMPOSE: 'postcompose',\n /**\n * Triggered when rendering is complete, i.e. all sources and tiles have\n * finished loading for the current viewport, and all tiles are faded in.\n * The event object will not have a `context` set.\n * @event module:ol/render/Event~RenderEvent#rendercomplete\n * @api\n */\n RENDERCOMPLETE: 'rendercomplete',\n};\n/**\n * @typedef {'postrender'|'precompose'|'postcompose'|'rendercomplete'} MapRenderEventTypes\n */\n/**\n * @typedef {'postrender'|'prerender'} LayerRenderEventTypes\n */\n//# sourceMappingURL=EventType.js.map","/**\n * @module ol/source/State\n */\n/**\n * @enum {string}\n * State of the source, one of 'undefined', 'loading', 'ready' or 'error'.\n */\nexport default {\n UNDEFINED: 'undefined',\n LOADING: 'loading',\n READY: 'ready',\n ERROR: 'error',\n};\n//# sourceMappingURL=State.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/layer/Layer\n */\nimport BaseLayer from './Base.js';\nimport EventType from '../events/EventType.js';\nimport LayerProperty from './Property.js';\nimport RenderEventType from '../render/EventType.js';\nimport SourceState from '../source/State.js';\nimport { assert } from '../asserts.js';\nimport { assign } from '../obj.js';\nimport { listen, unlistenByKey } from '../events.js';\n/**\n * @typedef {function(import(\"../PluggableMap.js\").FrameState):HTMLElement} RenderFunction\n */\n/***\n * @template Return\n * @typedef {import(\"../Observable\").OnSignature<import(\"../Observable\").EventTypes, import(\"../events/Event.js\").default, Return> &\n * import(\"../Observable\").OnSignature<import(\"./Base\").BaseLayerObjectEventTypes|\n * 'change:source', import(\"../Object\").ObjectEvent, Return> &\n * import(\"../Observable\").OnSignature<import(\"../render/EventType\").LayerRenderEventTypes, import(\"../render/Event\").default, Return> &\n * import(\"../Observable\").CombinedOnSignature<import(\"../Observable\").EventTypes|import(\"./Base\").BaseLayerObjectEventTypes|'change:source'|\n * import(\"../render/EventType\").LayerRenderEventTypes, Return>} LayerOnSignature\n */\n/**\n * @template {import(\"../source/Source.js\").default} SourceType\n * @typedef {Object} Options\n * @property {string} [className='ol-layer'] A CSS class name to set to the layer element.\n * @property {number} [opacity=1] Opacity (0, 1).\n * @property {boolean} [visible=true] Visibility.\n * @property {import(\"../extent.js\").Extent} [extent] The bounding extent for layer rendering. The layer will not be\n * rendered outside of this extent.\n * @property {number} [zIndex] The z-index for layer rendering. At rendering time, the layers\n * will be ordered, first by Z-index and then by position. When `undefined`, a `zIndex` of 0 is assumed\n * for layers that are added to the map's `layers` collection, or `Infinity` when the layer's `setMap()`\n * method was used.\n * @property {number} [minResolution] The minimum resolution (inclusive) at which this layer will be\n * visible.\n * @property {number} [maxResolution] The maximum resolution (exclusive) below which this layer will\n * be visible.\n * @property {number} [minZoom] The minimum view zoom level (exclusive) above which this layer will be\n * visible.\n * @property {number} [maxZoom] The maximum view zoom level (inclusive) at which this layer will\n * be visible.\n * @property {SourceType} [source] Source for this layer. If not provided to the constructor,\n * the source can be set by calling {@link module:ol/layer/Layer~Layer#setSource layer.setSource(source)} after\n * construction.\n * @property {import(\"../PluggableMap.js\").default} [map] Map.\n * @property {RenderFunction} [render] Render function. Takes the frame state as input and is expected to return an\n * HTML element. Will overwrite the default rendering for the layer.\n * @property {Object<string, *>} [properties] Arbitrary observable properties. Can be accessed with `#get()` and `#set()`.\n */\n/**\n * @typedef {Object} State\n * @property {import(\"./Layer.js\").default} layer Layer.\n * @property {number} opacity Opacity, the value is rounded to two digits to appear after the decimal point.\n * @property {import(\"../source/State.js\").default} sourceState SourceState.\n * @property {boolean} visible Visible.\n * @property {boolean} managed Managed.\n * @property {import(\"../extent.js\").Extent} [extent] Extent.\n * @property {number} zIndex ZIndex.\n * @property {number} maxResolution Maximum resolution.\n * @property {number} minResolution Minimum resolution.\n * @property {number} minZoom Minimum zoom.\n * @property {number} maxZoom Maximum zoom.\n */\n/**\n * @classdesc\n * Base class from which all layer types are derived. This should only be instantiated\n * in the case where a custom layer is be added to the map with a custom `render` function.\n * Such a function can be specified in the `options` object, and is expected to return an HTML element.\n *\n * A visual representation of raster or vector map data.\n * Layers group together those properties that pertain to how the data is to be\n * displayed, irrespective of the source of that data.\n *\n * Layers are usually added to a map with {@link import(\"../PluggableMap.js\").default#addLayer map.addLayer()}. Components\n * like {@link module:ol/interaction/Draw~Draw} use unmanaged layers\n * internally. These unmanaged layers are associated with the map using\n * {@link module:ol/layer/Layer~Layer#setMap} instead.\n *\n * A generic `change` event is fired when the state of the source changes.\n *\n * Please note that for performance reasons several layers might get rendered to\n * the same HTML element, which will cause {@link import(\"../PluggableMap.js\").default#forEachLayerAtPixel map.forEachLayerAtPixel()} to\n * give false positives. To avoid this, apply different `className` properties to the\n * layers at creation time.\n *\n * @fires import(\"../render/Event.js\").RenderEvent#prerender\n * @fires import(\"../render/Event.js\").RenderEvent#postrender\n *\n * @template {import(\"../source/Source.js\").default} SourceType\n * @api\n */\nvar Layer = /** @class */ (function (_super) {\n __extends(Layer, _super);\n /**\n * @param {Options<SourceType>} options Layer options.\n */\n function Layer(options) {\n var _this = this;\n var baseOptions = assign({}, options);\n delete baseOptions.source;\n _this = _super.call(this, baseOptions) || this;\n /***\n * @type {LayerOnSignature<import(\"../events\").EventsKey>}\n */\n _this.on;\n /***\n * @type {LayerOnSignature<import(\"../events\").EventsKey>}\n */\n _this.once;\n /***\n * @type {LayerOnSignature<void>}\n */\n _this.un;\n /**\n * @private\n * @type {?import(\"../events.js\").EventsKey}\n */\n _this.mapPrecomposeKey_ = null;\n /**\n * @private\n * @type {?import(\"../events.js\").EventsKey}\n */\n _this.mapRenderKey_ = null;\n /**\n * @private\n * @type {?import(\"../events.js\").EventsKey}\n */\n _this.sourceChangeKey_ = null;\n /**\n * @private\n * @type {import(\"../renderer/Layer.js\").default}\n */\n _this.renderer_ = null;\n // Overwrite default render method with a custom one\n if (options.render) {\n _this.render = options.render;\n }\n if (options.map) {\n _this.setMap(options.map);\n }\n _this.addChangeListener(LayerProperty.SOURCE, _this.handleSourcePropertyChange_);\n var source = options.source\n ? /** @type {SourceType} */ (options.source)\n : null;\n _this.setSource(source);\n return _this;\n }\n /**\n * @param {Array<import(\"./Layer.js\").default>} [opt_array] Array of layers (to be modified in place).\n * @return {Array<import(\"./Layer.js\").default>} Array of layers.\n */\n Layer.prototype.getLayersArray = function (opt_array) {\n var array = opt_array ? opt_array : [];\n array.push(this);\n return array;\n };\n /**\n * @param {Array<import(\"./Layer.js\").State>} [opt_states] Optional list of layer states (to be modified in place).\n * @return {Array<import(\"./Layer.js\").State>} List of layer states.\n */\n Layer.prototype.getLayerStatesArray = function (opt_states) {\n var states = opt_states ? opt_states : [];\n states.push(this.getLayerState());\n return states;\n };\n /**\n * Get the layer source.\n * @return {SourceType} The layer source (or `null` if not yet set).\n * @observable\n * @api\n */\n Layer.prototype.getSource = function () {\n return /** @type {SourceType} */ (this.get(LayerProperty.SOURCE)) || null;\n };\n /**\n * @return {import(\"../source/State.js\").default} Source state.\n */\n Layer.prototype.getSourceState = function () {\n var source = this.getSource();\n return !source ? SourceState.UNDEFINED : source.getState();\n };\n /**\n * @private\n */\n Layer.prototype.handleSourceChange_ = function () {\n this.changed();\n };\n /**\n * @private\n */\n Layer.prototype.handleSourcePropertyChange_ = function () {\n if (this.sourceChangeKey_) {\n unlistenByKey(this.sourceChangeKey_);\n this.sourceChangeKey_ = null;\n }\n var source = this.getSource();\n if (source) {\n this.sourceChangeKey_ = listen(source, EventType.CHANGE, this.handleSourceChange_, this);\n }\n this.changed();\n };\n /**\n * @param {import(\"../pixel\").Pixel} pixel Pixel.\n * @return {Promise<Array<import(\"../Feature\").default>>} Promise that resolves with\n * an array of features.\n */\n Layer.prototype.getFeatures = function (pixel) {\n if (!this.renderer_) {\n return new Promise(function (resolve) { return resolve([]); });\n }\n return this.renderer_.getFeatures(pixel);\n };\n /**\n * In charge to manage the rendering of the layer. One layer type is\n * bounded with one layer renderer.\n * @param {?import(\"../PluggableMap.js\").FrameState} frameState Frame state.\n * @param {HTMLElement} target Target which the renderer may (but need not) use\n * for rendering its content.\n * @return {HTMLElement} The rendered element.\n */\n Layer.prototype.render = function (frameState, target) {\n var layerRenderer = this.getRenderer();\n if (layerRenderer.prepareFrame(frameState)) {\n return layerRenderer.renderFrame(frameState, target);\n }\n };\n /**\n * Sets the layer to be rendered on top of other layers on a map. The map will\n * not manage this layer in its layers collection, and the callback in\n * {@link module:ol/Map~Map#forEachLayerAtPixel} will receive `null` as layer. This\n * is useful for temporary layers. To remove an unmanaged layer from the map,\n * use `#setMap(null)`.\n *\n * To add the layer to a map and have it managed by the map, use\n * {@link module:ol/Map~Map#addLayer} instead.\n * @param {import(\"../PluggableMap.js\").default} map Map.\n * @api\n */\n Layer.prototype.setMap = function (map) {\n if (this.mapPrecomposeKey_) {\n unlistenByKey(this.mapPrecomposeKey_);\n this.mapPrecomposeKey_ = null;\n }\n if (!map) {\n this.changed();\n }\n if (this.mapRenderKey_) {\n unlistenByKey(this.mapRenderKey_);\n this.mapRenderKey_ = null;\n }\n if (map) {\n this.mapPrecomposeKey_ = listen(map, RenderEventType.PRECOMPOSE, function (evt) {\n var renderEvent = \n /** @type {import(\"../render/Event.js\").default} */ (evt);\n var layerStatesArray = renderEvent.frameState.layerStatesArray;\n var layerState = this.getLayerState(false);\n // A layer can only be added to the map once. Use either `layer.setMap()` or `map.addLayer()`, not both.\n assert(!layerStatesArray.some(function (arrayLayerState) {\n return arrayLayerState.layer === layerState.layer;\n }), 67);\n layerStatesArray.push(layerState);\n }, this);\n this.mapRenderKey_ = listen(this, EventType.CHANGE, map.render, map);\n this.changed();\n }\n };\n /**\n * Set the layer source.\n * @param {SourceType} source The layer source.\n * @observable\n * @api\n */\n Layer.prototype.setSource = function (source) {\n this.set(LayerProperty.SOURCE, source);\n };\n /**\n * Get the renderer for this layer.\n * @return {import(\"../renderer/Layer.js\").default} The layer renderer.\n */\n Layer.prototype.getRenderer = function () {\n if (!this.renderer_) {\n this.renderer_ = this.createRenderer();\n }\n return this.renderer_;\n };\n /**\n * @return {boolean} The layer has a renderer.\n */\n Layer.prototype.hasRenderer = function () {\n return !!this.renderer_;\n };\n /**\n * Create a renderer for this layer.\n * @return {import(\"../renderer/Layer.js\").default} A layer renderer.\n * @protected\n */\n Layer.prototype.createRenderer = function () {\n return null;\n };\n /**\n * Clean up.\n */\n Layer.prototype.disposeInternal = function () {\n if (this.renderer_) {\n this.renderer_.dispose();\n delete this.renderer_;\n }\n this.setSource(null);\n _super.prototype.disposeInternal.call(this);\n };\n return Layer;\n}(BaseLayer));\n/**\n * Return `true` if the layer is visible and if the provided view state\n * has resolution and zoom levels that are in range of the layer's min/max.\n * @param {State} layerState Layer state.\n * @param {import(\"../View.js\").State} viewState View state.\n * @return {boolean} The layer is visible at the given view state.\n */\nexport function inView(layerState, viewState) {\n if (!layerState.visible) {\n return false;\n }\n var resolution = viewState.resolution;\n if (resolution < layerState.minResolution ||\n resolution >= layerState.maxResolution) {\n return false;\n }\n var zoom = viewState.zoom;\n return zoom > layerState.minZoom && zoom <= layerState.maxZoom;\n}\nexport default Layer;\n//# sourceMappingURL=Layer.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/control/Attribution\n */\nimport Control from './Control.js';\nimport EventType from '../events/EventType.js';\nimport { CLASS_COLLAPSED, CLASS_CONTROL, CLASS_UNSELECTABLE } from '../css.js';\nimport { equals } from '../array.js';\nimport { inView } from '../layer/Layer.js';\nimport { removeChildren, replaceNode } from '../dom.js';\n/**\n * @typedef {Object} Options\n * @property {string} [className='ol-attribution'] CSS class name.\n * @property {HTMLElement|string} [target] Specify a target if you\n * want the control to be rendered outside of the map's\n * viewport.\n * @property {boolean} [collapsible] Specify if attributions can\n * be collapsed. If not specified, sources control this behavior with their\n * `attributionsCollapsible` setting.\n * @property {boolean} [collapsed=true] Specify if attributions should\n * be collapsed at startup.\n * @property {string} [tipLabel='Attributions'] Text label to use for the button tip.\n * @property {string|HTMLElement} [label='i'] Text label to use for the\n * collapsed attributions button.\n * Instead of text, also an element (e.g. a `span` element) can be used.\n * @property {string} [expandClassName=className + '-expand'] CSS class name for the\n * collapsed attributions button.\n * @property {string|HTMLElement} [collapseLabel='›'] Text label to use\n * for the expanded attributions button.\n * Instead of text, also an element (e.g. a `span` element) can be used.\n * @property {string} [collapseClassName=className + '-collapse'] CSS class name for the\n * expanded attributions button.\n * @property {function(import(\"../MapEvent.js\").default):void} [render] Function called when\n * the control should be re-rendered. This is called in a `requestAnimationFrame`\n * callback.\n */\n/**\n * @classdesc\n * Control to show all the attributions associated with the layer sources\n * in the map. This control is one of the default controls included in maps.\n * By default it will show in the bottom right portion of the map, but this can\n * be changed by using a css selector for `.ol-attribution`.\n *\n * @api\n */\nvar Attribution = /** @class */ (function (_super) {\n __extends(Attribution, _super);\n /**\n * @param {Options} [opt_options] Attribution options.\n */\n function Attribution(opt_options) {\n var _this = this;\n var options = opt_options ? opt_options : {};\n _this = _super.call(this, {\n element: document.createElement('div'),\n render: options.render,\n target: options.target,\n }) || this;\n /**\n * @private\n * @type {HTMLElement}\n */\n _this.ulElement_ = document.createElement('ul');\n /**\n * @private\n * @type {boolean}\n */\n _this.collapsed_ =\n options.collapsed !== undefined ? options.collapsed : true;\n /**\n * @private\n * @type {boolean}\n */\n _this.userCollapsed_ = _this.collapsed_;\n /**\n * @private\n * @type {boolean}\n */\n _this.overrideCollapsible_ = options.collapsible !== undefined;\n /**\n * @private\n * @type {boolean}\n */\n _this.collapsible_ =\n options.collapsible !== undefined ? options.collapsible : true;\n if (!_this.collapsible_) {\n _this.collapsed_ = false;\n }\n var className = options.className !== undefined ? options.className : 'ol-attribution';\n var tipLabel = options.tipLabel !== undefined ? options.tipLabel : 'Attributions';\n var expandClassName = options.expandClassName !== undefined\n ? options.expandClassName\n : className + '-expand';\n var collapseLabel = options.collapseLabel !== undefined ? options.collapseLabel : '\\u203A';\n var collapseClassName = options.collapseClassName !== undefined\n ? options.collapseClassName\n : className + '-collpase';\n if (typeof collapseLabel === 'string') {\n /**\n * @private\n * @type {HTMLElement}\n */\n _this.collapseLabel_ = document.createElement('span');\n _this.collapseLabel_.textContent = collapseLabel;\n _this.collapseLabel_.className = collapseClassName;\n }\n else {\n _this.collapseLabel_ = collapseLabel;\n }\n var label = options.label !== undefined ? options.label : 'i';\n if (typeof label === 'string') {\n /**\n * @private\n * @type {HTMLElement}\n */\n _this.label_ = document.createElement('span');\n _this.label_.textContent = label;\n _this.label_.className = expandClassName;\n }\n else {\n _this.label_ = label;\n }\n var activeLabel = _this.collapsible_ && !_this.collapsed_ ? _this.collapseLabel_ : _this.label_;\n /**\n * @private\n * @type {HTMLElement}\n */\n _this.toggleButton_ = document.createElement('button');\n _this.toggleButton_.setAttribute('type', 'button');\n _this.toggleButton_.setAttribute('aria-expanded', String(!_this.collapsed_));\n _this.toggleButton_.title = tipLabel;\n _this.toggleButton_.appendChild(activeLabel);\n _this.toggleButton_.addEventListener(EventType.CLICK, _this.handleClick_.bind(_this), false);\n var cssClasses = className +\n ' ' +\n CLASS_UNSELECTABLE +\n ' ' +\n CLASS_CONTROL +\n (_this.collapsed_ && _this.collapsible_ ? ' ' + CLASS_COLLAPSED : '') +\n (_this.collapsible_ ? '' : ' ol-uncollapsible');\n var element = _this.element;\n element.className = cssClasses;\n element.appendChild(_this.toggleButton_);\n element.appendChild(_this.ulElement_);\n /**\n * A list of currently rendered resolutions.\n * @type {Array<string>}\n * @private\n */\n _this.renderedAttributions_ = [];\n /**\n * @private\n * @type {boolean}\n */\n _this.renderedVisible_ = true;\n return _this;\n }\n /**\n * Collect a list of visible attributions and set the collapsible state.\n * @param {import(\"../PluggableMap.js\").FrameState} frameState Frame state.\n * @return {Array<string>} Attributions.\n * @private\n */\n Attribution.prototype.collectSourceAttributions_ = function (frameState) {\n /**\n * Used to determine if an attribution already exists.\n * @type {!Object<string, boolean>}\n */\n var lookup = {};\n /**\n * A list of visible attributions.\n * @type {Array<string>}\n */\n var visibleAttributions = [];\n var collapsible = true;\n var layerStatesArray = frameState.layerStatesArray;\n for (var i = 0, ii = layerStatesArray.length; i < ii; ++i) {\n var layerState = layerStatesArray[i];\n if (!inView(layerState, frameState.viewState)) {\n continue;\n }\n var source = /** @type {import(\"../layer/Layer.js\").default} */ (layerState.layer).getSource();\n if (!source) {\n continue;\n }\n var attributionGetter = source.getAttributions();\n if (!attributionGetter) {\n continue;\n }\n var attributions = attributionGetter(frameState);\n if (!attributions) {\n continue;\n }\n collapsible =\n collapsible && source.getAttributionsCollapsible() !== false;\n if (Array.isArray(attributions)) {\n for (var j = 0, jj = attributions.length; j < jj; ++j) {\n if (!(attributions[j] in lookup)) {\n visibleAttributions.push(attributions[j]);\n lookup[attributions[j]] = true;\n }\n }\n }\n else {\n if (!(attributions in lookup)) {\n visibleAttributions.push(attributions);\n lookup[attributions] = true;\n }\n }\n }\n if (!this.overrideCollapsible_) {\n this.setCollapsible(collapsible);\n }\n return visibleAttributions;\n };\n /**\n * @private\n * @param {?import(\"../PluggableMap.js\").FrameState} frameState Frame state.\n */\n Attribution.prototype.updateElement_ = function (frameState) {\n if (!frameState) {\n if (this.renderedVisible_) {\n this.element.style.display = 'none';\n this.renderedVisible_ = false;\n }\n return;\n }\n var attributions = this.collectSourceAttributions_(frameState);\n var visible = attributions.length > 0;\n if (this.renderedVisible_ != visible) {\n this.element.style.display = visible ? '' : 'none';\n this.renderedVisible_ = visible;\n }\n if (equals(attributions, this.renderedAttributions_)) {\n return;\n }\n removeChildren(this.ulElement_);\n // append the attributions\n for (var i = 0, ii = attributions.length; i < ii; ++i) {\n var element = document.createElement('li');\n element.innerHTML = attributions[i];\n this.ulElement_.appendChild(element);\n }\n this.renderedAttributions_ = attributions;\n };\n /**\n * @param {MouseEvent} event The event to handle\n * @private\n */\n Attribution.prototype.handleClick_ = function (event) {\n event.preventDefault();\n this.handleToggle_();\n this.userCollapsed_ = this.collapsed_;\n };\n /**\n * @private\n */\n Attribution.prototype.handleToggle_ = function () {\n this.element.classList.toggle(CLASS_COLLAPSED);\n if (this.collapsed_) {\n replaceNode(this.collapseLabel_, this.label_);\n }\n else {\n replaceNode(this.label_, this.collapseLabel_);\n }\n this.collapsed_ = !this.collapsed_;\n this.toggleButton_.setAttribute('aria-expanded', String(!this.collapsed_));\n };\n /**\n * Return `true` if the attribution is collapsible, `false` otherwise.\n * @return {boolean} True if the widget is collapsible.\n * @api\n */\n Attribution.prototype.getCollapsible = function () {\n return this.collapsible_;\n };\n /**\n * Set whether the attribution should be collapsible.\n * @param {boolean} collapsible True if the widget is collapsible.\n * @api\n */\n Attribution.prototype.setCollapsible = function (collapsible) {\n if (this.collapsible_ === collapsible) {\n return;\n }\n this.collapsible_ = collapsible;\n this.element.classList.toggle('ol-uncollapsible');\n if (this.userCollapsed_) {\n this.handleToggle_();\n }\n };\n /**\n * Collapse or expand the attribution according to the passed parameter. Will\n * not do anything if the attribution isn't collapsible or if the current\n * collapsed state is already the one requested.\n * @param {boolean} collapsed True if the widget is collapsed.\n * @api\n */\n Attribution.prototype.setCollapsed = function (collapsed) {\n this.userCollapsed_ = collapsed;\n if (!this.collapsible_ || this.collapsed_ === collapsed) {\n return;\n }\n this.handleToggle_();\n };\n /**\n * Return `true` when the attribution is currently collapsed or `false`\n * otherwise.\n * @return {boolean} True if the widget is collapsed.\n * @api\n */\n Attribution.prototype.getCollapsed = function () {\n return this.collapsed_;\n };\n /**\n * Update the attribution element.\n * @param {import(\"../MapEvent.js\").default} mapEvent Map event.\n * @override\n */\n Attribution.prototype.render = function (mapEvent) {\n this.updateElement_(mapEvent.frameState);\n };\n return Attribution;\n}(Control));\nexport default Attribution;\n//# sourceMappingURL=Attribution.js.map","/**\n * @module ol/pointer/EventType\n */\n/**\n * Constants for event names.\n * @enum {string}\n */\nexport default {\n POINTERMOVE: 'pointermove',\n POINTERDOWN: 'pointerdown',\n POINTERUP: 'pointerup',\n POINTEROVER: 'pointerover',\n POINTEROUT: 'pointerout',\n POINTERENTER: 'pointerenter',\n POINTERLEAVE: 'pointerleave',\n POINTERCANCEL: 'pointercancel',\n};\n//# sourceMappingURL=EventType.js.map","/**\n * @module ol/proj/Units\n */\n/**\n * Projection units: `'degrees'`, `'ft'`, `'m'`, `'pixels'`, `'tile-pixels'` or\n * `'us-ft'`.\n * @enum {string}\n */\nvar Units = {\n /**\n * Radians\n * @api\n */\n RADIANS: 'radians',\n /**\n * Degrees\n * @api\n */\n DEGREES: 'degrees',\n /**\n * Feet\n * @api\n */\n FEET: 'ft',\n /**\n * Meters\n * @api\n */\n METERS: 'm',\n /**\n * Pixels\n * @api\n */\n PIXELS: 'pixels',\n /**\n * Tile Pixels\n * @api\n */\n TILE_PIXELS: 'tile-pixels',\n /**\n * US Feet\n * @api\n */\n USFEET: 'us-ft',\n};\n/**\n * See http://duff.ess.washington.edu/data/raster/drg/docs/geotiff.txt\n * @type {Object<number, Units>}\n */\nvar unitByCode = {\n '9001': Units.METERS,\n '9002': Units.FEET,\n '9003': Units.USFEET,\n '9101': Units.RADIANS,\n '9102': Units.DEGREES,\n};\n/**\n * @param {number} code Unit code.\n * @return {Units} Units.\n */\nexport function fromCode(code) {\n return unitByCode[code];\n}\n/**\n * Meters per unit lookup table.\n * @const\n * @type {Object<Units, number>}\n * @api\n */\nexport var METERS_PER_UNIT = {};\n// use the radius of the Normal sphere\nMETERS_PER_UNIT[Units.RADIANS] = 6370997 / (2 * Math.PI);\nMETERS_PER_UNIT[Units.DEGREES] = (2 * Math.PI * 6370997) / 360;\nMETERS_PER_UNIT[Units.FEET] = 0.3048;\nMETERS_PER_UNIT[Units.METERS] = 1;\nMETERS_PER_UNIT[Units.USFEET] = 1200 / 3937;\nexport default Units;\n//# sourceMappingURL=Units.js.map","/**\n * @module ol/proj/Projection\n */\nimport { METERS_PER_UNIT } from './Units.js';\n/**\n * @typedef {Object} Options\n * @property {string} code The SRS identifier code, e.g. `EPSG:4326`.\n * @property {import(\"./Units.js\").default|string} [units] Units. Required unless a\n * proj4 projection is defined for `code`.\n * @property {import(\"../extent.js\").Extent} [extent] The validity extent for the SRS.\n * @property {string} [axisOrientation='enu'] The axis orientation as specified in Proj4.\n * @property {boolean} [global=false] Whether the projection is valid for the whole globe.\n * @property {number} [metersPerUnit] The meters per unit for the SRS.\n * If not provided, the `units` are used to get the meters per unit from the {@link module:ol/proj/Units~METERS_PER_UNIT}\n * lookup table.\n * @property {import(\"../extent.js\").Extent} [worldExtent] The world extent for the SRS.\n * @property {function(number, import(\"../coordinate.js\").Coordinate):number} [getPointResolution]\n * Function to determine resolution at a point. The function is called with a\n * `number` view resolution and a {@link module:ol/coordinate~Coordinate Coordinate} as arguments, and returns\n * the `number` resolution in projection units at the passed coordinate. If this is `undefined`,\n * the default {@link module:ol/proj.getPointResolution getPointResolution()} function will be used.\n */\n/**\n * @classdesc\n * Projection definition class. One of these is created for each projection\n * supported in the application and stored in the {@link module:ol/proj} namespace.\n * You can use these in applications, but this is not required, as API params\n * and options use {@link module:ol/proj~ProjectionLike} which means the simple string\n * code will suffice.\n *\n * You can use {@link module:ol/proj.get} to retrieve the object for a particular\n * projection.\n *\n * The library includes definitions for `EPSG:4326` and `EPSG:3857`, together\n * with the following aliases:\n * * `EPSG:4326`: CRS:84, urn:ogc:def:crs:EPSG:6.6:4326,\n * urn:ogc:def:crs:OGC:1.3:CRS84, urn:ogc:def:crs:OGC:2:84,\n * http://www.opengis.net/gml/srs/epsg.xml#4326,\n * urn:x-ogc:def:crs:EPSG:4326\n * * `EPSG:3857`: EPSG:102100, EPSG:102113, EPSG:900913,\n * urn:ogc:def:crs:EPSG:6.18:3:3857,\n * http://www.opengis.net/gml/srs/epsg.xml#3857\n *\n * If you use [proj4js](https://github.com/proj4js/proj4js), aliases can\n * be added using `proj4.defs()`. After all required projection definitions are\n * added, call the {@link module:ol/proj/proj4.register} function.\n *\n * @api\n */\nvar Projection = /** @class */ (function () {\n /**\n * @param {Options} options Projection options.\n */\n function Projection(options) {\n /**\n * @private\n * @type {string}\n */\n this.code_ = options.code;\n /**\n * Units of projected coordinates. When set to `TILE_PIXELS`, a\n * `this.extent_` and `this.worldExtent_` must be configured properly for each\n * tile.\n * @private\n * @type {import(\"./Units.js\").default}\n */\n this.units_ = /** @type {import(\"./Units.js\").default} */ (options.units);\n /**\n * Validity extent of the projection in projected coordinates. For projections\n * with `TILE_PIXELS` units, this is the extent of the tile in\n * tile pixel space.\n * @private\n * @type {import(\"../extent.js\").Extent}\n */\n this.extent_ = options.extent !== undefined ? options.extent : null;\n /**\n * Extent of the world in EPSG:4326. For projections with\n * `TILE_PIXELS` units, this is the extent of the tile in\n * projected coordinate space.\n * @private\n * @type {import(\"../extent.js\").Extent}\n */\n this.worldExtent_ =\n options.worldExtent !== undefined ? options.worldExtent : null;\n /**\n * @private\n * @type {string}\n */\n this.axisOrientation_ =\n options.axisOrientation !== undefined ? options.axisOrientation : 'enu';\n /**\n * @private\n * @type {boolean}\n */\n this.global_ = options.global !== undefined ? options.global : false;\n /**\n * @private\n * @type {boolean}\n */\n this.canWrapX_ = !!(this.global_ && this.extent_);\n /**\n * @private\n * @type {function(number, import(\"../coordinate.js\").Coordinate):number|undefined}\n */\n this.getPointResolutionFunc_ = options.getPointResolution;\n /**\n * @private\n * @type {import(\"../tilegrid/TileGrid.js\").default}\n */\n this.defaultTileGrid_ = null;\n /**\n * @private\n * @type {number|undefined}\n */\n this.metersPerUnit_ = options.metersPerUnit;\n }\n /**\n * @return {boolean} The projection is suitable for wrapping the x-axis\n */\n Projection.prototype.canWrapX = function () {\n return this.canWrapX_;\n };\n /**\n * Get the code for this projection, e.g. 'EPSG:4326'.\n * @return {string} Code.\n * @api\n */\n Projection.prototype.getCode = function () {\n return this.code_;\n };\n /**\n * Get the validity extent for this projection.\n * @return {import(\"../extent.js\").Extent} Extent.\n * @api\n */\n Projection.prototype.getExtent = function () {\n return this.extent_;\n };\n /**\n * Get the units of this projection.\n * @return {import(\"./Units.js\").default} Units.\n * @api\n */\n Projection.prototype.getUnits = function () {\n return this.units_;\n };\n /**\n * Get the amount of meters per unit of this projection. If the projection is\n * not configured with `metersPerUnit` or a units identifier, the return is\n * `undefined`.\n * @return {number|undefined} Meters.\n * @api\n */\n Projection.prototype.getMetersPerUnit = function () {\n return this.metersPerUnit_ || METERS_PER_UNIT[this.units_];\n };\n /**\n * Get the world extent for this projection.\n * @return {import(\"../extent.js\").Extent} Extent.\n * @api\n */\n Projection.prototype.getWorldExtent = function () {\n return this.worldExtent_;\n };\n /**\n * Get the axis orientation of this projection.\n * Example values are:\n * enu - the default easting, northing, elevation.\n * neu - northing, easting, up - useful for \"lat/long\" geographic coordinates,\n * or south orientated transverse mercator.\n * wnu - westing, northing, up - some planetary coordinate systems have\n * \"west positive\" coordinate systems\n * @return {string} Axis orientation.\n * @api\n */\n Projection.prototype.getAxisOrientation = function () {\n return this.axisOrientation_;\n };\n /**\n * Is this projection a global projection which spans the whole world?\n * @return {boolean} Whether the projection is global.\n * @api\n */\n Projection.prototype.isGlobal = function () {\n return this.global_;\n };\n /**\n * Set if the projection is a global projection which spans the whole world\n * @param {boolean} global Whether the projection is global.\n * @api\n */\n Projection.prototype.setGlobal = function (global) {\n this.global_ = global;\n this.canWrapX_ = !!(global && this.extent_);\n };\n /**\n * @return {import(\"../tilegrid/TileGrid.js\").default} The default tile grid.\n */\n Projection.prototype.getDefaultTileGrid = function () {\n return this.defaultTileGrid_;\n };\n /**\n * @param {import(\"../tilegrid/TileGrid.js\").default} tileGrid The default tile grid.\n */\n Projection.prototype.setDefaultTileGrid = function (tileGrid) {\n this.defaultTileGrid_ = tileGrid;\n };\n /**\n * Set the validity extent for this projection.\n * @param {import(\"../extent.js\").Extent} extent Extent.\n * @api\n */\n Projection.prototype.setExtent = function (extent) {\n this.extent_ = extent;\n this.canWrapX_ = !!(this.global_ && extent);\n };\n /**\n * Set the world extent for this projection.\n * @param {import(\"../extent.js\").Extent} worldExtent World extent\n * [minlon, minlat, maxlon, maxlat].\n * @api\n */\n Projection.prototype.setWorldExtent = function (worldExtent) {\n this.worldExtent_ = worldExtent;\n };\n /**\n * Set the getPointResolution function (see {@link module:ol/proj.getPointResolution}\n * for this projection.\n * @param {function(number, import(\"../coordinate.js\").Coordinate):number} func Function\n * @api\n */\n Projection.prototype.setGetPointResolution = function (func) {\n this.getPointResolutionFunc_ = func;\n };\n /**\n * Get the custom point resolution function for this projection (if set).\n * @return {function(number, import(\"../coordinate.js\").Coordinate):number|undefined} The custom point\n * resolution function (if set).\n */\n Projection.prototype.getPointResolutionFunc = function () {\n return this.getPointResolutionFunc_;\n };\n return Projection;\n}());\nexport default Projection;\n//# sourceMappingURL=Projection.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/proj/epsg3857\n */\nimport Projection from './Projection.js';\nimport Units from './Units.js';\nimport { cosh } from '../math.js';\n/**\n * Radius of WGS84 sphere\n *\n * @const\n * @type {number}\n */\nexport var RADIUS = 6378137;\n/**\n * @const\n * @type {number}\n */\nexport var HALF_SIZE = Math.PI * RADIUS;\n/**\n * @const\n * @type {import(\"../extent.js\").Extent}\n */\nexport var EXTENT = [-HALF_SIZE, -HALF_SIZE, HALF_SIZE, HALF_SIZE];\n/**\n * @const\n * @type {import(\"../extent.js\").Extent}\n */\nexport var WORLD_EXTENT = [-180, -85, 180, 85];\n/**\n * Maximum safe value in y direction\n * @const\n * @type {number}\n */\nexport var MAX_SAFE_Y = RADIUS * Math.log(Math.tan(Math.PI / 2));\n/**\n * @classdesc\n * Projection object for web/spherical Mercator (EPSG:3857).\n */\nvar EPSG3857Projection = /** @class */ (function (_super) {\n __extends(EPSG3857Projection, _super);\n /**\n * @param {string} code Code.\n */\n function EPSG3857Projection(code) {\n return _super.call(this, {\n code: code,\n units: Units.METERS,\n extent: EXTENT,\n global: true,\n worldExtent: WORLD_EXTENT,\n getPointResolution: function (resolution, point) {\n return resolution / cosh(point[1] / RADIUS);\n },\n }) || this;\n }\n return EPSG3857Projection;\n}(Projection));\n/**\n * Projections equal to EPSG:3857.\n *\n * @const\n * @type {Array<import(\"./Projection.js\").default>}\n */\nexport var PROJECTIONS = [\n new EPSG3857Projection('EPSG:3857'),\n new EPSG3857Projection('EPSG:102100'),\n new EPSG3857Projection('EPSG:102113'),\n new EPSG3857Projection('EPSG:900913'),\n new EPSG3857Projection('http://www.opengis.net/def/crs/EPSG/0/3857'),\n new EPSG3857Projection('http://www.opengis.net/gml/srs/epsg.xml#3857'),\n];\n/**\n * Transformation from EPSG:4326 to EPSG:3857.\n *\n * @param {Array<number>} input Input array of coordinate values.\n * @param {Array<number>} [opt_output] Output array of coordinate values.\n * @param {number} [opt_dimension] Dimension (default is `2`).\n * @return {Array<number>} Output array of coordinate values.\n */\nexport function fromEPSG4326(input, opt_output, opt_dimension) {\n var length = input.length;\n var dimension = opt_dimension > 1 ? opt_dimension : 2;\n var output = opt_output;\n if (output === undefined) {\n if (dimension > 2) {\n // preserve values beyond second dimension\n output = input.slice();\n }\n else {\n output = new Array(length);\n }\n }\n for (var i = 0; i < length; i += dimension) {\n output[i] = (HALF_SIZE * input[i]) / 180;\n var y = RADIUS * Math.log(Math.tan((Math.PI * (+input[i + 1] + 90)) / 360));\n if (y > MAX_SAFE_Y) {\n y = MAX_SAFE_Y;\n }\n else if (y < -MAX_SAFE_Y) {\n y = -MAX_SAFE_Y;\n }\n output[i + 1] = y;\n }\n return output;\n}\n/**\n * Transformation from EPSG:3857 to EPSG:4326.\n *\n * @param {Array<number>} input Input array of coordinate values.\n * @param {Array<number>} [opt_output] Output array of coordinate values.\n * @param {number} [opt_dimension] Dimension (default is `2`).\n * @return {Array<number>} Output array of coordinate values.\n */\nexport function toEPSG4326(input, opt_output, opt_dimension) {\n var length = input.length;\n var dimension = opt_dimension > 1 ? opt_dimension : 2;\n var output = opt_output;\n if (output === undefined) {\n if (dimension > 2) {\n // preserve values beyond second dimension\n output = input.slice();\n }\n else {\n output = new Array(length);\n }\n }\n for (var i = 0; i < length; i += dimension) {\n output[i] = (180 * input[i]) / HALF_SIZE;\n output[i + 1] =\n (360 * Math.atan(Math.exp(input[i + 1] / RADIUS))) / Math.PI - 90;\n }\n return output;\n}\n//# sourceMappingURL=epsg3857.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/proj/epsg4326\n */\nimport Projection from './Projection.js';\nimport Units from './Units.js';\n/**\n * Semi-major radius of the WGS84 ellipsoid.\n *\n * @const\n * @type {number}\n */\nexport var RADIUS = 6378137;\n/**\n * Extent of the EPSG:4326 projection which is the whole world.\n *\n * @const\n * @type {import(\"../extent.js\").Extent}\n */\nexport var EXTENT = [-180, -90, 180, 90];\n/**\n * @const\n * @type {number}\n */\nexport var METERS_PER_UNIT = (Math.PI * RADIUS) / 180;\n/**\n * @classdesc\n * Projection object for WGS84 geographic coordinates (EPSG:4326).\n *\n * Note that OpenLayers does not strictly comply with the EPSG definition.\n * The EPSG registry defines 4326 as a CRS for Latitude,Longitude (y,x).\n * OpenLayers treats EPSG:4326 as a pseudo-projection, with x,y coordinates.\n */\nvar EPSG4326Projection = /** @class */ (function (_super) {\n __extends(EPSG4326Projection, _super);\n /**\n * @param {string} code Code.\n * @param {string} [opt_axisOrientation] Axis orientation.\n */\n function EPSG4326Projection(code, opt_axisOrientation) {\n return _super.call(this, {\n code: code,\n units: Units.DEGREES,\n extent: EXTENT,\n axisOrientation: opt_axisOrientation,\n global: true,\n metersPerUnit: METERS_PER_UNIT,\n worldExtent: EXTENT,\n }) || this;\n }\n return EPSG4326Projection;\n}(Projection));\n/**\n * Projections equal to EPSG:4326.\n *\n * @const\n * @type {Array<import(\"./Projection.js\").default>}\n */\nexport var PROJECTIONS = [\n new EPSG4326Projection('CRS:84'),\n new EPSG4326Projection('EPSG:4326', 'neu'),\n new EPSG4326Projection('urn:ogc:def:crs:OGC:1.3:CRS84'),\n new EPSG4326Projection('urn:ogc:def:crs:OGC:2:84'),\n new EPSG4326Projection('http://www.opengis.net/def/crs/OGC/1.3/CRS84', 'neu'),\n new EPSG4326Projection('http://www.opengis.net/gml/srs/epsg.xml#4326', 'neu'),\n new EPSG4326Projection('http://www.opengis.net/def/crs/EPSG/0/4326', 'neu'),\n];\n//# sourceMappingURL=epsg4326.js.map","/**\n * @module ol/proj/projections\n */\n/**\n * @type {Object<string, import(\"./Projection.js\").default>}\n */\nvar cache = {};\n/**\n * Clear the projections cache.\n */\nexport function clear() {\n cache = {};\n}\n/**\n * Get a cached projection by code.\n * @param {string} code The code for the projection.\n * @return {import(\"./Projection.js\").default} The projection (if cached).\n */\nexport function get(code) {\n return (cache[code] ||\n cache[code.replace(/urn:(x-)?ogc:def:crs:EPSG:(.*:)?(\\w+)$/, 'EPSG:$3')] ||\n null);\n}\n/**\n * Add a projection to the cache.\n * @param {string} code The projection code.\n * @param {import(\"./Projection.js\").default} projection The projection to cache.\n */\nexport function add(code, projection) {\n cache[code] = projection;\n}\n//# sourceMappingURL=projections.js.map","/**\n * @module ol/proj/transforms\n */\nimport { isEmpty } from '../obj.js';\n/**\n * @private\n * @type {!Object<string, Object<string, import(\"../proj.js\").TransformFunction>>}\n */\nvar transforms = {};\n/**\n * Clear the transform cache.\n */\nexport function clear() {\n transforms = {};\n}\n/**\n * Registers a conversion function to convert coordinates from the source\n * projection to the destination projection.\n *\n * @param {import(\"./Projection.js\").default} source Source.\n * @param {import(\"./Projection.js\").default} destination Destination.\n * @param {import(\"../proj.js\").TransformFunction} transformFn Transform.\n */\nexport function add(source, destination, transformFn) {\n var sourceCode = source.getCode();\n var destinationCode = destination.getCode();\n if (!(sourceCode in transforms)) {\n transforms[sourceCode] = {};\n }\n transforms[sourceCode][destinationCode] = transformFn;\n}\n/**\n * Unregisters the conversion function to convert coordinates from the source\n * projection to the destination projection. This method is used to clean up\n * cached transforms during testing.\n *\n * @param {import(\"./Projection.js\").default} source Source projection.\n * @param {import(\"./Projection.js\").default} destination Destination projection.\n * @return {import(\"../proj.js\").TransformFunction} transformFn The unregistered transform.\n */\nexport function remove(source, destination) {\n var sourceCode = source.getCode();\n var destinationCode = destination.getCode();\n var transform = transforms[sourceCode][destinationCode];\n delete transforms[sourceCode][destinationCode];\n if (isEmpty(transforms[sourceCode])) {\n delete transforms[sourceCode];\n }\n return transform;\n}\n/**\n * Get a transform given a source code and a destination code.\n * @param {string} sourceCode The code for the source projection.\n * @param {string} destinationCode The code for the destination projection.\n * @return {import(\"../proj.js\").TransformFunction|undefined} The transform function (if found).\n */\nexport function get(sourceCode, destinationCode) {\n var transform;\n if (sourceCode in transforms && destinationCode in transforms[sourceCode]) {\n transform = transforms[sourceCode][destinationCode];\n }\n return transform;\n}\n//# sourceMappingURL=transforms.js.map","/**\n * @module ol/extent/Corner\n */\n/**\n * Extent corner.\n * @enum {string}\n */\nexport default {\n BOTTOM_LEFT: 'bottom-left',\n BOTTOM_RIGHT: 'bottom-right',\n TOP_LEFT: 'top-left',\n TOP_RIGHT: 'top-right',\n};\n//# sourceMappingURL=Corner.js.map","/**\n * @module ol/extent\n */\nimport Corner from './extent/Corner.js';\nimport Relationship from './extent/Relationship.js';\nimport { assert } from './asserts.js';\n/**\n * An array of numbers representing an extent: `[minx, miny, maxx, maxy]`.\n * @typedef {Array<number>} Extent\n * @api\n */\n/**\n * Build an extent that includes all given coordinates.\n *\n * @param {Array<import(\"./coordinate.js\").Coordinate>} coordinates Coordinates.\n * @return {Extent} Bounding extent.\n * @api\n */\nexport function boundingExtent(coordinates) {\n var extent = createEmpty();\n for (var i = 0, ii = coordinates.length; i < ii; ++i) {\n extendCoordinate(extent, coordinates[i]);\n }\n return extent;\n}\n/**\n * @param {Array<number>} xs Xs.\n * @param {Array<number>} ys Ys.\n * @param {Extent} [opt_extent] Destination extent.\n * @private\n * @return {Extent} Extent.\n */\nfunction _boundingExtentXYs(xs, ys, opt_extent) {\n var minX = Math.min.apply(null, xs);\n var minY = Math.min.apply(null, ys);\n var maxX = Math.max.apply(null, xs);\n var maxY = Math.max.apply(null, ys);\n return createOrUpdate(minX, minY, maxX, maxY, opt_extent);\n}\n/**\n * Return extent increased by the provided value.\n * @param {Extent} extent Extent.\n * @param {number} value The amount by which the extent should be buffered.\n * @param {Extent} [opt_extent] Extent.\n * @return {Extent} Extent.\n * @api\n */\nexport function buffer(extent, value, opt_extent) {\n if (opt_extent) {\n opt_extent[0] = extent[0] - value;\n opt_extent[1] = extent[1] - value;\n opt_extent[2] = extent[2] + value;\n opt_extent[3] = extent[3] + value;\n return opt_extent;\n }\n else {\n return [\n extent[0] - value,\n extent[1] - value,\n extent[2] + value,\n extent[3] + value,\n ];\n }\n}\n/**\n * Creates a clone of an extent.\n *\n * @param {Extent} extent Extent to clone.\n * @param {Extent} [opt_extent] Extent.\n * @return {Extent} The clone.\n */\nexport function clone(extent, opt_extent) {\n if (opt_extent) {\n opt_extent[0] = extent[0];\n opt_extent[1] = extent[1];\n opt_extent[2] = extent[2];\n opt_extent[3] = extent[3];\n return opt_extent;\n }\n else {\n return extent.slice();\n }\n}\n/**\n * @param {Extent} extent Extent.\n * @param {number} x X.\n * @param {number} y Y.\n * @return {number} Closest squared distance.\n */\nexport function closestSquaredDistanceXY(extent, x, y) {\n var dx, dy;\n if (x < extent[0]) {\n dx = extent[0] - x;\n }\n else if (extent[2] < x) {\n dx = x - extent[2];\n }\n else {\n dx = 0;\n }\n if (y < extent[1]) {\n dy = extent[1] - y;\n }\n else if (extent[3] < y) {\n dy = y - extent[3];\n }\n else {\n dy = 0;\n }\n return dx * dx + dy * dy;\n}\n/**\n * Check if the passed coordinate is contained or on the edge of the extent.\n *\n * @param {Extent} extent Extent.\n * @param {import(\"./coordinate.js\").Coordinate} coordinate Coordinate.\n * @return {boolean} The coordinate is contained in the extent.\n * @api\n */\nexport function containsCoordinate(extent, coordinate) {\n return containsXY(extent, coordinate[0], coordinate[1]);\n}\n/**\n * Check if one extent contains another.\n *\n * An extent is deemed contained if it lies completely within the other extent,\n * including if they share one or more edges.\n *\n * @param {Extent} extent1 Extent 1.\n * @param {Extent} extent2 Extent 2.\n * @return {boolean} The second extent is contained by or on the edge of the\n * first.\n * @api\n */\nexport function containsExtent(extent1, extent2) {\n return (extent1[0] <= extent2[0] &&\n extent2[2] <= extent1[2] &&\n extent1[1] <= extent2[1] &&\n extent2[3] <= extent1[3]);\n}\n/**\n * Check if the passed coordinate is contained or on the edge of the extent.\n *\n * @param {Extent} extent Extent.\n * @param {number} x X coordinate.\n * @param {number} y Y coordinate.\n * @return {boolean} The x, y values are contained in the extent.\n * @api\n */\nexport function containsXY(extent, x, y) {\n return extent[0] <= x && x <= extent[2] && extent[1] <= y && y <= extent[3];\n}\n/**\n * Get the relationship between a coordinate and extent.\n * @param {Extent} extent The extent.\n * @param {import(\"./coordinate.js\").Coordinate} coordinate The coordinate.\n * @return {import(\"./extent/Relationship.js\").default} The relationship (bitwise compare with\n * import(\"./extent/Relationship.js\").Relationship).\n */\nexport function coordinateRelationship(extent, coordinate) {\n var minX = extent[0];\n var minY = extent[1];\n var maxX = extent[2];\n var maxY = extent[3];\n var x = coordinate[0];\n var y = coordinate[1];\n var relationship = Relationship.UNKNOWN;\n if (x < minX) {\n relationship = relationship | Relationship.LEFT;\n }\n else if (x > maxX) {\n relationship = relationship | Relationship.RIGHT;\n }\n if (y < minY) {\n relationship = relationship | Relationship.BELOW;\n }\n else if (y > maxY) {\n relationship = relationship | Relationship.ABOVE;\n }\n if (relationship === Relationship.UNKNOWN) {\n relationship = Relationship.INTERSECTING;\n }\n return relationship;\n}\n/**\n * Create an empty extent.\n * @return {Extent} Empty extent.\n * @api\n */\nexport function createEmpty() {\n return [Infinity, Infinity, -Infinity, -Infinity];\n}\n/**\n * Create a new extent or update the provided extent.\n * @param {number} minX Minimum X.\n * @param {number} minY Minimum Y.\n * @param {number} maxX Maximum X.\n * @param {number} maxY Maximum Y.\n * @param {Extent} [opt_extent] Destination extent.\n * @return {Extent} Extent.\n */\nexport function createOrUpdate(minX, minY, maxX, maxY, opt_extent) {\n if (opt_extent) {\n opt_extent[0] = minX;\n opt_extent[1] = minY;\n opt_extent[2] = maxX;\n opt_extent[3] = maxY;\n return opt_extent;\n }\n else {\n return [minX, minY, maxX, maxY];\n }\n}\n/**\n * Create a new empty extent or make the provided one empty.\n * @param {Extent} [opt_extent] Extent.\n * @return {Extent} Extent.\n */\nexport function createOrUpdateEmpty(opt_extent) {\n return createOrUpdate(Infinity, Infinity, -Infinity, -Infinity, opt_extent);\n}\n/**\n * @param {import(\"./coordinate.js\").Coordinate} coordinate Coordinate.\n * @param {Extent} [opt_extent] Extent.\n * @return {Extent} Extent.\n */\nexport function createOrUpdateFromCoordinate(coordinate, opt_extent) {\n var x = coordinate[0];\n var y = coordinate[1];\n return createOrUpdate(x, y, x, y, opt_extent);\n}\n/**\n * @param {Array<import(\"./coordinate.js\").Coordinate>} coordinates Coordinates.\n * @param {Extent} [opt_extent] Extent.\n * @return {Extent} Extent.\n */\nexport function createOrUpdateFromCoordinates(coordinates, opt_extent) {\n var extent = createOrUpdateEmpty(opt_extent);\n return extendCoordinates(extent, coordinates);\n}\n/**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {number} end End.\n * @param {number} stride Stride.\n * @param {Extent} [opt_extent] Extent.\n * @return {Extent} Extent.\n */\nexport function createOrUpdateFromFlatCoordinates(flatCoordinates, offset, end, stride, opt_extent) {\n var extent = createOrUpdateEmpty(opt_extent);\n return extendFlatCoordinates(extent, flatCoordinates, offset, end, stride);\n}\n/**\n * @param {Array<Array<import(\"./coordinate.js\").Coordinate>>} rings Rings.\n * @param {Extent} [opt_extent] Extent.\n * @return {Extent} Extent.\n */\nexport function createOrUpdateFromRings(rings, opt_extent) {\n var extent = createOrUpdateEmpty(opt_extent);\n return extendRings(extent, rings);\n}\n/**\n * Determine if two extents are equivalent.\n * @param {Extent} extent1 Extent 1.\n * @param {Extent} extent2 Extent 2.\n * @return {boolean} The two extents are equivalent.\n * @api\n */\nexport function equals(extent1, extent2) {\n return (extent1[0] == extent2[0] &&\n extent1[2] == extent2[2] &&\n extent1[1] == extent2[1] &&\n extent1[3] == extent2[3]);\n}\n/**\n * Determine if two extents are approximately equivalent.\n * @param {Extent} extent1 Extent 1.\n * @param {Extent} extent2 Extent 2.\n * @param {number} tolerance Tolerance in extent coordinate units.\n * @return {boolean} The two extents differ by less than the tolerance.\n */\nexport function approximatelyEquals(extent1, extent2, tolerance) {\n return (Math.abs(extent1[0] - extent2[0]) < tolerance &&\n Math.abs(extent1[2] - extent2[2]) < tolerance &&\n Math.abs(extent1[1] - extent2[1]) < tolerance &&\n Math.abs(extent1[3] - extent2[3]) < tolerance);\n}\n/**\n * Modify an extent to include another extent.\n * @param {Extent} extent1 The extent to be modified.\n * @param {Extent} extent2 The extent that will be included in the first.\n * @return {Extent} A reference to the first (extended) extent.\n * @api\n */\nexport function extend(extent1, extent2) {\n if (extent2[0] < extent1[0]) {\n extent1[0] = extent2[0];\n }\n if (extent2[2] > extent1[2]) {\n extent1[2] = extent2[2];\n }\n if (extent2[1] < extent1[1]) {\n extent1[1] = extent2[1];\n }\n if (extent2[3] > extent1[3]) {\n extent1[3] = extent2[3];\n }\n return extent1;\n}\n/**\n * @param {Extent} extent Extent.\n * @param {import(\"./coordinate.js\").Coordinate} coordinate Coordinate.\n */\nexport function extendCoordinate(extent, coordinate) {\n if (coordinate[0] < extent[0]) {\n extent[0] = coordinate[0];\n }\n if (coordinate[0] > extent[2]) {\n extent[2] = coordinate[0];\n }\n if (coordinate[1] < extent[1]) {\n extent[1] = coordinate[1];\n }\n if (coordinate[1] > extent[3]) {\n extent[3] = coordinate[1];\n }\n}\n/**\n * @param {Extent} extent Extent.\n * @param {Array<import(\"./coordinate.js\").Coordinate>} coordinates Coordinates.\n * @return {Extent} Extent.\n */\nexport function extendCoordinates(extent, coordinates) {\n for (var i = 0, ii = coordinates.length; i < ii; ++i) {\n extendCoordinate(extent, coordinates[i]);\n }\n return extent;\n}\n/**\n * @param {Extent} extent Extent.\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {number} end End.\n * @param {number} stride Stride.\n * @return {Extent} Extent.\n */\nexport function extendFlatCoordinates(extent, flatCoordinates, offset, end, stride) {\n for (; offset < end; offset += stride) {\n extendXY(extent, flatCoordinates[offset], flatCoordinates[offset + 1]);\n }\n return extent;\n}\n/**\n * @param {Extent} extent Extent.\n * @param {Array<Array<import(\"./coordinate.js\").Coordinate>>} rings Rings.\n * @return {Extent} Extent.\n */\nexport function extendRings(extent, rings) {\n for (var i = 0, ii = rings.length; i < ii; ++i) {\n extendCoordinates(extent, rings[i]);\n }\n return extent;\n}\n/**\n * @param {Extent} extent Extent.\n * @param {number} x X.\n * @param {number} y Y.\n */\nexport function extendXY(extent, x, y) {\n extent[0] = Math.min(extent[0], x);\n extent[1] = Math.min(extent[1], y);\n extent[2] = Math.max(extent[2], x);\n extent[3] = Math.max(extent[3], y);\n}\n/**\n * This function calls `callback` for each corner of the extent. If the\n * callback returns a truthy value the function returns that value\n * immediately. Otherwise the function returns `false`.\n * @param {Extent} extent Extent.\n * @param {function(import(\"./coordinate.js\").Coordinate): S} callback Callback.\n * @return {S|boolean} Value.\n * @template S\n */\nexport function forEachCorner(extent, callback) {\n var val;\n val = callback(getBottomLeft(extent));\n if (val) {\n return val;\n }\n val = callback(getBottomRight(extent));\n if (val) {\n return val;\n }\n val = callback(getTopRight(extent));\n if (val) {\n return val;\n }\n val = callback(getTopLeft(extent));\n if (val) {\n return val;\n }\n return false;\n}\n/**\n * Get the size of an extent.\n * @param {Extent} extent Extent.\n * @return {number} Area.\n * @api\n */\nexport function getArea(extent) {\n var area = 0;\n if (!isEmpty(extent)) {\n area = getWidth(extent) * getHeight(extent);\n }\n return area;\n}\n/**\n * Get the bottom left coordinate of an extent.\n * @param {Extent} extent Extent.\n * @return {import(\"./coordinate.js\").Coordinate} Bottom left coordinate.\n * @api\n */\nexport function getBottomLeft(extent) {\n return [extent[0], extent[1]];\n}\n/**\n * Get the bottom right coordinate of an extent.\n * @param {Extent} extent Extent.\n * @return {import(\"./coordinate.js\").Coordinate} Bottom right coordinate.\n * @api\n */\nexport function getBottomRight(extent) {\n return [extent[2], extent[1]];\n}\n/**\n * Get the center coordinate of an extent.\n * @param {Extent} extent Extent.\n * @return {import(\"./coordinate.js\").Coordinate} Center.\n * @api\n */\nexport function getCenter(extent) {\n return [(extent[0] + extent[2]) / 2, (extent[1] + extent[3]) / 2];\n}\n/**\n * Get a corner coordinate of an extent.\n * @param {Extent} extent Extent.\n * @param {import(\"./extent/Corner.js\").default} corner Corner.\n * @return {import(\"./coordinate.js\").Coordinate} Corner coordinate.\n */\nexport function getCorner(extent, corner) {\n var coordinate;\n if (corner === Corner.BOTTOM_LEFT) {\n coordinate = getBottomLeft(extent);\n }\n else if (corner === Corner.BOTTOM_RIGHT) {\n coordinate = getBottomRight(extent);\n }\n else if (corner === Corner.TOP_LEFT) {\n coordinate = getTopLeft(extent);\n }\n else if (corner === Corner.TOP_RIGHT) {\n coordinate = getTopRight(extent);\n }\n else {\n assert(false, 13); // Invalid corner\n }\n return coordinate;\n}\n/**\n * @param {Extent} extent1 Extent 1.\n * @param {Extent} extent2 Extent 2.\n * @return {number} Enlarged area.\n */\nexport function getEnlargedArea(extent1, extent2) {\n var minX = Math.min(extent1[0], extent2[0]);\n var minY = Math.min(extent1[1], extent2[1]);\n var maxX = Math.max(extent1[2], extent2[2]);\n var maxY = Math.max(extent1[3], extent2[3]);\n return (maxX - minX) * (maxY - minY);\n}\n/**\n * @param {import(\"./coordinate.js\").Coordinate} center Center.\n * @param {number} resolution Resolution.\n * @param {number} rotation Rotation.\n * @param {import(\"./size.js\").Size} size Size.\n * @param {Extent} [opt_extent] Destination extent.\n * @return {Extent} Extent.\n */\nexport function getForViewAndSize(center, resolution, rotation, size, opt_extent) {\n var dx = (resolution * size[0]) / 2;\n var dy = (resolution * size[1]) / 2;\n var cosRotation = Math.cos(rotation);\n var sinRotation = Math.sin(rotation);\n var xCos = dx * cosRotation;\n var xSin = dx * sinRotation;\n var yCos = dy * cosRotation;\n var ySin = dy * sinRotation;\n var x = center[0];\n var y = center[1];\n var x0 = x - xCos + ySin;\n var x1 = x - xCos - ySin;\n var x2 = x + xCos - ySin;\n var x3 = x + xCos + ySin;\n var y0 = y - xSin - yCos;\n var y1 = y - xSin + yCos;\n var y2 = y + xSin + yCos;\n var y3 = y + xSin - yCos;\n return createOrUpdate(Math.min(x0, x1, x2, x3), Math.min(y0, y1, y2, y3), Math.max(x0, x1, x2, x3), Math.max(y0, y1, y2, y3), opt_extent);\n}\n/**\n * Get the height of an extent.\n * @param {Extent} extent Extent.\n * @return {number} Height.\n * @api\n */\nexport function getHeight(extent) {\n return extent[3] - extent[1];\n}\n/**\n * @param {Extent} extent1 Extent 1.\n * @param {Extent} extent2 Extent 2.\n * @return {number} Intersection area.\n */\nexport function getIntersectionArea(extent1, extent2) {\n var intersection = getIntersection(extent1, extent2);\n return getArea(intersection);\n}\n/**\n * Get the intersection of two extents.\n * @param {Extent} extent1 Extent 1.\n * @param {Extent} extent2 Extent 2.\n * @param {Extent} [opt_extent] Optional extent to populate with intersection.\n * @return {Extent} Intersecting extent.\n * @api\n */\nexport function getIntersection(extent1, extent2, opt_extent) {\n var intersection = opt_extent ? opt_extent : createEmpty();\n if (intersects(extent1, extent2)) {\n if (extent1[0] > extent2[0]) {\n intersection[0] = extent1[0];\n }\n else {\n intersection[0] = extent2[0];\n }\n if (extent1[1] > extent2[1]) {\n intersection[1] = extent1[1];\n }\n else {\n intersection[1] = extent2[1];\n }\n if (extent1[2] < extent2[2]) {\n intersection[2] = extent1[2];\n }\n else {\n intersection[2] = extent2[2];\n }\n if (extent1[3] < extent2[3]) {\n intersection[3] = extent1[3];\n }\n else {\n intersection[3] = extent2[3];\n }\n }\n else {\n createOrUpdateEmpty(intersection);\n }\n return intersection;\n}\n/**\n * @param {Extent} extent Extent.\n * @return {number} Margin.\n */\nexport function getMargin(extent) {\n return getWidth(extent) + getHeight(extent);\n}\n/**\n * Get the size (width, height) of an extent.\n * @param {Extent} extent The extent.\n * @return {import(\"./size.js\").Size} The extent size.\n * @api\n */\nexport function getSize(extent) {\n return [extent[2] - extent[0], extent[3] - extent[1]];\n}\n/**\n * Get the top left coordinate of an extent.\n * @param {Extent} extent Extent.\n * @return {import(\"./coordinate.js\").Coordinate} Top left coordinate.\n * @api\n */\nexport function getTopLeft(extent) {\n return [extent[0], extent[3]];\n}\n/**\n * Get the top right coordinate of an extent.\n * @param {Extent} extent Extent.\n * @return {import(\"./coordinate.js\").Coordinate} Top right coordinate.\n * @api\n */\nexport function getTopRight(extent) {\n return [extent[2], extent[3]];\n}\n/**\n * Get the width of an extent.\n * @param {Extent} extent Extent.\n * @return {number} Width.\n * @api\n */\nexport function getWidth(extent) {\n return extent[2] - extent[0];\n}\n/**\n * Determine if one extent intersects another.\n * @param {Extent} extent1 Extent 1.\n * @param {Extent} extent2 Extent.\n * @return {boolean} The two extents intersect.\n * @api\n */\nexport function intersects(extent1, extent2) {\n return (extent1[0] <= extent2[2] &&\n extent1[2] >= extent2[0] &&\n extent1[1] <= extent2[3] &&\n extent1[3] >= extent2[1]);\n}\n/**\n * Determine if an extent is empty.\n * @param {Extent} extent Extent.\n * @return {boolean} Is empty.\n * @api\n */\nexport function isEmpty(extent) {\n return extent[2] < extent[0] || extent[3] < extent[1];\n}\n/**\n * @param {Extent} extent Extent.\n * @param {Extent} [opt_extent] Extent.\n * @return {Extent} Extent.\n */\nexport function returnOrUpdate(extent, opt_extent) {\n if (opt_extent) {\n opt_extent[0] = extent[0];\n opt_extent[1] = extent[1];\n opt_extent[2] = extent[2];\n opt_extent[3] = extent[3];\n return opt_extent;\n }\n else {\n return extent;\n }\n}\n/**\n * @param {Extent} extent Extent.\n * @param {number} value Value.\n */\nexport function scaleFromCenter(extent, value) {\n var deltaX = ((extent[2] - extent[0]) / 2) * (value - 1);\n var deltaY = ((extent[3] - extent[1]) / 2) * (value - 1);\n extent[0] -= deltaX;\n extent[2] += deltaX;\n extent[1] -= deltaY;\n extent[3] += deltaY;\n}\n/**\n * Determine if the segment between two coordinates intersects (crosses,\n * touches, or is contained by) the provided extent.\n * @param {Extent} extent The extent.\n * @param {import(\"./coordinate.js\").Coordinate} start Segment start coordinate.\n * @param {import(\"./coordinate.js\").Coordinate} end Segment end coordinate.\n * @return {boolean} The segment intersects the extent.\n */\nexport function intersectsSegment(extent, start, end) {\n var intersects = false;\n var startRel = coordinateRelationship(extent, start);\n var endRel = coordinateRelationship(extent, end);\n if (startRel === Relationship.INTERSECTING ||\n endRel === Relationship.INTERSECTING) {\n intersects = true;\n }\n else {\n var minX = extent[0];\n var minY = extent[1];\n var maxX = extent[2];\n var maxY = extent[3];\n var startX = start[0];\n var startY = start[1];\n var endX = end[0];\n var endY = end[1];\n var slope = (endY - startY) / (endX - startX);\n var x = void 0, y = void 0;\n if (!!(endRel & Relationship.ABOVE) && !(startRel & Relationship.ABOVE)) {\n // potentially intersects top\n x = endX - (endY - maxY) / slope;\n intersects = x >= minX && x <= maxX;\n }\n if (!intersects &&\n !!(endRel & Relationship.RIGHT) &&\n !(startRel & Relationship.RIGHT)) {\n // potentially intersects right\n y = endY - (endX - maxX) * slope;\n intersects = y >= minY && y <= maxY;\n }\n if (!intersects &&\n !!(endRel & Relationship.BELOW) &&\n !(startRel & Relationship.BELOW)) {\n // potentially intersects bottom\n x = endX - (endY - minY) / slope;\n intersects = x >= minX && x <= maxX;\n }\n if (!intersects &&\n !!(endRel & Relationship.LEFT) &&\n !(startRel & Relationship.LEFT)) {\n // potentially intersects left\n y = endY - (endX - minX) * slope;\n intersects = y >= minY && y <= maxY;\n }\n }\n return intersects;\n}\n/**\n * Apply a transform function to the extent.\n * @param {Extent} extent Extent.\n * @param {import(\"./proj.js\").TransformFunction} transformFn Transform function.\n * Called with `[minX, minY, maxX, maxY]` extent coordinates.\n * @param {Extent} [opt_extent] Destination extent.\n * @param {number} [opt_stops] Number of stops per side used for the transform.\n * By default only the corners are used.\n * @return {Extent} Extent.\n * @api\n */\nexport function applyTransform(extent, transformFn, opt_extent, opt_stops) {\n var coordinates = [];\n if (opt_stops > 1) {\n var width = extent[2] - extent[0];\n var height = extent[3] - extent[1];\n for (var i = 0; i < opt_stops; ++i) {\n coordinates.push(extent[0] + (width * i) / opt_stops, extent[1], extent[2], extent[1] + (height * i) / opt_stops, extent[2] - (width * i) / opt_stops, extent[3], extent[0], extent[3] - (height * i) / opt_stops);\n }\n }\n else {\n coordinates = [\n extent[0],\n extent[1],\n extent[2],\n extent[1],\n extent[2],\n extent[3],\n extent[0],\n extent[3],\n ];\n }\n transformFn(coordinates, coordinates, 2);\n var xs = [];\n var ys = [];\n for (var i = 0, l = coordinates.length; i < l; i += 2) {\n xs.push(coordinates[i]);\n ys.push(coordinates[i + 1]);\n }\n return _boundingExtentXYs(xs, ys, opt_extent);\n}\n/**\n * Modifies the provided extent in-place to be within the real world\n * extent.\n *\n * @param {Extent} extent Extent.\n * @param {import(\"./proj/Projection.js\").default} projection Projection\n * @return {Extent} The extent within the real world extent.\n */\nexport function wrapX(extent, projection) {\n var projectionExtent = projection.getExtent();\n var center = getCenter(extent);\n if (projection.canWrapX() &&\n (center[0] < projectionExtent[0] || center[0] >= projectionExtent[2])) {\n var worldWidth = getWidth(projectionExtent);\n var worldsAway = Math.floor((center[0] - projectionExtent[0]) / worldWidth);\n var offset = worldsAway * worldWidth;\n extent[0] -= offset;\n extent[2] -= offset;\n }\n return extent;\n}\n//# sourceMappingURL=extent.js.map","/**\n * @module ol/extent/Relationship\n */\n/**\n * Relationship to an extent.\n * @enum {number}\n */\nexport default {\n UNKNOWN: 0,\n INTERSECTING: 1,\n ABOVE: 2,\n RIGHT: 4,\n BELOW: 8,\n LEFT: 16,\n};\n//# sourceMappingURL=Relationship.js.map","/**\n * @module ol/sphere\n */\nimport GeometryType from './geom/GeometryType.js';\nimport { toDegrees, toRadians } from './math.js';\n/**\n * Object literal with options for the {@link getLength} or {@link getArea}\n * functions.\n * @typedef {Object} SphereMetricOptions\n * @property {import(\"./proj.js\").ProjectionLike} [projection='EPSG:3857']\n * Projection of the geometry. By default, the geometry is assumed to be in\n * Web Mercator.\n * @property {number} [radius=6371008.8] Sphere radius. By default, the\n * [mean Earth radius](https://en.wikipedia.org/wiki/Earth_radius#Mean_radius)\n * for the WGS84 ellipsoid is used.\n */\n/**\n * The mean Earth radius (1/3 * (2a + b)) for the WGS84 ellipsoid.\n * https://en.wikipedia.org/wiki/Earth_radius#Mean_radius\n * @type {number}\n */\nexport var DEFAULT_RADIUS = 6371008.8;\n/**\n * Get the great circle distance (in meters) between two geographic coordinates.\n * @param {Array} c1 Starting coordinate.\n * @param {Array} c2 Ending coordinate.\n * @param {number} [opt_radius] The sphere radius to use. Defaults to the Earth's\n * mean radius using the WGS84 ellipsoid.\n * @return {number} The great circle distance between the points (in meters).\n * @api\n */\nexport function getDistance(c1, c2, opt_radius) {\n var radius = opt_radius || DEFAULT_RADIUS;\n var lat1 = toRadians(c1[1]);\n var lat2 = toRadians(c2[1]);\n var deltaLatBy2 = (lat2 - lat1) / 2;\n var deltaLonBy2 = toRadians(c2[0] - c1[0]) / 2;\n var a = Math.sin(deltaLatBy2) * Math.sin(deltaLatBy2) +\n Math.sin(deltaLonBy2) *\n Math.sin(deltaLonBy2) *\n Math.cos(lat1) *\n Math.cos(lat2);\n return 2 * radius * Math.atan2(Math.sqrt(a), Math.sqrt(1 - a));\n}\n/**\n * Get the cumulative great circle length of linestring coordinates (geographic).\n * @param {Array} coordinates Linestring coordinates.\n * @param {number} radius The sphere radius to use.\n * @return {number} The length (in meters).\n */\nfunction getLengthInternal(coordinates, radius) {\n var length = 0;\n for (var i = 0, ii = coordinates.length; i < ii - 1; ++i) {\n length += getDistance(coordinates[i], coordinates[i + 1], radius);\n }\n return length;\n}\n/**\n * Get the spherical length of a geometry. This length is the sum of the\n * great circle distances between coordinates. For polygons, the length is\n * the sum of all rings. For points, the length is zero. For multi-part\n * geometries, the length is the sum of the length of each part.\n * @param {import(\"./geom/Geometry.js\").default} geometry A geometry.\n * @param {SphereMetricOptions} [opt_options] Options for the\n * length calculation. By default, geometries are assumed to be in 'EPSG:3857'.\n * You can change this by providing a `projection` option.\n * @return {number} The spherical length (in meters).\n * @api\n */\nexport function getLength(geometry, opt_options) {\n var options = opt_options || {};\n var radius = options.radius || DEFAULT_RADIUS;\n var projection = options.projection || 'EPSG:3857';\n var type = geometry.getType();\n if (type !== GeometryType.GEOMETRY_COLLECTION) {\n geometry = geometry.clone().transform(projection, 'EPSG:4326');\n }\n var length = 0;\n var coordinates, coords, i, ii, j, jj;\n switch (type) {\n case GeometryType.POINT:\n case GeometryType.MULTI_POINT: {\n break;\n }\n case GeometryType.LINE_STRING:\n case GeometryType.LINEAR_RING: {\n coordinates = /** @type {import(\"./geom/SimpleGeometry.js\").default} */ (geometry).getCoordinates();\n length = getLengthInternal(coordinates, radius);\n break;\n }\n case GeometryType.MULTI_LINE_STRING:\n case GeometryType.POLYGON: {\n coordinates = /** @type {import(\"./geom/SimpleGeometry.js\").default} */ (geometry).getCoordinates();\n for (i = 0, ii = coordinates.length; i < ii; ++i) {\n length += getLengthInternal(coordinates[i], radius);\n }\n break;\n }\n case GeometryType.MULTI_POLYGON: {\n coordinates = /** @type {import(\"./geom/SimpleGeometry.js\").default} */ (geometry).getCoordinates();\n for (i = 0, ii = coordinates.length; i < ii; ++i) {\n coords = coordinates[i];\n for (j = 0, jj = coords.length; j < jj; ++j) {\n length += getLengthInternal(coords[j], radius);\n }\n }\n break;\n }\n case GeometryType.GEOMETRY_COLLECTION: {\n var geometries = \n /** @type {import(\"./geom/GeometryCollection.js\").default} */ (geometry).getGeometries();\n for (i = 0, ii = geometries.length; i < ii; ++i) {\n length += getLength(geometries[i], opt_options);\n }\n break;\n }\n default: {\n throw new Error('Unsupported geometry type: ' + type);\n }\n }\n return length;\n}\n/**\n * Returns the spherical area for a list of coordinates.\n *\n * [Reference](https://trs.jpl.nasa.gov/handle/2014/40409)\n * Robert. G. Chamberlain and William H. Duquette, \"Some Algorithms for\n * Polygons on a Sphere\", JPL Publication 07-03, Jet Propulsion\n * Laboratory, Pasadena, CA, June 2007\n *\n * @param {Array<import(\"./coordinate.js\").Coordinate>} coordinates List of coordinates of a linear\n * ring. If the ring is oriented clockwise, the area will be positive,\n * otherwise it will be negative.\n * @param {number} radius The sphere radius.\n * @return {number} Area (in square meters).\n */\nfunction getAreaInternal(coordinates, radius) {\n var area = 0;\n var len = coordinates.length;\n var x1 = coordinates[len - 1][0];\n var y1 = coordinates[len - 1][1];\n for (var i = 0; i < len; i++) {\n var x2 = coordinates[i][0];\n var y2 = coordinates[i][1];\n area +=\n toRadians(x2 - x1) *\n (2 + Math.sin(toRadians(y1)) + Math.sin(toRadians(y2)));\n x1 = x2;\n y1 = y2;\n }\n return (area * radius * radius) / 2.0;\n}\n/**\n * Get the spherical area of a geometry. This is the area (in meters) assuming\n * that polygon edges are segments of great circles on a sphere.\n * @param {import(\"./geom/Geometry.js\").default} geometry A geometry.\n * @param {SphereMetricOptions} [opt_options] Options for the area\n * calculation. By default, geometries are assumed to be in 'EPSG:3857'.\n * You can change this by providing a `projection` option.\n * @return {number} The spherical area (in square meters).\n * @api\n */\nexport function getArea(geometry, opt_options) {\n var options = opt_options || {};\n var radius = options.radius || DEFAULT_RADIUS;\n var projection = options.projection || 'EPSG:3857';\n var type = geometry.getType();\n if (type !== GeometryType.GEOMETRY_COLLECTION) {\n geometry = geometry.clone().transform(projection, 'EPSG:4326');\n }\n var area = 0;\n var coordinates, coords, i, ii, j, jj;\n switch (type) {\n case GeometryType.POINT:\n case GeometryType.MULTI_POINT:\n case GeometryType.LINE_STRING:\n case GeometryType.MULTI_LINE_STRING:\n case GeometryType.LINEAR_RING: {\n break;\n }\n case GeometryType.POLYGON: {\n coordinates = /** @type {import(\"./geom/Polygon.js\").default} */ (geometry).getCoordinates();\n area = Math.abs(getAreaInternal(coordinates[0], radius));\n for (i = 1, ii = coordinates.length; i < ii; ++i) {\n area -= Math.abs(getAreaInternal(coordinates[i], radius));\n }\n break;\n }\n case GeometryType.MULTI_POLYGON: {\n coordinates = /** @type {import(\"./geom/SimpleGeometry.js\").default} */ (geometry).getCoordinates();\n for (i = 0, ii = coordinates.length; i < ii; ++i) {\n coords = coordinates[i];\n area += Math.abs(getAreaInternal(coords[0], radius));\n for (j = 1, jj = coords.length; j < jj; ++j) {\n area -= Math.abs(getAreaInternal(coords[j], radius));\n }\n }\n break;\n }\n case GeometryType.GEOMETRY_COLLECTION: {\n var geometries = \n /** @type {import(\"./geom/GeometryCollection.js\").default} */ (geometry).getGeometries();\n for (i = 0, ii = geometries.length; i < ii; ++i) {\n area += getArea(geometries[i], opt_options);\n }\n break;\n }\n default: {\n throw new Error('Unsupported geometry type: ' + type);\n }\n }\n return area;\n}\n/**\n * Returns the coordinate at the given distance and bearing from `c1`.\n *\n * @param {import(\"./coordinate.js\").Coordinate} c1 The origin point (`[lon, lat]` in degrees).\n * @param {number} distance The great-circle distance between the origin\n * point and the target point.\n * @param {number} bearing The bearing (in radians).\n * @param {number} [opt_radius] The sphere radius to use. Defaults to the Earth's\n * mean radius using the WGS84 ellipsoid.\n * @return {import(\"./coordinate.js\").Coordinate} The target point.\n */\nexport function offset(c1, distance, bearing, opt_radius) {\n var radius = opt_radius || DEFAULT_RADIUS;\n var lat1 = toRadians(c1[1]);\n var lon1 = toRadians(c1[0]);\n var dByR = distance / radius;\n var lat = Math.asin(Math.sin(lat1) * Math.cos(dByR) +\n Math.cos(lat1) * Math.sin(dByR) * Math.cos(bearing));\n var lon = lon1 +\n Math.atan2(Math.sin(bearing) * Math.sin(dByR) * Math.cos(lat1), Math.cos(dByR) - Math.sin(lat1) * Math.sin(lat));\n return [toDegrees(lon), toDegrees(lat)];\n}\n//# sourceMappingURL=sphere.js.map","/**\n * @module ol/proj\n */\n/**\n * The ol/proj module stores:\n * * a list of {@link module:ol/proj/Projection}\n * objects, one for each projection supported by the application\n * * a list of transform functions needed to convert coordinates in one projection\n * into another.\n *\n * The static functions are the methods used to maintain these.\n * Each transform function can handle not only simple coordinate pairs, but also\n * large arrays of coordinates such as vector geometries.\n *\n * When loaded, the library adds projection objects for EPSG:4326 (WGS84\n * geographic coordinates) and EPSG:3857 (Web or Spherical Mercator, as used\n * for example by Bing Maps or OpenStreetMap), together with the relevant\n * transform functions.\n *\n * Additional transforms may be added by using the http://proj4js.org/\n * library (version 2.2 or later). You can use the full build supplied by\n * Proj4js, or create a custom build to support those projections you need; see\n * the Proj4js website for how to do this. You also need the Proj4js definitions\n * for the required projections. These definitions can be obtained from\n * https://epsg.io/, and are a JS function, so can be loaded in a script\n * tag (as in the examples) or pasted into your application.\n *\n * After all required projection definitions are added to proj4's registry (by\n * using `proj4.defs()`), simply call `register(proj4)` from the `ol/proj/proj4`\n * package. Existing transforms are not changed by this function. See\n * examples/wms-image-custom-proj for an example of this.\n *\n * Additional projection definitions can be registered with `proj4.defs()` any\n * time. Just make sure to call `register(proj4)` again; for example, with user-supplied data where you don't\n * know in advance what projections are needed, you can initially load minimal\n * support and then load whichever are requested.\n *\n * Note that Proj4js does not support projection extents. If you want to add\n * one for creating default tile grids, you can add it after the Projection\n * object has been created with `setExtent`, for example,\n * `get('EPSG:1234').setExtent(extent)`.\n *\n * In addition to Proj4js support, any transform functions can be added with\n * {@link module:ol/proj.addCoordinateTransforms}. To use this, you must first create\n * a {@link module:ol/proj/Projection} object for the new projection and add it with\n * {@link module:ol/proj.addProjection}. You can then add the forward and inverse\n * functions with {@link module:ol/proj.addCoordinateTransforms}. See\n * examples/wms-custom-proj for an example of this.\n *\n * Note that if no transforms are needed and you only need to define the\n * projection, just add a {@link module:ol/proj/Projection} with\n * {@link module:ol/proj.addProjection}. See examples/wms-no-proj for an example of\n * this.\n */\nimport Projection from './proj/Projection.js';\nimport Units, { METERS_PER_UNIT } from './proj/Units.js';\nimport { PROJECTIONS as EPSG3857_PROJECTIONS, fromEPSG4326, toEPSG4326, } from './proj/epsg3857.js';\nimport { PROJECTIONS as EPSG4326_PROJECTIONS } from './proj/epsg4326.js';\nimport { add as addProj, clear as clearProj, get as getProj, } from './proj/projections.js';\nimport { add as addTransformFunc, clear as clearTransformFuncs, get as getTransformFunc, } from './proj/transforms.js';\nimport { applyTransform, getWidth } from './extent.js';\nimport { clamp, modulo } from './math.js';\nimport { getDistance } from './sphere.js';\nimport { getWorldsAway } from './coordinate.js';\n/**\n * A projection as {@link module:ol/proj/Projection}, SRS identifier\n * string or undefined.\n * @typedef {Projection|string|undefined} ProjectionLike\n * @api\n */\n/**\n * A transform function accepts an array of input coordinate values, an optional\n * output array, and an optional dimension (default should be 2). The function\n * transforms the input coordinate values, populates the output array, and\n * returns the output array.\n *\n * @typedef {function(Array<number>, Array<number>=, number=): Array<number>} TransformFunction\n * @api\n */\nexport { METERS_PER_UNIT };\nexport { Projection };\n/**\n * @param {Array<number>} input Input coordinate array.\n * @param {Array<number>} [opt_output] Output array of coordinate values.\n * @param {number} [opt_dimension] Dimension.\n * @return {Array<number>} Output coordinate array (new array, same coordinate\n * values).\n */\nexport function cloneTransform(input, opt_output, opt_dimension) {\n var output;\n if (opt_output !== undefined) {\n for (var i = 0, ii = input.length; i < ii; ++i) {\n opt_output[i] = input[i];\n }\n output = opt_output;\n }\n else {\n output = input.slice();\n }\n return output;\n}\n/**\n * @param {Array<number>} input Input coordinate array.\n * @param {Array<number>} [opt_output] Output array of coordinate values.\n * @param {number} [opt_dimension] Dimension.\n * @return {Array<number>} Input coordinate array (same array as input).\n */\nexport function identityTransform(input, opt_output, opt_dimension) {\n if (opt_output !== undefined && input !== opt_output) {\n for (var i = 0, ii = input.length; i < ii; ++i) {\n opt_output[i] = input[i];\n }\n input = opt_output;\n }\n return input;\n}\n/**\n * Add a Projection object to the list of supported projections that can be\n * looked up by their code.\n *\n * @param {Projection} projection Projection instance.\n * @api\n */\nexport function addProjection(projection) {\n addProj(projection.getCode(), projection);\n addTransformFunc(projection, projection, cloneTransform);\n}\n/**\n * @param {Array<Projection>} projections Projections.\n */\nexport function addProjections(projections) {\n projections.forEach(addProjection);\n}\n/**\n * Fetches a Projection object for the code specified.\n *\n * @param {ProjectionLike} projectionLike Either a code string which is\n * a combination of authority and identifier such as \"EPSG:4326\", or an\n * existing projection object, or undefined.\n * @return {Projection} Projection object, or null if not in list.\n * @api\n */\nexport function get(projectionLike) {\n return typeof projectionLike === 'string'\n ? getProj(/** @type {string} */ (projectionLike))\n : /** @type {Projection} */ (projectionLike) || null;\n}\n/**\n * Get the resolution of the point in degrees or distance units.\n * For projections with degrees as the unit this will simply return the\n * provided resolution. For other projections the point resolution is\n * by default estimated by transforming the 'point' pixel to EPSG:4326,\n * measuring its width and height on the normal sphere,\n * and taking the average of the width and height.\n * A custom function can be provided for a specific projection, either\n * by setting the `getPointResolution` option in the\n * {@link module:ol/proj/Projection~Projection} constructor or by using\n * {@link module:ol/proj/Projection~Projection#setGetPointResolution} to change an existing\n * projection object.\n * @param {ProjectionLike} projection The projection.\n * @param {number} resolution Nominal resolution in projection units.\n * @param {import(\"./coordinate.js\").Coordinate} point Point to find adjusted resolution at.\n * @param {import(\"./proj/Units.js\").default} [opt_units] Units to get the point resolution in.\n * Default is the projection's units.\n * @return {number} Point resolution.\n * @api\n */\nexport function getPointResolution(projection, resolution, point, opt_units) {\n projection = get(projection);\n var pointResolution;\n var getter = projection.getPointResolutionFunc();\n if (getter) {\n pointResolution = getter(resolution, point);\n if (opt_units && opt_units !== projection.getUnits()) {\n var metersPerUnit = projection.getMetersPerUnit();\n if (metersPerUnit) {\n pointResolution =\n (pointResolution * metersPerUnit) / METERS_PER_UNIT[opt_units];\n }\n }\n }\n else {\n var units = projection.getUnits();\n if ((units == Units.DEGREES && !opt_units) || opt_units == Units.DEGREES) {\n pointResolution = resolution;\n }\n else {\n // Estimate point resolution by transforming the center pixel to EPSG:4326,\n // measuring its width and height on the normal sphere, and taking the\n // average of the width and height.\n var toEPSG4326_1 = getTransformFromProjections(projection, get('EPSG:4326'));\n if (toEPSG4326_1 === identityTransform && units !== Units.DEGREES) {\n // no transform is available\n pointResolution = resolution * projection.getMetersPerUnit();\n }\n else {\n var vertices = [\n point[0] - resolution / 2,\n point[1],\n point[0] + resolution / 2,\n point[1],\n point[0],\n point[1] - resolution / 2,\n point[0],\n point[1] + resolution / 2,\n ];\n vertices = toEPSG4326_1(vertices, vertices, 2);\n var width = getDistance(vertices.slice(0, 2), vertices.slice(2, 4));\n var height = getDistance(vertices.slice(4, 6), vertices.slice(6, 8));\n pointResolution = (width + height) / 2;\n }\n var metersPerUnit = opt_units\n ? METERS_PER_UNIT[opt_units]\n : projection.getMetersPerUnit();\n if (metersPerUnit !== undefined) {\n pointResolution /= metersPerUnit;\n }\n }\n }\n return pointResolution;\n}\n/**\n * Registers transformation functions that don't alter coordinates. Those allow\n * to transform between projections with equal meaning.\n *\n * @param {Array<Projection>} projections Projections.\n * @api\n */\nexport function addEquivalentProjections(projections) {\n addProjections(projections);\n projections.forEach(function (source) {\n projections.forEach(function (destination) {\n if (source !== destination) {\n addTransformFunc(source, destination, cloneTransform);\n }\n });\n });\n}\n/**\n * Registers transformation functions to convert coordinates in any projection\n * in projection1 to any projection in projection2.\n *\n * @param {Array<Projection>} projections1 Projections with equal\n * meaning.\n * @param {Array<Projection>} projections2 Projections with equal\n * meaning.\n * @param {TransformFunction} forwardTransform Transformation from any\n * projection in projection1 to any projection in projection2.\n * @param {TransformFunction} inverseTransform Transform from any projection\n * in projection2 to any projection in projection1..\n */\nexport function addEquivalentTransforms(projections1, projections2, forwardTransform, inverseTransform) {\n projections1.forEach(function (projection1) {\n projections2.forEach(function (projection2) {\n addTransformFunc(projection1, projection2, forwardTransform);\n addTransformFunc(projection2, projection1, inverseTransform);\n });\n });\n}\n/**\n * Clear all cached projections and transforms.\n */\nexport function clearAllProjections() {\n clearProj();\n clearTransformFuncs();\n}\n/**\n * @param {Projection|string|undefined} projection Projection.\n * @param {string} defaultCode Default code.\n * @return {Projection} Projection.\n */\nexport function createProjection(projection, defaultCode) {\n if (!projection) {\n return get(defaultCode);\n }\n else if (typeof projection === 'string') {\n return get(projection);\n }\n else {\n return /** @type {Projection} */ (projection);\n }\n}\n/**\n * Creates a {@link module:ol/proj~TransformFunction} from a simple 2D coordinate transform\n * function.\n * @param {function(import(\"./coordinate.js\").Coordinate): import(\"./coordinate.js\").Coordinate} coordTransform Coordinate\n * transform.\n * @return {TransformFunction} Transform function.\n */\nexport function createTransformFromCoordinateTransform(coordTransform) {\n return (\n /**\n * @param {Array<number>} input Input.\n * @param {Array<number>} [opt_output] Output.\n * @param {number} [opt_dimension] Dimension.\n * @return {Array<number>} Output.\n */\n function (input, opt_output, opt_dimension) {\n var length = input.length;\n var dimension = opt_dimension !== undefined ? opt_dimension : 2;\n var output = opt_output !== undefined ? opt_output : new Array(length);\n for (var i = 0; i < length; i += dimension) {\n var point = coordTransform([input[i], input[i + 1]]);\n output[i] = point[0];\n output[i + 1] = point[1];\n for (var j = dimension - 1; j >= 2; --j) {\n output[i + j] = input[i + j];\n }\n }\n return output;\n });\n}\n/**\n * Registers coordinate transform functions to convert coordinates between the\n * source projection and the destination projection.\n * The forward and inverse functions convert coordinate pairs; this function\n * converts these into the functions used internally which also handle\n * extents and coordinate arrays.\n *\n * @param {ProjectionLike} source Source projection.\n * @param {ProjectionLike} destination Destination projection.\n * @param {function(import(\"./coordinate.js\").Coordinate): import(\"./coordinate.js\").Coordinate} forward The forward transform\n * function (that is, from the source projection to the destination\n * projection) that takes a {@link module:ol/coordinate~Coordinate} as argument and returns\n * the transformed {@link module:ol/coordinate~Coordinate}.\n * @param {function(import(\"./coordinate.js\").Coordinate): import(\"./coordinate.js\").Coordinate} inverse The inverse transform\n * function (that is, from the destination projection to the source\n * projection) that takes a {@link module:ol/coordinate~Coordinate} as argument and returns\n * the transformed {@link module:ol/coordinate~Coordinate}.\n * @api\n */\nexport function addCoordinateTransforms(source, destination, forward, inverse) {\n var sourceProj = get(source);\n var destProj = get(destination);\n addTransformFunc(sourceProj, destProj, createTransformFromCoordinateTransform(forward));\n addTransformFunc(destProj, sourceProj, createTransformFromCoordinateTransform(inverse));\n}\n/**\n * Transforms a coordinate from longitude/latitude to a different projection.\n * @param {import(\"./coordinate.js\").Coordinate} coordinate Coordinate as longitude and latitude, i.e.\n * an array with longitude as 1st and latitude as 2nd element.\n * @param {ProjectionLike} [opt_projection] Target projection. The\n * default is Web Mercator, i.e. 'EPSG:3857'.\n * @return {import(\"./coordinate.js\").Coordinate} Coordinate projected to the target projection.\n * @api\n */\nexport function fromLonLat(coordinate, opt_projection) {\n return transform(coordinate, 'EPSG:4326', opt_projection !== undefined ? opt_projection : 'EPSG:3857');\n}\n/**\n * Transforms a coordinate to longitude/latitude.\n * @param {import(\"./coordinate.js\").Coordinate} coordinate Projected coordinate.\n * @param {ProjectionLike} [opt_projection] Projection of the coordinate.\n * The default is Web Mercator, i.e. 'EPSG:3857'.\n * @return {import(\"./coordinate.js\").Coordinate} Coordinate as longitude and latitude, i.e. an array\n * with longitude as 1st and latitude as 2nd element.\n * @api\n */\nexport function toLonLat(coordinate, opt_projection) {\n var lonLat = transform(coordinate, opt_projection !== undefined ? opt_projection : 'EPSG:3857', 'EPSG:4326');\n var lon = lonLat[0];\n if (lon < -180 || lon > 180) {\n lonLat[0] = modulo(lon + 180, 360) - 180;\n }\n return lonLat;\n}\n/**\n * Checks if two projections are the same, that is every coordinate in one\n * projection does represent the same geographic point as the same coordinate in\n * the other projection.\n *\n * @param {Projection} projection1 Projection 1.\n * @param {Projection} projection2 Projection 2.\n * @return {boolean} Equivalent.\n * @api\n */\nexport function equivalent(projection1, projection2) {\n if (projection1 === projection2) {\n return true;\n }\n var equalUnits = projection1.getUnits() === projection2.getUnits();\n if (projection1.getCode() === projection2.getCode()) {\n return equalUnits;\n }\n else {\n var transformFunc = getTransformFromProjections(projection1, projection2);\n return transformFunc === cloneTransform && equalUnits;\n }\n}\n/**\n * Searches in the list of transform functions for the function for converting\n * coordinates from the source projection to the destination projection.\n *\n * @param {Projection} sourceProjection Source Projection object.\n * @param {Projection} destinationProjection Destination Projection\n * object.\n * @return {TransformFunction} Transform function.\n */\nexport function getTransformFromProjections(sourceProjection, destinationProjection) {\n var sourceCode = sourceProjection.getCode();\n var destinationCode = destinationProjection.getCode();\n var transformFunc = getTransformFunc(sourceCode, destinationCode);\n if (!transformFunc) {\n transformFunc = identityTransform;\n }\n return transformFunc;\n}\n/**\n * Given the projection-like objects, searches for a transformation\n * function to convert a coordinates array from the source projection to the\n * destination projection.\n *\n * @param {ProjectionLike} source Source.\n * @param {ProjectionLike} destination Destination.\n * @return {TransformFunction} Transform function.\n * @api\n */\nexport function getTransform(source, destination) {\n var sourceProjection = get(source);\n var destinationProjection = get(destination);\n return getTransformFromProjections(sourceProjection, destinationProjection);\n}\n/**\n * Transforms a coordinate from source projection to destination projection.\n * This returns a new coordinate (and does not modify the original).\n *\n * See {@link module:ol/proj.transformExtent} for extent transformation.\n * See the transform method of {@link module:ol/geom/Geometry~Geometry} and its\n * subclasses for geometry transforms.\n *\n * @param {import(\"./coordinate.js\").Coordinate} coordinate Coordinate.\n * @param {ProjectionLike} source Source projection-like.\n * @param {ProjectionLike} destination Destination projection-like.\n * @return {import(\"./coordinate.js\").Coordinate} Coordinate.\n * @api\n */\nexport function transform(coordinate, source, destination) {\n var transformFunc = getTransform(source, destination);\n return transformFunc(coordinate, undefined, coordinate.length);\n}\n/**\n * Transforms an extent from source projection to destination projection. This\n * returns a new extent (and does not modify the original).\n *\n * @param {import(\"./extent.js\").Extent} extent The extent to transform.\n * @param {ProjectionLike} source Source projection-like.\n * @param {ProjectionLike} destination Destination projection-like.\n * @param {number} [opt_stops] Number of stops per side used for the transform.\n * By default only the corners are used.\n * @return {import(\"./extent.js\").Extent} The transformed extent.\n * @api\n */\nexport function transformExtent(extent, source, destination, opt_stops) {\n var transformFunc = getTransform(source, destination);\n return applyTransform(extent, transformFunc, undefined, opt_stops);\n}\n/**\n * Transforms the given point to the destination projection.\n *\n * @param {import(\"./coordinate.js\").Coordinate} point Point.\n * @param {Projection} sourceProjection Source projection.\n * @param {Projection} destinationProjection Destination projection.\n * @return {import(\"./coordinate.js\").Coordinate} Point.\n */\nexport function transformWithProjections(point, sourceProjection, destinationProjection) {\n var transformFunc = getTransformFromProjections(sourceProjection, destinationProjection);\n return transformFunc(point);\n}\n/**\n * @type {?Projection}\n */\nvar userProjection = null;\n/**\n * Set the projection for coordinates supplied from and returned by API methods.\n * Note that this method is not yet a part of the stable API. Support for user\n * projections is not yet complete and should be considered experimental.\n * @param {ProjectionLike} projection The user projection.\n */\nexport function setUserProjection(projection) {\n userProjection = get(projection);\n}\n/**\n * Clear the user projection if set. Note that this method is not yet a part of\n * the stable API. Support for user projections is not yet complete and should\n * be considered experimental.\n */\nexport function clearUserProjection() {\n userProjection = null;\n}\n/**\n * Get the projection for coordinates supplied from and returned by API methods.\n * Note that this method is not yet a part of the stable API. Support for user\n * projections is not yet complete and should be considered experimental.\n * @return {?Projection} The user projection (or null if not set).\n */\nexport function getUserProjection() {\n return userProjection;\n}\n/**\n * Use geographic coordinates (WGS-84 datum) in API methods. Note that this\n * method is not yet a part of the stable API. Support for user projections is\n * not yet complete and should be considered experimental.\n */\nexport function useGeographic() {\n setUserProjection('EPSG:4326');\n}\n/**\n * Return a coordinate transformed into the user projection. If no user projection\n * is set, the original coordinate is returned.\n * @param {Array<number>} coordinate Input coordinate.\n * @param {ProjectionLike} sourceProjection The input coordinate projection.\n * @return {Array<number>} The input coordinate in the user projection.\n */\nexport function toUserCoordinate(coordinate, sourceProjection) {\n if (!userProjection) {\n return coordinate;\n }\n return transform(coordinate, sourceProjection, userProjection);\n}\n/**\n * Return a coordinate transformed from the user projection. If no user projection\n * is set, the original coordinate is returned.\n * @param {Array<number>} coordinate Input coordinate.\n * @param {ProjectionLike} destProjection The destination projection.\n * @return {Array<number>} The input coordinate transformed.\n */\nexport function fromUserCoordinate(coordinate, destProjection) {\n if (!userProjection) {\n return coordinate;\n }\n return transform(coordinate, userProjection, destProjection);\n}\n/**\n * Return an extent transformed into the user projection. If no user projection\n * is set, the original extent is returned.\n * @param {import(\"./extent.js\").Extent} extent Input extent.\n * @param {ProjectionLike} sourceProjection The input extent projection.\n * @return {import(\"./extent.js\").Extent} The input extent in the user projection.\n */\nexport function toUserExtent(extent, sourceProjection) {\n if (!userProjection) {\n return extent;\n }\n return transformExtent(extent, sourceProjection, userProjection);\n}\n/**\n * Return an extent transformed from the user projection. If no user projection\n * is set, the original extent is returned.\n * @param {import(\"./extent.js\").Extent} extent Input extent.\n * @param {ProjectionLike} destProjection The destination projection.\n * @return {import(\"./extent.js\").Extent} The input extent transformed.\n */\nexport function fromUserExtent(extent, destProjection) {\n if (!userProjection) {\n return extent;\n }\n return transformExtent(extent, userProjection, destProjection);\n}\n/**\n * Return the resolution in user projection units per pixel. If no user projection\n * is set, or source or user projection are missing units, the original resolution\n * is returned.\n * @param {number} resolution Resolution in input projection units per pixel.\n * @param {ProjectionLike} sourceProjection The input projection.\n * @return {number} Resolution in user projection units per pixel.\n */\nexport function toUserResolution(resolution, sourceProjection) {\n if (!userProjection) {\n return resolution;\n }\n var sourceUnits = get(sourceProjection).getUnits();\n var userUnits = userProjection.getUnits();\n return sourceUnits && userUnits\n ? (resolution * METERS_PER_UNIT[sourceUnits]) / METERS_PER_UNIT[userUnits]\n : resolution;\n}\n/**\n * Return the resolution in user projection units per pixel. If no user projection\n * is set, or source or user projection are missing units, the original resolution\n * is returned.\n * @param {number} resolution Resolution in user projection units per pixel.\n * @param {ProjectionLike} destProjection The destination projection.\n * @return {number} Resolution in destination projection units per pixel.\n */\nexport function fromUserResolution(resolution, destProjection) {\n if (!userProjection) {\n return resolution;\n }\n var sourceUnits = get(destProjection).getUnits();\n var userUnits = userProjection.getUnits();\n return sourceUnits && userUnits\n ? (resolution * METERS_PER_UNIT[userUnits]) / METERS_PER_UNIT[sourceUnits]\n : resolution;\n}\n/**\n * Creates a safe coordinate transform function from a coordinate transform function.\n * \"Safe\" means that it can handle wrapping of x-coordinates for global projections,\n * and that coordinates exceeding the source projection validity extent's range will be\n * clamped to the validity range.\n * @param {Projection} sourceProj Source projection.\n * @param {Projection} destProj Destination projection.\n * @param {function(import(\"./coordinate.js\").Coordinate): import(\"./coordinate.js\").Coordinate} transform Transform function (source to destiation).\n * @return {function(import(\"./coordinate.js\").Coordinate): import(\"./coordinate.js\").Coordinate} Safe transform function (source to destiation).\n */\nexport function createSafeCoordinateTransform(sourceProj, destProj, transform) {\n return function (coord) {\n var sourceX = coord[0];\n var sourceY = coord[1];\n var transformed, worldsAway;\n if (sourceProj.canWrapX()) {\n var sourceExtent = sourceProj.getExtent();\n var sourceExtentWidth = getWidth(sourceExtent);\n worldsAway = getWorldsAway(coord, sourceProj, sourceExtentWidth);\n if (worldsAway) {\n // Move x to the real world\n sourceX = sourceX - worldsAway * sourceExtentWidth;\n }\n sourceX = clamp(sourceX, sourceExtent[0], sourceExtent[2]);\n sourceY = clamp(sourceY, sourceExtent[1], sourceExtent[3]);\n transformed = transform([sourceX, sourceY]);\n }\n else {\n transformed = transform(coord);\n }\n if (worldsAway && destProj.canWrapX()) {\n // Move transformed coordinate back to the offset world\n transformed[0] += worldsAway * getWidth(destProj.getExtent());\n }\n return transformed;\n };\n}\n/**\n * Add transforms to and from EPSG:4326 and EPSG:3857. This function is called\n * by when this module is executed and should only need to be called again after\n * `clearAllProjections()` is called (e.g. in tests).\n */\nexport function addCommon() {\n // Add transformations that don't alter coordinates to convert within set of\n // projections with equal meaning.\n addEquivalentProjections(EPSG3857_PROJECTIONS);\n addEquivalentProjections(EPSG4326_PROJECTIONS);\n // Add transformations to convert EPSG:4326 like coordinates to EPSG:3857 like\n // coordinates and back.\n addEquivalentTransforms(EPSG4326_PROJECTIONS, EPSG3857_PROJECTIONS, fromEPSG4326, toEPSG4326);\n}\naddCommon();\n//# sourceMappingURL=proj.js.map","/**\n * @module ol/control/MousePosition\n */\nvar __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\nimport Control from './Control.js';\nimport EventType from '../pointer/EventType.js';\nimport { get as getProjection, getTransformFromProjections, getUserProjection, identityTransform, } from '../proj.js';\nimport { listen } from '../events.js';\n/**\n * @type {string}\n */\nvar PROJECTION = 'projection';\n/**\n * @type {string}\n */\nvar COORDINATE_FORMAT = 'coordinateFormat';\n/***\n * @template Return\n * @typedef {import(\"../Observable\").OnSignature<import(\"../Observable\").EventTypes, import(\"../events/Event.js\").default, Return> &\n * import(\"../Observable\").OnSignature<import(\"../ObjectEventType\").Types|\n * 'change:coordinateFormat'|'change:projection', import(\"../Object\").ObjectEvent, Return> &\n * import(\"../Observable\").CombinedOnSignature<import(\"../Observable\").EventTypes|import(\"../ObjectEventType\").Types|\n * 'change:coordinateFormat'|'change:projection', Return>} MousePositionOnSignature\n */\n/**\n * @typedef {Object} Options\n * @property {string} [className='ol-mouse-position'] CSS class name.\n * @property {import(\"../coordinate.js\").CoordinateFormat} [coordinateFormat] Coordinate format.\n * @property {import(\"../proj.js\").ProjectionLike} [projection] Projection. Default is the view projection.\n * @property {function(import(\"../MapEvent.js\").default):void} [render] Function called when the\n * control should be re-rendered. This is called in a `requestAnimationFrame`\n * callback.\n * @property {HTMLElement|string} [target] Specify a target if you want the\n * control to be rendered outside of the map's viewport.\n * @property {string|boolean} [placeholder] Markup to show when the mouse position is not\n * available (e.g. when the pointer leaves the map viewport). By default, a non-breaking space\n * is rendered when the mouse leaves the viewport. To render something else, provide a string\n * to be used as the text content (e.g. 'no position' or '' for an empty string). Set the placeholder\n * to `false` to retain the last position when the mouse leaves the viewport. In a future release, this\n * will be the default behavior.\n * @property {string} [undefinedHTML='&#160;'] This option is deprecated. Use the `placeholder` option instead.\n */\n/**\n * @classdesc\n * A control to show the 2D coordinates of the mouse cursor. By default, these\n * are in the view projection, but can be in any supported projection.\n * By default the control is shown in the top right corner of the map, but this\n * can be changed by using the css selector `.ol-mouse-position`.\n *\n * On touch devices, which usually do not have a mouse cursor, the coordinates\n * of the currently touched position are shown.\n *\n * @api\n */\nvar MousePosition = /** @class */ (function (_super) {\n __extends(MousePosition, _super);\n /**\n * @param {Options} [opt_options] Mouse position options.\n */\n function MousePosition(opt_options) {\n var _this = this;\n var options = opt_options ? opt_options : {};\n var element = document.createElement('div');\n element.className =\n options.className !== undefined ? options.className : 'ol-mouse-position';\n _this = _super.call(this, {\n element: element,\n render: options.render,\n target: options.target,\n }) || this;\n /***\n * @type {MousePositionOnSignature<import(\"../events\").EventsKey>}\n */\n _this.on;\n /***\n * @type {MousePositionOnSignature<import(\"../events\").EventsKey>}\n */\n _this.once;\n /***\n * @type {MousePositionOnSignature<void>}\n */\n _this.un;\n _this.addChangeListener(PROJECTION, _this.handleProjectionChanged_);\n if (options.coordinateFormat) {\n _this.setCoordinateFormat(options.coordinateFormat);\n }\n if (options.projection) {\n _this.setProjection(options.projection);\n }\n /**\n * Change this to `false` when removing the deprecated `undefinedHTML` option.\n * @type {boolean}\n */\n var renderOnMouseOut = true;\n /**\n * @type {string}\n */\n var placeholder = '&#160;';\n if ('undefinedHTML' in options) {\n // deprecated behavior\n if (options.undefinedHTML !== undefined) {\n placeholder = options.undefinedHTML;\n }\n renderOnMouseOut = !!placeholder;\n }\n else if ('placeholder' in options) {\n if (options.placeholder === false) {\n renderOnMouseOut = false;\n }\n else {\n placeholder = String(options.placeholder);\n }\n }\n /**\n * @private\n * @type {string}\n */\n _this.placeholder_ = placeholder;\n /**\n * @private\n * @type {boolean}\n */\n _this.renderOnMouseOut_ = renderOnMouseOut;\n /**\n * @private\n * @type {string}\n */\n _this.renderedHTML_ = element.innerHTML;\n /**\n * @private\n * @type {?import(\"../proj/Projection.js\").default}\n */\n _this.mapProjection_ = null;\n /**\n * @private\n * @type {?import(\"../proj.js\").TransformFunction}\n */\n _this.transform_ = null;\n return _this;\n }\n /**\n * @private\n */\n MousePosition.prototype.handleProjectionChanged_ = function () {\n this.transform_ = null;\n };\n /**\n * Return the coordinate format type used to render the current position or\n * undefined.\n * @return {import(\"../coordinate.js\").CoordinateFormat|undefined} The format to render the current\n * position in.\n * @observable\n * @api\n */\n MousePosition.prototype.getCoordinateFormat = function () {\n return /** @type {import(\"../coordinate.js\").CoordinateFormat|undefined} */ (this.get(COORDINATE_FORMAT));\n };\n /**\n * Return the projection that is used to report the mouse position.\n * @return {import(\"../proj/Projection.js\").default|undefined} The projection to report mouse\n * position in.\n * @observable\n * @api\n */\n MousePosition.prototype.getProjection = function () {\n return /** @type {import(\"../proj/Projection.js\").default|undefined} */ (this.get(PROJECTION));\n };\n /**\n * @param {MouseEvent} event Browser event.\n * @protected\n */\n MousePosition.prototype.handleMouseMove = function (event) {\n var map = this.getMap();\n this.updateHTML_(map.getEventPixel(event));\n };\n /**\n * @param {Event} event Browser event.\n * @protected\n */\n MousePosition.prototype.handleMouseOut = function (event) {\n this.updateHTML_(null);\n };\n /**\n * Remove the control from its current map and attach it to the new map.\n * Subclasses may set up event handlers to get notified about changes to\n * the map here.\n * @param {import(\"../PluggableMap.js\").default} map Map.\n * @api\n */\n MousePosition.prototype.setMap = function (map) {\n _super.prototype.setMap.call(this, map);\n if (map) {\n var viewport = map.getViewport();\n this.listenerKeys.push(listen(viewport, EventType.POINTERMOVE, this.handleMouseMove, this));\n if (this.renderOnMouseOut_) {\n this.listenerKeys.push(listen(viewport, EventType.POINTEROUT, this.handleMouseOut, this));\n }\n this.updateHTML_(null);\n }\n };\n /**\n * Set the coordinate format type used to render the current position.\n * @param {import(\"../coordinate.js\").CoordinateFormat} format The format to render the current\n * position in.\n * @observable\n * @api\n */\n MousePosition.prototype.setCoordinateFormat = function (format) {\n this.set(COORDINATE_FORMAT, format);\n };\n /**\n * Set the projection that is used to report the mouse position.\n * @param {import(\"../proj.js\").ProjectionLike} projection The projection to report mouse\n * position in.\n * @observable\n * @api\n */\n MousePosition.prototype.setProjection = function (projection) {\n this.set(PROJECTION, getProjection(projection));\n };\n /**\n * @param {?import(\"../pixel.js\").Pixel} pixel Pixel.\n * @private\n */\n MousePosition.prototype.updateHTML_ = function (pixel) {\n var html = this.placeholder_;\n if (pixel && this.mapProjection_) {\n if (!this.transform_) {\n var projection = this.getProjection();\n if (projection) {\n this.transform_ = getTransformFromProjections(this.mapProjection_, projection);\n }\n else {\n this.transform_ = identityTransform;\n }\n }\n var map = this.getMap();\n var coordinate = map.getCoordinateFromPixelInternal(pixel);\n if (coordinate) {\n var userProjection = getUserProjection();\n if (userProjection) {\n this.transform_ = getTransformFromProjections(this.mapProjection_, userProjection);\n }\n this.transform_(coordinate, coordinate);\n var coordinateFormat = this.getCoordinateFormat();\n if (coordinateFormat) {\n html = coordinateFormat(coordinate);\n }\n else {\n html = coordinate.toString();\n }\n }\n }\n if (!this.renderedHTML_ || html !== this.renderedHTML_) {\n this.element.innerHTML = html;\n this.renderedHTML_ = html;\n }\n };\n /**\n * Update the projection. Rendering of the coordinates is done in\n * `handleMouseMove` and `handleMouseUp`.\n * @param {import(\"../MapEvent.js\").default} mapEvent Map event.\n * @override\n */\n MousePosition.prototype.render = function (mapEvent) {\n var frameState = mapEvent.frameState;\n if (!frameState) {\n this.mapProjection_ = null;\n }\n else {\n if (this.mapProjection_ != frameState.viewState.projection) {\n this.mapProjection_ = frameState.viewState.projection;\n this.transform_ = null;\n }\n }\n };\n return MousePosition;\n}(Control));\nexport default MousePosition;\n//# sourceMappingURL=MousePosition.js.map","/**\n * @module ol/easing\n */\n/**\n * Start slow and speed up.\n * @param {number} t Input between 0 and 1.\n * @return {number} Output between 0 and 1.\n * @api\n */\nexport function easeIn(t) {\n return Math.pow(t, 3);\n}\n/**\n * Start fast and slow down.\n * @param {number} t Input between 0 and 1.\n * @return {number} Output between 0 and 1.\n * @api\n */\nexport function easeOut(t) {\n return 1 - easeIn(1 - t);\n}\n/**\n * Start slow, speed up, and then slow down again.\n * @param {number} t Input between 0 and 1.\n * @return {number} Output between 0 and 1.\n * @api\n */\nexport function inAndOut(t) {\n return 3 * t * t - 2 * t * t * t;\n}\n/**\n * Maintain a constant speed over time.\n * @param {number} t Input between 0 and 1.\n * @return {number} Output between 0 and 1.\n * @api\n */\nexport function linear(t) {\n return t;\n}\n/**\n * Start slow, speed up, and at the very end slow down again. This has the\n * same general behavior as {@link module:ol/easing.inAndOut}, but the final\n * slowdown is delayed.\n * @param {number} t Input between 0 and 1.\n * @return {number} Output between 0 and 1.\n * @api\n */\nexport function upAndDown(t) {\n if (t < 0.5) {\n return inAndOut(2 * t);\n }\n else {\n return 1 - inAndOut(2 * (t - 0.5));\n }\n}\n//# sourceMappingURL=easing.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/control/Zoom\n */\nimport Control from './Control.js';\nimport EventType from '../events/EventType.js';\nimport { CLASS_CONTROL, CLASS_UNSELECTABLE } from '../css.js';\nimport { easeOut } from '../easing.js';\n/**\n * @typedef {Object} Options\n * @property {number} [duration=250] Animation duration in milliseconds.\n * @property {string} [className='ol-zoom'] CSS class name.\n * @property {string} [zoomInClassName=className + '-in'] CSS class name for the zoom-in button.\n * @property {string} [zoomOutClassName=className + '-out'] CSS class name for the zoom-out button.\n * @property {string|HTMLElement} [zoomInLabel='+'] Text label to use for the zoom-in\n * button. Instead of text, also an element (e.g. a `span` element) can be used.\n * @property {string|HTMLElement} [zoomOutLabel='–'] Text label to use for the zoom-out button.\n * Instead of text, also an element (e.g. a `span` element) can be used.\n * @property {string} [zoomInTipLabel='Zoom in'] Text label to use for the button tip.\n * @property {string} [zoomOutTipLabel='Zoom out'] Text label to use for the button tip.\n * @property {number} [delta=1] The zoom delta applied on each click.\n * @property {HTMLElement|string} [target] Specify a target if you want the control to be\n * rendered outside of the map's viewport.\n */\n/**\n * @classdesc\n * A control with 2 buttons, one for zoom in and one for zoom out.\n * This control is one of the default controls of a map. To style this control\n * use css selectors `.ol-zoom-in` and `.ol-zoom-out`.\n *\n * @api\n */\nvar Zoom = /** @class */ (function (_super) {\n __extends(Zoom, _super);\n /**\n * @param {Options} [opt_options] Zoom options.\n */\n function Zoom(opt_options) {\n var _this = this;\n var options = opt_options ? opt_options : {};\n _this = _super.call(this, {\n element: document.createElement('div'),\n target: options.target,\n }) || this;\n var className = options.className !== undefined ? options.className : 'ol-zoom';\n var delta = options.delta !== undefined ? options.delta : 1;\n var zoomInClassName = options.zoomInClassName !== undefined\n ? options.zoomInClassName\n : className + '-in';\n var zoomOutClassName = options.zoomOutClassName !== undefined\n ? options.zoomOutClassName\n : className + '-out';\n var zoomInLabel = options.zoomInLabel !== undefined ? options.zoomInLabel : '+';\n var zoomOutLabel = options.zoomOutLabel !== undefined ? options.zoomOutLabel : '\\u2013';\n var zoomInTipLabel = options.zoomInTipLabel !== undefined ? options.zoomInTipLabel : 'Zoom in';\n var zoomOutTipLabel = options.zoomOutTipLabel !== undefined\n ? options.zoomOutTipLabel\n : 'Zoom out';\n var inElement = document.createElement('button');\n inElement.className = zoomInClassName;\n inElement.setAttribute('type', 'button');\n inElement.title = zoomInTipLabel;\n inElement.appendChild(typeof zoomInLabel === 'string'\n ? document.createTextNode(zoomInLabel)\n : zoomInLabel);\n inElement.addEventListener(EventType.CLICK, _this.handleClick_.bind(_this, delta), false);\n var outElement = document.createElement('button');\n outElement.className = zoomOutClassName;\n outElement.setAttribute('type', 'button');\n outElement.title = zoomOutTipLabel;\n outElement.appendChild(typeof zoomOutLabel === 'string'\n ? document.createTextNode(zoomOutLabel)\n : zoomOutLabel);\n outElement.addEventListener(EventType.CLICK, _this.handleClick_.bind(_this, -delta), false);\n var cssClasses = className + ' ' + CLASS_UNSELECTABLE + ' ' + CLASS_CONTROL;\n var element = _this.element;\n element.className = cssClasses;\n element.appendChild(inElement);\n element.appendChild(outElement);\n /**\n * @type {number}\n * @private\n */\n _this.duration_ = options.duration !== undefined ? options.duration : 250;\n return _this;\n }\n /**\n * @param {number} delta Zoom delta.\n * @param {MouseEvent} event The event to handle\n * @private\n */\n Zoom.prototype.handleClick_ = function (delta, event) {\n event.preventDefault();\n this.zoomByDelta_(delta);\n };\n /**\n * @param {number} delta Zoom delta.\n * @private\n */\n Zoom.prototype.zoomByDelta_ = function (delta) {\n var map = this.getMap();\n var view = map.getView();\n if (!view) {\n // the map does not have a view, so we can't act\n // upon it\n return;\n }\n var currentZoom = view.getZoom();\n if (currentZoom !== undefined) {\n var newZoom = view.getConstrainedZoom(currentZoom + delta);\n if (this.duration_ > 0) {\n if (view.getAnimating()) {\n view.cancelAnimations();\n }\n view.animate({\n zoom: newZoom,\n duration: this.duration_,\n easing: easeOut,\n });\n }\n else {\n view.setZoom(newZoom);\n }\n }\n };\n return Zoom;\n}(Control));\nexport default Zoom;\n//# sourceMappingURL=Zoom.js.map","/**\n * @module ol/coordinate\n */\nimport { getWidth } from './extent.js';\nimport { modulo } from './math.js';\nimport { padNumber } from './string.js';\n/**\n * An array of numbers representing an xy coordinate. Example: `[16, 48]`.\n * @typedef {Array<number>} Coordinate\n * @api\n */\n/**\n * A function that takes a {@link module:ol/coordinate~Coordinate} and\n * transforms it into a `{string}`.\n *\n * @typedef {function((Coordinate|undefined)): string} CoordinateFormat\n * @api\n */\n/**\n * Add `delta` to `coordinate`. `coordinate` is modified in place and returned\n * by the function.\n *\n * Example:\n *\n * import {add} from 'ol/coordinate';\n *\n * var coord = [7.85, 47.983333];\n * add(coord, [-2, 4]);\n * // coord is now [5.85, 51.983333]\n *\n * @param {Coordinate} coordinate Coordinate.\n * @param {Coordinate} delta Delta.\n * @return {Coordinate} The input coordinate adjusted by\n * the given delta.\n * @api\n */\nexport function add(coordinate, delta) {\n coordinate[0] += +delta[0];\n coordinate[1] += +delta[1];\n return coordinate;\n}\n/**\n * Calculates the point closest to the passed coordinate on the passed circle.\n *\n * @param {Coordinate} coordinate The coordinate.\n * @param {import(\"./geom/Circle.js\").default} circle The circle.\n * @return {Coordinate} Closest point on the circumference.\n */\nexport function closestOnCircle(coordinate, circle) {\n var r = circle.getRadius();\n var center = circle.getCenter();\n var x0 = center[0];\n var y0 = center[1];\n var x1 = coordinate[0];\n var y1 = coordinate[1];\n var dx = x1 - x0;\n var dy = y1 - y0;\n if (dx === 0 && dy === 0) {\n dx = 1;\n }\n var d = Math.sqrt(dx * dx + dy * dy);\n var x = x0 + (r * dx) / d;\n var y = y0 + (r * dy) / d;\n return [x, y];\n}\n/**\n * Calculates the point closest to the passed coordinate on the passed segment.\n * This is the foot of the perpendicular of the coordinate to the segment when\n * the foot is on the segment, or the closest segment coordinate when the foot\n * is outside the segment.\n *\n * @param {Coordinate} coordinate The coordinate.\n * @param {Array<Coordinate>} segment The two coordinates\n * of the segment.\n * @return {Coordinate} The foot of the perpendicular of\n * the coordinate to the segment.\n */\nexport function closestOnSegment(coordinate, segment) {\n var x0 = coordinate[0];\n var y0 = coordinate[1];\n var start = segment[0];\n var end = segment[1];\n var x1 = start[0];\n var y1 = start[1];\n var x2 = end[0];\n var y2 = end[1];\n var dx = x2 - x1;\n var dy = y2 - y1;\n var along = dx === 0 && dy === 0\n ? 0\n : (dx * (x0 - x1) + dy * (y0 - y1)) / (dx * dx + dy * dy || 0);\n var x, y;\n if (along <= 0) {\n x = x1;\n y = y1;\n }\n else if (along >= 1) {\n x = x2;\n y = y2;\n }\n else {\n x = x1 + along * dx;\n y = y1 + along * dy;\n }\n return [x, y];\n}\n/**\n * Returns a {@link module:ol/coordinate~CoordinateFormat} function that can be\n * used to format\n * a {Coordinate} to a string.\n *\n * Example without specifying the fractional digits:\n *\n * import {createStringXY} from 'ol/coordinate';\n *\n * var coord = [7.85, 47.983333];\n * var stringifyFunc = createStringXY();\n * var out = stringifyFunc(coord);\n * // out is now '8, 48'\n *\n * Example with explicitly specifying 2 fractional digits:\n *\n * import {createStringXY} from 'ol/coordinate';\n *\n * var coord = [7.85, 47.983333];\n * var stringifyFunc = createStringXY(2);\n * var out = stringifyFunc(coord);\n * // out is now '7.85, 47.98'\n *\n * @param {number} [opt_fractionDigits] The number of digits to include\n * after the decimal point. Default is `0`.\n * @return {CoordinateFormat} Coordinate format.\n * @api\n */\nexport function createStringXY(opt_fractionDigits) {\n return (\n /**\n * @param {Coordinate} coordinate Coordinate.\n * @return {string} String XY.\n */\n function (coordinate) {\n return toStringXY(coordinate, opt_fractionDigits);\n });\n}\n/**\n * @param {string} hemispheres Hemispheres.\n * @param {number} degrees Degrees.\n * @param {number} [opt_fractionDigits] The number of digits to include\n * after the decimal point. Default is `0`.\n * @return {string} String.\n */\nexport function degreesToStringHDMS(hemispheres, degrees, opt_fractionDigits) {\n var normalizedDegrees = modulo(degrees + 180, 360) - 180;\n var x = Math.abs(3600 * normalizedDegrees);\n var dflPrecision = opt_fractionDigits || 0;\n var precision = Math.pow(10, dflPrecision);\n var deg = Math.floor(x / 3600);\n var min = Math.floor((x - deg * 3600) / 60);\n var sec = x - deg * 3600 - min * 60;\n sec = Math.ceil(sec * precision) / precision;\n if (sec >= 60) {\n sec = 0;\n min += 1;\n }\n if (min >= 60) {\n min = 0;\n deg += 1;\n }\n return (deg +\n '\\u00b0 ' +\n padNumber(min, 2) +\n '\\u2032 ' +\n padNumber(sec, 2, dflPrecision) +\n '\\u2033' +\n (normalizedDegrees == 0\n ? ''\n : ' ' + hemispheres.charAt(normalizedDegrees < 0 ? 1 : 0)));\n}\n/**\n * Transforms the given {@link module:ol/coordinate~Coordinate} to a string\n * using the given string template. The strings `{x}` and `{y}` in the template\n * will be replaced with the first and second coordinate values respectively.\n *\n * Example without specifying the fractional digits:\n *\n * import {format} from 'ol/coordinate';\n *\n * var coord = [7.85, 47.983333];\n * var template = 'Coordinate is ({x}|{y}).';\n * var out = format(coord, template);\n * // out is now 'Coordinate is (8|48).'\n *\n * Example explicitly specifying the fractional digits:\n *\n * import {format} from 'ol/coordinate';\n *\n * var coord = [7.85, 47.983333];\n * var template = 'Coordinate is ({x}|{y}).';\n * var out = format(coord, template, 2);\n * // out is now 'Coordinate is (7.85|47.98).'\n *\n * @param {Coordinate} coordinate Coordinate.\n * @param {string} template A template string with `{x}` and `{y}` placeholders\n * that will be replaced by first and second coordinate values.\n * @param {number} [opt_fractionDigits] The number of digits to include\n * after the decimal point. Default is `0`.\n * @return {string} Formatted coordinate.\n * @api\n */\nexport function format(coordinate, template, opt_fractionDigits) {\n if (coordinate) {\n return template\n .replace('{x}', coordinate[0].toFixed(opt_fractionDigits))\n .replace('{y}', coordinate[1].toFixed(opt_fractionDigits));\n }\n else {\n return '';\n }\n}\n/**\n * @param {Coordinate} coordinate1 First coordinate.\n * @param {Coordinate} coordinate2 Second coordinate.\n * @return {boolean} The two coordinates are equal.\n */\nexport function equals(coordinate1, coordinate2) {\n var equals = true;\n for (var i = coordinate1.length - 1; i >= 0; --i) {\n if (coordinate1[i] != coordinate2[i]) {\n equals = false;\n break;\n }\n }\n return equals;\n}\n/**\n * Rotate `coordinate` by `angle`. `coordinate` is modified in place and\n * returned by the function.\n *\n * Example:\n *\n * import {rotate} from 'ol/coordinate';\n *\n * var coord = [7.85, 47.983333];\n * var rotateRadians = Math.PI / 2; // 90 degrees\n * rotate(coord, rotateRadians);\n * // coord is now [-47.983333, 7.85]\n *\n * @param {Coordinate} coordinate Coordinate.\n * @param {number} angle Angle in radian.\n * @return {Coordinate} Coordinate.\n * @api\n */\nexport function rotate(coordinate, angle) {\n var cosAngle = Math.cos(angle);\n var sinAngle = Math.sin(angle);\n var x = coordinate[0] * cosAngle - coordinate[1] * sinAngle;\n var y = coordinate[1] * cosAngle + coordinate[0] * sinAngle;\n coordinate[0] = x;\n coordinate[1] = y;\n return coordinate;\n}\n/**\n * Scale `coordinate` by `scale`. `coordinate` is modified in place and returned\n * by the function.\n *\n * Example:\n *\n * import {scale as scaleCoordinate} from 'ol/coordinate';\n *\n * var coord = [7.85, 47.983333];\n * var scale = 1.2;\n * scaleCoordinate(coord, scale);\n * // coord is now [9.42, 57.5799996]\n *\n * @param {Coordinate} coordinate Coordinate.\n * @param {number} scale Scale factor.\n * @return {Coordinate} Coordinate.\n */\nexport function scale(coordinate, scale) {\n coordinate[0] *= scale;\n coordinate[1] *= scale;\n return coordinate;\n}\n/**\n * @param {Coordinate} coord1 First coordinate.\n * @param {Coordinate} coord2 Second coordinate.\n * @return {number} Squared distance between coord1 and coord2.\n */\nexport function squaredDistance(coord1, coord2) {\n var dx = coord1[0] - coord2[0];\n var dy = coord1[1] - coord2[1];\n return dx * dx + dy * dy;\n}\n/**\n * @param {Coordinate} coord1 First coordinate.\n * @param {Coordinate} coord2 Second coordinate.\n * @return {number} Distance between coord1 and coord2.\n */\nexport function distance(coord1, coord2) {\n return Math.sqrt(squaredDistance(coord1, coord2));\n}\n/**\n * Calculate the squared distance from a coordinate to a line segment.\n *\n * @param {Coordinate} coordinate Coordinate of the point.\n * @param {Array<Coordinate>} segment Line segment (2\n * coordinates).\n * @return {number} Squared distance from the point to the line segment.\n */\nexport function squaredDistanceToSegment(coordinate, segment) {\n return squaredDistance(coordinate, closestOnSegment(coordinate, segment));\n}\n/**\n * Format a geographic coordinate with the hemisphere, degrees, minutes, and\n * seconds.\n *\n * Example without specifying fractional digits:\n *\n * import {toStringHDMS} from 'ol/coordinate';\n *\n * var coord = [7.85, 47.983333];\n * var out = toStringHDMS(coord);\n * // out is now '47° 58′ 60″ N 7° 50′ 60″ E'\n *\n * Example explicitly specifying 1 fractional digit:\n *\n * import {toStringHDMS} from 'ol/coordinate';\n *\n * var coord = [7.85, 47.983333];\n * var out = toStringHDMS(coord, 1);\n * // out is now '47° 58′ 60.0″ N 7° 50′ 60.0″ E'\n *\n * @param {Coordinate} coordinate Coordinate.\n * @param {number} [opt_fractionDigits] The number of digits to include\n * after the decimal point. Default is `0`.\n * @return {string} Hemisphere, degrees, minutes and seconds.\n * @api\n */\nexport function toStringHDMS(coordinate, opt_fractionDigits) {\n if (coordinate) {\n return (degreesToStringHDMS('NS', coordinate[1], opt_fractionDigits) +\n ' ' +\n degreesToStringHDMS('EW', coordinate[0], opt_fractionDigits));\n }\n else {\n return '';\n }\n}\n/**\n * Format a coordinate as a comma delimited string.\n *\n * Example without specifying fractional digits:\n *\n * import {toStringXY} from 'ol/coordinate';\n *\n * var coord = [7.85, 47.983333];\n * var out = toStringXY(coord);\n * // out is now '8, 48'\n *\n * Example explicitly specifying 1 fractional digit:\n *\n * import {toStringXY} from 'ol/coordinate';\n *\n * var coord = [7.85, 47.983333];\n * var out = toStringXY(coord, 1);\n * // out is now '7.8, 48.0'\n *\n * @param {Coordinate} coordinate Coordinate.\n * @param {number} [opt_fractionDigits] The number of digits to include\n * after the decimal point. Default is `0`.\n * @return {string} XY.\n * @api\n */\nexport function toStringXY(coordinate, opt_fractionDigits) {\n return format(coordinate, '{x}, {y}', opt_fractionDigits);\n}\n/**\n * Modifies the provided coordinate in-place to be within the real world\n * extent. The lower projection extent boundary is inclusive, the upper one\n * exclusive.\n *\n * @param {Coordinate} coordinate Coordinate.\n * @param {import(\"./proj/Projection.js\").default} projection Projection.\n * @return {Coordinate} The coordinate within the real world extent.\n */\nexport function wrapX(coordinate, projection) {\n if (projection.canWrapX()) {\n var worldWidth = getWidth(projection.getExtent());\n var worldsAway = getWorldsAway(coordinate, projection, worldWidth);\n if (worldsAway) {\n coordinate[0] -= worldsAway * worldWidth;\n }\n }\n return coordinate;\n}\n/**\n * @param {Coordinate} coordinate Coordinate.\n * @param {import(\"./proj/Projection.js\").default} projection Projection.\n * @param {number} [opt_sourceExtentWidth] Width of the source extent.\n * @return {number} Offset in world widths.\n */\nexport function getWorldsAway(coordinate, projection, opt_sourceExtentWidth) {\n var projectionExtent = projection.getExtent();\n var worldsAway = 0;\n if (projection.canWrapX() &&\n (coordinate[0] < projectionExtent[0] || coordinate[0] > projectionExtent[2])) {\n var sourceExtentWidth = opt_sourceExtentWidth || getWidth(projectionExtent);\n worldsAway = Math.floor((coordinate[0] - projectionExtent[0]) / sourceExtentWidth);\n }\n return worldsAway;\n}\n//# sourceMappingURL=coordinate.js.map","/**\n * @module ol/geom/GeometryLayout\n */\n/**\n * The coordinate layout for geometries, indicating whether a 3rd or 4th z ('Z')\n * or measure ('M') coordinate is available. Supported values are `'XY'`,\n * `'XYZ'`, `'XYM'`, `'XYZM'`.\n * @enum {string}\n */\nexport default {\n XY: 'XY',\n XYZ: 'XYZ',\n XYM: 'XYM',\n XYZM: 'XYZM',\n};\n//# sourceMappingURL=GeometryLayout.js.map","/**\n * @module ol/transform\n */\nimport { WORKER_OFFSCREEN_CANVAS } from './has.js';\nimport { assert } from './asserts.js';\n/**\n * An array representing an affine 2d transformation for use with\n * {@link module:ol/transform} functions. The array has 6 elements.\n * @typedef {!Array<number>} Transform\n * @api\n */\n/**\n * Collection of affine 2d transformation functions. The functions work on an\n * array of 6 elements. The element order is compatible with the [SVGMatrix\n * interface](https://developer.mozilla.org/en-US/docs/Web/API/SVGMatrix) and is\n * a subset (elements a to f) of a 3×3 matrix:\n * ```\n * [ a c e ]\n * [ b d f ]\n * [ 0 0 1 ]\n * ```\n */\n/**\n * @private\n * @type {Transform}\n */\nvar tmp_ = new Array(6);\n/**\n * Create an identity transform.\n * @return {!Transform} Identity transform.\n */\nexport function create() {\n return [1, 0, 0, 1, 0, 0];\n}\n/**\n * Resets the given transform to an identity transform.\n * @param {!Transform} transform Transform.\n * @return {!Transform} Transform.\n */\nexport function reset(transform) {\n return set(transform, 1, 0, 0, 1, 0, 0);\n}\n/**\n * Multiply the underlying matrices of two transforms and return the result in\n * the first transform.\n * @param {!Transform} transform1 Transform parameters of matrix 1.\n * @param {!Transform} transform2 Transform parameters of matrix 2.\n * @return {!Transform} transform1 multiplied with transform2.\n */\nexport function multiply(transform1, transform2) {\n var a1 = transform1[0];\n var b1 = transform1[1];\n var c1 = transform1[2];\n var d1 = transform1[3];\n var e1 = transform1[4];\n var f1 = transform1[5];\n var a2 = transform2[0];\n var b2 = transform2[1];\n var c2 = transform2[2];\n var d2 = transform2[3];\n var e2 = transform2[4];\n var f2 = transform2[5];\n transform1[0] = a1 * a2 + c1 * b2;\n transform1[1] = b1 * a2 + d1 * b2;\n transform1[2] = a1 * c2 + c1 * d2;\n transform1[3] = b1 * c2 + d1 * d2;\n transform1[4] = a1 * e2 + c1 * f2 + e1;\n transform1[5] = b1 * e2 + d1 * f2 + f1;\n return transform1;\n}\n/**\n * Set the transform components a-f on a given transform.\n * @param {!Transform} transform Transform.\n * @param {number} a The a component of the transform.\n * @param {number} b The b component of the transform.\n * @param {number} c The c component of the transform.\n * @param {number} d The d component of the transform.\n * @param {number} e The e component of the transform.\n * @param {number} f The f component of the transform.\n * @return {!Transform} Matrix with transform applied.\n */\nexport function set(transform, a, b, c, d, e, f) {\n transform[0] = a;\n transform[1] = b;\n transform[2] = c;\n transform[3] = d;\n transform[4] = e;\n transform[5] = f;\n return transform;\n}\n/**\n * Set transform on one matrix from another matrix.\n * @param {!Transform} transform1 Matrix to set transform to.\n * @param {!Transform} transform2 Matrix to set transform from.\n * @return {!Transform} transform1 with transform from transform2 applied.\n */\nexport function setFromArray(transform1, transform2) {\n transform1[0] = transform2[0];\n transform1[1] = transform2[1];\n transform1[2] = transform2[2];\n transform1[3] = transform2[3];\n transform1[4] = transform2[4];\n transform1[5] = transform2[5];\n return transform1;\n}\n/**\n * Transforms the given coordinate with the given transform returning the\n * resulting, transformed coordinate. The coordinate will be modified in-place.\n *\n * @param {Transform} transform The transformation.\n * @param {import(\"./coordinate.js\").Coordinate|import(\"./pixel.js\").Pixel} coordinate The coordinate to transform.\n * @return {import(\"./coordinate.js\").Coordinate|import(\"./pixel.js\").Pixel} return coordinate so that operations can be\n * chained together.\n */\nexport function apply(transform, coordinate) {\n var x = coordinate[0];\n var y = coordinate[1];\n coordinate[0] = transform[0] * x + transform[2] * y + transform[4];\n coordinate[1] = transform[1] * x + transform[3] * y + transform[5];\n return coordinate;\n}\n/**\n * Applies rotation to the given transform.\n * @param {!Transform} transform Transform.\n * @param {number} angle Angle in radians.\n * @return {!Transform} The rotated transform.\n */\nexport function rotate(transform, angle) {\n var cos = Math.cos(angle);\n var sin = Math.sin(angle);\n return multiply(transform, set(tmp_, cos, sin, -sin, cos, 0, 0));\n}\n/**\n * Applies scale to a given transform.\n * @param {!Transform} transform Transform.\n * @param {number} x Scale factor x.\n * @param {number} y Scale factor y.\n * @return {!Transform} The scaled transform.\n */\nexport function scale(transform, x, y) {\n return multiply(transform, set(tmp_, x, 0, 0, y, 0, 0));\n}\n/**\n * Creates a scale transform.\n * @param {!Transform} target Transform to overwrite.\n * @param {number} x Scale factor x.\n * @param {number} y Scale factor y.\n * @return {!Transform} The scale transform.\n */\nexport function makeScale(target, x, y) {\n return set(target, x, 0, 0, y, 0, 0);\n}\n/**\n * Applies translation to the given transform.\n * @param {!Transform} transform Transform.\n * @param {number} dx Translation x.\n * @param {number} dy Translation y.\n * @return {!Transform} The translated transform.\n */\nexport function translate(transform, dx, dy) {\n return multiply(transform, set(tmp_, 1, 0, 0, 1, dx, dy));\n}\n/**\n * Creates a composite transform given an initial translation, scale, rotation, and\n * final translation (in that order only, not commutative).\n * @param {!Transform} transform The transform (will be modified in place).\n * @param {number} dx1 Initial translation x.\n * @param {number} dy1 Initial translation y.\n * @param {number} sx Scale factor x.\n * @param {number} sy Scale factor y.\n * @param {number} angle Rotation (in counter-clockwise radians).\n * @param {number} dx2 Final translation x.\n * @param {number} dy2 Final translation y.\n * @return {!Transform} The composite transform.\n */\nexport function compose(transform, dx1, dy1, sx, sy, angle, dx2, dy2) {\n var sin = Math.sin(angle);\n var cos = Math.cos(angle);\n transform[0] = sx * cos;\n transform[1] = sy * sin;\n transform[2] = -sx * sin;\n transform[3] = sy * cos;\n transform[4] = dx2 * sx * cos - dy2 * sx * sin + dx1;\n transform[5] = dx2 * sy * sin + dy2 * sy * cos + dy1;\n return transform;\n}\n/**\n * Creates a composite transform given an initial translation, scale, rotation, and\n * final translation (in that order only, not commutative). The resulting transform\n * string can be applied as `transform` property of an HTMLElement's style.\n * @param {number} dx1 Initial translation x.\n * @param {number} dy1 Initial translation y.\n * @param {number} sx Scale factor x.\n * @param {number} sy Scale factor y.\n * @param {number} angle Rotation (in counter-clockwise radians).\n * @param {number} dx2 Final translation x.\n * @param {number} dy2 Final translation y.\n * @return {string} The composite css transform.\n * @api\n */\nexport function composeCssTransform(dx1, dy1, sx, sy, angle, dx2, dy2) {\n return toString(compose(create(), dx1, dy1, sx, sy, angle, dx2, dy2));\n}\n/**\n * Invert the given transform.\n * @param {!Transform} source The source transform to invert.\n * @return {!Transform} The inverted (source) transform.\n */\nexport function invert(source) {\n return makeInverse(source, source);\n}\n/**\n * Invert the given transform.\n * @param {!Transform} target Transform to be set as the inverse of\n * the source transform.\n * @param {!Transform} source The source transform to invert.\n * @return {!Transform} The inverted (target) transform.\n */\nexport function makeInverse(target, source) {\n var det = determinant(source);\n assert(det !== 0, 32); // Transformation matrix cannot be inverted\n var a = source[0];\n var b = source[1];\n var c = source[2];\n var d = source[3];\n var e = source[4];\n var f = source[5];\n target[0] = d / det;\n target[1] = -b / det;\n target[2] = -c / det;\n target[3] = a / det;\n target[4] = (c * f - d * e) / det;\n target[5] = -(a * f - b * e) / det;\n return target;\n}\n/**\n * Returns the determinant of the given matrix.\n * @param {!Transform} mat Matrix.\n * @return {number} Determinant.\n */\nexport function determinant(mat) {\n return mat[0] * mat[3] - mat[1] * mat[2];\n}\n/**\n * @type {HTMLElement}\n * @private\n */\nvar transformStringDiv;\n/**\n * A rounded string version of the transform. This can be used\n * for CSS transforms.\n * @param {!Transform} mat Matrix.\n * @return {string} The transform as a string.\n */\nexport function toString(mat) {\n var transformString = 'matrix(' + mat.join(', ') + ')';\n if (WORKER_OFFSCREEN_CANVAS) {\n return transformString;\n }\n var node = transformStringDiv || (transformStringDiv = document.createElement('div'));\n node.style.transform = transformString;\n return node.style.transform;\n}\n//# sourceMappingURL=transform.js.map","/**\n * @module ol/geom/GeometryType\n */\n/**\n * The geometry type. One of `'Point'`, `'LineString'`, `'LinearRing'`,\n * `'Polygon'`, `'MultiPoint'`, `'MultiLineString'`, `'MultiPolygon'`,\n * `'GeometryCollection'`, `'Circle'`.\n * @enum {string}\n */\nexport default {\n POINT: 'Point',\n LINE_STRING: 'LineString',\n LINEAR_RING: 'LinearRing',\n POLYGON: 'Polygon',\n MULTI_POINT: 'MultiPoint',\n MULTI_LINE_STRING: 'MultiLineString',\n MULTI_POLYGON: 'MultiPolygon',\n GEOMETRY_COLLECTION: 'GeometryCollection',\n CIRCLE: 'Circle',\n};\n//# sourceMappingURL=GeometryType.js.map","/**\n * @module ol/geom/flat/transform\n */\n/**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {number} end End.\n * @param {number} stride Stride.\n * @param {import(\"../../transform.js\").Transform} transform Transform.\n * @param {Array<number>} [opt_dest] Destination.\n * @return {Array<number>} Transformed coordinates.\n */\nexport function transform2D(flatCoordinates, offset, end, stride, transform, opt_dest) {\n var dest = opt_dest ? opt_dest : [];\n var i = 0;\n for (var j = offset; j < end; j += stride) {\n var x = flatCoordinates[j];\n var y = flatCoordinates[j + 1];\n dest[i++] = transform[0] * x + transform[2] * y + transform[4];\n dest[i++] = transform[1] * x + transform[3] * y + transform[5];\n }\n if (opt_dest && dest.length != i) {\n dest.length = i;\n }\n return dest;\n}\n/**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {number} end End.\n * @param {number} stride Stride.\n * @param {number} angle Angle.\n * @param {Array<number>} anchor Rotation anchor point.\n * @param {Array<number>} [opt_dest] Destination.\n * @return {Array<number>} Transformed coordinates.\n */\nexport function rotate(flatCoordinates, offset, end, stride, angle, anchor, opt_dest) {\n var dest = opt_dest ? opt_dest : [];\n var cos = Math.cos(angle);\n var sin = Math.sin(angle);\n var anchorX = anchor[0];\n var anchorY = anchor[1];\n var i = 0;\n for (var j = offset; j < end; j += stride) {\n var deltaX = flatCoordinates[j] - anchorX;\n var deltaY = flatCoordinates[j + 1] - anchorY;\n dest[i++] = anchorX + deltaX * cos - deltaY * sin;\n dest[i++] = anchorY + deltaX * sin + deltaY * cos;\n for (var k = j + 2; k < j + stride; ++k) {\n dest[i++] = flatCoordinates[k];\n }\n }\n if (opt_dest && dest.length != i) {\n dest.length = i;\n }\n return dest;\n}\n/**\n * Scale the coordinates.\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {number} end End.\n * @param {number} stride Stride.\n * @param {number} sx Scale factor in the x-direction.\n * @param {number} sy Scale factor in the y-direction.\n * @param {Array<number>} anchor Scale anchor point.\n * @param {Array<number>} [opt_dest] Destination.\n * @return {Array<number>} Transformed coordinates.\n */\nexport function scale(flatCoordinates, offset, end, stride, sx, sy, anchor, opt_dest) {\n var dest = opt_dest ? opt_dest : [];\n var anchorX = anchor[0];\n var anchorY = anchor[1];\n var i = 0;\n for (var j = offset; j < end; j += stride) {\n var deltaX = flatCoordinates[j] - anchorX;\n var deltaY = flatCoordinates[j + 1] - anchorY;\n dest[i++] = anchorX + sx * deltaX;\n dest[i++] = anchorY + sy * deltaY;\n for (var k = j + 2; k < j + stride; ++k) {\n dest[i++] = flatCoordinates[k];\n }\n }\n if (opt_dest && dest.length != i) {\n dest.length = i;\n }\n return dest;\n}\n/**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {number} end End.\n * @param {number} stride Stride.\n * @param {number} deltaX Delta X.\n * @param {number} deltaY Delta Y.\n * @param {Array<number>} [opt_dest] Destination.\n * @return {Array<number>} Transformed coordinates.\n */\nexport function translate(flatCoordinates, offset, end, stride, deltaX, deltaY, opt_dest) {\n var dest = opt_dest ? opt_dest : [];\n var i = 0;\n for (var j = offset; j < end; j += stride) {\n dest[i++] = flatCoordinates[j] + deltaX;\n dest[i++] = flatCoordinates[j + 1] + deltaY;\n for (var k = j + 2; k < j + stride; ++k) {\n dest[i++] = flatCoordinates[k];\n }\n }\n if (opt_dest && dest.length != i) {\n dest.length = i;\n }\n return dest;\n}\n//# sourceMappingURL=transform.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/geom/Geometry\n */\nimport BaseObject from '../Object.js';\nimport Units from '../proj/Units.js';\nimport { abstract } from '../util.js';\nimport { compose as composeTransform, create as createTransform, } from '../transform.js';\nimport { createEmpty, createOrUpdateEmpty, getHeight, returnOrUpdate, } from '../extent.js';\nimport { get as getProjection, getTransform } from '../proj.js';\nimport { memoizeOne } from '../functions.js';\nimport { transform2D } from './flat/transform.js';\n/**\n * @type {import(\"../transform.js\").Transform}\n */\nvar tmpTransform = createTransform();\n/**\n * @classdesc\n * Abstract base class; normally only used for creating subclasses and not\n * instantiated in apps.\n * Base class for vector geometries.\n *\n * To get notified of changes to the geometry, register a listener for the\n * generic `change` event on your geometry instance.\n *\n * @abstract\n * @api\n */\nvar Geometry = /** @class */ (function (_super) {\n __extends(Geometry, _super);\n function Geometry() {\n var _this = _super.call(this) || this;\n /**\n * @private\n * @type {import(\"../extent.js\").Extent}\n */\n _this.extent_ = createEmpty();\n /**\n * @private\n * @type {number}\n */\n _this.extentRevision_ = -1;\n /**\n * @protected\n * @type {number}\n */\n _this.simplifiedGeometryMaxMinSquaredTolerance = 0;\n /**\n * @protected\n * @type {number}\n */\n _this.simplifiedGeometryRevision = 0;\n /**\n * Get a transformed and simplified version of the geometry.\n * @abstract\n * @param {number} revision The geometry revision.\n * @param {number} squaredTolerance Squared tolerance.\n * @param {import(\"../proj.js\").TransformFunction} [opt_transform] Optional transform function.\n * @return {Geometry} Simplified geometry.\n */\n _this.simplifyTransformedInternal = memoizeOne(function (revision, squaredTolerance, opt_transform) {\n if (!opt_transform) {\n return this.getSimplifiedGeometry(squaredTolerance);\n }\n var clone = this.clone();\n clone.applyTransform(opt_transform);\n return clone.getSimplifiedGeometry(squaredTolerance);\n });\n return _this;\n }\n /**\n * Get a transformed and simplified version of the geometry.\n * @abstract\n * @param {number} squaredTolerance Squared tolerance.\n * @param {import(\"../proj.js\").TransformFunction} [opt_transform] Optional transform function.\n * @return {Geometry} Simplified geometry.\n */\n Geometry.prototype.simplifyTransformed = function (squaredTolerance, opt_transform) {\n return this.simplifyTransformedInternal(this.getRevision(), squaredTolerance, opt_transform);\n };\n /**\n * Make a complete copy of the geometry.\n * @abstract\n * @return {!Geometry} Clone.\n */\n Geometry.prototype.clone = function () {\n return abstract();\n };\n /**\n * @abstract\n * @param {number} x X.\n * @param {number} y Y.\n * @param {import(\"../coordinate.js\").Coordinate} closestPoint Closest point.\n * @param {number} minSquaredDistance Minimum squared distance.\n * @return {number} Minimum squared distance.\n */\n Geometry.prototype.closestPointXY = function (x, y, closestPoint, minSquaredDistance) {\n return abstract();\n };\n /**\n * @param {number} x X.\n * @param {number} y Y.\n * @return {boolean} Contains (x, y).\n */\n Geometry.prototype.containsXY = function (x, y) {\n var coord = this.getClosestPoint([x, y]);\n return coord[0] === x && coord[1] === y;\n };\n /**\n * Return the closest point of the geometry to the passed point as\n * {@link module:ol/coordinate~Coordinate coordinate}.\n * @param {import(\"../coordinate.js\").Coordinate} point Point.\n * @param {import(\"../coordinate.js\").Coordinate} [opt_closestPoint] Closest point.\n * @return {import(\"../coordinate.js\").Coordinate} Closest point.\n * @api\n */\n Geometry.prototype.getClosestPoint = function (point, opt_closestPoint) {\n var closestPoint = opt_closestPoint ? opt_closestPoint : [NaN, NaN];\n this.closestPointXY(point[0], point[1], closestPoint, Infinity);\n return closestPoint;\n };\n /**\n * Returns true if this geometry includes the specified coordinate. If the\n * coordinate is on the boundary of the geometry, returns false.\n * @param {import(\"../coordinate.js\").Coordinate} coordinate Coordinate.\n * @return {boolean} Contains coordinate.\n * @api\n */\n Geometry.prototype.intersectsCoordinate = function (coordinate) {\n return this.containsXY(coordinate[0], coordinate[1]);\n };\n /**\n * @abstract\n * @param {import(\"../extent.js\").Extent} extent Extent.\n * @protected\n * @return {import(\"../extent.js\").Extent} extent Extent.\n */\n Geometry.prototype.computeExtent = function (extent) {\n return abstract();\n };\n /**\n * Get the extent of the geometry.\n * @param {import(\"../extent.js\").Extent} [opt_extent] Extent.\n * @return {import(\"../extent.js\").Extent} extent Extent.\n * @api\n */\n Geometry.prototype.getExtent = function (opt_extent) {\n if (this.extentRevision_ != this.getRevision()) {\n var extent = this.computeExtent(this.extent_);\n if (isNaN(extent[0]) || isNaN(extent[1])) {\n createOrUpdateEmpty(extent);\n }\n this.extentRevision_ = this.getRevision();\n }\n return returnOrUpdate(this.extent_, opt_extent);\n };\n /**\n * Rotate the geometry around a given coordinate. This modifies the geometry\n * coordinates in place.\n * @abstract\n * @param {number} angle Rotation angle in radians.\n * @param {import(\"../coordinate.js\").Coordinate} anchor The rotation center.\n * @api\n */\n Geometry.prototype.rotate = function (angle, anchor) {\n abstract();\n };\n /**\n * Scale the geometry (with an optional origin). This modifies the geometry\n * coordinates in place.\n * @abstract\n * @param {number} sx The scaling factor in the x-direction.\n * @param {number} [opt_sy] The scaling factor in the y-direction (defaults to sx).\n * @param {import(\"../coordinate.js\").Coordinate} [opt_anchor] The scale origin (defaults to the center\n * of the geometry extent).\n * @api\n */\n Geometry.prototype.scale = function (sx, opt_sy, opt_anchor) {\n abstract();\n };\n /**\n * Create a simplified version of this geometry. For linestrings, this uses\n * the [Douglas Peucker](https://en.wikipedia.org/wiki/Ramer-Douglas-Peucker_algorithm)\n * algorithm. For polygons, a quantization-based\n * simplification is used to preserve topology.\n * @param {number} tolerance The tolerance distance for simplification.\n * @return {Geometry} A new, simplified version of the original geometry.\n * @api\n */\n Geometry.prototype.simplify = function (tolerance) {\n return this.getSimplifiedGeometry(tolerance * tolerance);\n };\n /**\n * Create a simplified version of this geometry using the Douglas Peucker\n * algorithm.\n * See https://en.wikipedia.org/wiki/Ramer-Douglas-Peucker_algorithm.\n * @abstract\n * @param {number} squaredTolerance Squared tolerance.\n * @return {Geometry} Simplified geometry.\n */\n Geometry.prototype.getSimplifiedGeometry = function (squaredTolerance) {\n return abstract();\n };\n /**\n * Get the type of this geometry.\n * @abstract\n * @return {import(\"./GeometryType.js\").default} Geometry type.\n */\n Geometry.prototype.getType = function () {\n return abstract();\n };\n /**\n * Apply a transform function to the coordinates of the geometry.\n * The geometry is modified in place.\n * If you do not want the geometry modified in place, first `clone()` it and\n * then use this function on the clone.\n * @abstract\n * @param {import(\"../proj.js\").TransformFunction} transformFn Transform function.\n * Called with a flat array of geometry coordinates.\n */\n Geometry.prototype.applyTransform = function (transformFn) {\n abstract();\n };\n /**\n * Test if the geometry and the passed extent intersect.\n * @abstract\n * @param {import(\"../extent.js\").Extent} extent Extent.\n * @return {boolean} `true` if the geometry and the extent intersect.\n */\n Geometry.prototype.intersectsExtent = function (extent) {\n return abstract();\n };\n /**\n * Translate the geometry. This modifies the geometry coordinates in place. If\n * instead you want a new geometry, first `clone()` this geometry.\n * @abstract\n * @param {number} deltaX Delta X.\n * @param {number} deltaY Delta Y.\n * @api\n */\n Geometry.prototype.translate = function (deltaX, deltaY) {\n abstract();\n };\n /**\n * Transform each coordinate of the geometry from one coordinate reference\n * system to another. The geometry is modified in place.\n * For example, a line will be transformed to a line and a circle to a circle.\n * If you do not want the geometry modified in place, first `clone()` it and\n * then use this function on the clone.\n *\n * @param {import(\"../proj.js\").ProjectionLike} source The current projection. Can be a\n * string identifier or a {@link module:ol/proj/Projection~Projection} object.\n * @param {import(\"../proj.js\").ProjectionLike} destination The desired projection. Can be a\n * string identifier or a {@link module:ol/proj/Projection~Projection} object.\n * @return {Geometry} This geometry. Note that original geometry is\n * modified in place.\n * @api\n */\n Geometry.prototype.transform = function (source, destination) {\n /** @type {import(\"../proj/Projection.js\").default} */\n var sourceProj = getProjection(source);\n var transformFn = sourceProj.getUnits() == Units.TILE_PIXELS\n ? function (inCoordinates, outCoordinates, stride) {\n var pixelExtent = sourceProj.getExtent();\n var projectedExtent = sourceProj.getWorldExtent();\n var scale = getHeight(projectedExtent) / getHeight(pixelExtent);\n composeTransform(tmpTransform, projectedExtent[0], projectedExtent[3], scale, -scale, 0, 0, 0);\n transform2D(inCoordinates, 0, inCoordinates.length, stride, tmpTransform, outCoordinates);\n return getTransform(sourceProj, destination)(inCoordinates, outCoordinates, stride);\n }\n : getTransform(sourceProj, destination);\n this.applyTransform(transformFn);\n return this;\n };\n return Geometry;\n}(BaseObject));\nexport default Geometry;\n//# sourceMappingURL=Geometry.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/geom/SimpleGeometry\n */\nimport Geometry from './Geometry.js';\nimport GeometryLayout from './GeometryLayout.js';\nimport { abstract } from '../util.js';\nimport { createOrUpdateFromFlatCoordinates, getCenter } from '../extent.js';\nimport { rotate, scale, transform2D, translate } from './flat/transform.js';\n/**\n * @classdesc\n * Abstract base class; only used for creating subclasses; do not instantiate\n * in apps, as cannot be rendered.\n *\n * @abstract\n * @api\n */\nvar SimpleGeometry = /** @class */ (function (_super) {\n __extends(SimpleGeometry, _super);\n function SimpleGeometry() {\n var _this = _super.call(this) || this;\n /**\n * @protected\n * @type {import(\"./GeometryLayout.js\").default}\n */\n _this.layout = GeometryLayout.XY;\n /**\n * @protected\n * @type {number}\n */\n _this.stride = 2;\n /**\n * @protected\n * @type {Array<number>}\n */\n _this.flatCoordinates = null;\n return _this;\n }\n /**\n * @param {import(\"../extent.js\").Extent} extent Extent.\n * @protected\n * @return {import(\"../extent.js\").Extent} extent Extent.\n */\n SimpleGeometry.prototype.computeExtent = function (extent) {\n return createOrUpdateFromFlatCoordinates(this.flatCoordinates, 0, this.flatCoordinates.length, this.stride, extent);\n };\n /**\n * @abstract\n * @return {Array<*>} Coordinates.\n */\n SimpleGeometry.prototype.getCoordinates = function () {\n return abstract();\n };\n /**\n * Return the first coordinate of the geometry.\n * @return {import(\"../coordinate.js\").Coordinate} First coordinate.\n * @api\n */\n SimpleGeometry.prototype.getFirstCoordinate = function () {\n return this.flatCoordinates.slice(0, this.stride);\n };\n /**\n * @return {Array<number>} Flat coordinates.\n */\n SimpleGeometry.prototype.getFlatCoordinates = function () {\n return this.flatCoordinates;\n };\n /**\n * Return the last coordinate of the geometry.\n * @return {import(\"../coordinate.js\").Coordinate} Last point.\n * @api\n */\n SimpleGeometry.prototype.getLastCoordinate = function () {\n return this.flatCoordinates.slice(this.flatCoordinates.length - this.stride);\n };\n /**\n * Return the {@link module:ol/geom/GeometryLayout layout} of the geometry.\n * @return {import(\"./GeometryLayout.js\").default} Layout.\n * @api\n */\n SimpleGeometry.prototype.getLayout = function () {\n return this.layout;\n };\n /**\n * Create a simplified version of this geometry using the Douglas Peucker algorithm.\n * @param {number} squaredTolerance Squared tolerance.\n * @return {SimpleGeometry} Simplified geometry.\n */\n SimpleGeometry.prototype.getSimplifiedGeometry = function (squaredTolerance) {\n if (this.simplifiedGeometryRevision !== this.getRevision()) {\n this.simplifiedGeometryMaxMinSquaredTolerance = 0;\n this.simplifiedGeometryRevision = this.getRevision();\n }\n // If squaredTolerance is negative or if we know that simplification will not\n // have any effect then just return this.\n if (squaredTolerance < 0 ||\n (this.simplifiedGeometryMaxMinSquaredTolerance !== 0 &&\n squaredTolerance <= this.simplifiedGeometryMaxMinSquaredTolerance)) {\n return this;\n }\n var simplifiedGeometry = this.getSimplifiedGeometryInternal(squaredTolerance);\n var simplifiedFlatCoordinates = simplifiedGeometry.getFlatCoordinates();\n if (simplifiedFlatCoordinates.length < this.flatCoordinates.length) {\n return simplifiedGeometry;\n }\n else {\n // Simplification did not actually remove any coordinates. We now know\n // that any calls to getSimplifiedGeometry with a squaredTolerance less\n // than or equal to the current squaredTolerance will also not have any\n // effect. This allows us to short circuit simplification (saving CPU\n // cycles) and prevents the cache of simplified geometries from filling\n // up with useless identical copies of this geometry (saving memory).\n this.simplifiedGeometryMaxMinSquaredTolerance = squaredTolerance;\n return this;\n }\n };\n /**\n * @param {number} squaredTolerance Squared tolerance.\n * @return {SimpleGeometry} Simplified geometry.\n * @protected\n */\n SimpleGeometry.prototype.getSimplifiedGeometryInternal = function (squaredTolerance) {\n return this;\n };\n /**\n * @return {number} Stride.\n */\n SimpleGeometry.prototype.getStride = function () {\n return this.stride;\n };\n /**\n * @param {import(\"./GeometryLayout.js\").default} layout Layout.\n * @param {Array<number>} flatCoordinates Flat coordinates.\n */\n SimpleGeometry.prototype.setFlatCoordinates = function (layout, flatCoordinates) {\n this.stride = getStrideForLayout(layout);\n this.layout = layout;\n this.flatCoordinates = flatCoordinates;\n };\n /**\n * @abstract\n * @param {!Array<*>} coordinates Coordinates.\n * @param {import(\"./GeometryLayout.js\").default} [opt_layout] Layout.\n */\n SimpleGeometry.prototype.setCoordinates = function (coordinates, opt_layout) {\n abstract();\n };\n /**\n * @param {import(\"./GeometryLayout.js\").default|undefined} layout Layout.\n * @param {Array<*>} coordinates Coordinates.\n * @param {number} nesting Nesting.\n * @protected\n */\n SimpleGeometry.prototype.setLayout = function (layout, coordinates, nesting) {\n /** @type {number} */\n var stride;\n if (layout) {\n stride = getStrideForLayout(layout);\n }\n else {\n for (var i = 0; i < nesting; ++i) {\n if (coordinates.length === 0) {\n this.layout = GeometryLayout.XY;\n this.stride = 2;\n return;\n }\n else {\n coordinates = /** @type {Array} */ (coordinates[0]);\n }\n }\n stride = coordinates.length;\n layout = getLayoutForStride(stride);\n }\n this.layout = layout;\n this.stride = stride;\n };\n /**\n * Apply a transform function to the coordinates of the geometry.\n * The geometry is modified in place.\n * If you do not want the geometry modified in place, first `clone()` it and\n * then use this function on the clone.\n * @param {import(\"../proj.js\").TransformFunction} transformFn Transform function.\n * Called with a flat array of geometry coordinates.\n * @api\n */\n SimpleGeometry.prototype.applyTransform = function (transformFn) {\n if (this.flatCoordinates) {\n transformFn(this.flatCoordinates, this.flatCoordinates, this.stride);\n this.changed();\n }\n };\n /**\n * Rotate the geometry around a given coordinate. This modifies the geometry\n * coordinates in place.\n * @param {number} angle Rotation angle in counter-clockwise radians.\n * @param {import(\"../coordinate.js\").Coordinate} anchor The rotation center.\n * @api\n */\n SimpleGeometry.prototype.rotate = function (angle, anchor) {\n var flatCoordinates = this.getFlatCoordinates();\n if (flatCoordinates) {\n var stride = this.getStride();\n rotate(flatCoordinates, 0, flatCoordinates.length, stride, angle, anchor, flatCoordinates);\n this.changed();\n }\n };\n /**\n * Scale the geometry (with an optional origin). This modifies the geometry\n * coordinates in place.\n * @param {number} sx The scaling factor in the x-direction.\n * @param {number} [opt_sy] The scaling factor in the y-direction (defaults to sx).\n * @param {import(\"../coordinate.js\").Coordinate} [opt_anchor] The scale origin (defaults to the center\n * of the geometry extent).\n * @api\n */\n SimpleGeometry.prototype.scale = function (sx, opt_sy, opt_anchor) {\n var sy = opt_sy;\n if (sy === undefined) {\n sy = sx;\n }\n var anchor = opt_anchor;\n if (!anchor) {\n anchor = getCenter(this.getExtent());\n }\n var flatCoordinates = this.getFlatCoordinates();\n if (flatCoordinates) {\n var stride = this.getStride();\n scale(flatCoordinates, 0, flatCoordinates.length, stride, sx, sy, anchor, flatCoordinates);\n this.changed();\n }\n };\n /**\n * Translate the geometry. This modifies the geometry coordinates in place. If\n * instead you want a new geometry, first `clone()` this geometry.\n * @param {number} deltaX Delta X.\n * @param {number} deltaY Delta Y.\n * @api\n */\n SimpleGeometry.prototype.translate = function (deltaX, deltaY) {\n var flatCoordinates = this.getFlatCoordinates();\n if (flatCoordinates) {\n var stride = this.getStride();\n translate(flatCoordinates, 0, flatCoordinates.length, stride, deltaX, deltaY, flatCoordinates);\n this.changed();\n }\n };\n return SimpleGeometry;\n}(Geometry));\n/**\n * @param {number} stride Stride.\n * @return {import(\"./GeometryLayout.js\").default} layout Layout.\n */\nfunction getLayoutForStride(stride) {\n var layout;\n if (stride == 2) {\n layout = GeometryLayout.XY;\n }\n else if (stride == 3) {\n layout = GeometryLayout.XYZ;\n }\n else if (stride == 4) {\n layout = GeometryLayout.XYZM;\n }\n return /** @type {import(\"./GeometryLayout.js\").default} */ (layout);\n}\n/**\n * @param {import(\"./GeometryLayout.js\").default} layout Layout.\n * @return {number} Stride.\n */\nexport function getStrideForLayout(layout) {\n var stride;\n if (layout == GeometryLayout.XY) {\n stride = 2;\n }\n else if (layout == GeometryLayout.XYZ || layout == GeometryLayout.XYM) {\n stride = 3;\n }\n else if (layout == GeometryLayout.XYZM) {\n stride = 4;\n }\n return /** @type {number} */ (stride);\n}\n/**\n * @param {SimpleGeometry} simpleGeometry Simple geometry.\n * @param {import(\"../transform.js\").Transform} transform Transform.\n * @param {Array<number>} [opt_dest] Destination.\n * @return {Array<number>} Transformed flat coordinates.\n */\nexport function transformGeom2D(simpleGeometry, transform, opt_dest) {\n var flatCoordinates = simpleGeometry.getFlatCoordinates();\n if (!flatCoordinates) {\n return null;\n }\n else {\n var stride = simpleGeometry.getStride();\n return transform2D(flatCoordinates, 0, flatCoordinates.length, stride, transform, opt_dest);\n }\n}\nexport default SimpleGeometry;\n//# sourceMappingURL=SimpleGeometry.js.map","/**\n * @module ol/geom/flat/closest\n */\nimport { lerp, squaredDistance as squaredDx } from '../../math.js';\n/**\n * Returns the point on the 2D line segment flatCoordinates[offset1] to\n * flatCoordinates[offset2] that is closest to the point (x, y). Extra\n * dimensions are linearly interpolated.\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset1 Offset 1.\n * @param {number} offset2 Offset 2.\n * @param {number} stride Stride.\n * @param {number} x X.\n * @param {number} y Y.\n * @param {Array<number>} closestPoint Closest point.\n */\nfunction assignClosest(flatCoordinates, offset1, offset2, stride, x, y, closestPoint) {\n var x1 = flatCoordinates[offset1];\n var y1 = flatCoordinates[offset1 + 1];\n var dx = flatCoordinates[offset2] - x1;\n var dy = flatCoordinates[offset2 + 1] - y1;\n var offset;\n if (dx === 0 && dy === 0) {\n offset = offset1;\n }\n else {\n var t = ((x - x1) * dx + (y - y1) * dy) / (dx * dx + dy * dy);\n if (t > 1) {\n offset = offset2;\n }\n else if (t > 0) {\n for (var i = 0; i < stride; ++i) {\n closestPoint[i] = lerp(flatCoordinates[offset1 + i], flatCoordinates[offset2 + i], t);\n }\n closestPoint.length = stride;\n return;\n }\n else {\n offset = offset1;\n }\n }\n for (var i = 0; i < stride; ++i) {\n closestPoint[i] = flatCoordinates[offset + i];\n }\n closestPoint.length = stride;\n}\n/**\n * Return the squared of the largest distance between any pair of consecutive\n * coordinates.\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {number} end End.\n * @param {number} stride Stride.\n * @param {number} max Max squared delta.\n * @return {number} Max squared delta.\n */\nexport function maxSquaredDelta(flatCoordinates, offset, end, stride, max) {\n var x1 = flatCoordinates[offset];\n var y1 = flatCoordinates[offset + 1];\n for (offset += stride; offset < end; offset += stride) {\n var x2 = flatCoordinates[offset];\n var y2 = flatCoordinates[offset + 1];\n var squaredDelta = squaredDx(x1, y1, x2, y2);\n if (squaredDelta > max) {\n max = squaredDelta;\n }\n x1 = x2;\n y1 = y2;\n }\n return max;\n}\n/**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {Array<number>} ends Ends.\n * @param {number} stride Stride.\n * @param {number} max Max squared delta.\n * @return {number} Max squared delta.\n */\nexport function arrayMaxSquaredDelta(flatCoordinates, offset, ends, stride, max) {\n for (var i = 0, ii = ends.length; i < ii; ++i) {\n var end = ends[i];\n max = maxSquaredDelta(flatCoordinates, offset, end, stride, max);\n offset = end;\n }\n return max;\n}\n/**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {Array<Array<number>>} endss Endss.\n * @param {number} stride Stride.\n * @param {number} max Max squared delta.\n * @return {number} Max squared delta.\n */\nexport function multiArrayMaxSquaredDelta(flatCoordinates, offset, endss, stride, max) {\n for (var i = 0, ii = endss.length; i < ii; ++i) {\n var ends = endss[i];\n max = arrayMaxSquaredDelta(flatCoordinates, offset, ends, stride, max);\n offset = ends[ends.length - 1];\n }\n return max;\n}\n/**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {number} end End.\n * @param {number} stride Stride.\n * @param {number} maxDelta Max delta.\n * @param {boolean} isRing Is ring.\n * @param {number} x X.\n * @param {number} y Y.\n * @param {Array<number>} closestPoint Closest point.\n * @param {number} minSquaredDistance Minimum squared distance.\n * @param {Array<number>} [opt_tmpPoint] Temporary point object.\n * @return {number} Minimum squared distance.\n */\nexport function assignClosestPoint(flatCoordinates, offset, end, stride, maxDelta, isRing, x, y, closestPoint, minSquaredDistance, opt_tmpPoint) {\n if (offset == end) {\n return minSquaredDistance;\n }\n var i, squaredDistance;\n if (maxDelta === 0) {\n // All points are identical, so just test the first point.\n squaredDistance = squaredDx(x, y, flatCoordinates[offset], flatCoordinates[offset + 1]);\n if (squaredDistance < minSquaredDistance) {\n for (i = 0; i < stride; ++i) {\n closestPoint[i] = flatCoordinates[offset + i];\n }\n closestPoint.length = stride;\n return squaredDistance;\n }\n else {\n return minSquaredDistance;\n }\n }\n var tmpPoint = opt_tmpPoint ? opt_tmpPoint : [NaN, NaN];\n var index = offset + stride;\n while (index < end) {\n assignClosest(flatCoordinates, index - stride, index, stride, x, y, tmpPoint);\n squaredDistance = squaredDx(x, y, tmpPoint[0], tmpPoint[1]);\n if (squaredDistance < minSquaredDistance) {\n minSquaredDistance = squaredDistance;\n for (i = 0; i < stride; ++i) {\n closestPoint[i] = tmpPoint[i];\n }\n closestPoint.length = stride;\n index += stride;\n }\n else {\n // Skip ahead multiple points, because we know that all the skipped\n // points cannot be any closer than the closest point we have found so\n // far. We know this because we know how close the current point is, how\n // close the closest point we have found so far is, and the maximum\n // distance between consecutive points. For example, if we're currently\n // at distance 10, the best we've found so far is 3, and that the maximum\n // distance between consecutive points is 2, then we'll need to skip at\n // least (10 - 3) / 2 == 3 (rounded down) points to have any chance of\n // finding a closer point. We use Math.max(..., 1) to ensure that we\n // always advance at least one point, to avoid an infinite loop.\n index +=\n stride *\n Math.max(((Math.sqrt(squaredDistance) - Math.sqrt(minSquaredDistance)) /\n maxDelta) |\n 0, 1);\n }\n }\n if (isRing) {\n // Check the closing segment.\n assignClosest(flatCoordinates, end - stride, offset, stride, x, y, tmpPoint);\n squaredDistance = squaredDx(x, y, tmpPoint[0], tmpPoint[1]);\n if (squaredDistance < minSquaredDistance) {\n minSquaredDistance = squaredDistance;\n for (i = 0; i < stride; ++i) {\n closestPoint[i] = tmpPoint[i];\n }\n closestPoint.length = stride;\n }\n }\n return minSquaredDistance;\n}\n/**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {Array<number>} ends Ends.\n * @param {number} stride Stride.\n * @param {number} maxDelta Max delta.\n * @param {boolean} isRing Is ring.\n * @param {number} x X.\n * @param {number} y Y.\n * @param {Array<number>} closestPoint Closest point.\n * @param {number} minSquaredDistance Minimum squared distance.\n * @param {Array<number>} [opt_tmpPoint] Temporary point object.\n * @return {number} Minimum squared distance.\n */\nexport function assignClosestArrayPoint(flatCoordinates, offset, ends, stride, maxDelta, isRing, x, y, closestPoint, minSquaredDistance, opt_tmpPoint) {\n var tmpPoint = opt_tmpPoint ? opt_tmpPoint : [NaN, NaN];\n for (var i = 0, ii = ends.length; i < ii; ++i) {\n var end = ends[i];\n minSquaredDistance = assignClosestPoint(flatCoordinates, offset, end, stride, maxDelta, isRing, x, y, closestPoint, minSquaredDistance, tmpPoint);\n offset = end;\n }\n return minSquaredDistance;\n}\n/**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {Array<Array<number>>} endss Endss.\n * @param {number} stride Stride.\n * @param {number} maxDelta Max delta.\n * @param {boolean} isRing Is ring.\n * @param {number} x X.\n * @param {number} y Y.\n * @param {Array<number>} closestPoint Closest point.\n * @param {number} minSquaredDistance Minimum squared distance.\n * @param {Array<number>} [opt_tmpPoint] Temporary point object.\n * @return {number} Minimum squared distance.\n */\nexport function assignClosestMultiArrayPoint(flatCoordinates, offset, endss, stride, maxDelta, isRing, x, y, closestPoint, minSquaredDistance, opt_tmpPoint) {\n var tmpPoint = opt_tmpPoint ? opt_tmpPoint : [NaN, NaN];\n for (var i = 0, ii = endss.length; i < ii; ++i) {\n var ends = endss[i];\n minSquaredDistance = assignClosestArrayPoint(flatCoordinates, offset, ends, stride, maxDelta, isRing, x, y, closestPoint, minSquaredDistance, tmpPoint);\n offset = ends[ends.length - 1];\n }\n return minSquaredDistance;\n}\n//# sourceMappingURL=closest.js.map","/**\n * @module ol/geom/flat/deflate\n */\n/**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {import(\"../../coordinate.js\").Coordinate} coordinate Coordinate.\n * @param {number} stride Stride.\n * @return {number} offset Offset.\n */\nexport function deflateCoordinate(flatCoordinates, offset, coordinate, stride) {\n for (var i = 0, ii = coordinate.length; i < ii; ++i) {\n flatCoordinates[offset++] = coordinate[i];\n }\n return offset;\n}\n/**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {Array<import(\"../../coordinate.js\").Coordinate>} coordinates Coordinates.\n * @param {number} stride Stride.\n * @return {number} offset Offset.\n */\nexport function deflateCoordinates(flatCoordinates, offset, coordinates, stride) {\n for (var i = 0, ii = coordinates.length; i < ii; ++i) {\n var coordinate = coordinates[i];\n for (var j = 0; j < stride; ++j) {\n flatCoordinates[offset++] = coordinate[j];\n }\n }\n return offset;\n}\n/**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {Array<Array<import(\"../../coordinate.js\").Coordinate>>} coordinatess Coordinatess.\n * @param {number} stride Stride.\n * @param {Array<number>} [opt_ends] Ends.\n * @return {Array<number>} Ends.\n */\nexport function deflateCoordinatesArray(flatCoordinates, offset, coordinatess, stride, opt_ends) {\n var ends = opt_ends ? opt_ends : [];\n var i = 0;\n for (var j = 0, jj = coordinatess.length; j < jj; ++j) {\n var end = deflateCoordinates(flatCoordinates, offset, coordinatess[j], stride);\n ends[i++] = end;\n offset = end;\n }\n ends.length = i;\n return ends;\n}\n/**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {Array<Array<Array<import(\"../../coordinate.js\").Coordinate>>>} coordinatesss Coordinatesss.\n * @param {number} stride Stride.\n * @param {Array<Array<number>>} [opt_endss] Endss.\n * @return {Array<Array<number>>} Endss.\n */\nexport function deflateMultiCoordinatesArray(flatCoordinates, offset, coordinatesss, stride, opt_endss) {\n var endss = opt_endss ? opt_endss : [];\n var i = 0;\n for (var j = 0, jj = coordinatesss.length; j < jj; ++j) {\n var ends = deflateCoordinatesArray(flatCoordinates, offset, coordinatesss[j], stride, endss[i]);\n endss[i++] = ends;\n offset = ends[ends.length - 1];\n }\n endss.length = i;\n return endss;\n}\n//# sourceMappingURL=deflate.js.map","/**\n * @module ol/geom/flat/simplify\n */\n// Based on simplify-js https://github.com/mourner/simplify-js\n// Copyright (c) 2012, Vladimir Agafonkin\n// All rights reserved.\n//\n// Redistribution and use in source and binary forms, with or without\n// modification, are permitted provided that the following conditions are met:\n//\n// 1. Redistributions of source code must retain the above copyright notice,\n// this list of conditions and the following disclaimer.\n//\n// 2. Redistributions in binary form must reproduce the above copyright\n// notice, this list of conditions and the following disclaimer in the\n// documentation and/or other materials provided with the distribution.\n//\n// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE\n// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n// POSSIBILITY OF SUCH DAMAGE.\nimport { squaredDistance, squaredSegmentDistance } from '../../math.js';\n/**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {number} end End.\n * @param {number} stride Stride.\n * @param {number} squaredTolerance Squared tolerance.\n * @param {boolean} highQuality Highest quality.\n * @param {Array<number>} [opt_simplifiedFlatCoordinates] Simplified flat\n * coordinates.\n * @return {Array<number>} Simplified line string.\n */\nexport function simplifyLineString(flatCoordinates, offset, end, stride, squaredTolerance, highQuality, opt_simplifiedFlatCoordinates) {\n var simplifiedFlatCoordinates = opt_simplifiedFlatCoordinates !== undefined\n ? opt_simplifiedFlatCoordinates\n : [];\n if (!highQuality) {\n end = radialDistance(flatCoordinates, offset, end, stride, squaredTolerance, simplifiedFlatCoordinates, 0);\n flatCoordinates = simplifiedFlatCoordinates;\n offset = 0;\n stride = 2;\n }\n simplifiedFlatCoordinates.length = douglasPeucker(flatCoordinates, offset, end, stride, squaredTolerance, simplifiedFlatCoordinates, 0);\n return simplifiedFlatCoordinates;\n}\n/**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {number} end End.\n * @param {number} stride Stride.\n * @param {number} squaredTolerance Squared tolerance.\n * @param {Array<number>} simplifiedFlatCoordinates Simplified flat\n * coordinates.\n * @param {number} simplifiedOffset Simplified offset.\n * @return {number} Simplified offset.\n */\nexport function douglasPeucker(flatCoordinates, offset, end, stride, squaredTolerance, simplifiedFlatCoordinates, simplifiedOffset) {\n var n = (end - offset) / stride;\n if (n < 3) {\n for (; offset < end; offset += stride) {\n simplifiedFlatCoordinates[simplifiedOffset++] = flatCoordinates[offset];\n simplifiedFlatCoordinates[simplifiedOffset++] =\n flatCoordinates[offset + 1];\n }\n return simplifiedOffset;\n }\n /** @type {Array<number>} */\n var markers = new Array(n);\n markers[0] = 1;\n markers[n - 1] = 1;\n /** @type {Array<number>} */\n var stack = [offset, end - stride];\n var index = 0;\n while (stack.length > 0) {\n var last = stack.pop();\n var first = stack.pop();\n var maxSquaredDistance = 0;\n var x1 = flatCoordinates[first];\n var y1 = flatCoordinates[first + 1];\n var x2 = flatCoordinates[last];\n var y2 = flatCoordinates[last + 1];\n for (var i = first + stride; i < last; i += stride) {\n var x = flatCoordinates[i];\n var y = flatCoordinates[i + 1];\n var squaredDistance_1 = squaredSegmentDistance(x, y, x1, y1, x2, y2);\n if (squaredDistance_1 > maxSquaredDistance) {\n index = i;\n maxSquaredDistance = squaredDistance_1;\n }\n }\n if (maxSquaredDistance > squaredTolerance) {\n markers[(index - offset) / stride] = 1;\n if (first + stride < index) {\n stack.push(first, index);\n }\n if (index + stride < last) {\n stack.push(index, last);\n }\n }\n }\n for (var i = 0; i < n; ++i) {\n if (markers[i]) {\n simplifiedFlatCoordinates[simplifiedOffset++] =\n flatCoordinates[offset + i * stride];\n simplifiedFlatCoordinates[simplifiedOffset++] =\n flatCoordinates[offset + i * stride + 1];\n }\n }\n return simplifiedOffset;\n}\n/**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {Array<number>} ends Ends.\n * @param {number} stride Stride.\n * @param {number} squaredTolerance Squared tolerance.\n * @param {Array<number>} simplifiedFlatCoordinates Simplified flat\n * coordinates.\n * @param {number} simplifiedOffset Simplified offset.\n * @param {Array<number>} simplifiedEnds Simplified ends.\n * @return {number} Simplified offset.\n */\nexport function douglasPeuckerArray(flatCoordinates, offset, ends, stride, squaredTolerance, simplifiedFlatCoordinates, simplifiedOffset, simplifiedEnds) {\n for (var i = 0, ii = ends.length; i < ii; ++i) {\n var end = ends[i];\n simplifiedOffset = douglasPeucker(flatCoordinates, offset, end, stride, squaredTolerance, simplifiedFlatCoordinates, simplifiedOffset);\n simplifiedEnds.push(simplifiedOffset);\n offset = end;\n }\n return simplifiedOffset;\n}\n/**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {Array<Array<number>>} endss Endss.\n * @param {number} stride Stride.\n * @param {number} squaredTolerance Squared tolerance.\n * @param {Array<number>} simplifiedFlatCoordinates Simplified flat\n * coordinates.\n * @param {number} simplifiedOffset Simplified offset.\n * @param {Array<Array<number>>} simplifiedEndss Simplified endss.\n * @return {number} Simplified offset.\n */\nexport function douglasPeuckerMultiArray(flatCoordinates, offset, endss, stride, squaredTolerance, simplifiedFlatCoordinates, simplifiedOffset, simplifiedEndss) {\n for (var i = 0, ii = endss.length; i < ii; ++i) {\n var ends = endss[i];\n var simplifiedEnds = [];\n simplifiedOffset = douglasPeuckerArray(flatCoordinates, offset, ends, stride, squaredTolerance, simplifiedFlatCoordinates, simplifiedOffset, simplifiedEnds);\n simplifiedEndss.push(simplifiedEnds);\n offset = ends[ends.length - 1];\n }\n return simplifiedOffset;\n}\n/**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {number} end End.\n * @param {number} stride Stride.\n * @param {number} squaredTolerance Squared tolerance.\n * @param {Array<number>} simplifiedFlatCoordinates Simplified flat\n * coordinates.\n * @param {number} simplifiedOffset Simplified offset.\n * @return {number} Simplified offset.\n */\nexport function radialDistance(flatCoordinates, offset, end, stride, squaredTolerance, simplifiedFlatCoordinates, simplifiedOffset) {\n if (end <= offset + stride) {\n // zero or one point, no simplification possible, so copy and return\n for (; offset < end; offset += stride) {\n simplifiedFlatCoordinates[simplifiedOffset++] = flatCoordinates[offset];\n simplifiedFlatCoordinates[simplifiedOffset++] =\n flatCoordinates[offset + 1];\n }\n return simplifiedOffset;\n }\n var x1 = flatCoordinates[offset];\n var y1 = flatCoordinates[offset + 1];\n // copy first point\n simplifiedFlatCoordinates[simplifiedOffset++] = x1;\n simplifiedFlatCoordinates[simplifiedOffset++] = y1;\n var x2 = x1;\n var y2 = y1;\n for (offset += stride; offset < end; offset += stride) {\n x2 = flatCoordinates[offset];\n y2 = flatCoordinates[offset + 1];\n if (squaredDistance(x1, y1, x2, y2) > squaredTolerance) {\n // copy point at offset\n simplifiedFlatCoordinates[simplifiedOffset++] = x2;\n simplifiedFlatCoordinates[simplifiedOffset++] = y2;\n x1 = x2;\n y1 = y2;\n }\n }\n if (x2 != x1 || y2 != y1) {\n // copy last point\n simplifiedFlatCoordinates[simplifiedOffset++] = x2;\n simplifiedFlatCoordinates[simplifiedOffset++] = y2;\n }\n return simplifiedOffset;\n}\n/**\n * @param {number} value Value.\n * @param {number} tolerance Tolerance.\n * @return {number} Rounded value.\n */\nexport function snap(value, tolerance) {\n return tolerance * Math.round(value / tolerance);\n}\n/**\n * Simplifies a line string using an algorithm designed by Tim Schaub.\n * Coordinates are snapped to the nearest value in a virtual grid and\n * consecutive duplicate coordinates are discarded. This effectively preserves\n * topology as the simplification of any subsection of a line string is\n * independent of the rest of the line string. This means that, for examples,\n * the common edge between two polygons will be simplified to the same line\n * string independently in both polygons. This implementation uses a single\n * pass over the coordinates and eliminates intermediate collinear points.\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {number} end End.\n * @param {number} stride Stride.\n * @param {number} tolerance Tolerance.\n * @param {Array<number>} simplifiedFlatCoordinates Simplified flat\n * coordinates.\n * @param {number} simplifiedOffset Simplified offset.\n * @return {number} Simplified offset.\n */\nexport function quantize(flatCoordinates, offset, end, stride, tolerance, simplifiedFlatCoordinates, simplifiedOffset) {\n // do nothing if the line is empty\n if (offset == end) {\n return simplifiedOffset;\n }\n // snap the first coordinate (P1)\n var x1 = snap(flatCoordinates[offset], tolerance);\n var y1 = snap(flatCoordinates[offset + 1], tolerance);\n offset += stride;\n // add the first coordinate to the output\n simplifiedFlatCoordinates[simplifiedOffset++] = x1;\n simplifiedFlatCoordinates[simplifiedOffset++] = y1;\n // find the next coordinate that does not snap to the same value as the first\n // coordinate (P2)\n var x2, y2;\n do {\n x2 = snap(flatCoordinates[offset], tolerance);\n y2 = snap(flatCoordinates[offset + 1], tolerance);\n offset += stride;\n if (offset == end) {\n // all coordinates snap to the same value, the line collapses to a point\n // push the last snapped value anyway to ensure that the output contains\n // at least two points\n // FIXME should we really return at least two points anyway?\n simplifiedFlatCoordinates[simplifiedOffset++] = x2;\n simplifiedFlatCoordinates[simplifiedOffset++] = y2;\n return simplifiedOffset;\n }\n } while (x2 == x1 && y2 == y1);\n while (offset < end) {\n // snap the next coordinate (P3)\n var x3 = snap(flatCoordinates[offset], tolerance);\n var y3 = snap(flatCoordinates[offset + 1], tolerance);\n offset += stride;\n // skip P3 if it is equal to P2\n if (x3 == x2 && y3 == y2) {\n continue;\n }\n // calculate the delta between P1 and P2\n var dx1 = x2 - x1;\n var dy1 = y2 - y1;\n // calculate the delta between P3 and P1\n var dx2 = x3 - x1;\n var dy2 = y3 - y1;\n // if P1, P2, and P3 are colinear and P3 is further from P1 than P2 is from\n // P1 in the same direction then P2 is on the straight line between P1 and\n // P3\n if (dx1 * dy2 == dy1 * dx2 &&\n ((dx1 < 0 && dx2 < dx1) || dx1 == dx2 || (dx1 > 0 && dx2 > dx1)) &&\n ((dy1 < 0 && dy2 < dy1) || dy1 == dy2 || (dy1 > 0 && dy2 > dy1))) {\n // discard P2 and set P2 = P3\n x2 = x3;\n y2 = y3;\n continue;\n }\n // either P1, P2, and P3 are not colinear, or they are colinear but P3 is\n // between P3 and P1 or on the opposite half of the line to P2. add P2,\n // and continue with P1 = P2 and P2 = P3\n simplifiedFlatCoordinates[simplifiedOffset++] = x2;\n simplifiedFlatCoordinates[simplifiedOffset++] = y2;\n x1 = x2;\n y1 = y2;\n x2 = x3;\n y2 = y3;\n }\n // add the last point (P2)\n simplifiedFlatCoordinates[simplifiedOffset++] = x2;\n simplifiedFlatCoordinates[simplifiedOffset++] = y2;\n return simplifiedOffset;\n}\n/**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {Array<number>} ends Ends.\n * @param {number} stride Stride.\n * @param {number} tolerance Tolerance.\n * @param {Array<number>} simplifiedFlatCoordinates Simplified flat\n * coordinates.\n * @param {number} simplifiedOffset Simplified offset.\n * @param {Array<number>} simplifiedEnds Simplified ends.\n * @return {number} Simplified offset.\n */\nexport function quantizeArray(flatCoordinates, offset, ends, stride, tolerance, simplifiedFlatCoordinates, simplifiedOffset, simplifiedEnds) {\n for (var i = 0, ii = ends.length; i < ii; ++i) {\n var end = ends[i];\n simplifiedOffset = quantize(flatCoordinates, offset, end, stride, tolerance, simplifiedFlatCoordinates, simplifiedOffset);\n simplifiedEnds.push(simplifiedOffset);\n offset = end;\n }\n return simplifiedOffset;\n}\n/**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {Array<Array<number>>} endss Endss.\n * @param {number} stride Stride.\n * @param {number} tolerance Tolerance.\n * @param {Array<number>} simplifiedFlatCoordinates Simplified flat\n * coordinates.\n * @param {number} simplifiedOffset Simplified offset.\n * @param {Array<Array<number>>} simplifiedEndss Simplified endss.\n * @return {number} Simplified offset.\n */\nexport function quantizeMultiArray(flatCoordinates, offset, endss, stride, tolerance, simplifiedFlatCoordinates, simplifiedOffset, simplifiedEndss) {\n for (var i = 0, ii = endss.length; i < ii; ++i) {\n var ends = endss[i];\n var simplifiedEnds = [];\n simplifiedOffset = quantizeArray(flatCoordinates, offset, ends, stride, tolerance, simplifiedFlatCoordinates, simplifiedOffset, simplifiedEnds);\n simplifiedEndss.push(simplifiedEnds);\n offset = ends[ends.length - 1];\n }\n return simplifiedOffset;\n}\n//# sourceMappingURL=simplify.js.map","/**\n * @module ol/geom/flat/segments\n */\n/**\n * This function calls `callback` for each segment of the flat coordinates\n * array. If the callback returns a truthy value the function returns that\n * value immediately. Otherwise the function returns `false`.\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {number} end End.\n * @param {number} stride Stride.\n * @param {function(import(\"../../coordinate.js\").Coordinate, import(\"../../coordinate.js\").Coordinate): T} callback Function\n * called for each segment.\n * @return {T|boolean} Value.\n * @template T\n */\nexport function forEach(flatCoordinates, offset, end, stride, callback) {\n var ret;\n offset += stride;\n for (; offset < end; offset += stride) {\n ret = callback(flatCoordinates.slice(offset - stride, offset), flatCoordinates.slice(offset, offset + stride));\n if (ret) {\n return ret;\n }\n }\n return false;\n}\n//# sourceMappingURL=segments.js.map","/**\n * @module ol/geom/flat/inflate\n */\n/**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {number} end End.\n * @param {number} stride Stride.\n * @param {Array<import(\"../../coordinate.js\").Coordinate>} [opt_coordinates] Coordinates.\n * @return {Array<import(\"../../coordinate.js\").Coordinate>} Coordinates.\n */\nexport function inflateCoordinates(flatCoordinates, offset, end, stride, opt_coordinates) {\n var coordinates = opt_coordinates !== undefined ? opt_coordinates : [];\n var i = 0;\n for (var j = offset; j < end; j += stride) {\n coordinates[i++] = flatCoordinates.slice(j, j + stride);\n }\n coordinates.length = i;\n return coordinates;\n}\n/**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {Array<number>} ends Ends.\n * @param {number} stride Stride.\n * @param {Array<Array<import(\"../../coordinate.js\").Coordinate>>} [opt_coordinatess] Coordinatess.\n * @return {Array<Array<import(\"../../coordinate.js\").Coordinate>>} Coordinatess.\n */\nexport function inflateCoordinatesArray(flatCoordinates, offset, ends, stride, opt_coordinatess) {\n var coordinatess = opt_coordinatess !== undefined ? opt_coordinatess : [];\n var i = 0;\n for (var j = 0, jj = ends.length; j < jj; ++j) {\n var end = ends[j];\n coordinatess[i++] = inflateCoordinates(flatCoordinates, offset, end, stride, coordinatess[i]);\n offset = end;\n }\n coordinatess.length = i;\n return coordinatess;\n}\n/**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {Array<Array<number>>} endss Endss.\n * @param {number} stride Stride.\n * @param {Array<Array<Array<import(\"../../coordinate.js\").Coordinate>>>} [opt_coordinatesss]\n * Coordinatesss.\n * @return {Array<Array<Array<import(\"../../coordinate.js\").Coordinate>>>} Coordinatesss.\n */\nexport function inflateMultiCoordinatesArray(flatCoordinates, offset, endss, stride, opt_coordinatesss) {\n var coordinatesss = opt_coordinatesss !== undefined ? opt_coordinatesss : [];\n var i = 0;\n for (var j = 0, jj = endss.length; j < jj; ++j) {\n var ends = endss[j];\n coordinatesss[i++] = inflateCoordinatesArray(flatCoordinates, offset, ends, stride, coordinatesss[i]);\n offset = ends[ends.length - 1];\n }\n coordinatesss.length = i;\n return coordinatesss;\n}\n//# sourceMappingURL=inflate.js.map","/**\n * @module ol/geom/flat/interpolate\n */\nimport { binarySearch } from '../../array.js';\nimport { lerp } from '../../math.js';\n/**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {number} end End.\n * @param {number} stride Stride.\n * @param {number} fraction Fraction.\n * @param {Array<number>} [opt_dest] Destination.\n * @param {number} [opt_dimension] Destination dimension (default is `2`)\n * @return {Array<number>} Destination.\n */\nexport function interpolatePoint(flatCoordinates, offset, end, stride, fraction, opt_dest, opt_dimension) {\n var o, t;\n var n = (end - offset) / stride;\n if (n === 1) {\n o = offset;\n }\n else if (n === 2) {\n o = offset;\n t = fraction;\n }\n else if (n !== 0) {\n var x1 = flatCoordinates[offset];\n var y1 = flatCoordinates[offset + 1];\n var length_1 = 0;\n var cumulativeLengths = [0];\n for (var i = offset + stride; i < end; i += stride) {\n var x2 = flatCoordinates[i];\n var y2 = flatCoordinates[i + 1];\n length_1 += Math.sqrt((x2 - x1) * (x2 - x1) + (y2 - y1) * (y2 - y1));\n cumulativeLengths.push(length_1);\n x1 = x2;\n y1 = y2;\n }\n var target = fraction * length_1;\n var index = binarySearch(cumulativeLengths, target);\n if (index < 0) {\n t =\n (target - cumulativeLengths[-index - 2]) /\n (cumulativeLengths[-index - 1] - cumulativeLengths[-index - 2]);\n o = offset + (-index - 2) * stride;\n }\n else {\n o = offset + index * stride;\n }\n }\n var dimension = opt_dimension > 1 ? opt_dimension : 2;\n var dest = opt_dest ? opt_dest : new Array(dimension);\n for (var i = 0; i < dimension; ++i) {\n dest[i] =\n o === undefined\n ? NaN\n : t === undefined\n ? flatCoordinates[o + i]\n : lerp(flatCoordinates[o + i], flatCoordinates[o + stride + i], t);\n }\n return dest;\n}\n/**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {number} end End.\n * @param {number} stride Stride.\n * @param {number} m M.\n * @param {boolean} extrapolate Extrapolate.\n * @return {import(\"../../coordinate.js\").Coordinate} Coordinate.\n */\nexport function lineStringCoordinateAtM(flatCoordinates, offset, end, stride, m, extrapolate) {\n if (end == offset) {\n return null;\n }\n var coordinate;\n if (m < flatCoordinates[offset + stride - 1]) {\n if (extrapolate) {\n coordinate = flatCoordinates.slice(offset, offset + stride);\n coordinate[stride - 1] = m;\n return coordinate;\n }\n else {\n return null;\n }\n }\n else if (flatCoordinates[end - 1] < m) {\n if (extrapolate) {\n coordinate = flatCoordinates.slice(end - stride, end);\n coordinate[stride - 1] = m;\n return coordinate;\n }\n else {\n return null;\n }\n }\n // FIXME use O(1) search\n if (m == flatCoordinates[offset + stride - 1]) {\n return flatCoordinates.slice(offset, offset + stride);\n }\n var lo = offset / stride;\n var hi = end / stride;\n while (lo < hi) {\n var mid = (lo + hi) >> 1;\n if (m < flatCoordinates[(mid + 1) * stride - 1]) {\n hi = mid;\n }\n else {\n lo = mid + 1;\n }\n }\n var m0 = flatCoordinates[lo * stride - 1];\n if (m == m0) {\n return flatCoordinates.slice((lo - 1) * stride, (lo - 1) * stride + stride);\n }\n var m1 = flatCoordinates[(lo + 1) * stride - 1];\n var t = (m - m0) / (m1 - m0);\n coordinate = [];\n for (var i = 0; i < stride - 1; ++i) {\n coordinate.push(lerp(flatCoordinates[(lo - 1) * stride + i], flatCoordinates[lo * stride + i], t));\n }\n coordinate.push(m);\n return coordinate;\n}\n/**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {Array<number>} ends Ends.\n * @param {number} stride Stride.\n * @param {number} m M.\n * @param {boolean} extrapolate Extrapolate.\n * @param {boolean} interpolate Interpolate.\n * @return {import(\"../../coordinate.js\").Coordinate} Coordinate.\n */\nexport function lineStringsCoordinateAtM(flatCoordinates, offset, ends, stride, m, extrapolate, interpolate) {\n if (interpolate) {\n return lineStringCoordinateAtM(flatCoordinates, offset, ends[ends.length - 1], stride, m, extrapolate);\n }\n var coordinate;\n if (m < flatCoordinates[stride - 1]) {\n if (extrapolate) {\n coordinate = flatCoordinates.slice(0, stride);\n coordinate[stride - 1] = m;\n return coordinate;\n }\n else {\n return null;\n }\n }\n if (flatCoordinates[flatCoordinates.length - 1] < m) {\n if (extrapolate) {\n coordinate = flatCoordinates.slice(flatCoordinates.length - stride);\n coordinate[stride - 1] = m;\n return coordinate;\n }\n else {\n return null;\n }\n }\n for (var i = 0, ii = ends.length; i < ii; ++i) {\n var end = ends[i];\n if (offset == end) {\n continue;\n }\n if (m < flatCoordinates[offset + stride - 1]) {\n return null;\n }\n else if (m <= flatCoordinates[end - 1]) {\n return lineStringCoordinateAtM(flatCoordinates, offset, end, stride, m, false);\n }\n offset = end;\n }\n return null;\n}\n//# sourceMappingURL=interpolate.js.map","/**\n * @module ol/geom/flat/contains\n */\nimport { forEachCorner } from '../../extent.js';\n/**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {number} end End.\n * @param {number} stride Stride.\n * @param {import(\"../../extent.js\").Extent} extent Extent.\n * @return {boolean} Contains extent.\n */\nexport function linearRingContainsExtent(flatCoordinates, offset, end, stride, extent) {\n var outside = forEachCorner(extent, \n /**\n * @param {import(\"../../coordinate.js\").Coordinate} coordinate Coordinate.\n * @return {boolean} Contains (x, y).\n */\n function (coordinate) {\n return !linearRingContainsXY(flatCoordinates, offset, end, stride, coordinate[0], coordinate[1]);\n });\n return !outside;\n}\n/**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {number} end End.\n * @param {number} stride Stride.\n * @param {number} x X.\n * @param {number} y Y.\n * @return {boolean} Contains (x, y).\n */\nexport function linearRingContainsXY(flatCoordinates, offset, end, stride, x, y) {\n // https://geomalgorithms.com/a03-_inclusion.html\n // Copyright 2000 softSurfer, 2012 Dan Sunday\n // This code may be freely used and modified for any purpose\n // providing that this copyright notice is included with it.\n // SoftSurfer makes no warranty for this code, and cannot be held\n // liable for any real or imagined damage resulting from its use.\n // Users of this code must verify correctness for their application.\n var wn = 0;\n var x1 = flatCoordinates[end - stride];\n var y1 = flatCoordinates[end - stride + 1];\n for (; offset < end; offset += stride) {\n var x2 = flatCoordinates[offset];\n var y2 = flatCoordinates[offset + 1];\n if (y1 <= y) {\n if (y2 > y && (x2 - x1) * (y - y1) - (x - x1) * (y2 - y1) > 0) {\n wn++;\n }\n }\n else if (y2 <= y && (x2 - x1) * (y - y1) - (x - x1) * (y2 - y1) < 0) {\n wn--;\n }\n x1 = x2;\n y1 = y2;\n }\n return wn !== 0;\n}\n/**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {Array<number>} ends Ends.\n * @param {number} stride Stride.\n * @param {number} x X.\n * @param {number} y Y.\n * @return {boolean} Contains (x, y).\n */\nexport function linearRingsContainsXY(flatCoordinates, offset, ends, stride, x, y) {\n if (ends.length === 0) {\n return false;\n }\n if (!linearRingContainsXY(flatCoordinates, offset, ends[0], stride, x, y)) {\n return false;\n }\n for (var i = 1, ii = ends.length; i < ii; ++i) {\n if (linearRingContainsXY(flatCoordinates, ends[i - 1], ends[i], stride, x, y)) {\n return false;\n }\n }\n return true;\n}\n/**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {Array<Array<number>>} endss Endss.\n * @param {number} stride Stride.\n * @param {number} x X.\n * @param {number} y Y.\n * @return {boolean} Contains (x, y).\n */\nexport function linearRingssContainsXY(flatCoordinates, offset, endss, stride, x, y) {\n if (endss.length === 0) {\n return false;\n }\n for (var i = 0, ii = endss.length; i < ii; ++i) {\n var ends = endss[i];\n if (linearRingsContainsXY(flatCoordinates, offset, ends, stride, x, y)) {\n return true;\n }\n offset = ends[ends.length - 1];\n }\n return false;\n}\n//# sourceMappingURL=contains.js.map","/**\n * @module ol/geom/flat/intersectsextent\n */\nimport { containsExtent, createEmpty, extendFlatCoordinates, intersects, intersectsSegment, } from '../../extent.js';\nimport { forEach as forEachSegment } from './segments.js';\nimport { linearRingContainsExtent, linearRingContainsXY } from './contains.js';\n/**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {number} end End.\n * @param {number} stride Stride.\n * @param {import(\"../../extent.js\").Extent} extent Extent.\n * @return {boolean} True if the geometry and the extent intersect.\n */\nexport function intersectsLineString(flatCoordinates, offset, end, stride, extent) {\n var coordinatesExtent = extendFlatCoordinates(createEmpty(), flatCoordinates, offset, end, stride);\n if (!intersects(extent, coordinatesExtent)) {\n return false;\n }\n if (containsExtent(extent, coordinatesExtent)) {\n return true;\n }\n if (coordinatesExtent[0] >= extent[0] && coordinatesExtent[2] <= extent[2]) {\n return true;\n }\n if (coordinatesExtent[1] >= extent[1] && coordinatesExtent[3] <= extent[3]) {\n return true;\n }\n return forEachSegment(flatCoordinates, offset, end, stride, \n /**\n * @param {import(\"../../coordinate.js\").Coordinate} point1 Start point.\n * @param {import(\"../../coordinate.js\").Coordinate} point2 End point.\n * @return {boolean} `true` if the segment and the extent intersect,\n * `false` otherwise.\n */\n function (point1, point2) {\n return intersectsSegment(extent, point1, point2);\n });\n}\n/**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {Array<number>} ends Ends.\n * @param {number} stride Stride.\n * @param {import(\"../../extent.js\").Extent} extent Extent.\n * @return {boolean} True if the geometry and the extent intersect.\n */\nexport function intersectsLineStringArray(flatCoordinates, offset, ends, stride, extent) {\n for (var i = 0, ii = ends.length; i < ii; ++i) {\n if (intersectsLineString(flatCoordinates, offset, ends[i], stride, extent)) {\n return true;\n }\n offset = ends[i];\n }\n return false;\n}\n/**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {number} end End.\n * @param {number} stride Stride.\n * @param {import(\"../../extent.js\").Extent} extent Extent.\n * @return {boolean} True if the geometry and the extent intersect.\n */\nexport function intersectsLinearRing(flatCoordinates, offset, end, stride, extent) {\n if (intersectsLineString(flatCoordinates, offset, end, stride, extent)) {\n return true;\n }\n if (linearRingContainsXY(flatCoordinates, offset, end, stride, extent[0], extent[1])) {\n return true;\n }\n if (linearRingContainsXY(flatCoordinates, offset, end, stride, extent[0], extent[3])) {\n return true;\n }\n if (linearRingContainsXY(flatCoordinates, offset, end, stride, extent[2], extent[1])) {\n return true;\n }\n if (linearRingContainsXY(flatCoordinates, offset, end, stride, extent[2], extent[3])) {\n return true;\n }\n return false;\n}\n/**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {Array<number>} ends Ends.\n * @param {number} stride Stride.\n * @param {import(\"../../extent.js\").Extent} extent Extent.\n * @return {boolean} True if the geometry and the extent intersect.\n */\nexport function intersectsLinearRingArray(flatCoordinates, offset, ends, stride, extent) {\n if (!intersectsLinearRing(flatCoordinates, offset, ends[0], stride, extent)) {\n return false;\n }\n if (ends.length === 1) {\n return true;\n }\n for (var i = 1, ii = ends.length; i < ii; ++i) {\n if (linearRingContainsExtent(flatCoordinates, ends[i - 1], ends[i], stride, extent)) {\n if (!intersectsLineString(flatCoordinates, ends[i - 1], ends[i], stride, extent)) {\n return false;\n }\n }\n }\n return true;\n}\n/**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {Array<Array<number>>} endss Endss.\n * @param {number} stride Stride.\n * @param {import(\"../../extent.js\").Extent} extent Extent.\n * @return {boolean} True if the geometry and the extent intersect.\n */\nexport function intersectsLinearRingMultiArray(flatCoordinates, offset, endss, stride, extent) {\n for (var i = 0, ii = endss.length; i < ii; ++i) {\n var ends = endss[i];\n if (intersectsLinearRingArray(flatCoordinates, offset, ends, stride, extent)) {\n return true;\n }\n offset = ends[ends.length - 1];\n }\n return false;\n}\n//# sourceMappingURL=intersectsextent.js.map","/**\n * @module ol/geom/flat/length\n */\n/**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {number} end End.\n * @param {number} stride Stride.\n * @return {number} Length.\n */\nexport function lineStringLength(flatCoordinates, offset, end, stride) {\n var x1 = flatCoordinates[offset];\n var y1 = flatCoordinates[offset + 1];\n var length = 0;\n for (var i = offset + stride; i < end; i += stride) {\n var x2 = flatCoordinates[i];\n var y2 = flatCoordinates[i + 1];\n length += Math.sqrt((x2 - x1) * (x2 - x1) + (y2 - y1) * (y2 - y1));\n x1 = x2;\n y1 = y2;\n }\n return length;\n}\n/**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {number} end End.\n * @param {number} stride Stride.\n * @return {number} Perimeter.\n */\nexport function linearRingLength(flatCoordinates, offset, end, stride) {\n var perimeter = lineStringLength(flatCoordinates, offset, end, stride);\n var dx = flatCoordinates[end - stride] - flatCoordinates[offset];\n var dy = flatCoordinates[end - stride + 1] - flatCoordinates[offset + 1];\n perimeter += Math.sqrt(dx * dx + dy * dy);\n return perimeter;\n}\n//# sourceMappingURL=length.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/geom/LineString\n */\nimport GeometryLayout from './GeometryLayout.js';\nimport GeometryType from './GeometryType.js';\nimport SimpleGeometry from './SimpleGeometry.js';\nimport { assignClosestPoint, maxSquaredDelta } from './flat/closest.js';\nimport { closestSquaredDistanceXY } from '../extent.js';\nimport { deflateCoordinates } from './flat/deflate.js';\nimport { douglasPeucker } from './flat/simplify.js';\nimport { extend } from '../array.js';\nimport { forEach as forEachSegment } from './flat/segments.js';\nimport { inflateCoordinates } from './flat/inflate.js';\nimport { interpolatePoint, lineStringCoordinateAtM } from './flat/interpolate.js';\nimport { intersectsLineString } from './flat/intersectsextent.js';\nimport { lineStringLength } from './flat/length.js';\n/**\n * @classdesc\n * Linestring geometry.\n *\n * @api\n */\nvar LineString = /** @class */ (function (_super) {\n __extends(LineString, _super);\n /**\n * @param {Array<import(\"../coordinate.js\").Coordinate>|Array<number>} coordinates Coordinates.\n * For internal use, flat coordinates in combination with `opt_layout` are also accepted.\n * @param {import(\"./GeometryLayout.js\").default} [opt_layout] Layout.\n */\n function LineString(coordinates, opt_layout) {\n var _this = _super.call(this) || this;\n /**\n * @private\n * @type {import(\"../coordinate.js\").Coordinate}\n */\n _this.flatMidpoint_ = null;\n /**\n * @private\n * @type {number}\n */\n _this.flatMidpointRevision_ = -1;\n /**\n * @private\n * @type {number}\n */\n _this.maxDelta_ = -1;\n /**\n * @private\n * @type {number}\n */\n _this.maxDeltaRevision_ = -1;\n if (opt_layout !== undefined && !Array.isArray(coordinates[0])) {\n _this.setFlatCoordinates(opt_layout, \n /** @type {Array<number>} */ (coordinates));\n }\n else {\n _this.setCoordinates(\n /** @type {Array<import(\"../coordinate.js\").Coordinate>} */ (coordinates), opt_layout);\n }\n return _this;\n }\n /**\n * Append the passed coordinate to the coordinates of the linestring.\n * @param {import(\"../coordinate.js\").Coordinate} coordinate Coordinate.\n * @api\n */\n LineString.prototype.appendCoordinate = function (coordinate) {\n if (!this.flatCoordinates) {\n this.flatCoordinates = coordinate.slice();\n }\n else {\n extend(this.flatCoordinates, coordinate);\n }\n this.changed();\n };\n /**\n * Make a complete copy of the geometry.\n * @return {!LineString} Clone.\n * @api\n */\n LineString.prototype.clone = function () {\n var lineString = new LineString(this.flatCoordinates.slice(), this.layout);\n lineString.applyProperties(this);\n return lineString;\n };\n /**\n * @param {number} x X.\n * @param {number} y Y.\n * @param {import(\"../coordinate.js\").Coordinate} closestPoint Closest point.\n * @param {number} minSquaredDistance Minimum squared distance.\n * @return {number} Minimum squared distance.\n */\n LineString.prototype.closestPointXY = function (x, y, closestPoint, minSquaredDistance) {\n if (minSquaredDistance < closestSquaredDistanceXY(this.getExtent(), x, y)) {\n return minSquaredDistance;\n }\n if (this.maxDeltaRevision_ != this.getRevision()) {\n this.maxDelta_ = Math.sqrt(maxSquaredDelta(this.flatCoordinates, 0, this.flatCoordinates.length, this.stride, 0));\n this.maxDeltaRevision_ = this.getRevision();\n }\n return assignClosestPoint(this.flatCoordinates, 0, this.flatCoordinates.length, this.stride, this.maxDelta_, false, x, y, closestPoint, minSquaredDistance);\n };\n /**\n * Iterate over each segment, calling the provided callback.\n * If the callback returns a truthy value the function returns that\n * value immediately. Otherwise the function returns `false`.\n *\n * @param {function(this: S, import(\"../coordinate.js\").Coordinate, import(\"../coordinate.js\").Coordinate): T} callback Function\n * called for each segment. The function will receive two arguments, the start and end coordinates of the segment.\n * @return {T|boolean} Value.\n * @template T,S\n * @api\n */\n LineString.prototype.forEachSegment = function (callback) {\n return forEachSegment(this.flatCoordinates, 0, this.flatCoordinates.length, this.stride, callback);\n };\n /**\n * Returns the coordinate at `m` using linear interpolation, or `null` if no\n * such coordinate exists.\n *\n * `opt_extrapolate` controls extrapolation beyond the range of Ms in the\n * MultiLineString. If `opt_extrapolate` is `true` then Ms less than the first\n * M will return the first coordinate and Ms greater than the last M will\n * return the last coordinate.\n *\n * @param {number} m M.\n * @param {boolean} [opt_extrapolate] Extrapolate. Default is `false`.\n * @return {import(\"../coordinate.js\").Coordinate} Coordinate.\n * @api\n */\n LineString.prototype.getCoordinateAtM = function (m, opt_extrapolate) {\n if (this.layout != GeometryLayout.XYM &&\n this.layout != GeometryLayout.XYZM) {\n return null;\n }\n var extrapolate = opt_extrapolate !== undefined ? opt_extrapolate : false;\n return lineStringCoordinateAtM(this.flatCoordinates, 0, this.flatCoordinates.length, this.stride, m, extrapolate);\n };\n /**\n * Return the coordinates of the linestring.\n * @return {Array<import(\"../coordinate.js\").Coordinate>} Coordinates.\n * @api\n */\n LineString.prototype.getCoordinates = function () {\n return inflateCoordinates(this.flatCoordinates, 0, this.flatCoordinates.length, this.stride);\n };\n /**\n * Return the coordinate at the provided fraction along the linestring.\n * The `fraction` is a number between 0 and 1, where 0 is the start of the\n * linestring and 1 is the end.\n * @param {number} fraction Fraction.\n * @param {import(\"../coordinate.js\").Coordinate} [opt_dest] Optional coordinate whose values will\n * be modified. If not provided, a new coordinate will be returned.\n * @return {import(\"../coordinate.js\").Coordinate} Coordinate of the interpolated point.\n * @api\n */\n LineString.prototype.getCoordinateAt = function (fraction, opt_dest) {\n return interpolatePoint(this.flatCoordinates, 0, this.flatCoordinates.length, this.stride, fraction, opt_dest, this.stride);\n };\n /**\n * Return the length of the linestring on projected plane.\n * @return {number} Length (on projected plane).\n * @api\n */\n LineString.prototype.getLength = function () {\n return lineStringLength(this.flatCoordinates, 0, this.flatCoordinates.length, this.stride);\n };\n /**\n * @return {Array<number>} Flat midpoint.\n */\n LineString.prototype.getFlatMidpoint = function () {\n if (this.flatMidpointRevision_ != this.getRevision()) {\n this.flatMidpoint_ = this.getCoordinateAt(0.5, this.flatMidpoint_);\n this.flatMidpointRevision_ = this.getRevision();\n }\n return this.flatMidpoint_;\n };\n /**\n * @param {number} squaredTolerance Squared tolerance.\n * @return {LineString} Simplified LineString.\n * @protected\n */\n LineString.prototype.getSimplifiedGeometryInternal = function (squaredTolerance) {\n var simplifiedFlatCoordinates = [];\n simplifiedFlatCoordinates.length = douglasPeucker(this.flatCoordinates, 0, this.flatCoordinates.length, this.stride, squaredTolerance, simplifiedFlatCoordinates, 0);\n return new LineString(simplifiedFlatCoordinates, GeometryLayout.XY);\n };\n /**\n * Get the type of this geometry.\n * @return {import(\"./GeometryType.js\").default} Geometry type.\n * @api\n */\n LineString.prototype.getType = function () {\n return GeometryType.LINE_STRING;\n };\n /**\n * Test if the geometry and the passed extent intersect.\n * @param {import(\"../extent.js\").Extent} extent Extent.\n * @return {boolean} `true` if the geometry and the extent intersect.\n * @api\n */\n LineString.prototype.intersectsExtent = function (extent) {\n return intersectsLineString(this.flatCoordinates, 0, this.flatCoordinates.length, this.stride, extent);\n };\n /**\n * Set the coordinates of the linestring.\n * @param {!Array<import(\"../coordinate.js\").Coordinate>} coordinates Coordinates.\n * @param {import(\"./GeometryLayout.js\").default} [opt_layout] Layout.\n * @api\n */\n LineString.prototype.setCoordinates = function (coordinates, opt_layout) {\n this.setLayout(opt_layout, coordinates, 1);\n if (!this.flatCoordinates) {\n this.flatCoordinates = [];\n }\n this.flatCoordinates.length = deflateCoordinates(this.flatCoordinates, 0, coordinates, this.stride);\n this.changed();\n };\n return LineString;\n}(SimpleGeometry));\nexport default LineString;\n//# sourceMappingURL=LineString.js.map","/**\n * @module ol/geom/flat/area\n */\n/**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {number} end End.\n * @param {number} stride Stride.\n * @return {number} Area.\n */\nexport function linearRing(flatCoordinates, offset, end, stride) {\n var twiceArea = 0;\n var x1 = flatCoordinates[end - stride];\n var y1 = flatCoordinates[end - stride + 1];\n for (; offset < end; offset += stride) {\n var x2 = flatCoordinates[offset];\n var y2 = flatCoordinates[offset + 1];\n twiceArea += y1 * x2 - x1 * y2;\n x1 = x2;\n y1 = y2;\n }\n return twiceArea / 2;\n}\n/**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {Array<number>} ends Ends.\n * @param {number} stride Stride.\n * @return {number} Area.\n */\nexport function linearRings(flatCoordinates, offset, ends, stride) {\n var area = 0;\n for (var i = 0, ii = ends.length; i < ii; ++i) {\n var end = ends[i];\n area += linearRing(flatCoordinates, offset, end, stride);\n offset = end;\n }\n return area;\n}\n/**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {Array<Array<number>>} endss Endss.\n * @param {number} stride Stride.\n * @return {number} Area.\n */\nexport function linearRingss(flatCoordinates, offset, endss, stride) {\n var area = 0;\n for (var i = 0, ii = endss.length; i < ii; ++i) {\n var ends = endss[i];\n area += linearRings(flatCoordinates, offset, ends, stride);\n offset = ends[ends.length - 1];\n }\n return area;\n}\n//# sourceMappingURL=area.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/geom/LinearRing\n */\nimport GeometryLayout from './GeometryLayout.js';\nimport GeometryType from './GeometryType.js';\nimport SimpleGeometry from './SimpleGeometry.js';\nimport { assignClosestPoint, maxSquaredDelta } from './flat/closest.js';\nimport { closestSquaredDistanceXY } from '../extent.js';\nimport { deflateCoordinates } from './flat/deflate.js';\nimport { douglasPeucker } from './flat/simplify.js';\nimport { inflateCoordinates } from './flat/inflate.js';\nimport { linearRing as linearRingArea } from './flat/area.js';\n/**\n * @classdesc\n * Linear ring geometry. Only used as part of polygon; cannot be rendered\n * on its own.\n *\n * @api\n */\nvar LinearRing = /** @class */ (function (_super) {\n __extends(LinearRing, _super);\n /**\n * @param {Array<import(\"../coordinate.js\").Coordinate>|Array<number>} coordinates Coordinates.\n * For internal use, flat coordinates in combination with `opt_layout` are also accepted.\n * @param {import(\"./GeometryLayout.js\").default} [opt_layout] Layout.\n */\n function LinearRing(coordinates, opt_layout) {\n var _this = _super.call(this) || this;\n /**\n * @private\n * @type {number}\n */\n _this.maxDelta_ = -1;\n /**\n * @private\n * @type {number}\n */\n _this.maxDeltaRevision_ = -1;\n if (opt_layout !== undefined && !Array.isArray(coordinates[0])) {\n _this.setFlatCoordinates(opt_layout, \n /** @type {Array<number>} */ (coordinates));\n }\n else {\n _this.setCoordinates(\n /** @type {Array<import(\"../coordinate.js\").Coordinate>} */ (coordinates), opt_layout);\n }\n return _this;\n }\n /**\n * Make a complete copy of the geometry.\n * @return {!LinearRing} Clone.\n * @api\n */\n LinearRing.prototype.clone = function () {\n return new LinearRing(this.flatCoordinates.slice(), this.layout);\n };\n /**\n * @param {number} x X.\n * @param {number} y Y.\n * @param {import(\"../coordinate.js\").Coordinate} closestPoint Closest point.\n * @param {number} minSquaredDistance Minimum squared distance.\n * @return {number} Minimum squared distance.\n */\n LinearRing.prototype.closestPointXY = function (x, y, closestPoint, minSquaredDistance) {\n if (minSquaredDistance < closestSquaredDistanceXY(this.getExtent(), x, y)) {\n return minSquaredDistance;\n }\n if (this.maxDeltaRevision_ != this.getRevision()) {\n this.maxDelta_ = Math.sqrt(maxSquaredDelta(this.flatCoordinates, 0, this.flatCoordinates.length, this.stride, 0));\n this.maxDeltaRevision_ = this.getRevision();\n }\n return assignClosestPoint(this.flatCoordinates, 0, this.flatCoordinates.length, this.stride, this.maxDelta_, true, x, y, closestPoint, minSquaredDistance);\n };\n /**\n * Return the area of the linear ring on projected plane.\n * @return {number} Area (on projected plane).\n * @api\n */\n LinearRing.prototype.getArea = function () {\n return linearRingArea(this.flatCoordinates, 0, this.flatCoordinates.length, this.stride);\n };\n /**\n * Return the coordinates of the linear ring.\n * @return {Array<import(\"../coordinate.js\").Coordinate>} Coordinates.\n * @api\n */\n LinearRing.prototype.getCoordinates = function () {\n return inflateCoordinates(this.flatCoordinates, 0, this.flatCoordinates.length, this.stride);\n };\n /**\n * @param {number} squaredTolerance Squared tolerance.\n * @return {LinearRing} Simplified LinearRing.\n * @protected\n */\n LinearRing.prototype.getSimplifiedGeometryInternal = function (squaredTolerance) {\n var simplifiedFlatCoordinates = [];\n simplifiedFlatCoordinates.length = douglasPeucker(this.flatCoordinates, 0, this.flatCoordinates.length, this.stride, squaredTolerance, simplifiedFlatCoordinates, 0);\n return new LinearRing(simplifiedFlatCoordinates, GeometryLayout.XY);\n };\n /**\n * Get the type of this geometry.\n * @return {import(\"./GeometryType.js\").default} Geometry type.\n * @api\n */\n LinearRing.prototype.getType = function () {\n return GeometryType.LINEAR_RING;\n };\n /**\n * Test if the geometry and the passed extent intersect.\n * @param {import(\"../extent.js\").Extent} extent Extent.\n * @return {boolean} `true` if the geometry and the extent intersect.\n * @api\n */\n LinearRing.prototype.intersectsExtent = function (extent) {\n return false;\n };\n /**\n * Set the coordinates of the linear ring.\n * @param {!Array<import(\"../coordinate.js\").Coordinate>} coordinates Coordinates.\n * @param {import(\"./GeometryLayout.js\").default} [opt_layout] Layout.\n * @api\n */\n LinearRing.prototype.setCoordinates = function (coordinates, opt_layout) {\n this.setLayout(opt_layout, coordinates, 1);\n if (!this.flatCoordinates) {\n this.flatCoordinates = [];\n }\n this.flatCoordinates.length = deflateCoordinates(this.flatCoordinates, 0, coordinates, this.stride);\n this.changed();\n };\n return LinearRing;\n}(SimpleGeometry));\nexport default LinearRing;\n//# sourceMappingURL=LinearRing.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/geom/MultiLineString\n */\nimport GeometryLayout from './GeometryLayout.js';\nimport GeometryType from './GeometryType.js';\nimport LineString from './LineString.js';\nimport SimpleGeometry from './SimpleGeometry.js';\nimport { arrayMaxSquaredDelta, assignClosestArrayPoint } from './flat/closest.js';\nimport { closestSquaredDistanceXY } from '../extent.js';\nimport { deflateCoordinatesArray } from './flat/deflate.js';\nimport { douglasPeuckerArray } from './flat/simplify.js';\nimport { extend } from '../array.js';\nimport { inflateCoordinatesArray } from './flat/inflate.js';\nimport { interpolatePoint, lineStringsCoordinateAtM, } from './flat/interpolate.js';\nimport { intersectsLineStringArray } from './flat/intersectsextent.js';\n/**\n * @classdesc\n * Multi-linestring geometry.\n *\n * @api\n */\nvar MultiLineString = /** @class */ (function (_super) {\n __extends(MultiLineString, _super);\n /**\n * @param {Array<Array<import(\"../coordinate.js\").Coordinate>|LineString>|Array<number>} coordinates\n * Coordinates or LineString geometries. (For internal use, flat coordinates in\n * combination with `opt_layout` and `opt_ends` are also accepted.)\n * @param {import(\"./GeometryLayout.js\").default} [opt_layout] Layout.\n * @param {Array<number>} [opt_ends] Flat coordinate ends for internal use.\n */\n function MultiLineString(coordinates, opt_layout, opt_ends) {\n var _this = _super.call(this) || this;\n /**\n * @type {Array<number>}\n * @private\n */\n _this.ends_ = [];\n /**\n * @private\n * @type {number}\n */\n _this.maxDelta_ = -1;\n /**\n * @private\n * @type {number}\n */\n _this.maxDeltaRevision_ = -1;\n if (Array.isArray(coordinates[0])) {\n _this.setCoordinates(\n /** @type {Array<Array<import(\"../coordinate.js\").Coordinate>>} */ (coordinates), opt_layout);\n }\n else if (opt_layout !== undefined && opt_ends) {\n _this.setFlatCoordinates(opt_layout, \n /** @type {Array<number>} */ (coordinates));\n _this.ends_ = opt_ends;\n }\n else {\n var layout = _this.getLayout();\n var lineStrings = /** @type {Array<LineString>} */ (coordinates);\n var flatCoordinates = [];\n var ends = [];\n for (var i = 0, ii = lineStrings.length; i < ii; ++i) {\n var lineString = lineStrings[i];\n if (i === 0) {\n layout = lineString.getLayout();\n }\n extend(flatCoordinates, lineString.getFlatCoordinates());\n ends.push(flatCoordinates.length);\n }\n _this.setFlatCoordinates(layout, flatCoordinates);\n _this.ends_ = ends;\n }\n return _this;\n }\n /**\n * Append the passed linestring to the multilinestring.\n * @param {LineString} lineString LineString.\n * @api\n */\n MultiLineString.prototype.appendLineString = function (lineString) {\n if (!this.flatCoordinates) {\n this.flatCoordinates = lineString.getFlatCoordinates().slice();\n }\n else {\n extend(this.flatCoordinates, lineString.getFlatCoordinates().slice());\n }\n this.ends_.push(this.flatCoordinates.length);\n this.changed();\n };\n /**\n * Make a complete copy of the geometry.\n * @return {!MultiLineString} Clone.\n * @api\n */\n MultiLineString.prototype.clone = function () {\n var multiLineString = new MultiLineString(this.flatCoordinates.slice(), this.layout, this.ends_.slice());\n multiLineString.applyProperties(this);\n return multiLineString;\n };\n /**\n * @param {number} x X.\n * @param {number} y Y.\n * @param {import(\"../coordinate.js\").Coordinate} closestPoint Closest point.\n * @param {number} minSquaredDistance Minimum squared distance.\n * @return {number} Minimum squared distance.\n */\n MultiLineString.prototype.closestPointXY = function (x, y, closestPoint, minSquaredDistance) {\n if (minSquaredDistance < closestSquaredDistanceXY(this.getExtent(), x, y)) {\n return minSquaredDistance;\n }\n if (this.maxDeltaRevision_ != this.getRevision()) {\n this.maxDelta_ = Math.sqrt(arrayMaxSquaredDelta(this.flatCoordinates, 0, this.ends_, this.stride, 0));\n this.maxDeltaRevision_ = this.getRevision();\n }\n return assignClosestArrayPoint(this.flatCoordinates, 0, this.ends_, this.stride, this.maxDelta_, false, x, y, closestPoint, minSquaredDistance);\n };\n /**\n * Returns the coordinate at `m` using linear interpolation, or `null` if no\n * such coordinate exists.\n *\n * `opt_extrapolate` controls extrapolation beyond the range of Ms in the\n * MultiLineString. If `opt_extrapolate` is `true` then Ms less than the first\n * M will return the first coordinate and Ms greater than the last M will\n * return the last coordinate.\n *\n * `opt_interpolate` controls interpolation between consecutive LineStrings\n * within the MultiLineString. If `opt_interpolate` is `true` the coordinates\n * will be linearly interpolated between the last coordinate of one LineString\n * and the first coordinate of the next LineString. If `opt_interpolate` is\n * `false` then the function will return `null` for Ms falling between\n * LineStrings.\n *\n * @param {number} m M.\n * @param {boolean} [opt_extrapolate] Extrapolate. Default is `false`.\n * @param {boolean} [opt_interpolate] Interpolate. Default is `false`.\n * @return {import(\"../coordinate.js\").Coordinate} Coordinate.\n * @api\n */\n MultiLineString.prototype.getCoordinateAtM = function (m, opt_extrapolate, opt_interpolate) {\n if ((this.layout != GeometryLayout.XYM &&\n this.layout != GeometryLayout.XYZM) ||\n this.flatCoordinates.length === 0) {\n return null;\n }\n var extrapolate = opt_extrapolate !== undefined ? opt_extrapolate : false;\n var interpolate = opt_interpolate !== undefined ? opt_interpolate : false;\n return lineStringsCoordinateAtM(this.flatCoordinates, 0, this.ends_, this.stride, m, extrapolate, interpolate);\n };\n /**\n * Return the coordinates of the multilinestring.\n * @return {Array<Array<import(\"../coordinate.js\").Coordinate>>} Coordinates.\n * @api\n */\n MultiLineString.prototype.getCoordinates = function () {\n return inflateCoordinatesArray(this.flatCoordinates, 0, this.ends_, this.stride);\n };\n /**\n * @return {Array<number>} Ends.\n */\n MultiLineString.prototype.getEnds = function () {\n return this.ends_;\n };\n /**\n * Return the linestring at the specified index.\n * @param {number} index Index.\n * @return {LineString} LineString.\n * @api\n */\n MultiLineString.prototype.getLineString = function (index) {\n if (index < 0 || this.ends_.length <= index) {\n return null;\n }\n return new LineString(this.flatCoordinates.slice(index === 0 ? 0 : this.ends_[index - 1], this.ends_[index]), this.layout);\n };\n /**\n * Return the linestrings of this multilinestring.\n * @return {Array<LineString>} LineStrings.\n * @api\n */\n MultiLineString.prototype.getLineStrings = function () {\n var flatCoordinates = this.flatCoordinates;\n var ends = this.ends_;\n var layout = this.layout;\n /** @type {Array<LineString>} */\n var lineStrings = [];\n var offset = 0;\n for (var i = 0, ii = ends.length; i < ii; ++i) {\n var end = ends[i];\n var lineString = new LineString(flatCoordinates.slice(offset, end), layout);\n lineStrings.push(lineString);\n offset = end;\n }\n return lineStrings;\n };\n /**\n * @return {Array<number>} Flat midpoints.\n */\n MultiLineString.prototype.getFlatMidpoints = function () {\n var midpoints = [];\n var flatCoordinates = this.flatCoordinates;\n var offset = 0;\n var ends = this.ends_;\n var stride = this.stride;\n for (var i = 0, ii = ends.length; i < ii; ++i) {\n var end = ends[i];\n var midpoint = interpolatePoint(flatCoordinates, offset, end, stride, 0.5);\n extend(midpoints, midpoint);\n offset = end;\n }\n return midpoints;\n };\n /**\n * @param {number} squaredTolerance Squared tolerance.\n * @return {MultiLineString} Simplified MultiLineString.\n * @protected\n */\n MultiLineString.prototype.getSimplifiedGeometryInternal = function (squaredTolerance) {\n var simplifiedFlatCoordinates = [];\n var simplifiedEnds = [];\n simplifiedFlatCoordinates.length = douglasPeuckerArray(this.flatCoordinates, 0, this.ends_, this.stride, squaredTolerance, simplifiedFlatCoordinates, 0, simplifiedEnds);\n return new MultiLineString(simplifiedFlatCoordinates, GeometryLayout.XY, simplifiedEnds);\n };\n /**\n * Get the type of this geometry.\n * @return {import(\"./GeometryType.js\").default} Geometry type.\n * @api\n */\n MultiLineString.prototype.getType = function () {\n return GeometryType.MULTI_LINE_STRING;\n };\n /**\n * Test if the geometry and the passed extent intersect.\n * @param {import(\"../extent.js\").Extent} extent Extent.\n * @return {boolean} `true` if the geometry and the extent intersect.\n * @api\n */\n MultiLineString.prototype.intersectsExtent = function (extent) {\n return intersectsLineStringArray(this.flatCoordinates, 0, this.ends_, this.stride, extent);\n };\n /**\n * Set the coordinates of the multilinestring.\n * @param {!Array<Array<import(\"../coordinate.js\").Coordinate>>} coordinates Coordinates.\n * @param {GeometryLayout} [opt_layout] Layout.\n * @api\n */\n MultiLineString.prototype.setCoordinates = function (coordinates, opt_layout) {\n this.setLayout(opt_layout, coordinates, 2);\n if (!this.flatCoordinates) {\n this.flatCoordinates = [];\n }\n var ends = deflateCoordinatesArray(this.flatCoordinates, 0, coordinates, this.stride, this.ends_);\n this.flatCoordinates.length = ends.length === 0 ? 0 : ends[ends.length - 1];\n this.changed();\n };\n return MultiLineString;\n}(SimpleGeometry));\nexport default MultiLineString;\n//# sourceMappingURL=MultiLineString.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/geom/Point\n */\nimport GeometryType from './GeometryType.js';\nimport SimpleGeometry from './SimpleGeometry.js';\nimport { containsXY, createOrUpdateFromCoordinate } from '../extent.js';\nimport { deflateCoordinate } from './flat/deflate.js';\nimport { squaredDistance as squaredDx } from '../math.js';\n/**\n * @classdesc\n * Point geometry.\n *\n * @api\n */\nvar Point = /** @class */ (function (_super) {\n __extends(Point, _super);\n /**\n * @param {import(\"../coordinate.js\").Coordinate} coordinates Coordinates.\n * @param {import(\"./GeometryLayout.js\").default} [opt_layout] Layout.\n */\n function Point(coordinates, opt_layout) {\n var _this = _super.call(this) || this;\n _this.setCoordinates(coordinates, opt_layout);\n return _this;\n }\n /**\n * Make a complete copy of the geometry.\n * @return {!Point} Clone.\n * @api\n */\n Point.prototype.clone = function () {\n var point = new Point(this.flatCoordinates.slice(), this.layout);\n point.applyProperties(this);\n return point;\n };\n /**\n * @param {number} x X.\n * @param {number} y Y.\n * @param {import(\"../coordinate.js\").Coordinate} closestPoint Closest point.\n * @param {number} minSquaredDistance Minimum squared distance.\n * @return {number} Minimum squared distance.\n */\n Point.prototype.closestPointXY = function (x, y, closestPoint, minSquaredDistance) {\n var flatCoordinates = this.flatCoordinates;\n var squaredDistance = squaredDx(x, y, flatCoordinates[0], flatCoordinates[1]);\n if (squaredDistance < minSquaredDistance) {\n var stride = this.stride;\n for (var i = 0; i < stride; ++i) {\n closestPoint[i] = flatCoordinates[i];\n }\n closestPoint.length = stride;\n return squaredDistance;\n }\n else {\n return minSquaredDistance;\n }\n };\n /**\n * Return the coordinate of the point.\n * @return {import(\"../coordinate.js\").Coordinate} Coordinates.\n * @api\n */\n Point.prototype.getCoordinates = function () {\n return !this.flatCoordinates ? [] : this.flatCoordinates.slice();\n };\n /**\n * @param {import(\"../extent.js\").Extent} extent Extent.\n * @protected\n * @return {import(\"../extent.js\").Extent} extent Extent.\n */\n Point.prototype.computeExtent = function (extent) {\n return createOrUpdateFromCoordinate(this.flatCoordinates, extent);\n };\n /**\n * Get the type of this geometry.\n * @return {import(\"./GeometryType.js\").default} Geometry type.\n * @api\n */\n Point.prototype.getType = function () {\n return GeometryType.POINT;\n };\n /**\n * Test if the geometry and the passed extent intersect.\n * @param {import(\"../extent.js\").Extent} extent Extent.\n * @return {boolean} `true` if the geometry and the extent intersect.\n * @api\n */\n Point.prototype.intersectsExtent = function (extent) {\n return containsXY(extent, this.flatCoordinates[0], this.flatCoordinates[1]);\n };\n /**\n * @param {!Array<*>} coordinates Coordinates.\n * @param {import(\"./GeometryLayout.js\").default} [opt_layout] Layout.\n * @api\n */\n Point.prototype.setCoordinates = function (coordinates, opt_layout) {\n this.setLayout(opt_layout, coordinates, 0);\n if (!this.flatCoordinates) {\n this.flatCoordinates = [];\n }\n this.flatCoordinates.length = deflateCoordinate(this.flatCoordinates, 0, coordinates, this.stride);\n this.changed();\n };\n return Point;\n}(SimpleGeometry));\nexport default Point;\n//# sourceMappingURL=Point.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/geom/MultiPoint\n */\nimport GeometryType from './GeometryType.js';\nimport Point from './Point.js';\nimport SimpleGeometry from './SimpleGeometry.js';\nimport { closestSquaredDistanceXY, containsXY } from '../extent.js';\nimport { deflateCoordinates } from './flat/deflate.js';\nimport { extend } from '../array.js';\nimport { inflateCoordinates } from './flat/inflate.js';\nimport { squaredDistance as squaredDx } from '../math.js';\n/**\n * @classdesc\n * Multi-point geometry.\n *\n * @api\n */\nvar MultiPoint = /** @class */ (function (_super) {\n __extends(MultiPoint, _super);\n /**\n * @param {Array<import(\"../coordinate.js\").Coordinate>|Array<number>} coordinates Coordinates.\n * For internal use, flat coordinates in combination with `opt_layout` are also accepted.\n * @param {import(\"./GeometryLayout.js\").default} [opt_layout] Layout.\n */\n function MultiPoint(coordinates, opt_layout) {\n var _this = _super.call(this) || this;\n if (opt_layout && !Array.isArray(coordinates[0])) {\n _this.setFlatCoordinates(opt_layout, \n /** @type {Array<number>} */ (coordinates));\n }\n else {\n _this.setCoordinates(\n /** @type {Array<import(\"../coordinate.js\").Coordinate>} */ (coordinates), opt_layout);\n }\n return _this;\n }\n /**\n * Append the passed point to this multipoint.\n * @param {Point} point Point.\n * @api\n */\n MultiPoint.prototype.appendPoint = function (point) {\n if (!this.flatCoordinates) {\n this.flatCoordinates = point.getFlatCoordinates().slice();\n }\n else {\n extend(this.flatCoordinates, point.getFlatCoordinates());\n }\n this.changed();\n };\n /**\n * Make a complete copy of the geometry.\n * @return {!MultiPoint} Clone.\n * @api\n */\n MultiPoint.prototype.clone = function () {\n var multiPoint = new MultiPoint(this.flatCoordinates.slice(), this.layout);\n multiPoint.applyProperties(this);\n return multiPoint;\n };\n /**\n * @param {number} x X.\n * @param {number} y Y.\n * @param {import(\"../coordinate.js\").Coordinate} closestPoint Closest point.\n * @param {number} minSquaredDistance Minimum squared distance.\n * @return {number} Minimum squared distance.\n */\n MultiPoint.prototype.closestPointXY = function (x, y, closestPoint, minSquaredDistance) {\n if (minSquaredDistance < closestSquaredDistanceXY(this.getExtent(), x, y)) {\n return minSquaredDistance;\n }\n var flatCoordinates = this.flatCoordinates;\n var stride = this.stride;\n for (var i = 0, ii = flatCoordinates.length; i < ii; i += stride) {\n var squaredDistance = squaredDx(x, y, flatCoordinates[i], flatCoordinates[i + 1]);\n if (squaredDistance < minSquaredDistance) {\n minSquaredDistance = squaredDistance;\n for (var j = 0; j < stride; ++j) {\n closestPoint[j] = flatCoordinates[i + j];\n }\n closestPoint.length = stride;\n }\n }\n return minSquaredDistance;\n };\n /**\n * Return the coordinates of the multipoint.\n * @return {Array<import(\"../coordinate.js\").Coordinate>} Coordinates.\n * @api\n */\n MultiPoint.prototype.getCoordinates = function () {\n return inflateCoordinates(this.flatCoordinates, 0, this.flatCoordinates.length, this.stride);\n };\n /**\n * Return the point at the specified index.\n * @param {number} index Index.\n * @return {Point} Point.\n * @api\n */\n MultiPoint.prototype.getPoint = function (index) {\n var n = !this.flatCoordinates\n ? 0\n : this.flatCoordinates.length / this.stride;\n if (index < 0 || n <= index) {\n return null;\n }\n return new Point(this.flatCoordinates.slice(index * this.stride, (index + 1) * this.stride), this.layout);\n };\n /**\n * Return the points of this multipoint.\n * @return {Array<Point>} Points.\n * @api\n */\n MultiPoint.prototype.getPoints = function () {\n var flatCoordinates = this.flatCoordinates;\n var layout = this.layout;\n var stride = this.stride;\n /** @type {Array<Point>} */\n var points = [];\n for (var i = 0, ii = flatCoordinates.length; i < ii; i += stride) {\n var point = new Point(flatCoordinates.slice(i, i + stride), layout);\n points.push(point);\n }\n return points;\n };\n /**\n * Get the type of this geometry.\n * @return {import(\"./GeometryType.js\").default} Geometry type.\n * @api\n */\n MultiPoint.prototype.getType = function () {\n return GeometryType.MULTI_POINT;\n };\n /**\n * Test if the geometry and the passed extent intersect.\n * @param {import(\"../extent.js\").Extent} extent Extent.\n * @return {boolean} `true` if the geometry and the extent intersect.\n * @api\n */\n MultiPoint.prototype.intersectsExtent = function (extent) {\n var flatCoordinates = this.flatCoordinates;\n var stride = this.stride;\n for (var i = 0, ii = flatCoordinates.length; i < ii; i += stride) {\n var x = flatCoordinates[i];\n var y = flatCoordinates[i + 1];\n if (containsXY(extent, x, y)) {\n return true;\n }\n }\n return false;\n };\n /**\n * Set the coordinates of the multipoint.\n * @param {!Array<import(\"../coordinate.js\").Coordinate>} coordinates Coordinates.\n * @param {import(\"./GeometryLayout.js\").default} [opt_layout] Layout.\n * @api\n */\n MultiPoint.prototype.setCoordinates = function (coordinates, opt_layout) {\n this.setLayout(opt_layout, coordinates, 1);\n if (!this.flatCoordinates) {\n this.flatCoordinates = [];\n }\n this.flatCoordinates.length = deflateCoordinates(this.flatCoordinates, 0, coordinates, this.stride);\n this.changed();\n };\n return MultiPoint;\n}(SimpleGeometry));\nexport default MultiPoint;\n//# sourceMappingURL=MultiPoint.js.map","/**\n * @module ol/geom/flat/interiorpoint\n */\nimport { linearRingsContainsXY } from './contains.js';\nimport { numberSafeCompareFunction } from '../../array.js';\n/**\n * Calculates a point that is likely to lie in the interior of the linear rings.\n * Inspired by JTS's com.vividsolutions.jts.geom.Geometry#getInteriorPoint.\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {Array<number>} ends Ends.\n * @param {number} stride Stride.\n * @param {Array<number>} flatCenters Flat centers.\n * @param {number} flatCentersOffset Flat center offset.\n * @param {Array<number>} [opt_dest] Destination.\n * @return {Array<number>} Destination point as XYM coordinate, where M is the\n * length of the horizontal intersection that the point belongs to.\n */\nexport function getInteriorPointOfArray(flatCoordinates, offset, ends, stride, flatCenters, flatCentersOffset, opt_dest) {\n var i, ii, x, x1, x2, y1, y2;\n var y = flatCenters[flatCentersOffset + 1];\n /** @type {Array<number>} */\n var intersections = [];\n // Calculate intersections with the horizontal line\n for (var r = 0, rr = ends.length; r < rr; ++r) {\n var end = ends[r];\n x1 = flatCoordinates[end - stride];\n y1 = flatCoordinates[end - stride + 1];\n for (i = offset; i < end; i += stride) {\n x2 = flatCoordinates[i];\n y2 = flatCoordinates[i + 1];\n if ((y <= y1 && y2 <= y) || (y1 <= y && y <= y2)) {\n x = ((y - y1) / (y2 - y1)) * (x2 - x1) + x1;\n intersections.push(x);\n }\n x1 = x2;\n y1 = y2;\n }\n }\n // Find the longest segment of the horizontal line that has its center point\n // inside the linear ring.\n var pointX = NaN;\n var maxSegmentLength = -Infinity;\n intersections.sort(numberSafeCompareFunction);\n x1 = intersections[0];\n for (i = 1, ii = intersections.length; i < ii; ++i) {\n x2 = intersections[i];\n var segmentLength = Math.abs(x2 - x1);\n if (segmentLength > maxSegmentLength) {\n x = (x1 + x2) / 2;\n if (linearRingsContainsXY(flatCoordinates, offset, ends, stride, x, y)) {\n pointX = x;\n maxSegmentLength = segmentLength;\n }\n }\n x1 = x2;\n }\n if (isNaN(pointX)) {\n // There is no horizontal line that has its center point inside the linear\n // ring. Use the center of the the linear ring's extent.\n pointX = flatCenters[flatCentersOffset];\n }\n if (opt_dest) {\n opt_dest.push(pointX, y, maxSegmentLength);\n return opt_dest;\n }\n else {\n return [pointX, y, maxSegmentLength];\n }\n}\n/**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {Array<Array<number>>} endss Endss.\n * @param {number} stride Stride.\n * @param {Array<number>} flatCenters Flat centers.\n * @return {Array<number>} Interior points as XYM coordinates, where M is the\n * length of the horizontal intersection that the point belongs to.\n */\nexport function getInteriorPointsOfMultiArray(flatCoordinates, offset, endss, stride, flatCenters) {\n var interiorPoints = [];\n for (var i = 0, ii = endss.length; i < ii; ++i) {\n var ends = endss[i];\n interiorPoints = getInteriorPointOfArray(flatCoordinates, offset, ends, stride, flatCenters, 2 * i, interiorPoints);\n offset = ends[ends.length - 1];\n }\n return interiorPoints;\n}\n//# sourceMappingURL=interiorpoint.js.map","/**\n * @module ol/geom/flat/reverse\n */\n/**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {number} end End.\n * @param {number} stride Stride.\n */\nexport function coordinates(flatCoordinates, offset, end, stride) {\n while (offset < end - stride) {\n for (var i = 0; i < stride; ++i) {\n var tmp = flatCoordinates[offset + i];\n flatCoordinates[offset + i] = flatCoordinates[end - stride + i];\n flatCoordinates[end - stride + i] = tmp;\n }\n offset += stride;\n end -= stride;\n }\n}\n//# sourceMappingURL=reverse.js.map","/**\n * @module ol/geom/flat/orient\n */\nimport { coordinates as reverseCoordinates } from './reverse.js';\n/**\n * Is the linear ring oriented clockwise in a coordinate system with a bottom-left\n * coordinate origin? For a coordinate system with a top-left coordinate origin,\n * the ring's orientation is clockwise when this function returns false.\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {number} end End.\n * @param {number} stride Stride.\n * @return {boolean} Is clockwise.\n */\nexport function linearRingIsClockwise(flatCoordinates, offset, end, stride) {\n // https://stackoverflow.com/q/1165647/clockwise-method#1165943\n // https://github.com/OSGeo/gdal/blob/master/gdal/ogr/ogrlinearring.cpp\n var edge = 0;\n var x1 = flatCoordinates[end - stride];\n var y1 = flatCoordinates[end - stride + 1];\n for (; offset < end; offset += stride) {\n var x2 = flatCoordinates[offset];\n var y2 = flatCoordinates[offset + 1];\n edge += (x2 - x1) * (y2 + y1);\n x1 = x2;\n y1 = y2;\n }\n return edge === 0 ? undefined : edge > 0;\n}\n/**\n * Determines if linear rings are oriented. By default, left-hand orientation\n * is tested (first ring must be clockwise, remaining rings counter-clockwise).\n * To test for right-hand orientation, use the `opt_right` argument.\n *\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {Array<number>} ends Array of end indexes.\n * @param {number} stride Stride.\n * @param {boolean} [opt_right] Test for right-hand orientation\n * (counter-clockwise exterior ring and clockwise interior rings).\n * @return {boolean} Rings are correctly oriented.\n */\nexport function linearRingsAreOriented(flatCoordinates, offset, ends, stride, opt_right) {\n var right = opt_right !== undefined ? opt_right : false;\n for (var i = 0, ii = ends.length; i < ii; ++i) {\n var end = ends[i];\n var isClockwise = linearRingIsClockwise(flatCoordinates, offset, end, stride);\n if (i === 0) {\n if ((right && isClockwise) || (!right && !isClockwise)) {\n return false;\n }\n }\n else {\n if ((right && !isClockwise) || (!right && isClockwise)) {\n return false;\n }\n }\n offset = end;\n }\n return true;\n}\n/**\n * Determines if linear rings are oriented. By default, left-hand orientation\n * is tested (first ring must be clockwise, remaining rings counter-clockwise).\n * To test for right-hand orientation, use the `opt_right` argument.\n *\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {Array<Array<number>>} endss Array of array of end indexes.\n * @param {number} stride Stride.\n * @param {boolean} [opt_right] Test for right-hand orientation\n * (counter-clockwise exterior ring and clockwise interior rings).\n * @return {boolean} Rings are correctly oriented.\n */\nexport function linearRingssAreOriented(flatCoordinates, offset, endss, stride, opt_right) {\n for (var i = 0, ii = endss.length; i < ii; ++i) {\n var ends = endss[i];\n if (!linearRingsAreOriented(flatCoordinates, offset, ends, stride, opt_right)) {\n return false;\n }\n if (ends.length) {\n offset = ends[ends.length - 1];\n }\n }\n return true;\n}\n/**\n * Orient coordinates in a flat array of linear rings. By default, rings\n * are oriented following the left-hand rule (clockwise for exterior and\n * counter-clockwise for interior rings). To orient according to the\n * right-hand rule, use the `opt_right` argument.\n *\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {Array<number>} ends Ends.\n * @param {number} stride Stride.\n * @param {boolean} [opt_right] Follow the right-hand rule for orientation.\n * @return {number} End.\n */\nexport function orientLinearRings(flatCoordinates, offset, ends, stride, opt_right) {\n var right = opt_right !== undefined ? opt_right : false;\n for (var i = 0, ii = ends.length; i < ii; ++i) {\n var end = ends[i];\n var isClockwise = linearRingIsClockwise(flatCoordinates, offset, end, stride);\n var reverse = i === 0\n ? (right && isClockwise) || (!right && !isClockwise)\n : (right && !isClockwise) || (!right && isClockwise);\n if (reverse) {\n reverseCoordinates(flatCoordinates, offset, end, stride);\n }\n offset = end;\n }\n return offset;\n}\n/**\n * Orient coordinates in a flat array of linear rings. By default, rings\n * are oriented following the left-hand rule (clockwise for exterior and\n * counter-clockwise for interior rings). To orient according to the\n * right-hand rule, use the `opt_right` argument.\n *\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {Array<Array<number>>} endss Array of array of end indexes.\n * @param {number} stride Stride.\n * @param {boolean} [opt_right] Follow the right-hand rule for orientation.\n * @return {number} End.\n */\nexport function orientLinearRingsArray(flatCoordinates, offset, endss, stride, opt_right) {\n for (var i = 0, ii = endss.length; i < ii; ++i) {\n offset = orientLinearRings(flatCoordinates, offset, endss[i], stride, opt_right);\n }\n return offset;\n}\n//# sourceMappingURL=orient.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/geom/Polygon\n */\nimport GeometryLayout from './GeometryLayout.js';\nimport GeometryType from './GeometryType.js';\nimport LinearRing from './LinearRing.js';\nimport Point from './Point.js';\nimport SimpleGeometry from './SimpleGeometry.js';\nimport { arrayMaxSquaredDelta, assignClosestArrayPoint } from './flat/closest.js';\nimport { closestSquaredDistanceXY, getCenter } from '../extent.js';\nimport { deflateCoordinatesArray } from './flat/deflate.js';\nimport { extend } from '../array.js';\nimport { getInteriorPointOfArray } from './flat/interiorpoint.js';\nimport { inflateCoordinatesArray } from './flat/inflate.js';\nimport { intersectsLinearRingArray } from './flat/intersectsextent.js';\nimport { linearRingsAreOriented, orientLinearRings } from './flat/orient.js';\nimport { linearRings as linearRingsArea } from './flat/area.js';\nimport { linearRingsContainsXY } from './flat/contains.js';\nimport { modulo } from '../math.js';\nimport { quantizeArray } from './flat/simplify.js';\nimport { offset as sphereOffset } from '../sphere.js';\n/**\n * @classdesc\n * Polygon geometry.\n *\n * @api\n */\nvar Polygon = /** @class */ (function (_super) {\n __extends(Polygon, _super);\n /**\n * @param {!Array<Array<import(\"../coordinate.js\").Coordinate>>|!Array<number>} coordinates\n * Array of linear rings that define the polygon. The first linear ring of the\n * array defines the outer-boundary or surface of the polygon. Each subsequent\n * linear ring defines a hole in the surface of the polygon. A linear ring is\n * an array of vertices' coordinates where the first coordinate and the last are\n * equivalent. (For internal use, flat coordinates in combination with\n * `opt_layout` and `opt_ends` are also accepted.)\n * @param {import(\"./GeometryLayout.js\").default} [opt_layout] Layout.\n * @param {Array<number>} [opt_ends] Ends (for internal use with flat coordinates).\n */\n function Polygon(coordinates, opt_layout, opt_ends) {\n var _this = _super.call(this) || this;\n /**\n * @type {Array<number>}\n * @private\n */\n _this.ends_ = [];\n /**\n * @private\n * @type {number}\n */\n _this.flatInteriorPointRevision_ = -1;\n /**\n * @private\n * @type {import(\"../coordinate.js\").Coordinate}\n */\n _this.flatInteriorPoint_ = null;\n /**\n * @private\n * @type {number}\n */\n _this.maxDelta_ = -1;\n /**\n * @private\n * @type {number}\n */\n _this.maxDeltaRevision_ = -1;\n /**\n * @private\n * @type {number}\n */\n _this.orientedRevision_ = -1;\n /**\n * @private\n * @type {Array<number>}\n */\n _this.orientedFlatCoordinates_ = null;\n if (opt_layout !== undefined && opt_ends) {\n _this.setFlatCoordinates(opt_layout, \n /** @type {Array<number>} */ (coordinates));\n _this.ends_ = opt_ends;\n }\n else {\n _this.setCoordinates(\n /** @type {Array<Array<import(\"../coordinate.js\").Coordinate>>} */ (coordinates), opt_layout);\n }\n return _this;\n }\n /**\n * Append the passed linear ring to this polygon.\n * @param {LinearRing} linearRing Linear ring.\n * @api\n */\n Polygon.prototype.appendLinearRing = function (linearRing) {\n if (!this.flatCoordinates) {\n this.flatCoordinates = linearRing.getFlatCoordinates().slice();\n }\n else {\n extend(this.flatCoordinates, linearRing.getFlatCoordinates());\n }\n this.ends_.push(this.flatCoordinates.length);\n this.changed();\n };\n /**\n * Make a complete copy of the geometry.\n * @return {!Polygon} Clone.\n * @api\n */\n Polygon.prototype.clone = function () {\n var polygon = new Polygon(this.flatCoordinates.slice(), this.layout, this.ends_.slice());\n polygon.applyProperties(this);\n return polygon;\n };\n /**\n * @param {number} x X.\n * @param {number} y Y.\n * @param {import(\"../coordinate.js\").Coordinate} closestPoint Closest point.\n * @param {number} minSquaredDistance Minimum squared distance.\n * @return {number} Minimum squared distance.\n */\n Polygon.prototype.closestPointXY = function (x, y, closestPoint, minSquaredDistance) {\n if (minSquaredDistance < closestSquaredDistanceXY(this.getExtent(), x, y)) {\n return minSquaredDistance;\n }\n if (this.maxDeltaRevision_ != this.getRevision()) {\n this.maxDelta_ = Math.sqrt(arrayMaxSquaredDelta(this.flatCoordinates, 0, this.ends_, this.stride, 0));\n this.maxDeltaRevision_ = this.getRevision();\n }\n return assignClosestArrayPoint(this.flatCoordinates, 0, this.ends_, this.stride, this.maxDelta_, true, x, y, closestPoint, minSquaredDistance);\n };\n /**\n * @param {number} x X.\n * @param {number} y Y.\n * @return {boolean} Contains (x, y).\n */\n Polygon.prototype.containsXY = function (x, y) {\n return linearRingsContainsXY(this.getOrientedFlatCoordinates(), 0, this.ends_, this.stride, x, y);\n };\n /**\n * Return the area of the polygon on projected plane.\n * @return {number} Area (on projected plane).\n * @api\n */\n Polygon.prototype.getArea = function () {\n return linearRingsArea(this.getOrientedFlatCoordinates(), 0, this.ends_, this.stride);\n };\n /**\n * Get the coordinate array for this geometry. This array has the structure\n * of a GeoJSON coordinate array for polygons.\n *\n * @param {boolean} [opt_right] Orient coordinates according to the right-hand\n * rule (counter-clockwise for exterior and clockwise for interior rings).\n * If `false`, coordinates will be oriented according to the left-hand rule\n * (clockwise for exterior and counter-clockwise for interior rings).\n * By default, coordinate orientation will depend on how the geometry was\n * constructed.\n * @return {Array<Array<import(\"../coordinate.js\").Coordinate>>} Coordinates.\n * @api\n */\n Polygon.prototype.getCoordinates = function (opt_right) {\n var flatCoordinates;\n if (opt_right !== undefined) {\n flatCoordinates = this.getOrientedFlatCoordinates().slice();\n orientLinearRings(flatCoordinates, 0, this.ends_, this.stride, opt_right);\n }\n else {\n flatCoordinates = this.flatCoordinates;\n }\n return inflateCoordinatesArray(flatCoordinates, 0, this.ends_, this.stride);\n };\n /**\n * @return {Array<number>} Ends.\n */\n Polygon.prototype.getEnds = function () {\n return this.ends_;\n };\n /**\n * @return {Array<number>} Interior point.\n */\n Polygon.prototype.getFlatInteriorPoint = function () {\n if (this.flatInteriorPointRevision_ != this.getRevision()) {\n var flatCenter = getCenter(this.getExtent());\n this.flatInteriorPoint_ = getInteriorPointOfArray(this.getOrientedFlatCoordinates(), 0, this.ends_, this.stride, flatCenter, 0);\n this.flatInteriorPointRevision_ = this.getRevision();\n }\n return this.flatInteriorPoint_;\n };\n /**\n * Return an interior point of the polygon.\n * @return {Point} Interior point as XYM coordinate, where M is the\n * length of the horizontal intersection that the point belongs to.\n * @api\n */\n Polygon.prototype.getInteriorPoint = function () {\n return new Point(this.getFlatInteriorPoint(), GeometryLayout.XYM);\n };\n /**\n * Return the number of rings of the polygon, this includes the exterior\n * ring and any interior rings.\n *\n * @return {number} Number of rings.\n * @api\n */\n Polygon.prototype.getLinearRingCount = function () {\n return this.ends_.length;\n };\n /**\n * Return the Nth linear ring of the polygon geometry. Return `null` if the\n * given index is out of range.\n * The exterior linear ring is available at index `0` and the interior rings\n * at index `1` and beyond.\n *\n * @param {number} index Index.\n * @return {LinearRing} Linear ring.\n * @api\n */\n Polygon.prototype.getLinearRing = function (index) {\n if (index < 0 || this.ends_.length <= index) {\n return null;\n }\n return new LinearRing(this.flatCoordinates.slice(index === 0 ? 0 : this.ends_[index - 1], this.ends_[index]), this.layout);\n };\n /**\n * Return the linear rings of the polygon.\n * @return {Array<LinearRing>} Linear rings.\n * @api\n */\n Polygon.prototype.getLinearRings = function () {\n var layout = this.layout;\n var flatCoordinates = this.flatCoordinates;\n var ends = this.ends_;\n var linearRings = [];\n var offset = 0;\n for (var i = 0, ii = ends.length; i < ii; ++i) {\n var end = ends[i];\n var linearRing = new LinearRing(flatCoordinates.slice(offset, end), layout);\n linearRings.push(linearRing);\n offset = end;\n }\n return linearRings;\n };\n /**\n * @return {Array<number>} Oriented flat coordinates.\n */\n Polygon.prototype.getOrientedFlatCoordinates = function () {\n if (this.orientedRevision_ != this.getRevision()) {\n var flatCoordinates = this.flatCoordinates;\n if (linearRingsAreOriented(flatCoordinates, 0, this.ends_, this.stride)) {\n this.orientedFlatCoordinates_ = flatCoordinates;\n }\n else {\n this.orientedFlatCoordinates_ = flatCoordinates.slice();\n this.orientedFlatCoordinates_.length = orientLinearRings(this.orientedFlatCoordinates_, 0, this.ends_, this.stride);\n }\n this.orientedRevision_ = this.getRevision();\n }\n return this.orientedFlatCoordinates_;\n };\n /**\n * @param {number} squaredTolerance Squared tolerance.\n * @return {Polygon} Simplified Polygon.\n * @protected\n */\n Polygon.prototype.getSimplifiedGeometryInternal = function (squaredTolerance) {\n var simplifiedFlatCoordinates = [];\n var simplifiedEnds = [];\n simplifiedFlatCoordinates.length = quantizeArray(this.flatCoordinates, 0, this.ends_, this.stride, Math.sqrt(squaredTolerance), simplifiedFlatCoordinates, 0, simplifiedEnds);\n return new Polygon(simplifiedFlatCoordinates, GeometryLayout.XY, simplifiedEnds);\n };\n /**\n * Get the type of this geometry.\n * @return {import(\"./GeometryType.js\").default} Geometry type.\n * @api\n */\n Polygon.prototype.getType = function () {\n return GeometryType.POLYGON;\n };\n /**\n * Test if the geometry and the passed extent intersect.\n * @param {import(\"../extent.js\").Extent} extent Extent.\n * @return {boolean} `true` if the geometry and the extent intersect.\n * @api\n */\n Polygon.prototype.intersectsExtent = function (extent) {\n return intersectsLinearRingArray(this.getOrientedFlatCoordinates(), 0, this.ends_, this.stride, extent);\n };\n /**\n * Set the coordinates of the polygon.\n * @param {!Array<Array<import(\"../coordinate.js\").Coordinate>>} coordinates Coordinates.\n * @param {import(\"./GeometryLayout.js\").default} [opt_layout] Layout.\n * @api\n */\n Polygon.prototype.setCoordinates = function (coordinates, opt_layout) {\n this.setLayout(opt_layout, coordinates, 2);\n if (!this.flatCoordinates) {\n this.flatCoordinates = [];\n }\n var ends = deflateCoordinatesArray(this.flatCoordinates, 0, coordinates, this.stride, this.ends_);\n this.flatCoordinates.length = ends.length === 0 ? 0 : ends[ends.length - 1];\n this.changed();\n };\n return Polygon;\n}(SimpleGeometry));\nexport default Polygon;\n/**\n * Create an approximation of a circle on the surface of a sphere.\n * @param {import(\"../coordinate.js\").Coordinate} center Center (`[lon, lat]` in degrees).\n * @param {number} radius The great-circle distance from the center to\n * the polygon vertices in meters.\n * @param {number} [opt_n] Optional number of vertices for the resulting\n * polygon. Default is `32`.\n * @param {number} [opt_sphereRadius] Optional radius for the sphere (defaults to\n * the Earth's mean radius using the WGS84 ellipsoid).\n * @return {Polygon} The \"circular\" polygon.\n * @api\n */\nexport function circular(center, radius, opt_n, opt_sphereRadius) {\n var n = opt_n ? opt_n : 32;\n /** @type {Array<number>} */\n var flatCoordinates = [];\n for (var i = 0; i < n; ++i) {\n extend(flatCoordinates, sphereOffset(center, radius, (2 * Math.PI * i) / n, opt_sphereRadius));\n }\n flatCoordinates.push(flatCoordinates[0], flatCoordinates[1]);\n return new Polygon(flatCoordinates, GeometryLayout.XY, [\n flatCoordinates.length,\n ]);\n}\n/**\n * Create a polygon from an extent. The layout used is `XY`.\n * @param {import(\"../extent.js\").Extent} extent The extent.\n * @return {Polygon} The polygon.\n * @api\n */\nexport function fromExtent(extent) {\n var minX = extent[0];\n var minY = extent[1];\n var maxX = extent[2];\n var maxY = extent[3];\n var flatCoordinates = [\n minX,\n minY,\n minX,\n maxY,\n maxX,\n maxY,\n maxX,\n minY,\n minX,\n minY,\n ];\n return new Polygon(flatCoordinates, GeometryLayout.XY, [\n flatCoordinates.length,\n ]);\n}\n/**\n * Create a regular polygon from a circle.\n * @param {import(\"./Circle.js\").default} circle Circle geometry.\n * @param {number} [opt_sides] Number of sides of the polygon. Default is 32.\n * @param {number} [opt_angle] Start angle for the first vertex of the polygon in\n * counter-clockwise radians. 0 means East. Default is 0.\n * @return {Polygon} Polygon geometry.\n * @api\n */\nexport function fromCircle(circle, opt_sides, opt_angle) {\n var sides = opt_sides ? opt_sides : 32;\n var stride = circle.getStride();\n var layout = circle.getLayout();\n var center = circle.getCenter();\n var arrayLength = stride * (sides + 1);\n var flatCoordinates = new Array(arrayLength);\n for (var i = 0; i < arrayLength; i += stride) {\n flatCoordinates[i] = 0;\n flatCoordinates[i + 1] = 0;\n for (var j = 2; j < stride; j++) {\n flatCoordinates[i + j] = center[j];\n }\n }\n var ends = [flatCoordinates.length];\n var polygon = new Polygon(flatCoordinates, layout, ends);\n makeRegular(polygon, center, circle.getRadius(), opt_angle);\n return polygon;\n}\n/**\n * Modify the coordinates of a polygon to make it a regular polygon.\n * @param {Polygon} polygon Polygon geometry.\n * @param {import(\"../coordinate.js\").Coordinate} center Center of the regular polygon.\n * @param {number} radius Radius of the regular polygon.\n * @param {number} [opt_angle] Start angle for the first vertex of the polygon in\n * counter-clockwise radians. 0 means East. Default is 0.\n */\nexport function makeRegular(polygon, center, radius, opt_angle) {\n var flatCoordinates = polygon.getFlatCoordinates();\n var stride = polygon.getStride();\n var sides = flatCoordinates.length / stride - 1;\n var startAngle = opt_angle ? opt_angle : 0;\n for (var i = 0; i <= sides; ++i) {\n var offset = i * stride;\n var angle = startAngle + (modulo(i, sides) * 2 * Math.PI) / sides;\n flatCoordinates[offset] = center[0] + radius * Math.cos(angle);\n flatCoordinates[offset + 1] = center[1] + radius * Math.sin(angle);\n }\n polygon.changed();\n}\n//# sourceMappingURL=Polygon.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/geom/MultiPolygon\n */\nimport GeometryLayout from './GeometryLayout.js';\nimport GeometryType from './GeometryType.js';\nimport MultiPoint from './MultiPoint.js';\nimport Polygon from './Polygon.js';\nimport SimpleGeometry from './SimpleGeometry.js';\nimport { assignClosestMultiArrayPoint, multiArrayMaxSquaredDelta, } from './flat/closest.js';\nimport { closestSquaredDistanceXY } from '../extent.js';\nimport { deflateMultiCoordinatesArray } from './flat/deflate.js';\nimport { extend } from '../array.js';\nimport { getInteriorPointsOfMultiArray } from './flat/interiorpoint.js';\nimport { inflateMultiCoordinatesArray } from './flat/inflate.js';\nimport { intersectsLinearRingMultiArray } from './flat/intersectsextent.js';\nimport { linearRingssAreOriented, orientLinearRingsArray, } from './flat/orient.js';\nimport { linearRingss as linearRingssArea } from './flat/area.js';\nimport { linearRingss as linearRingssCenter } from './flat/center.js';\nimport { linearRingssContainsXY } from './flat/contains.js';\nimport { quantizeMultiArray } from './flat/simplify.js';\n/**\n * @classdesc\n * Multi-polygon geometry.\n *\n * @api\n */\nvar MultiPolygon = /** @class */ (function (_super) {\n __extends(MultiPolygon, _super);\n /**\n * @param {Array<Array<Array<import(\"../coordinate.js\").Coordinate>>|Polygon>|Array<number>} coordinates Coordinates.\n * For internal use, flat coordinates in combination with `opt_layout` and `opt_endss` are also accepted.\n * @param {import(\"./GeometryLayout.js\").default} [opt_layout] Layout.\n * @param {Array<Array<number>>} [opt_endss] Array of ends for internal use with flat coordinates.\n */\n function MultiPolygon(coordinates, opt_layout, opt_endss) {\n var _this = _super.call(this) || this;\n /**\n * @type {Array<Array<number>>}\n * @private\n */\n _this.endss_ = [];\n /**\n * @private\n * @type {number}\n */\n _this.flatInteriorPointsRevision_ = -1;\n /**\n * @private\n * @type {Array<number>}\n */\n _this.flatInteriorPoints_ = null;\n /**\n * @private\n * @type {number}\n */\n _this.maxDelta_ = -1;\n /**\n * @private\n * @type {number}\n */\n _this.maxDeltaRevision_ = -1;\n /**\n * @private\n * @type {number}\n */\n _this.orientedRevision_ = -1;\n /**\n * @private\n * @type {Array<number>}\n */\n _this.orientedFlatCoordinates_ = null;\n if (!opt_endss && !Array.isArray(coordinates[0])) {\n var layout = _this.getLayout();\n var polygons = /** @type {Array<Polygon>} */ (coordinates);\n var flatCoordinates = [];\n var endss = [];\n for (var i = 0, ii = polygons.length; i < ii; ++i) {\n var polygon = polygons[i];\n if (i === 0) {\n layout = polygon.getLayout();\n }\n var offset = flatCoordinates.length;\n var ends = polygon.getEnds();\n for (var j = 0, jj = ends.length; j < jj; ++j) {\n ends[j] += offset;\n }\n extend(flatCoordinates, polygon.getFlatCoordinates());\n endss.push(ends);\n }\n opt_layout = layout;\n coordinates = flatCoordinates;\n opt_endss = endss;\n }\n if (opt_layout !== undefined && opt_endss) {\n _this.setFlatCoordinates(opt_layout, \n /** @type {Array<number>} */ (coordinates));\n _this.endss_ = opt_endss;\n }\n else {\n _this.setCoordinates(\n /** @type {Array<Array<Array<import(\"../coordinate.js\").Coordinate>>>} */ (coordinates), opt_layout);\n }\n return _this;\n }\n /**\n * Append the passed polygon to this multipolygon.\n * @param {Polygon} polygon Polygon.\n * @api\n */\n MultiPolygon.prototype.appendPolygon = function (polygon) {\n /** @type {Array<number>} */\n var ends;\n if (!this.flatCoordinates) {\n this.flatCoordinates = polygon.getFlatCoordinates().slice();\n ends = polygon.getEnds().slice();\n this.endss_.push();\n }\n else {\n var offset = this.flatCoordinates.length;\n extend(this.flatCoordinates, polygon.getFlatCoordinates());\n ends = polygon.getEnds().slice();\n for (var i = 0, ii = ends.length; i < ii; ++i) {\n ends[i] += offset;\n }\n }\n this.endss_.push(ends);\n this.changed();\n };\n /**\n * Make a complete copy of the geometry.\n * @return {!MultiPolygon} Clone.\n * @api\n */\n MultiPolygon.prototype.clone = function () {\n var len = this.endss_.length;\n var newEndss = new Array(len);\n for (var i = 0; i < len; ++i) {\n newEndss[i] = this.endss_[i].slice();\n }\n var multiPolygon = new MultiPolygon(this.flatCoordinates.slice(), this.layout, newEndss);\n multiPolygon.applyProperties(this);\n return multiPolygon;\n };\n /**\n * @param {number} x X.\n * @param {number} y Y.\n * @param {import(\"../coordinate.js\").Coordinate} closestPoint Closest point.\n * @param {number} minSquaredDistance Minimum squared distance.\n * @return {number} Minimum squared distance.\n */\n MultiPolygon.prototype.closestPointXY = function (x, y, closestPoint, minSquaredDistance) {\n if (minSquaredDistance < closestSquaredDistanceXY(this.getExtent(), x, y)) {\n return minSquaredDistance;\n }\n if (this.maxDeltaRevision_ != this.getRevision()) {\n this.maxDelta_ = Math.sqrt(multiArrayMaxSquaredDelta(this.flatCoordinates, 0, this.endss_, this.stride, 0));\n this.maxDeltaRevision_ = this.getRevision();\n }\n return assignClosestMultiArrayPoint(this.getOrientedFlatCoordinates(), 0, this.endss_, this.stride, this.maxDelta_, true, x, y, closestPoint, minSquaredDistance);\n };\n /**\n * @param {number} x X.\n * @param {number} y Y.\n * @return {boolean} Contains (x, y).\n */\n MultiPolygon.prototype.containsXY = function (x, y) {\n return linearRingssContainsXY(this.getOrientedFlatCoordinates(), 0, this.endss_, this.stride, x, y);\n };\n /**\n * Return the area of the multipolygon on projected plane.\n * @return {number} Area (on projected plane).\n * @api\n */\n MultiPolygon.prototype.getArea = function () {\n return linearRingssArea(this.getOrientedFlatCoordinates(), 0, this.endss_, this.stride);\n };\n /**\n * Get the coordinate array for this geometry. This array has the structure\n * of a GeoJSON coordinate array for multi-polygons.\n *\n * @param {boolean} [opt_right] Orient coordinates according to the right-hand\n * rule (counter-clockwise for exterior and clockwise for interior rings).\n * If `false`, coordinates will be oriented according to the left-hand rule\n * (clockwise for exterior and counter-clockwise for interior rings).\n * By default, coordinate orientation will depend on how the geometry was\n * constructed.\n * @return {Array<Array<Array<import(\"../coordinate.js\").Coordinate>>>} Coordinates.\n * @api\n */\n MultiPolygon.prototype.getCoordinates = function (opt_right) {\n var flatCoordinates;\n if (opt_right !== undefined) {\n flatCoordinates = this.getOrientedFlatCoordinates().slice();\n orientLinearRingsArray(flatCoordinates, 0, this.endss_, this.stride, opt_right);\n }\n else {\n flatCoordinates = this.flatCoordinates;\n }\n return inflateMultiCoordinatesArray(flatCoordinates, 0, this.endss_, this.stride);\n };\n /**\n * @return {Array<Array<number>>} Endss.\n */\n MultiPolygon.prototype.getEndss = function () {\n return this.endss_;\n };\n /**\n * @return {Array<number>} Flat interior points.\n */\n MultiPolygon.prototype.getFlatInteriorPoints = function () {\n if (this.flatInteriorPointsRevision_ != this.getRevision()) {\n var flatCenters = linearRingssCenter(this.flatCoordinates, 0, this.endss_, this.stride);\n this.flatInteriorPoints_ = getInteriorPointsOfMultiArray(this.getOrientedFlatCoordinates(), 0, this.endss_, this.stride, flatCenters);\n this.flatInteriorPointsRevision_ = this.getRevision();\n }\n return this.flatInteriorPoints_;\n };\n /**\n * Return the interior points as {@link module:ol/geom/MultiPoint multipoint}.\n * @return {MultiPoint} Interior points as XYM coordinates, where M is\n * the length of the horizontal intersection that the point belongs to.\n * @api\n */\n MultiPolygon.prototype.getInteriorPoints = function () {\n return new MultiPoint(this.getFlatInteriorPoints().slice(), GeometryLayout.XYM);\n };\n /**\n * @return {Array<number>} Oriented flat coordinates.\n */\n MultiPolygon.prototype.getOrientedFlatCoordinates = function () {\n if (this.orientedRevision_ != this.getRevision()) {\n var flatCoordinates = this.flatCoordinates;\n if (linearRingssAreOriented(flatCoordinates, 0, this.endss_, this.stride)) {\n this.orientedFlatCoordinates_ = flatCoordinates;\n }\n else {\n this.orientedFlatCoordinates_ = flatCoordinates.slice();\n this.orientedFlatCoordinates_.length = orientLinearRingsArray(this.orientedFlatCoordinates_, 0, this.endss_, this.stride);\n }\n this.orientedRevision_ = this.getRevision();\n }\n return this.orientedFlatCoordinates_;\n };\n /**\n * @param {number} squaredTolerance Squared tolerance.\n * @return {MultiPolygon} Simplified MultiPolygon.\n * @protected\n */\n MultiPolygon.prototype.getSimplifiedGeometryInternal = function (squaredTolerance) {\n var simplifiedFlatCoordinates = [];\n var simplifiedEndss = [];\n simplifiedFlatCoordinates.length = quantizeMultiArray(this.flatCoordinates, 0, this.endss_, this.stride, Math.sqrt(squaredTolerance), simplifiedFlatCoordinates, 0, simplifiedEndss);\n return new MultiPolygon(simplifiedFlatCoordinates, GeometryLayout.XY, simplifiedEndss);\n };\n /**\n * Return the polygon at the specified index.\n * @param {number} index Index.\n * @return {Polygon} Polygon.\n * @api\n */\n MultiPolygon.prototype.getPolygon = function (index) {\n if (index < 0 || this.endss_.length <= index) {\n return null;\n }\n var offset;\n if (index === 0) {\n offset = 0;\n }\n else {\n var prevEnds = this.endss_[index - 1];\n offset = prevEnds[prevEnds.length - 1];\n }\n var ends = this.endss_[index].slice();\n var end = ends[ends.length - 1];\n if (offset !== 0) {\n for (var i = 0, ii = ends.length; i < ii; ++i) {\n ends[i] -= offset;\n }\n }\n return new Polygon(this.flatCoordinates.slice(offset, end), this.layout, ends);\n };\n /**\n * Return the polygons of this multipolygon.\n * @return {Array<Polygon>} Polygons.\n * @api\n */\n MultiPolygon.prototype.getPolygons = function () {\n var layout = this.layout;\n var flatCoordinates = this.flatCoordinates;\n var endss = this.endss_;\n var polygons = [];\n var offset = 0;\n for (var i = 0, ii = endss.length; i < ii; ++i) {\n var ends = endss[i].slice();\n var end = ends[ends.length - 1];\n if (offset !== 0) {\n for (var j = 0, jj = ends.length; j < jj; ++j) {\n ends[j] -= offset;\n }\n }\n var polygon = new Polygon(flatCoordinates.slice(offset, end), layout, ends);\n polygons.push(polygon);\n offset = end;\n }\n return polygons;\n };\n /**\n * Get the type of this geometry.\n * @return {import(\"./GeometryType.js\").default} Geometry type.\n * @api\n */\n MultiPolygon.prototype.getType = function () {\n return GeometryType.MULTI_POLYGON;\n };\n /**\n * Test if the geometry and the passed extent intersect.\n * @param {import(\"../extent.js\").Extent} extent Extent.\n * @return {boolean} `true` if the geometry and the extent intersect.\n * @api\n */\n MultiPolygon.prototype.intersectsExtent = function (extent) {\n return intersectsLinearRingMultiArray(this.getOrientedFlatCoordinates(), 0, this.endss_, this.stride, extent);\n };\n /**\n * Set the coordinates of the multipolygon.\n * @param {!Array<Array<Array<import(\"../coordinate.js\").Coordinate>>>} coordinates Coordinates.\n * @param {import(\"./GeometryLayout.js\").default} [opt_layout] Layout.\n * @api\n */\n MultiPolygon.prototype.setCoordinates = function (coordinates, opt_layout) {\n this.setLayout(opt_layout, coordinates, 3);\n if (!this.flatCoordinates) {\n this.flatCoordinates = [];\n }\n var endss = deflateMultiCoordinatesArray(this.flatCoordinates, 0, coordinates, this.stride, this.endss_);\n if (endss.length === 0) {\n this.flatCoordinates.length = 0;\n }\n else {\n var lastEnds = endss[endss.length - 1];\n this.flatCoordinates.length =\n lastEnds.length === 0 ? 0 : lastEnds[lastEnds.length - 1];\n }\n this.changed();\n };\n return MultiPolygon;\n}(SimpleGeometry));\nexport default MultiPolygon;\n//# sourceMappingURL=MultiPolygon.js.map","/**\n * @module ol/geom/flat/center\n */\nimport { createEmpty, createOrUpdateFromFlatCoordinates } from '../../extent.js';\n/**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {Array<Array<number>>} endss Endss.\n * @param {number} stride Stride.\n * @return {Array<number>} Flat centers.\n */\nexport function linearRingss(flatCoordinates, offset, endss, stride) {\n var flatCenters = [];\n var extent = createEmpty();\n for (var i = 0, ii = endss.length; i < ii; ++i) {\n var ends = endss[i];\n extent = createOrUpdateFromFlatCoordinates(flatCoordinates, offset, ends[0], stride);\n flatCenters.push((extent[0] + extent[2]) / 2, (extent[1] + extent[3]) / 2);\n offset = ends[ends.length - 1];\n }\n return flatCenters;\n}\n//# sourceMappingURL=center.js.map","/**\n * @module ol/layer/TileProperty\n */\n/**\n * @enum {string}\n */\nexport default {\n PRELOAD: 'preload',\n USE_INTERIM_TILES_ON_ERROR: 'useInterimTilesOnError',\n};\n//# sourceMappingURL=TileProperty.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/layer/BaseTile\n */\nimport Layer from './Layer.js';\nimport TileProperty from './TileProperty.js';\nimport { assign } from '../obj.js';\n/***\n * @template Return\n * @typedef {import(\"../Observable\").OnSignature<import(\"../Observable\").EventTypes, import(\"../events/Event.js\").default, Return> &\n * import(\"../Observable\").OnSignature<import(\"./Base\").BaseLayerObjectEventTypes|\n * 'change:source'|'change:preload'|'change:useInterimTilesOnError', import(\"../Object\").ObjectEvent, Return> &\n * import(\"../Observable\").OnSignature<import(\"../render/EventType\").LayerRenderEventTypes, import(\"../render/Event\").default, Return> &\n * import(\"../Observable\").CombinedOnSignature<import(\"../Observable\").EventTypes|import(\"./Base\").BaseLayerObjectEventTypes|\n * 'change:source'|'change:preload'|'change:useInterimTilesOnError'|import(\"../render/EventType\").LayerRenderEventTypes, Return>} BaseTileLayerOnSignature\n */\n/**\n * @template {import(\"../source/Tile.js\").default} TileSourceType\n * @typedef {Object} Options\n * @property {string} [className='ol-layer'] A CSS class name to set to the layer element.\n * @property {number} [opacity=1] Opacity (0, 1).\n * @property {boolean} [visible=true] Visibility.\n * @property {import(\"../extent.js\").Extent} [extent] The bounding extent for layer rendering. The layer will not be\n * rendered outside of this extent.\n * @property {number} [zIndex] The z-index for layer rendering. At rendering time, the layers\n * will be ordered, first by Z-index and then by position. When `undefined`, a `zIndex` of 0 is assumed\n * for layers that are added to the map's `layers` collection, or `Infinity` when the layer's `setMap()`\n * method was used.\n * @property {number} [minResolution] The minimum resolution (inclusive) at which this layer will be\n * visible.\n * @property {number} [maxResolution] The maximum resolution (exclusive) below which this layer will\n * be visible.\n * @property {number} [minZoom] The minimum view zoom level (exclusive) above which this layer will be\n * visible.\n * @property {number} [maxZoom] The maximum view zoom level (inclusive) at which this layer will\n * be visible.\n * @property {number} [preload=0] Preload. Load low-resolution tiles up to `preload` levels. `0`\n * means no preloading.\n * @property {TileSourceType} [source] Source for this layer.\n * @property {import(\"../PluggableMap.js\").default} [map] Sets the layer as overlay on a map. The map will not manage\n * this layer in its layers collection, and the layer will be rendered on top. This is useful for\n * temporary layers. The standard way to add a layer to a map and have it managed by the map is to\n * use {@link import(\"../PluggableMap.js\").default#addLayer map.addLayer()}.\n * @property {boolean} [useInterimTilesOnError=true] Use interim tiles on error.\n * @property {Object<string, *>} [properties] Arbitrary observable properties. Can be accessed with `#get()` and `#set()`.\n */\n/**\n * @classdesc\n * For layer sources that provide pre-rendered, tiled images in grids that are\n * organized by zoom levels for specific resolutions.\n * Note that any property set in the options is set as a {@link module:ol/Object~BaseObject}\n * property on the layer object; for example, setting `title: 'My Title'` in the\n * options means that `title` is observable, and has get/set accessors.\n *\n * @template {import(\"../source/Tile.js\").default} TileSourceType\n * @extends {Layer<TileSourceType>}\n * @api\n */\nvar BaseTileLayer = /** @class */ (function (_super) {\n __extends(BaseTileLayer, _super);\n /**\n * @param {Options<TileSourceType>} [opt_options] Tile layer options.\n */\n function BaseTileLayer(opt_options) {\n var _this = this;\n var options = opt_options ? opt_options : {};\n var baseOptions = assign({}, options);\n delete baseOptions.preload;\n delete baseOptions.useInterimTilesOnError;\n _this = _super.call(this, baseOptions) || this;\n /***\n * @type {BaseTileLayerOnSignature<import(\"../events\").EventsKey>}\n */\n _this.on;\n /***\n * @type {BaseTileLayerOnSignature<import(\"../events\").EventsKey>}\n */\n _this.once;\n /***\n * @type {BaseTileLayerOnSignature<void>}\n */\n _this.un;\n _this.setPreload(options.preload !== undefined ? options.preload : 0);\n _this.setUseInterimTilesOnError(options.useInterimTilesOnError !== undefined\n ? options.useInterimTilesOnError\n : true);\n return _this;\n }\n /**\n * Return the level as number to which we will preload tiles up to.\n * @return {number} The level to preload tiles up to.\n * @observable\n * @api\n */\n BaseTileLayer.prototype.getPreload = function () {\n return /** @type {number} */ (this.get(TileProperty.PRELOAD));\n };\n /**\n * Set the level as number to which we will preload tiles up to.\n * @param {number} preload The level to preload tiles up to.\n * @observable\n * @api\n */\n BaseTileLayer.prototype.setPreload = function (preload) {\n this.set(TileProperty.PRELOAD, preload);\n };\n /**\n * Whether we use interim tiles on error.\n * @return {boolean} Use interim tiles on error.\n * @observable\n * @api\n */\n BaseTileLayer.prototype.getUseInterimTilesOnError = function () {\n return /** @type {boolean} */ (this.get(TileProperty.USE_INTERIM_TILES_ON_ERROR));\n };\n /**\n * Set whether we use interim tiles on error.\n * @param {boolean} useInterimTilesOnError Use interim tiles on error.\n * @observable\n * @api\n */\n BaseTileLayer.prototype.setUseInterimTilesOnError = function (useInterimTilesOnError) {\n this.set(TileProperty.USE_INTERIM_TILES_ON_ERROR, useInterimTilesOnError);\n };\n return BaseTileLayer;\n}(Layer));\nexport default BaseTileLayer;\n//# sourceMappingURL=BaseTile.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/renderer/Layer\n */\nimport EventType from '../events/EventType.js';\nimport ImageState from '../ImageState.js';\nimport Observable from '../Observable.js';\nimport SourceState from '../source/State.js';\nimport { abstract } from '../util.js';\n/**\n * @template {import(\"../layer/Layer.js\").default} LayerType\n */\nvar LayerRenderer = /** @class */ (function (_super) {\n __extends(LayerRenderer, _super);\n /**\n * @param {LayerType} layer Layer.\n */\n function LayerRenderer(layer) {\n var _this = _super.call(this) || this;\n /** @private */\n _this.boundHandleImageChange_ = _this.handleImageChange_.bind(_this);\n /**\n * @protected\n * @type {LayerType}\n */\n _this.layer_ = layer;\n /**\n * @type {import(\"../render/canvas/ExecutorGroup\").default}\n */\n _this.declutterExecutorGroup = null;\n return _this;\n }\n /**\n * Asynchronous layer level hit detection.\n * @param {import(\"../pixel.js\").Pixel} pixel Pixel.\n * @return {Promise<Array<import(\"../Feature\").default>>} Promise that resolves with\n * an array of features.\n */\n LayerRenderer.prototype.getFeatures = function (pixel) {\n return abstract();\n };\n /**\n * Determine whether render should be called.\n * @abstract\n * @param {import(\"../PluggableMap.js\").FrameState} frameState Frame state.\n * @return {boolean} Layer is ready to be rendered.\n */\n LayerRenderer.prototype.prepareFrame = function (frameState) {\n return abstract();\n };\n /**\n * Render the layer.\n * @abstract\n * @param {import(\"../PluggableMap.js\").FrameState} frameState Frame state.\n * @param {HTMLElement} target Target that may be used to render content to.\n * @return {HTMLElement} The rendered element.\n */\n LayerRenderer.prototype.renderFrame = function (frameState, target) {\n return abstract();\n };\n /**\n * @param {Object<number, Object<string, import(\"../Tile.js\").default>>} tiles Lookup of loaded tiles by zoom level.\n * @param {number} zoom Zoom level.\n * @param {import(\"../Tile.js\").default} tile Tile.\n * @return {boolean|void} If `false`, the tile will not be considered loaded.\n */\n LayerRenderer.prototype.loadedTileCallback = function (tiles, zoom, tile) {\n if (!tiles[zoom]) {\n tiles[zoom] = {};\n }\n tiles[zoom][tile.tileCoord.toString()] = tile;\n return undefined;\n };\n /**\n * Create a function that adds loaded tiles to the tile lookup.\n * @param {import(\"../source/Tile.js\").default} source Tile source.\n * @param {import(\"../proj/Projection.js\").default} projection Projection of the tiles.\n * @param {Object<number, Object<string, import(\"../Tile.js\").default>>} tiles Lookup of loaded tiles by zoom level.\n * @return {function(number, import(\"../TileRange.js\").default):boolean} A function that can be\n * called with a zoom level and a tile range to add loaded tiles to the lookup.\n * @protected\n */\n LayerRenderer.prototype.createLoadedTileFinder = function (source, projection, tiles) {\n return (\n /**\n * @param {number} zoom Zoom level.\n * @param {import(\"../TileRange.js\").default} tileRange Tile range.\n * @return {boolean} The tile range is fully loaded.\n * @this {LayerRenderer}\n */\n function (zoom, tileRange) {\n var callback = this.loadedTileCallback.bind(this, tiles, zoom);\n return source.forEachLoadedTile(projection, zoom, tileRange, callback);\n }.bind(this));\n };\n /**\n * @abstract\n * @param {import(\"../coordinate.js\").Coordinate} coordinate Coordinate.\n * @param {import(\"../PluggableMap.js\").FrameState} frameState Frame state.\n * @param {number} hitTolerance Hit tolerance in pixels.\n * @param {import(\"./vector.js\").FeatureCallback<T>} callback Feature callback.\n * @param {Array<import(\"./Map.js\").HitMatch<T>>} matches The hit detected matches with tolerance.\n * @return {T|undefined} Callback result.\n * @template T\n */\n LayerRenderer.prototype.forEachFeatureAtCoordinate = function (coordinate, frameState, hitTolerance, callback, matches) {\n return undefined;\n };\n /**\n * @abstract\n * @param {import(\"../pixel.js\").Pixel} pixel Pixel.\n * @param {import(\"../PluggableMap.js\").FrameState} frameState FrameState.\n * @param {number} hitTolerance Hit tolerance in pixels.\n * @return {Uint8ClampedArray|Uint8Array} The result. If there is no data at the pixel\n * location, null will be returned. If there is data, but pixel values cannot be\n * returned, and empty array will be returned.\n */\n LayerRenderer.prototype.getDataAtPixel = function (pixel, frameState, hitTolerance) {\n return null;\n };\n /**\n * @return {LayerType} Layer.\n */\n LayerRenderer.prototype.getLayer = function () {\n return this.layer_;\n };\n /**\n * Perform action necessary to get the layer rendered after new fonts have loaded\n * @abstract\n */\n LayerRenderer.prototype.handleFontsChanged = function () { };\n /**\n * Handle changes in image state.\n * @param {import(\"../events/Event.js\").default} event Image change event.\n * @private\n */\n LayerRenderer.prototype.handleImageChange_ = function (event) {\n var image = /** @type {import(\"../Image.js\").default} */ (event.target);\n if (image.getState() === ImageState.LOADED) {\n this.renderIfReadyAndVisible();\n }\n };\n /**\n * Load the image if not already loaded, and register the image change\n * listener if needed.\n * @param {import(\"../ImageBase.js\").default} image Image.\n * @return {boolean} `true` if the image is already loaded, `false` otherwise.\n * @protected\n */\n LayerRenderer.prototype.loadImage = function (image) {\n var imageState = image.getState();\n if (imageState != ImageState.LOADED && imageState != ImageState.ERROR) {\n image.addEventListener(EventType.CHANGE, this.boundHandleImageChange_);\n }\n if (imageState == ImageState.IDLE) {\n image.load();\n imageState = image.getState();\n }\n return imageState == ImageState.LOADED;\n };\n /**\n * @protected\n */\n LayerRenderer.prototype.renderIfReadyAndVisible = function () {\n var layer = this.getLayer();\n if (layer.getVisible() && layer.getSourceState() == SourceState.READY) {\n layer.changed();\n }\n };\n return LayerRenderer;\n}(Observable));\nexport default LayerRenderer;\n//# sourceMappingURL=Layer.js.map","/**\n * @module ol/ImageState\n */\n/**\n * @enum {number}\n */\nexport default {\n IDLE: 0,\n LOADING: 1,\n LOADED: 2,\n ERROR: 3,\n EMPTY: 4,\n};\n//# sourceMappingURL=ImageState.js.map","/**\n * @module ol/render/Event\n */\nvar __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\nimport Event from '../events/Event.js';\nvar RenderEvent = /** @class */ (function (_super) {\n __extends(RenderEvent, _super);\n /**\n * @param {import(\"./EventType.js\").default} type Type.\n * @param {import(\"../transform.js\").Transform} [opt_inversePixelTransform] Transform for\n * CSS pixels to rendered pixels.\n * @param {import(\"../PluggableMap.js\").FrameState} [opt_frameState] Frame state.\n * @param {?CanvasRenderingContext2D} [opt_context] Context.\n */\n function RenderEvent(type, opt_inversePixelTransform, opt_frameState, opt_context) {\n var _this = _super.call(this, type) || this;\n /**\n * Transform from CSS pixels (relative to the top-left corner of the map viewport)\n * to rendered pixels on this event's `context`. Only available when a Canvas renderer is used, null otherwise.\n * @type {import(\"../transform.js\").Transform|undefined}\n * @api\n */\n _this.inversePixelTransform = opt_inversePixelTransform;\n /**\n * An object representing the current render frame state.\n * @type {import(\"../PluggableMap.js\").FrameState|undefined}\n * @api\n */\n _this.frameState = opt_frameState;\n /**\n * Canvas context. Not available when the event is dispatched by the map. Only available\n * when a Canvas renderer is used, null otherwise.\n * @type {CanvasRenderingContext2D|null|undefined}\n * @api\n */\n _this.context = opt_context;\n return _this;\n }\n return RenderEvent;\n}(Event));\nexport default RenderEvent;\n//# sourceMappingURL=Event.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/renderer/canvas/Layer\n */\nimport LayerRenderer from '../Layer.js';\nimport RenderEvent from '../../render/Event.js';\nimport RenderEventType from '../../render/EventType.js';\nimport { apply as applyTransform, compose as composeTransform, create as createTransform, } from '../../transform.js';\nimport { containsCoordinate, getBottomLeft, getBottomRight, getTopLeft, getTopRight, } from '../../extent.js';\nimport { createCanvasContext2D } from '../../dom.js';\nimport { cssOpacity } from '../../css.js';\n/**\n * @abstract\n * @template {import(\"../../layer/Layer.js\").default} LayerType\n * @extends {LayerRenderer<LayerType>}\n */\nvar CanvasLayerRenderer = /** @class */ (function (_super) {\n __extends(CanvasLayerRenderer, _super);\n /**\n * @param {LayerType} layer Layer.\n */\n function CanvasLayerRenderer(layer) {\n var _this = _super.call(this, layer) || this;\n /**\n * @protected\n * @type {HTMLElement}\n */\n _this.container = null;\n /**\n * @protected\n * @type {number}\n */\n _this.renderedResolution;\n /**\n * A temporary transform. The values in this transform should only be used in a\n * function that sets the values.\n * @protected\n * @type {import(\"../../transform.js\").Transform}\n */\n _this.tempTransform = createTransform();\n /**\n * The transform for rendered pixels to viewport CSS pixels. This transform must\n * be set when rendering a frame and may be used by other functions after rendering.\n * @protected\n * @type {import(\"../../transform.js\").Transform}\n */\n _this.pixelTransform = createTransform();\n /**\n * The transform for viewport CSS pixels to rendered pixels. This transform must\n * be set when rendering a frame and may be used by other functions after rendering.\n * @protected\n * @type {import(\"../../transform.js\").Transform}\n */\n _this.inversePixelTransform = createTransform();\n /**\n * @type {CanvasRenderingContext2D}\n */\n _this.context = null;\n /**\n * @type {boolean}\n */\n _this.containerReused = false;\n return _this;\n }\n /**\n * Get a rendering container from an existing target, if compatible.\n * @param {HTMLElement} target Potential render target.\n * @param {string} transform CSS Transform.\n * @param {number} opacity Opacity.\n */\n CanvasLayerRenderer.prototype.useContainer = function (target, transform, opacity) {\n var layerClassName = this.getLayer().getClassName();\n var container, context;\n if (target &&\n target.style.opacity === cssOpacity(opacity) &&\n target.className === layerClassName) {\n var canvas = target.firstElementChild;\n if (canvas instanceof HTMLCanvasElement) {\n context = canvas.getContext('2d');\n }\n }\n if (context && context.canvas.style.transform === transform) {\n // Container of the previous layer renderer can be used.\n this.container = target;\n this.context = context;\n this.containerReused = true;\n }\n else if (this.containerReused) {\n // Previously reused container cannot be used any more.\n this.container = null;\n this.context = null;\n this.containerReused = false;\n }\n if (!this.container) {\n container = document.createElement('div');\n container.className = layerClassName;\n var style = container.style;\n style.position = 'absolute';\n style.width = '100%';\n style.height = '100%';\n context = createCanvasContext2D();\n var canvas = context.canvas;\n container.appendChild(canvas);\n style = canvas.style;\n style.position = 'absolute';\n style.left = '0';\n style.transformOrigin = 'top left';\n this.container = container;\n this.context = context;\n }\n };\n /**\n * @param {CanvasRenderingContext2D} context Context.\n * @param {import(\"../../PluggableMap.js\").FrameState} frameState Frame state.\n * @param {import(\"../../extent.js\").Extent} extent Clip extent.\n * @protected\n */\n CanvasLayerRenderer.prototype.clipUnrotated = function (context, frameState, extent) {\n var topLeft = getTopLeft(extent);\n var topRight = getTopRight(extent);\n var bottomRight = getBottomRight(extent);\n var bottomLeft = getBottomLeft(extent);\n applyTransform(frameState.coordinateToPixelTransform, topLeft);\n applyTransform(frameState.coordinateToPixelTransform, topRight);\n applyTransform(frameState.coordinateToPixelTransform, bottomRight);\n applyTransform(frameState.coordinateToPixelTransform, bottomLeft);\n var inverted = this.inversePixelTransform;\n applyTransform(inverted, topLeft);\n applyTransform(inverted, topRight);\n applyTransform(inverted, bottomRight);\n applyTransform(inverted, bottomLeft);\n context.save();\n context.beginPath();\n context.moveTo(Math.round(topLeft[0]), Math.round(topLeft[1]));\n context.lineTo(Math.round(topRight[0]), Math.round(topRight[1]));\n context.lineTo(Math.round(bottomRight[0]), Math.round(bottomRight[1]));\n context.lineTo(Math.round(bottomLeft[0]), Math.round(bottomLeft[1]));\n context.clip();\n };\n /**\n * @param {import(\"../../render/EventType.js\").default} type Event type.\n * @param {CanvasRenderingContext2D} context Context.\n * @param {import(\"../../PluggableMap.js\").FrameState} frameState Frame state.\n * @private\n */\n CanvasLayerRenderer.prototype.dispatchRenderEvent_ = function (type, context, frameState) {\n var layer = this.getLayer();\n if (layer.hasListener(type)) {\n var event_1 = new RenderEvent(type, this.inversePixelTransform, frameState, context);\n layer.dispatchEvent(event_1);\n }\n };\n /**\n * @param {CanvasRenderingContext2D} context Context.\n * @param {import(\"../../PluggableMap.js\").FrameState} frameState Frame state.\n * @protected\n */\n CanvasLayerRenderer.prototype.preRender = function (context, frameState) {\n this.dispatchRenderEvent_(RenderEventType.PRERENDER, context, frameState);\n };\n /**\n * @param {CanvasRenderingContext2D} context Context.\n * @param {import(\"../../PluggableMap.js\").FrameState} frameState Frame state.\n * @protected\n */\n CanvasLayerRenderer.prototype.postRender = function (context, frameState) {\n this.dispatchRenderEvent_(RenderEventType.POSTRENDER, context, frameState);\n };\n /**\n * Creates a transform for rendering to an element that will be rotated after rendering.\n * @param {import(\"../../coordinate.js\").Coordinate} center Center.\n * @param {number} resolution Resolution.\n * @param {number} rotation Rotation.\n * @param {number} pixelRatio Pixel ratio.\n * @param {number} width Width of the rendered element (in pixels).\n * @param {number} height Height of the rendered element (in pixels).\n * @param {number} offsetX Offset on the x-axis in view coordinates.\n * @protected\n * @return {!import(\"../../transform.js\").Transform} Transform.\n */\n CanvasLayerRenderer.prototype.getRenderTransform = function (center, resolution, rotation, pixelRatio, width, height, offsetX) {\n var dx1 = width / 2;\n var dy1 = height / 2;\n var sx = pixelRatio / resolution;\n var sy = -sx;\n var dx2 = -center[0] + offsetX;\n var dy2 = -center[1];\n return composeTransform(this.tempTransform, dx1, dy1, sx, sy, -rotation, dx2, dy2);\n };\n /**\n * @param {import(\"../../pixel.js\").Pixel} pixel Pixel.\n * @param {import(\"../../PluggableMap.js\").FrameState} frameState FrameState.\n * @param {number} hitTolerance Hit tolerance in pixels.\n * @return {Uint8ClampedArray|Uint8Array} The result. If there is no data at the pixel\n * location, null will be returned. If there is data, but pixel values cannot be\n * returned, and empty array will be returned.\n */\n CanvasLayerRenderer.prototype.getDataAtPixel = function (pixel, frameState, hitTolerance) {\n var renderPixel = applyTransform(this.inversePixelTransform, pixel.slice());\n var context = this.context;\n var layer = this.getLayer();\n var layerExtent = layer.getExtent();\n if (layerExtent) {\n var renderCoordinate = applyTransform(frameState.pixelToCoordinateTransform, pixel.slice());\n /** get only data inside of the layer extent */\n if (!containsCoordinate(layerExtent, renderCoordinate)) {\n return null;\n }\n }\n var data;\n try {\n var x = Math.round(renderPixel[0]);\n var y = Math.round(renderPixel[1]);\n var newCanvas = document.createElement('canvas');\n var newContext = newCanvas.getContext('2d');\n newCanvas.width = 1;\n newCanvas.height = 1;\n newContext.clearRect(0, 0, 1, 1);\n newContext.drawImage(context.canvas, x, y, 1, 1, 0, 0, 1, 1);\n data = newContext.getImageData(0, 0, 1, 1).data;\n }\n catch (err) {\n if (err.name === 'SecurityError') {\n // tainted canvas, we assume there is data at the given pixel (although there might not be)\n return new Uint8Array();\n }\n return data;\n }\n if (data[3] === 0) {\n return null;\n }\n return data;\n };\n return CanvasLayerRenderer;\n}(LayerRenderer));\nexport default CanvasLayerRenderer;\n//# sourceMappingURL=Layer.js.map","/**\n * @module ol/TileRange\n */\n/**\n * A representation of a contiguous block of tiles. A tile range is specified\n * by its min/max tile coordinates and is inclusive of coordinates.\n */\nvar TileRange = /** @class */ (function () {\n /**\n * @param {number} minX Minimum X.\n * @param {number} maxX Maximum X.\n * @param {number} minY Minimum Y.\n * @param {number} maxY Maximum Y.\n */\n function TileRange(minX, maxX, minY, maxY) {\n /**\n * @type {number}\n */\n this.minX = minX;\n /**\n * @type {number}\n */\n this.maxX = maxX;\n /**\n * @type {number}\n */\n this.minY = minY;\n /**\n * @type {number}\n */\n this.maxY = maxY;\n }\n /**\n * @param {import(\"./tilecoord.js\").TileCoord} tileCoord Tile coordinate.\n * @return {boolean} Contains tile coordinate.\n */\n TileRange.prototype.contains = function (tileCoord) {\n return this.containsXY(tileCoord[1], tileCoord[2]);\n };\n /**\n * @param {TileRange} tileRange Tile range.\n * @return {boolean} Contains.\n */\n TileRange.prototype.containsTileRange = function (tileRange) {\n return (this.minX <= tileRange.minX &&\n tileRange.maxX <= this.maxX &&\n this.minY <= tileRange.minY &&\n tileRange.maxY <= this.maxY);\n };\n /**\n * @param {number} x Tile coordinate x.\n * @param {number} y Tile coordinate y.\n * @return {boolean} Contains coordinate.\n */\n TileRange.prototype.containsXY = function (x, y) {\n return this.minX <= x && x <= this.maxX && this.minY <= y && y <= this.maxY;\n };\n /**\n * @param {TileRange} tileRange Tile range.\n * @return {boolean} Equals.\n */\n TileRange.prototype.equals = function (tileRange) {\n return (this.minX == tileRange.minX &&\n this.minY == tileRange.minY &&\n this.maxX == tileRange.maxX &&\n this.maxY == tileRange.maxY);\n };\n /**\n * @param {TileRange} tileRange Tile range.\n */\n TileRange.prototype.extend = function (tileRange) {\n if (tileRange.minX < this.minX) {\n this.minX = tileRange.minX;\n }\n if (tileRange.maxX > this.maxX) {\n this.maxX = tileRange.maxX;\n }\n if (tileRange.minY < this.minY) {\n this.minY = tileRange.minY;\n }\n if (tileRange.maxY > this.maxY) {\n this.maxY = tileRange.maxY;\n }\n };\n /**\n * @return {number} Height.\n */\n TileRange.prototype.getHeight = function () {\n return this.maxY - this.minY + 1;\n };\n /**\n * @return {import(\"./size.js\").Size} Size.\n */\n TileRange.prototype.getSize = function () {\n return [this.getWidth(), this.getHeight()];\n };\n /**\n * @return {number} Width.\n */\n TileRange.prototype.getWidth = function () {\n return this.maxX - this.minX + 1;\n };\n /**\n * @param {TileRange} tileRange Tile range.\n * @return {boolean} Intersects.\n */\n TileRange.prototype.intersects = function (tileRange) {\n return (this.minX <= tileRange.maxX &&\n this.maxX >= tileRange.minX &&\n this.minY <= tileRange.maxY &&\n this.maxY >= tileRange.minY);\n };\n return TileRange;\n}());\n/**\n * @param {number} minX Minimum X.\n * @param {number} maxX Maximum X.\n * @param {number} minY Minimum Y.\n * @param {number} maxY Maximum Y.\n * @param {TileRange} [tileRange] TileRange.\n * @return {TileRange} Tile range.\n */\nexport function createOrUpdate(minX, maxX, minY, maxY, tileRange) {\n if (tileRange !== undefined) {\n tileRange.minX = minX;\n tileRange.maxX = maxX;\n tileRange.minY = minY;\n tileRange.maxY = maxY;\n return tileRange;\n }\n else {\n return new TileRange(minX, maxX, minY, maxY);\n }\n}\nexport default TileRange;\n//# sourceMappingURL=TileRange.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/renderer/canvas/TileLayer\n */\nimport CanvasLayerRenderer from './Layer.js';\nimport TileRange from '../../TileRange.js';\nimport TileState from '../../TileState.js';\nimport { apply as applyTransform, compose as composeTransform, makeInverse, } from '../../transform.js';\nimport { assign } from '../../obj.js';\nimport { createEmpty, equals, getIntersection, getTopLeft, } from '../../extent.js';\nimport { cssOpacity } from '../../css.js';\nimport { fromUserExtent } from '../../proj.js';\nimport { getUid } from '../../util.js';\nimport { numberSafeCompareFunction } from '../../array.js';\nimport { toString as toTransformString } from '../../transform.js';\n/**\n * @classdesc\n * Canvas renderer for tile layers.\n * @api\n */\nvar CanvasTileLayerRenderer = /** @class */ (function (_super) {\n __extends(CanvasTileLayerRenderer, _super);\n /**\n * @param {import(\"../../layer/Tile.js\").default|import(\"../../layer/VectorTile.js\").default} tileLayer Tile layer.\n */\n function CanvasTileLayerRenderer(tileLayer) {\n var _this = _super.call(this, tileLayer) || this;\n /**\n * Rendered extent has changed since the previous `renderFrame()` call\n * @type {boolean}\n */\n _this.extentChanged = true;\n /**\n * @private\n * @type {?import(\"../../extent.js\").Extent}\n */\n _this.renderedExtent_ = null;\n /**\n * @protected\n * @type {number}\n */\n _this.renderedPixelRatio;\n /**\n * @protected\n * @type {import(\"../../proj/Projection.js\").default}\n */\n _this.renderedProjection = null;\n /**\n * @protected\n * @type {number}\n */\n _this.renderedRevision;\n /**\n * @protected\n * @type {!Array<import(\"../../Tile.js\").default>}\n */\n _this.renderedTiles = [];\n /**\n * @private\n * @type {boolean}\n */\n _this.newTiles_ = false;\n /**\n * @protected\n * @type {import(\"../../extent.js\").Extent}\n */\n _this.tmpExtent = createEmpty();\n /**\n * @private\n * @type {import(\"../../TileRange.js\").default}\n */\n _this.tmpTileRange_ = new TileRange(0, 0, 0, 0);\n return _this;\n }\n /**\n * @protected\n * @param {import(\"../../Tile.js\").default} tile Tile.\n * @return {boolean} Tile is drawable.\n */\n CanvasTileLayerRenderer.prototype.isDrawableTile = function (tile) {\n var tileLayer = this.getLayer();\n var tileState = tile.getState();\n var useInterimTilesOnError = tileLayer.getUseInterimTilesOnError();\n return (tileState == TileState.LOADED ||\n tileState == TileState.EMPTY ||\n (tileState == TileState.ERROR && !useInterimTilesOnError));\n };\n /**\n * @param {number} z Tile coordinate z.\n * @param {number} x Tile coordinate x.\n * @param {number} y Tile coordinate y.\n * @param {import(\"../../PluggableMap.js\").FrameState} frameState Frame state.\n * @return {!import(\"../../Tile.js\").default} Tile.\n */\n CanvasTileLayerRenderer.prototype.getTile = function (z, x, y, frameState) {\n var pixelRatio = frameState.pixelRatio;\n var projection = frameState.viewState.projection;\n var tileLayer = this.getLayer();\n var tileSource = tileLayer.getSource();\n var tile = tileSource.getTile(z, x, y, pixelRatio, projection);\n if (tile.getState() == TileState.ERROR) {\n if (!tileLayer.getUseInterimTilesOnError()) {\n // When useInterimTilesOnError is false, we consider the error tile as loaded.\n tile.setState(TileState.LOADED);\n }\n else if (tileLayer.getPreload() > 0) {\n // Preloaded tiles for lower resolutions might have finished loading.\n this.newTiles_ = true;\n }\n }\n if (!this.isDrawableTile(tile)) {\n tile = tile.getInterimTile();\n }\n return tile;\n };\n /**\n * @param {Object<number, Object<string, import(\"../../Tile.js\").default>>} tiles Lookup of loaded tiles by zoom level.\n * @param {number} zoom Zoom level.\n * @param {import(\"../../Tile.js\").default} tile Tile.\n * @return {boolean|void} If `false`, the tile will not be considered loaded.\n */\n CanvasTileLayerRenderer.prototype.loadedTileCallback = function (tiles, zoom, tile) {\n if (this.isDrawableTile(tile)) {\n return _super.prototype.loadedTileCallback.call(this, tiles, zoom, tile);\n }\n return false;\n };\n /**\n * Determine whether render should be called.\n * @param {import(\"../../PluggableMap.js\").FrameState} frameState Frame state.\n * @return {boolean} Layer is ready to be rendered.\n */\n CanvasTileLayerRenderer.prototype.prepareFrame = function (frameState) {\n return !!this.getLayer().getSource();\n };\n /**\n * Render the layer.\n * @param {import(\"../../PluggableMap.js\").FrameState} frameState Frame state.\n * @param {HTMLElement} target Target that may be used to render content to.\n * @return {HTMLElement} The rendered element.\n */\n CanvasTileLayerRenderer.prototype.renderFrame = function (frameState, target) {\n var layerState = frameState.layerStatesArray[frameState.layerIndex];\n var viewState = frameState.viewState;\n var projection = viewState.projection;\n var viewResolution = viewState.resolution;\n var viewCenter = viewState.center;\n var rotation = viewState.rotation;\n var pixelRatio = frameState.pixelRatio;\n var tileLayer = this.getLayer();\n var tileSource = tileLayer.getSource();\n var sourceRevision = tileSource.getRevision();\n var tileGrid = tileSource.getTileGridForProjection(projection);\n var z = tileGrid.getZForResolution(viewResolution, tileSource.zDirection);\n var tileResolution = tileGrid.getResolution(z);\n var extent = frameState.extent;\n var layerExtent = layerState.extent && fromUserExtent(layerState.extent, projection);\n if (layerExtent) {\n extent = getIntersection(extent, fromUserExtent(layerState.extent, projection));\n }\n var tilePixelRatio = tileSource.getTilePixelRatio(pixelRatio);\n // desired dimensions of the canvas in pixels\n var width = Math.round(frameState.size[0] * tilePixelRatio);\n var height = Math.round(frameState.size[1] * tilePixelRatio);\n if (rotation) {\n var size = Math.round(Math.sqrt(width * width + height * height));\n width = size;\n height = size;\n }\n var dx = (tileResolution * width) / 2 / tilePixelRatio;\n var dy = (tileResolution * height) / 2 / tilePixelRatio;\n var canvasExtent = [\n viewCenter[0] - dx,\n viewCenter[1] - dy,\n viewCenter[0] + dx,\n viewCenter[1] + dy,\n ];\n var tileRange = tileGrid.getTileRangeForExtentAndZ(extent, z);\n /**\n * @type {Object<number, Object<string, import(\"../../Tile.js\").default>>}\n */\n var tilesToDrawByZ = {};\n tilesToDrawByZ[z] = {};\n var findLoadedTiles = this.createLoadedTileFinder(tileSource, projection, tilesToDrawByZ);\n var tmpExtent = this.tmpExtent;\n var tmpTileRange = this.tmpTileRange_;\n this.newTiles_ = false;\n for (var x = tileRange.minX; x <= tileRange.maxX; ++x) {\n for (var y = tileRange.minY; y <= tileRange.maxY; ++y) {\n var tile = this.getTile(z, x, y, frameState);\n if (this.isDrawableTile(tile)) {\n var uid = getUid(this);\n if (tile.getState() == TileState.LOADED) {\n tilesToDrawByZ[z][tile.tileCoord.toString()] = tile;\n var inTransition = tile.inTransition(uid);\n if (!this.newTiles_ &&\n (inTransition || this.renderedTiles.indexOf(tile) === -1)) {\n this.newTiles_ = true;\n }\n }\n if (tile.getAlpha(uid, frameState.time) === 1) {\n // don't look for alt tiles if alpha is 1\n continue;\n }\n }\n var childTileRange = tileGrid.getTileCoordChildTileRange(tile.tileCoord, tmpTileRange, tmpExtent);\n var covered = false;\n if (childTileRange) {\n covered = findLoadedTiles(z + 1, childTileRange);\n }\n if (!covered) {\n tileGrid.forEachTileCoordParentTileRange(tile.tileCoord, findLoadedTiles, tmpTileRange, tmpExtent);\n }\n }\n }\n var canvasScale = tileResolution / viewResolution;\n // set forward and inverse pixel transforms\n composeTransform(this.pixelTransform, frameState.size[0] / 2, frameState.size[1] / 2, 1 / tilePixelRatio, 1 / tilePixelRatio, rotation, -width / 2, -height / 2);\n var canvasTransform = toTransformString(this.pixelTransform);\n this.useContainer(target, canvasTransform, layerState.opacity);\n var context = this.context;\n var canvas = context.canvas;\n makeInverse(this.inversePixelTransform, this.pixelTransform);\n // set scale transform for calculating tile positions on the canvas\n composeTransform(this.tempTransform, width / 2, height / 2, canvasScale, canvasScale, 0, -width / 2, -height / 2);\n if (canvas.width != width || canvas.height != height) {\n canvas.width = width;\n canvas.height = height;\n }\n else if (!this.containerReused) {\n context.clearRect(0, 0, width, height);\n }\n if (layerExtent) {\n this.clipUnrotated(context, frameState, layerExtent);\n }\n assign(context, tileSource.getContextOptions());\n this.preRender(context, frameState);\n this.renderedTiles.length = 0;\n /** @type {Array<number>} */\n var zs = Object.keys(tilesToDrawByZ).map(Number);\n zs.sort(numberSafeCompareFunction);\n var clips, clipZs, currentClip;\n if (layerState.opacity === 1 &&\n (!this.containerReused ||\n tileSource.getOpaque(frameState.viewState.projection))) {\n zs = zs.reverse();\n }\n else {\n clips = [];\n clipZs = [];\n }\n for (var i = zs.length - 1; i >= 0; --i) {\n var currentZ = zs[i];\n var currentTilePixelSize = tileSource.getTilePixelSize(currentZ, pixelRatio, projection);\n var currentResolution = tileGrid.getResolution(currentZ);\n var currentScale = currentResolution / tileResolution;\n var dx_1 = currentTilePixelSize[0] * currentScale * canvasScale;\n var dy_1 = currentTilePixelSize[1] * currentScale * canvasScale;\n var originTileCoord = tileGrid.getTileCoordForCoordAndZ(getTopLeft(canvasExtent), currentZ);\n var originTileExtent = tileGrid.getTileCoordExtent(originTileCoord);\n var origin_1 = applyTransform(this.tempTransform, [\n (tilePixelRatio * (originTileExtent[0] - canvasExtent[0])) /\n tileResolution,\n (tilePixelRatio * (canvasExtent[3] - originTileExtent[3])) /\n tileResolution,\n ]);\n var tileGutter = tilePixelRatio * tileSource.getGutterForProjection(projection);\n var tilesToDraw = tilesToDrawByZ[currentZ];\n for (var tileCoordKey in tilesToDraw) {\n var tile = /** @type {import(\"../../ImageTile.js\").default} */ (tilesToDraw[tileCoordKey]);\n var tileCoord = tile.tileCoord;\n // Calculate integer positions and sizes so that tiles align\n var xIndex = originTileCoord[1] - tileCoord[1];\n var nextX = Math.round(origin_1[0] - (xIndex - 1) * dx_1);\n var yIndex = originTileCoord[2] - tileCoord[2];\n var nextY = Math.round(origin_1[1] - (yIndex - 1) * dy_1);\n var x = Math.round(origin_1[0] - xIndex * dx_1);\n var y = Math.round(origin_1[1] - yIndex * dy_1);\n var w = nextX - x;\n var h = nextY - y;\n var transition = z === currentZ;\n var inTransition = transition && tile.getAlpha(getUid(this), frameState.time) !== 1;\n if (!inTransition) {\n if (clips) {\n // Clip mask for regions in this tile that already filled by a higher z tile\n context.save();\n currentClip = [x, y, x + w, y, x + w, y + h, x, y + h];\n for (var i_1 = 0, ii = clips.length; i_1 < ii; ++i_1) {\n if (z !== currentZ && currentZ < clipZs[i_1]) {\n var clip = clips[i_1];\n context.beginPath();\n // counter-clockwise (outer ring) for current tile\n context.moveTo(currentClip[0], currentClip[1]);\n context.lineTo(currentClip[2], currentClip[3]);\n context.lineTo(currentClip[4], currentClip[5]);\n context.lineTo(currentClip[6], currentClip[7]);\n // clockwise (inner ring) for higher z tile\n context.moveTo(clip[6], clip[7]);\n context.lineTo(clip[4], clip[5]);\n context.lineTo(clip[2], clip[3]);\n context.lineTo(clip[0], clip[1]);\n context.clip();\n }\n }\n clips.push(currentClip);\n clipZs.push(currentZ);\n }\n else {\n context.clearRect(x, y, w, h);\n }\n }\n this.drawTileImage(tile, frameState, x, y, w, h, tileGutter, transition);\n if (clips && !inTransition) {\n context.restore();\n this.renderedTiles.unshift(tile);\n }\n else {\n this.renderedTiles.push(tile);\n }\n this.updateUsedTiles(frameState.usedTiles, tileSource, tile);\n }\n }\n this.renderedRevision = sourceRevision;\n this.renderedResolution = tileResolution;\n this.extentChanged =\n !this.renderedExtent_ || !equals(this.renderedExtent_, canvasExtent);\n this.renderedExtent_ = canvasExtent;\n this.renderedPixelRatio = pixelRatio;\n this.renderedProjection = projection;\n this.manageTilePyramid(frameState, tileSource, tileGrid, pixelRatio, projection, extent, z, tileLayer.getPreload());\n this.scheduleExpireCache(frameState, tileSource);\n this.postRender(context, frameState);\n if (layerState.extent) {\n context.restore();\n }\n if (canvasTransform !== canvas.style.transform) {\n canvas.style.transform = canvasTransform;\n }\n var opacity = cssOpacity(layerState.opacity);\n var container = this.container;\n if (opacity !== container.style.opacity) {\n container.style.opacity = opacity;\n }\n return this.container;\n };\n /**\n * @param {import(\"../../ImageTile.js\").default} tile Tile.\n * @param {import(\"../../PluggableMap.js\").FrameState} frameState Frame state.\n * @param {number} x Left of the tile.\n * @param {number} y Top of the tile.\n * @param {number} w Width of the tile.\n * @param {number} h Height of the tile.\n * @param {number} gutter Tile gutter.\n * @param {boolean} transition Apply an alpha transition.\n */\n CanvasTileLayerRenderer.prototype.drawTileImage = function (tile, frameState, x, y, w, h, gutter, transition) {\n var image = this.getTileImage(tile);\n if (!image) {\n return;\n }\n var uid = getUid(this);\n var alpha = transition ? tile.getAlpha(uid, frameState.time) : 1;\n var alphaChanged = alpha !== this.context.globalAlpha;\n if (alphaChanged) {\n this.context.save();\n this.context.globalAlpha = alpha;\n }\n this.context.drawImage(image, gutter, gutter, image.width - 2 * gutter, image.height - 2 * gutter, x, y, w, h);\n if (alphaChanged) {\n this.context.restore();\n }\n if (alpha !== 1) {\n frameState.animate = true;\n }\n else if (transition) {\n tile.endTransition(uid);\n }\n };\n /**\n * @return {HTMLCanvasElement} Image\n */\n CanvasTileLayerRenderer.prototype.getImage = function () {\n var context = this.context;\n return context ? context.canvas : null;\n };\n /**\n * Get the image from a tile.\n * @param {import(\"../../ImageTile.js\").default} tile Tile.\n * @return {HTMLCanvasElement|HTMLImageElement|HTMLVideoElement} Image.\n * @protected\n */\n CanvasTileLayerRenderer.prototype.getTileImage = function (tile) {\n return tile.getImage();\n };\n /**\n * @param {import(\"../../PluggableMap.js\").FrameState} frameState Frame state.\n * @param {import(\"../../source/Tile.js\").default} tileSource Tile source.\n * @protected\n */\n CanvasTileLayerRenderer.prototype.scheduleExpireCache = function (frameState, tileSource) {\n if (tileSource.canExpireCache()) {\n /**\n * @param {import(\"../../source/Tile.js\").default} tileSource Tile source.\n * @param {import(\"../../PluggableMap.js\").default} map Map.\n * @param {import(\"../../PluggableMap.js\").FrameState} frameState Frame state.\n */\n var postRenderFunction = function (tileSource, map, frameState) {\n var tileSourceKey = getUid(tileSource);\n if (tileSourceKey in frameState.usedTiles) {\n tileSource.expireCache(frameState.viewState.projection, frameState.usedTiles[tileSourceKey]);\n }\n }.bind(null, tileSource);\n frameState.postRenderFunctions.push(\n /** @type {import(\"../../PluggableMap.js\").PostRenderFunction} */ (postRenderFunction));\n }\n };\n /**\n * @param {!Object<string, !Object<string, boolean>>} usedTiles Used tiles.\n * @param {import(\"../../source/Tile.js\").default} tileSource Tile source.\n * @param {import('../../Tile.js').default} tile Tile.\n * @protected\n */\n CanvasTileLayerRenderer.prototype.updateUsedTiles = function (usedTiles, tileSource, tile) {\n // FIXME should we use tilesToDrawByZ instead?\n var tileSourceKey = getUid(tileSource);\n if (!(tileSourceKey in usedTiles)) {\n usedTiles[tileSourceKey] = {};\n }\n usedTiles[tileSourceKey][tile.getKey()] = true;\n };\n /**\n * Manage tile pyramid.\n * This function performs a number of functions related to the tiles at the\n * current zoom and lower zoom levels:\n * - registers idle tiles in frameState.wantedTiles so that they are not\n * discarded by the tile queue\n * - enqueues missing tiles\n * @param {import(\"../../PluggableMap.js\").FrameState} frameState Frame state.\n * @param {import(\"../../source/Tile.js\").default} tileSource Tile source.\n * @param {import(\"../../tilegrid/TileGrid.js\").default} tileGrid Tile grid.\n * @param {number} pixelRatio Pixel ratio.\n * @param {import(\"../../proj/Projection.js\").default} projection Projection.\n * @param {import(\"../../extent.js\").Extent} extent Extent.\n * @param {number} currentZ Current Z.\n * @param {number} preload Load low resolution tiles up to 'preload' levels.\n * @param {function(import(\"../../Tile.js\").default):void} [opt_tileCallback] Tile callback.\n * @protected\n */\n CanvasTileLayerRenderer.prototype.manageTilePyramid = function (frameState, tileSource, tileGrid, pixelRatio, projection, extent, currentZ, preload, opt_tileCallback) {\n var tileSourceKey = getUid(tileSource);\n if (!(tileSourceKey in frameState.wantedTiles)) {\n frameState.wantedTiles[tileSourceKey] = {};\n }\n var wantedTiles = frameState.wantedTiles[tileSourceKey];\n var tileQueue = frameState.tileQueue;\n var minZoom = tileGrid.getMinZoom();\n var tileCount = 0;\n var tile, tileRange, tileResolution, x, y, z;\n for (z = minZoom; z <= currentZ; ++z) {\n tileRange = tileGrid.getTileRangeForExtentAndZ(extent, z, tileRange);\n tileResolution = tileGrid.getResolution(z);\n for (x = tileRange.minX; x <= tileRange.maxX; ++x) {\n for (y = tileRange.minY; y <= tileRange.maxY; ++y) {\n if (currentZ - z <= preload) {\n ++tileCount;\n tile = tileSource.getTile(z, x, y, pixelRatio, projection);\n if (tile.getState() == TileState.IDLE) {\n wantedTiles[tile.getKey()] = true;\n if (!tileQueue.isKeyQueued(tile.getKey())) {\n tileQueue.enqueue([\n tile,\n tileSourceKey,\n tileGrid.getTileCoordCenter(tile.tileCoord),\n tileResolution,\n ]);\n }\n }\n if (opt_tileCallback !== undefined) {\n opt_tileCallback(tile);\n }\n }\n else {\n tileSource.useTile(z, x, y, projection);\n }\n }\n }\n }\n tileSource.updateCacheSize(tileCount, projection);\n };\n return CanvasTileLayerRenderer;\n}(CanvasLayerRenderer));\n/**\n * @function\n * @return {import(\"../../layer/Tile.js\").default|import(\"../../layer/VectorTile.js\").default}\n */\nCanvasTileLayerRenderer.prototype.getLayer;\nexport default CanvasTileLayerRenderer;\n//# sourceMappingURL=TileLayer.js.map","/**\n * @module ol/TileState\n */\n/**\n * @enum {number}\n */\nexport default {\n IDLE: 0,\n LOADING: 1,\n LOADED: 2,\n /**\n * Indicates that tile loading failed\n * @type {number}\n */\n ERROR: 3,\n EMPTY: 4,\n};\n//# sourceMappingURL=TileState.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/layer/Tile\n */\nimport BaseTileLayer from './BaseTile.js';\nimport CanvasTileLayerRenderer from '../renderer/canvas/TileLayer.js';\n/**\n * @classdesc\n * For layer sources that provide pre-rendered, tiled images in grids that are\n * organized by zoom levels for specific resolutions.\n * Note that any property set in the options is set as a {@link module:ol/Object~BaseObject}\n * property on the layer object; for example, setting `title: 'My Title'` in the\n * options means that `title` is observable, and has get/set accessors.\n *\n * @template {import(\"../source/Tile.js\").default} TileSourceType\n * @extends {BaseTileLayer<TileSourceType>}\n * @api\n */\nvar TileLayer = /** @class */ (function (_super) {\n __extends(TileLayer, _super);\n /**\n * @param {import(\"./BaseTile.js\").Options<TileSourceType>} [opt_options] Tile layer options.\n */\n function TileLayer(opt_options) {\n return _super.call(this, opt_options) || this;\n }\n /**\n * Create a renderer for this layer.\n * @return {import(\"../renderer/Layer.js\").default} A layer renderer.\n * @protected\n */\n TileLayer.prototype.createRenderer = function () {\n return new CanvasTileLayerRenderer(this);\n };\n return TileLayer;\n}(BaseTileLayer));\nexport default TileLayer;\n//# sourceMappingURL=Tile.js.map","/**\n * @module ol/size\n */\n/**\n * An array of numbers representing a size: `[width, height]`.\n * @typedef {Array<number>} Size\n * @api\n */\n/**\n * Returns a buffered size.\n * @param {Size} size Size.\n * @param {number} num The amount by which to buffer.\n * @param {Size} [opt_size] Optional reusable size array.\n * @return {Size} The buffered size.\n */\nexport function buffer(size, num, opt_size) {\n if (opt_size === undefined) {\n opt_size = [0, 0];\n }\n opt_size[0] = size[0] + 2 * num;\n opt_size[1] = size[1] + 2 * num;\n return opt_size;\n}\n/**\n * Determines if a size has a positive area.\n * @param {Size} size The size to test.\n * @return {boolean} The size has a positive area.\n */\nexport function hasArea(size) {\n return size[0] > 0 && size[1] > 0;\n}\n/**\n * Returns a size scaled by a ratio. The result will be an array of integers.\n * @param {Size} size Size.\n * @param {number} ratio Ratio.\n * @param {Size} [opt_size] Optional reusable size array.\n * @return {Size} The scaled size.\n */\nexport function scale(size, ratio, opt_size) {\n if (opt_size === undefined) {\n opt_size = [0, 0];\n }\n opt_size[0] = (size[0] * ratio + 0.5) | 0;\n opt_size[1] = (size[1] * ratio + 0.5) | 0;\n return opt_size;\n}\n/**\n * Returns an `Size` array for the passed in number (meaning: square) or\n * `Size` array.\n * (meaning: non-square),\n * @param {number|Size} size Width and height.\n * @param {Size} [opt_size] Optional reusable size array.\n * @return {Size} Size.\n * @api\n */\nexport function toSize(size, opt_size) {\n if (Array.isArray(size)) {\n return size;\n }\n else {\n if (opt_size === undefined) {\n opt_size = [size, size];\n }\n else {\n opt_size[0] = size;\n opt_size[1] = size;\n }\n return opt_size;\n }\n}\n//# sourceMappingURL=size.js.map","/**\n * @module ol/style/Image\n */\nimport { abstract } from '../util.js';\nimport { toSize } from '../size.js';\n/**\n * @typedef {Object} Options\n * @property {number} opacity Opacity.\n * @property {boolean} rotateWithView If the image should get rotated with the view.\n * @property {number} rotation Rotation.\n * @property {number|import(\"../size.js\").Size} scale Scale.\n * @property {Array<number>} displacement Displacement.\n */\n/**\n * @classdesc\n * A base class used for creating subclasses and not instantiated in\n * apps. Base class for {@link module:ol/style/Icon~Icon}, {@link module:ol/style/Circle~CircleStyle} and\n * {@link module:ol/style/RegularShape~RegularShape}.\n * @abstract\n * @api\n */\nvar ImageStyle = /** @class */ (function () {\n /**\n * @param {Options} options Options.\n */\n function ImageStyle(options) {\n /**\n * @private\n * @type {number}\n */\n this.opacity_ = options.opacity;\n /**\n * @private\n * @type {boolean}\n */\n this.rotateWithView_ = options.rotateWithView;\n /**\n * @private\n * @type {number}\n */\n this.rotation_ = options.rotation;\n /**\n * @private\n * @type {number|import(\"../size.js\").Size}\n */\n this.scale_ = options.scale;\n /**\n * @private\n * @type {import(\"../size.js\").Size}\n */\n this.scaleArray_ = toSize(options.scale);\n /**\n * @private\n * @type {Array<number>}\n */\n this.displacement_ = options.displacement;\n }\n /**\n * Clones the style.\n * @return {ImageStyle} The cloned style.\n * @api\n */\n ImageStyle.prototype.clone = function () {\n var scale = this.getScale();\n return new ImageStyle({\n opacity: this.getOpacity(),\n scale: Array.isArray(scale) ? scale.slice() : scale,\n rotation: this.getRotation(),\n rotateWithView: this.getRotateWithView(),\n displacement: this.getDisplacement().slice(),\n });\n };\n /**\n * Get the symbolizer opacity.\n * @return {number} Opacity.\n * @api\n */\n ImageStyle.prototype.getOpacity = function () {\n return this.opacity_;\n };\n /**\n * Determine whether the symbolizer rotates with the map.\n * @return {boolean} Rotate with map.\n * @api\n */\n ImageStyle.prototype.getRotateWithView = function () {\n return this.rotateWithView_;\n };\n /**\n * Get the symoblizer rotation.\n * @return {number} Rotation.\n * @api\n */\n ImageStyle.prototype.getRotation = function () {\n return this.rotation_;\n };\n /**\n * Get the symbolizer scale.\n * @return {number|import(\"../size.js\").Size} Scale.\n * @api\n */\n ImageStyle.prototype.getScale = function () {\n return this.scale_;\n };\n /**\n * Get the symbolizer scale array.\n * @return {import(\"../size.js\").Size} Scale array.\n */\n ImageStyle.prototype.getScaleArray = function () {\n return this.scaleArray_;\n };\n /**\n * Get the displacement of the shape\n * @return {Array<number>} Shape's center displacement\n * @api\n */\n ImageStyle.prototype.getDisplacement = function () {\n return this.displacement_;\n };\n /**\n * Get the anchor point in pixels. The anchor determines the center point for the\n * symbolizer.\n * @abstract\n * @return {Array<number>} Anchor.\n */\n ImageStyle.prototype.getAnchor = function () {\n return abstract();\n };\n /**\n * Get the image element for the symbolizer.\n * @abstract\n * @param {number} pixelRatio Pixel ratio.\n * @return {HTMLCanvasElement|HTMLVideoElement|HTMLImageElement} Image element.\n */\n ImageStyle.prototype.getImage = function (pixelRatio) {\n return abstract();\n };\n /**\n * @abstract\n * @return {HTMLCanvasElement|HTMLVideoElement|HTMLImageElement} Image element.\n */\n ImageStyle.prototype.getHitDetectionImage = function () {\n return abstract();\n };\n /**\n * Get the image pixel ratio.\n * @param {number} pixelRatio Pixel ratio.\n * @return {number} Pixel ratio.\n */\n ImageStyle.prototype.getPixelRatio = function (pixelRatio) {\n return 1;\n };\n /**\n * @abstract\n * @return {import(\"../ImageState.js\").default} Image state.\n */\n ImageStyle.prototype.getImageState = function () {\n return abstract();\n };\n /**\n * @abstract\n * @return {import(\"../size.js\").Size} Image size.\n */\n ImageStyle.prototype.getImageSize = function () {\n return abstract();\n };\n /**\n * Get the origin of the symbolizer.\n * @abstract\n * @return {Array<number>} Origin.\n */\n ImageStyle.prototype.getOrigin = function () {\n return abstract();\n };\n /**\n * Get the size of the symbolizer (in pixels).\n * @abstract\n * @return {import(\"../size.js\").Size} Size.\n */\n ImageStyle.prototype.getSize = function () {\n return abstract();\n };\n /**\n * Set the opacity.\n *\n * @param {number} opacity Opacity.\n * @api\n */\n ImageStyle.prototype.setOpacity = function (opacity) {\n this.opacity_ = opacity;\n };\n /**\n * Set whether to rotate the style with the view.\n *\n * @param {boolean} rotateWithView Rotate with map.\n * @api\n */\n ImageStyle.prototype.setRotateWithView = function (rotateWithView) {\n this.rotateWithView_ = rotateWithView;\n };\n /**\n * Set the rotation.\n *\n * @param {number} rotation Rotation.\n * @api\n */\n ImageStyle.prototype.setRotation = function (rotation) {\n this.rotation_ = rotation;\n };\n /**\n * Set the scale.\n *\n * @param {number|import(\"../size.js\").Size} scale Scale.\n * @api\n */\n ImageStyle.prototype.setScale = function (scale) {\n this.scale_ = scale;\n this.scaleArray_ = toSize(scale);\n };\n /**\n * @abstract\n * @param {function(import(\"../events/Event.js\").default): void} listener Listener function.\n */\n ImageStyle.prototype.listenImageChange = function (listener) {\n abstract();\n };\n /**\n * Load not yet loaded URI.\n * @abstract\n */\n ImageStyle.prototype.load = function () {\n abstract();\n };\n /**\n * @abstract\n * @param {function(import(\"../events/Event.js\").default): void} listener Listener function.\n */\n ImageStyle.prototype.unlistenImageChange = function (listener) {\n abstract();\n };\n return ImageStyle;\n}());\nexport default ImageStyle;\n//# sourceMappingURL=Image.js.map","/**\n * @module ol/color\n */\nimport { assert } from './asserts.js';\nimport { clamp } from './math.js';\n/**\n * A color represented as a short array [red, green, blue, alpha].\n * red, green, and blue should be integers in the range 0..255 inclusive.\n * alpha should be a float in the range 0..1 inclusive. If no alpha value is\n * given then `1` will be used.\n * @typedef {Array<number>} Color\n * @api\n */\n/**\n * This RegExp matches # followed by 3, 4, 6, or 8 hex digits.\n * @const\n * @type {RegExp}\n * @private\n */\nvar HEX_COLOR_RE_ = /^#([a-f0-9]{3}|[a-f0-9]{4}(?:[a-f0-9]{2}){0,2})$/i;\n/**\n * Regular expression for matching potential named color style strings.\n * @const\n * @type {RegExp}\n * @private\n */\nvar NAMED_COLOR_RE_ = /^([a-z]*)$|^hsla?\\(.*\\)$/i;\n/**\n * Return the color as an rgba string.\n * @param {Color|string} color Color.\n * @return {string} Rgba string.\n * @api\n */\nexport function asString(color) {\n if (typeof color === 'string') {\n return color;\n }\n else {\n return toString(color);\n }\n}\n/**\n * Return named color as an rgba string.\n * @param {string} color Named color.\n * @return {string} Rgb string.\n */\nfunction fromNamed(color) {\n var el = document.createElement('div');\n el.style.color = color;\n if (el.style.color !== '') {\n document.body.appendChild(el);\n var rgb = getComputedStyle(el).color;\n document.body.removeChild(el);\n return rgb;\n }\n else {\n return '';\n }\n}\n/**\n * @param {string} s String.\n * @return {Color} Color.\n */\nexport var fromString = (function () {\n // We maintain a small cache of parsed strings. To provide cheap LRU-like\n // semantics, whenever the cache grows too large we simply delete an\n // arbitrary 25% of the entries.\n /**\n * @const\n * @type {number}\n */\n var MAX_CACHE_SIZE = 1024;\n /**\n * @type {Object<string, Color>}\n */\n var cache = {};\n /**\n * @type {number}\n */\n var cacheSize = 0;\n return (\n /**\n * @param {string} s String.\n * @return {Color} Color.\n */\n function (s) {\n var color;\n if (cache.hasOwnProperty(s)) {\n color = cache[s];\n }\n else {\n if (cacheSize >= MAX_CACHE_SIZE) {\n var i = 0;\n for (var key in cache) {\n if ((i++ & 3) === 0) {\n delete cache[key];\n --cacheSize;\n }\n }\n }\n color = fromStringInternal_(s);\n cache[s] = color;\n ++cacheSize;\n }\n return color;\n });\n})();\n/**\n * Return the color as an array. This function maintains a cache of calculated\n * arrays which means the result should not be modified.\n * @param {Color|string} color Color.\n * @return {Color} Color.\n * @api\n */\nexport function asArray(color) {\n if (Array.isArray(color)) {\n return color;\n }\n else {\n return fromString(color);\n }\n}\n/**\n * @param {string} s String.\n * @private\n * @return {Color} Color.\n */\nfunction fromStringInternal_(s) {\n var r, g, b, a, color;\n if (NAMED_COLOR_RE_.exec(s)) {\n s = fromNamed(s);\n }\n if (HEX_COLOR_RE_.exec(s)) {\n // hex\n var n = s.length - 1; // number of hex digits\n var d = // number of digits per channel\n void 0; // number of digits per channel\n if (n <= 4) {\n d = 1;\n }\n else {\n d = 2;\n }\n var hasAlpha = n === 4 || n === 8;\n r = parseInt(s.substr(1 + 0 * d, d), 16);\n g = parseInt(s.substr(1 + 1 * d, d), 16);\n b = parseInt(s.substr(1 + 2 * d, d), 16);\n if (hasAlpha) {\n a = parseInt(s.substr(1 + 3 * d, d), 16);\n }\n else {\n a = 255;\n }\n if (d == 1) {\n r = (r << 4) + r;\n g = (g << 4) + g;\n b = (b << 4) + b;\n if (hasAlpha) {\n a = (a << 4) + a;\n }\n }\n color = [r, g, b, a / 255];\n }\n else if (s.indexOf('rgba(') == 0) {\n // rgba()\n color = s.slice(5, -1).split(',').map(Number);\n normalize(color);\n }\n else if (s.indexOf('rgb(') == 0) {\n // rgb()\n color = s.slice(4, -1).split(',').map(Number);\n color.push(1);\n normalize(color);\n }\n else {\n assert(false, 14); // Invalid color\n }\n return color;\n}\n/**\n * TODO this function is only used in the test, we probably shouldn't export it\n * @param {Color} color Color.\n * @return {Color} Clamped color.\n */\nexport function normalize(color) {\n color[0] = clamp((color[0] + 0.5) | 0, 0, 255);\n color[1] = clamp((color[1] + 0.5) | 0, 0, 255);\n color[2] = clamp((color[2] + 0.5) | 0, 0, 255);\n color[3] = clamp(color[3], 0, 1);\n return color;\n}\n/**\n * @param {Color} color Color.\n * @return {string} String.\n */\nexport function toString(color) {\n var r = color[0];\n if (r != (r | 0)) {\n r = (r + 0.5) | 0;\n }\n var g = color[1];\n if (g != (g | 0)) {\n g = (g + 0.5) | 0;\n }\n var b = color[2];\n if (b != (b | 0)) {\n b = (b + 0.5) | 0;\n }\n var a = color[3] === undefined ? 1 : color[3];\n return 'rgba(' + r + ',' + g + ',' + b + ',' + a + ')';\n}\n/**\n * @param {string} s String.\n * @return {boolean} Whether the string is actually a valid color\n */\nexport function isStringColor(s) {\n if (NAMED_COLOR_RE_.test(s)) {\n s = fromNamed(s);\n }\n return (HEX_COLOR_RE_.test(s) || s.indexOf('rgba(') === 0 || s.indexOf('rgb(') === 0);\n}\n//# sourceMappingURL=color.js.map","/**\n * @module ol/colorlike\n */\nimport { toString } from './color.js';\n/**\n * A type accepted by CanvasRenderingContext2D.fillStyle\n * or CanvasRenderingContext2D.strokeStyle.\n * Represents a color, pattern, or gradient. The origin for patterns and\n * gradients as fill style is an increment of 512 css pixels from map coordinate\n * `[0, 0]`. For seamless repeat patterns, width and height of the pattern image\n * must be a factor of two (2, 4, 8, ..., 512).\n *\n * @typedef {string|CanvasPattern|CanvasGradient} ColorLike\n * @api\n */\n/**\n * @param {import(\"./color.js\").Color|ColorLike} color Color.\n * @return {ColorLike} The color as an {@link ol/colorlike~ColorLike}.\n * @api\n */\nexport function asColorLike(color) {\n if (Array.isArray(color)) {\n return toString(color);\n }\n else {\n return color;\n }\n}\n//# sourceMappingURL=colorlike.js.map","/**\n * @module ol/render/canvas\n */\nimport BaseObject from '../Object.js';\nimport EventTarget from '../events/Target.js';\nimport { WORKER_OFFSCREEN_CANVAS } from '../has.js';\nimport { clear } from '../obj.js';\nimport { createCanvasContext2D } from '../dom.js';\nimport { getFontParameters } from '../css.js';\n/**\n * @typedef {Object} FillState\n * @property {import(\"../colorlike.js\").ColorLike} fillStyle FillStyle.\n */\n/**\n * @typedef Label\n * @property {number} width Width.\n * @property {number} height Height.\n * @property {Array<string|number>} contextInstructions ContextInstructions.\n */\n/**\n * @typedef {Object} FillStrokeState\n * @property {import(\"../colorlike.js\").ColorLike} [currentFillStyle] Current FillStyle.\n * @property {import(\"../colorlike.js\").ColorLike} [currentStrokeStyle] Current StrokeStyle.\n * @property {CanvasLineCap} [currentLineCap] Current LineCap.\n * @property {Array<number>} currentLineDash Current LineDash.\n * @property {number} [currentLineDashOffset] Current LineDashOffset.\n * @property {CanvasLineJoin} [currentLineJoin] Current LineJoin.\n * @property {number} [currentLineWidth] Current LineWidth.\n * @property {number} [currentMiterLimit] Current MiterLimit.\n * @property {number} [lastStroke] Last stroke.\n * @property {import(\"../colorlike.js\").ColorLike} [fillStyle] FillStyle.\n * @property {import(\"../colorlike.js\").ColorLike} [strokeStyle] StrokeStyle.\n * @property {CanvasLineCap} [lineCap] LineCap.\n * @property {Array<number>} lineDash LineDash.\n * @property {number} [lineDashOffset] LineDashOffset.\n * @property {CanvasLineJoin} [lineJoin] LineJoin.\n * @property {number} [lineWidth] LineWidth.\n * @property {number} [miterLimit] MiterLimit.\n */\n/**\n * @typedef {Object} StrokeState\n * @property {CanvasLineCap} lineCap LineCap.\n * @property {Array<number>} lineDash LineDash.\n * @property {number} lineDashOffset LineDashOffset.\n * @property {CanvasLineJoin} lineJoin LineJoin.\n * @property {number} lineWidth LineWidth.\n * @property {number} miterLimit MiterLimit.\n * @property {import(\"../colorlike.js\").ColorLike} strokeStyle StrokeStyle.\n */\n/**\n * @typedef {Object} TextState\n * @property {string} font Font.\n * @property {string} [textAlign] TextAlign.\n * @property {string} textBaseline TextBaseline.\n * @property {string} [placement] Placement.\n * @property {number} [maxAngle] MaxAngle.\n * @property {boolean} [overflow] Overflow.\n * @property {import(\"../style/Fill.js\").default} [backgroundFill] BackgroundFill.\n * @property {import(\"../style/Stroke.js\").default} [backgroundStroke] BackgroundStroke.\n * @property {import(\"../size.js\").Size} [scale] Scale.\n * @property {Array<number>} [padding] Padding.\n */\n/**\n * @typedef {Object} SerializableInstructions\n * @property {Array<*>} instructions The rendering instructions.\n * @property {Array<*>} hitDetectionInstructions The rendering hit detection instructions.\n * @property {Array<number>} coordinates The array of all coordinates.\n * @property {!Object<string, TextState>} [textStates] The text states (decluttering).\n * @property {!Object<string, FillState>} [fillStates] The fill states (decluttering).\n * @property {!Object<string, StrokeState>} [strokeStates] The stroke states (decluttering).\n */\n/**\n * @typedef {Object<number, import(\"./canvas/Executor.js\").ReplayImageOrLabelArgs>} DeclutterImageWithText\n */\n/**\n * @const\n * @type {string}\n */\nexport var defaultFont = '10px sans-serif';\n/**\n * @const\n * @type {import(\"../colorlike.js\").ColorLike}\n */\nexport var defaultFillStyle = '#000';\n/**\n * @const\n * @type {CanvasLineCap}\n */\nexport var defaultLineCap = 'round';\n/**\n * @const\n * @type {Array<number>}\n */\nexport var defaultLineDash = [];\n/**\n * @const\n * @type {number}\n */\nexport var defaultLineDashOffset = 0;\n/**\n * @const\n * @type {CanvasLineJoin}\n */\nexport var defaultLineJoin = 'round';\n/**\n * @const\n * @type {number}\n */\nexport var defaultMiterLimit = 10;\n/**\n * @const\n * @type {import(\"../colorlike.js\").ColorLike}\n */\nexport var defaultStrokeStyle = '#000';\n/**\n * @const\n * @type {string}\n */\nexport var defaultTextAlign = 'center';\n/**\n * @const\n * @type {string}\n */\nexport var defaultTextBaseline = 'middle';\n/**\n * @const\n * @type {Array<number>}\n */\nexport var defaultPadding = [0, 0, 0, 0];\n/**\n * @const\n * @type {number}\n */\nexport var defaultLineWidth = 1;\n/**\n * @type {BaseObject}\n */\nexport var checkedFonts = new BaseObject();\n/**\n * The label cache for text rendering. To change the default cache size of 2048\n * entries, use {@link module:ol/structs/LRUCache~LRUCache#setSize cache.setSize()}.\n * Deprecated - there is no label cache any more.\n * @type {?}\n * @api\n * @deprecated\n */\nexport var labelCache = new EventTarget();\nlabelCache.setSize = function () {\n console.warn('labelCache is deprecated.'); //eslint-disable-line\n};\n/**\n * @type {CanvasRenderingContext2D}\n */\nvar measureContext = null;\n/**\n * @type {string}\n */\nvar measureFont;\n/**\n * @type {!Object<string, number>}\n */\nexport var textHeights = {};\n/**\n * Clears the label cache when a font becomes available.\n * @param {string} fontSpec CSS font spec.\n */\nexport var registerFont = (function () {\n var retries = 100;\n var size = '32px ';\n var referenceFonts = ['monospace', 'serif'];\n var len = referenceFonts.length;\n var text = 'wmytzilWMYTZIL@#/&?$%10\\uF013';\n var interval, referenceWidth;\n /**\n * @param {string} fontStyle Css font-style\n * @param {string} fontWeight Css font-weight\n * @param {*} fontFamily Css font-family\n * @return {boolean} Font with style and weight is available\n */\n function isAvailable(fontStyle, fontWeight, fontFamily) {\n var available = true;\n for (var i = 0; i < len; ++i) {\n var referenceFont = referenceFonts[i];\n referenceWidth = measureTextWidth(fontStyle + ' ' + fontWeight + ' ' + size + referenceFont, text);\n if (fontFamily != referenceFont) {\n var width = measureTextWidth(fontStyle +\n ' ' +\n fontWeight +\n ' ' +\n size +\n fontFamily +\n ',' +\n referenceFont, text);\n // If width and referenceWidth are the same, then the fallback was used\n // instead of the font we wanted, so the font is not available.\n available = available && width != referenceWidth;\n }\n }\n if (available) {\n return true;\n }\n return false;\n }\n function check() {\n var done = true;\n var fonts = checkedFonts.getKeys();\n for (var i = 0, ii = fonts.length; i < ii; ++i) {\n var font = fonts[i];\n if (checkedFonts.get(font) < retries) {\n if (isAvailable.apply(this, font.split('\\n'))) {\n clear(textHeights);\n // Make sure that loaded fonts are picked up by Safari\n measureContext = null;\n measureFont = undefined;\n checkedFonts.set(font, retries);\n }\n else {\n checkedFonts.set(font, checkedFonts.get(font) + 1, true);\n done = false;\n }\n }\n }\n if (done) {\n clearInterval(interval);\n interval = undefined;\n }\n }\n return function (fontSpec) {\n var font = getFontParameters(fontSpec);\n if (!font) {\n return;\n }\n var families = font.families;\n for (var i = 0, ii = families.length; i < ii; ++i) {\n var family = families[i];\n var key = font.style + '\\n' + font.weight + '\\n' + family;\n if (checkedFonts.get(key) === undefined) {\n checkedFonts.set(key, retries, true);\n if (!isAvailable(font.style, font.weight, family)) {\n checkedFonts.set(key, 0, true);\n if (interval === undefined) {\n interval = setInterval(check, 32);\n }\n }\n }\n }\n };\n})();\n/**\n * @param {string} font Font to use for measuring.\n * @return {import(\"../size.js\").Size} Measurement.\n */\nexport var measureTextHeight = (function () {\n /**\n * @type {HTMLDivElement}\n */\n var measureElement;\n return function (fontSpec) {\n var height = textHeights[fontSpec];\n if (height == undefined) {\n if (WORKER_OFFSCREEN_CANVAS) {\n var font = getFontParameters(fontSpec);\n var metrics = measureText(fontSpec, 'Žg');\n var lineHeight = isNaN(Number(font.lineHeight))\n ? 1.2\n : Number(font.lineHeight);\n height =\n lineHeight *\n (metrics.actualBoundingBoxAscent + metrics.actualBoundingBoxDescent);\n }\n else {\n if (!measureElement) {\n measureElement = document.createElement('div');\n measureElement.innerHTML = 'M';\n measureElement.style.minHeight = '0';\n measureElement.style.maxHeight = 'none';\n measureElement.style.height = 'auto';\n measureElement.style.padding = '0';\n measureElement.style.border = 'none';\n measureElement.style.position = 'absolute';\n measureElement.style.display = 'block';\n measureElement.style.left = '-99999px';\n }\n measureElement.style.font = fontSpec;\n document.body.appendChild(measureElement);\n height = measureElement.offsetHeight;\n document.body.removeChild(measureElement);\n }\n textHeights[fontSpec] = height;\n }\n return height;\n };\n})();\n/**\n * @param {string} font Font.\n * @param {string} text Text.\n * @return {TextMetrics} Text metrics.\n */\nfunction measureText(font, text) {\n if (!measureContext) {\n measureContext = createCanvasContext2D(1, 1);\n }\n if (font != measureFont) {\n measureContext.font = font;\n measureFont = measureContext.font;\n }\n return measureContext.measureText(text);\n}\n/**\n * @param {string} font Font.\n * @param {string} text Text.\n * @return {number} Width.\n */\nexport function measureTextWidth(font, text) {\n return measureText(font, text).width;\n}\n/**\n * Measure text width using a cache.\n * @param {string} font The font.\n * @param {string} text The text to measure.\n * @param {Object<string, number>} cache A lookup of cached widths by text.\n * @return {number} The text width.\n */\nexport function measureAndCacheTextWidth(font, text, cache) {\n if (text in cache) {\n return cache[text];\n }\n var width = measureTextWidth(font, text);\n cache[text] = width;\n return width;\n}\n/**\n * @param {string} font Font to use for measuring.\n * @param {Array<string>} lines Lines to measure.\n * @param {Array<number>} widths Array will be populated with the widths of\n * each line.\n * @return {number} Width of the whole text.\n */\nexport function measureTextWidths(font, lines, widths) {\n var numLines = lines.length;\n var width = 0;\n for (var i = 0; i < numLines; ++i) {\n var currentWidth = measureTextWidth(font, lines[i]);\n width = Math.max(width, currentWidth);\n widths.push(currentWidth);\n }\n return width;\n}\n/**\n * @param {CanvasRenderingContext2D} context Context.\n * @param {number} rotation Rotation.\n * @param {number} offsetX X offset.\n * @param {number} offsetY Y offset.\n */\nexport function rotateAtOffset(context, rotation, offsetX, offsetY) {\n if (rotation !== 0) {\n context.translate(offsetX, offsetY);\n context.rotate(rotation);\n context.translate(-offsetX, -offsetY);\n }\n}\n/**\n * @param {CanvasRenderingContext2D} context Context.\n * @param {import(\"../transform.js\").Transform|null} transform Transform.\n * @param {number} opacity Opacity.\n * @param {Label|HTMLCanvasElement|HTMLImageElement|HTMLVideoElement} labelOrImage Label.\n * @param {number} originX Origin X.\n * @param {number} originY Origin Y.\n * @param {number} w Width.\n * @param {number} h Height.\n * @param {number} x X.\n * @param {number} y Y.\n * @param {import(\"../size.js\").Size} scale Scale.\n */\nexport function drawImageOrLabel(context, transform, opacity, labelOrImage, originX, originY, w, h, x, y, scale) {\n context.save();\n if (opacity !== 1) {\n context.globalAlpha *= opacity;\n }\n if (transform) {\n context.setTransform.apply(context, transform);\n }\n if ( /** @type {*} */(labelOrImage).contextInstructions) {\n // label\n context.translate(x, y);\n context.scale(scale[0], scale[1]);\n executeLabelInstructions(/** @type {Label} */ (labelOrImage), context);\n }\n else if (scale[0] < 0 || scale[1] < 0) {\n // flipped image\n context.translate(x, y);\n context.scale(scale[0], scale[1]);\n context.drawImage(\n /** @type {HTMLCanvasElement|HTMLImageElement|HTMLVideoElement} */ (labelOrImage), originX, originY, w, h, 0, 0, w, h);\n }\n else {\n // if image not flipped translate and scale can be avoided\n context.drawImage(\n /** @type {HTMLCanvasElement|HTMLImageElement|HTMLVideoElement} */ (labelOrImage), originX, originY, w, h, x, y, w * scale[0], h * scale[1]);\n }\n context.restore();\n}\n/**\n * @param {Label} label Label.\n * @param {CanvasRenderingContext2D} context Context.\n */\nfunction executeLabelInstructions(label, context) {\n var contextInstructions = label.contextInstructions;\n for (var i = 0, ii = contextInstructions.length; i < ii; i += 2) {\n if (Array.isArray(contextInstructions[i + 1])) {\n context[contextInstructions[i]].apply(context, contextInstructions[i + 1]);\n }\n else {\n context[contextInstructions[i]] = contextInstructions[i + 1];\n }\n }\n}\n//# sourceMappingURL=canvas.js.map","/**\n * @module ol/style/RegularShape\n */\nvar __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\nimport ImageState from '../ImageState.js';\nimport ImageStyle from './Image.js';\nimport { asArray } from '../color.js';\nimport { asColorLike } from '../colorlike.js';\nimport { createCanvasContext2D } from '../dom.js';\nimport { defaultFillStyle, defaultLineJoin, defaultLineWidth, defaultMiterLimit, defaultStrokeStyle, } from '../render/canvas.js';\n/**\n * Specify radius for regular polygons, or radius1 and radius2 for stars.\n * @typedef {Object} Options\n * @property {import(\"./Fill.js\").default} [fill] Fill style.\n * @property {number} points Number of points for stars and regular polygons. In case of a polygon, the number of points\n * is the number of sides.\n * @property {number} [radius] Radius of a regular polygon.\n * @property {number} [radius1] First radius of a star. Ignored if radius is set.\n * @property {number} [radius2] Second radius of a star.\n * @property {number} [angle=0] Shape's angle in radians. A value of 0 will have one of the shape's point facing up.\n * @property {Array<number>} [displacement=[0,0]] Displacement of the shape\n * @property {import(\"./Stroke.js\").default} [stroke] Stroke style.\n * @property {number} [rotation=0] Rotation in radians (positive rotation clockwise).\n * @property {boolean} [rotateWithView=false] Whether to rotate the shape with the view.\n * @property {number|import(\"../size.js\").Size} [scale=1] Scale. Unless two dimensional scaling is required a better\n * result may be obtained with appropriate settings for `radius`, `radius1` and `radius2`.\n */\n/**\n * @typedef {Object} RenderOptions\n * @property {import(\"../colorlike.js\").ColorLike} [strokeStyle] StrokeStyle.\n * @property {number} strokeWidth StrokeWidth.\n * @property {number} size Size.\n * @property {Array<number>} lineDash LineDash.\n * @property {number} lineDashOffset LineDashOffset.\n * @property {CanvasLineJoin} lineJoin LineJoin.\n * @property {number} miterLimit MiterLimit.\n */\n/**\n * @classdesc\n * Set regular shape style for vector features. The resulting shape will be\n * a regular polygon when `radius` is provided, or a star when `radius1` and\n * `radius2` are provided.\n * @api\n */\nvar RegularShape = /** @class */ (function (_super) {\n __extends(RegularShape, _super);\n /**\n * @param {Options} options Options.\n */\n function RegularShape(options) {\n var _this = this;\n /**\n * @type {boolean}\n */\n var rotateWithView = options.rotateWithView !== undefined ? options.rotateWithView : false;\n _this = _super.call(this, {\n opacity: 1,\n rotateWithView: rotateWithView,\n rotation: options.rotation !== undefined ? options.rotation : 0,\n scale: options.scale !== undefined ? options.scale : 1,\n displacement: options.displacement !== undefined ? options.displacement : [0, 0],\n }) || this;\n /**\n * @private\n * @type {Object<number, HTMLCanvasElement>}\n */\n _this.canvas_ = undefined;\n /**\n * @private\n * @type {HTMLCanvasElement}\n */\n _this.hitDetectionCanvas_ = null;\n /**\n * @private\n * @type {import(\"./Fill.js\").default}\n */\n _this.fill_ = options.fill !== undefined ? options.fill : null;\n /**\n * @private\n * @type {Array<number>}\n */\n _this.origin_ = [0, 0];\n /**\n * @private\n * @type {number}\n */\n _this.points_ = options.points;\n /**\n * @protected\n * @type {number}\n */\n _this.radius_ =\n options.radius !== undefined ? options.radius : options.radius1;\n /**\n * @private\n * @type {number|undefined}\n */\n _this.radius2_ = options.radius2;\n /**\n * @private\n * @type {number}\n */\n _this.angle_ = options.angle !== undefined ? options.angle : 0;\n /**\n * @private\n * @type {import(\"./Stroke.js\").default}\n */\n _this.stroke_ = options.stroke !== undefined ? options.stroke : null;\n /**\n * @private\n * @type {Array<number>}\n */\n _this.anchor_ = null;\n /**\n * @private\n * @type {import(\"../size.js\").Size}\n */\n _this.size_ = null;\n /**\n * @private\n * @type {RenderOptions}\n */\n _this.renderOptions_ = null;\n _this.render();\n return _this;\n }\n /**\n * Clones the style.\n * @return {RegularShape} The cloned style.\n * @api\n */\n RegularShape.prototype.clone = function () {\n var scale = this.getScale();\n var style = new RegularShape({\n fill: this.getFill() ? this.getFill().clone() : undefined,\n points: this.getPoints(),\n radius: this.getRadius(),\n radius2: this.getRadius2(),\n angle: this.getAngle(),\n stroke: this.getStroke() ? this.getStroke().clone() : undefined,\n rotation: this.getRotation(),\n rotateWithView: this.getRotateWithView(),\n scale: Array.isArray(scale) ? scale.slice() : scale,\n displacement: this.getDisplacement().slice(),\n });\n style.setOpacity(this.getOpacity());\n return style;\n };\n /**\n * Get the anchor point in pixels. The anchor determines the center point for the\n * symbolizer.\n * @return {Array<number>} Anchor.\n * @api\n */\n RegularShape.prototype.getAnchor = function () {\n return this.anchor_;\n };\n /**\n * Get the angle used in generating the shape.\n * @return {number} Shape's rotation in radians.\n * @api\n */\n RegularShape.prototype.getAngle = function () {\n return this.angle_;\n };\n /**\n * Get the fill style for the shape.\n * @return {import(\"./Fill.js\").default} Fill style.\n * @api\n */\n RegularShape.prototype.getFill = function () {\n return this.fill_;\n };\n /**\n * @return {HTMLCanvasElement} Image element.\n */\n RegularShape.prototype.getHitDetectionImage = function () {\n if (!this.hitDetectionCanvas_) {\n this.createHitDetectionCanvas_(this.renderOptions_);\n }\n return this.hitDetectionCanvas_;\n };\n /**\n * Get the image icon.\n * @param {number} pixelRatio Pixel ratio.\n * @return {HTMLCanvasElement} Image or Canvas element.\n * @api\n */\n RegularShape.prototype.getImage = function (pixelRatio) {\n var image = this.canvas_[pixelRatio];\n if (!image) {\n var renderOptions = this.renderOptions_;\n var context = createCanvasContext2D(renderOptions.size * pixelRatio, renderOptions.size * pixelRatio);\n this.draw_(renderOptions, context, pixelRatio);\n image = context.canvas;\n this.canvas_[pixelRatio] = image;\n }\n return image;\n };\n /**\n * Get the image pixel ratio.\n * @param {number} pixelRatio Pixel ratio.\n * @return {number} Pixel ratio.\n */\n RegularShape.prototype.getPixelRatio = function (pixelRatio) {\n return pixelRatio;\n };\n /**\n * @return {import(\"../size.js\").Size} Image size.\n */\n RegularShape.prototype.getImageSize = function () {\n return this.size_;\n };\n /**\n * @return {import(\"../ImageState.js\").default} Image state.\n */\n RegularShape.prototype.getImageState = function () {\n return ImageState.LOADED;\n };\n /**\n * Get the origin of the symbolizer.\n * @return {Array<number>} Origin.\n * @api\n */\n RegularShape.prototype.getOrigin = function () {\n return this.origin_;\n };\n /**\n * Get the number of points for generating the shape.\n * @return {number} Number of points for stars and regular polygons.\n * @api\n */\n RegularShape.prototype.getPoints = function () {\n return this.points_;\n };\n /**\n * Get the (primary) radius for the shape.\n * @return {number} Radius.\n * @api\n */\n RegularShape.prototype.getRadius = function () {\n return this.radius_;\n };\n /**\n * Get the secondary radius for the shape.\n * @return {number|undefined} Radius2.\n * @api\n */\n RegularShape.prototype.getRadius2 = function () {\n return this.radius2_;\n };\n /**\n * Get the size of the symbolizer (in pixels).\n * @return {import(\"../size.js\").Size} Size.\n * @api\n */\n RegularShape.prototype.getSize = function () {\n return this.size_;\n };\n /**\n * Get the stroke style for the shape.\n * @return {import(\"./Stroke.js\").default} Stroke style.\n * @api\n */\n RegularShape.prototype.getStroke = function () {\n return this.stroke_;\n };\n /**\n * @param {function(import(\"../events/Event.js\").default): void} listener Listener function.\n */\n RegularShape.prototype.listenImageChange = function (listener) { };\n /**\n * Load not yet loaded URI.\n */\n RegularShape.prototype.load = function () { };\n /**\n * @param {function(import(\"../events/Event.js\").default): void} listener Listener function.\n */\n RegularShape.prototype.unlistenImageChange = function (listener) { };\n /**\n * Calculate additional canvas size needed for the miter.\n * @param {string} lineJoin Line join\n * @param {number} strokeWidth Stroke width\n * @param {number} miterLimit Miter limit\n * @return {number} Additional canvas size needed\n * @private\n */\n RegularShape.prototype.calculateLineJoinSize_ = function (lineJoin, strokeWidth, miterLimit) {\n if (strokeWidth === 0 ||\n this.points_ === Infinity ||\n (lineJoin !== 'bevel' && lineJoin !== 'miter')) {\n return strokeWidth;\n }\n // m | ^\n // i | |\\ .\n // t >| #\\\n // e | |\\ \\ .\n // r \\s\\\n // | \\t\\ . .\n // \\r\\ . .\n // | \\o\\ . . . . .\n // e \\k\\ . . . .\n // | \\e\\ . . . . .\n // d \\ \\ . . . .\n // | _ _a_ _\\# . . .\n // r1 / ` . .\n // | . .\n // b / . .\n // | . .\n // / r2 . .\n // | . .\n // / . .\n // |α . .\n // / . .\n // ° center\n var r1 = this.radius_;\n var r2 = this.radius2_ === undefined ? r1 : this.radius2_;\n if (r1 < r2) {\n var tmp = r1;\n r1 = r2;\n r2 = tmp;\n }\n var points = this.radius2_ === undefined ? this.points_ : this.points_ * 2;\n var alpha = (2 * Math.PI) / points;\n var a = r2 * Math.sin(alpha);\n var b = Math.sqrt(r2 * r2 - a * a);\n var d = r1 - b;\n var e = Math.sqrt(a * a + d * d);\n var miterRatio = e / a;\n if (lineJoin === 'miter' && miterRatio <= miterLimit) {\n return miterRatio * strokeWidth;\n }\n // Calculate the distnce from center to the stroke corner where\n // it was cut short because of the miter limit.\n // l\n // ----+---- <= distance from center to here is maxr\n // /####|k ##\\\n // /#####^#####\\\n // /#### /+\\# s #\\\n // /### h/+++\\# t #\\\n // /### t/+++++\\# r #\\\n // /### a/+++++++\\# o #\\\n // /### p/++ fill +\\# k #\\\n ///#### /+++++^+++++\\# e #\\\n //#####/+++++/+\\+++++\\#####\\\n var k = strokeWidth / 2 / miterRatio;\n var l = (strokeWidth / 2) * (d / e);\n var maxr = Math.sqrt((r1 + k) * (r1 + k) + l * l);\n var bevelAdd = maxr - r1;\n if (this.radius2_ === undefined || lineJoin === 'bevel') {\n return bevelAdd * 2;\n }\n // If outer miter is over the miter limit the inner miter may reach through the\n // center and be longer than the bevel, same calculation as above but swap r1 / r2.\n var aa = r1 * Math.sin(alpha);\n var bb = Math.sqrt(r1 * r1 - aa * aa);\n var dd = r2 - bb;\n var ee = Math.sqrt(aa * aa + dd * dd);\n var innerMiterRatio = ee / aa;\n if (innerMiterRatio <= miterLimit) {\n var innerLength = (innerMiterRatio * strokeWidth) / 2 - r2 - r1;\n return 2 * Math.max(bevelAdd, innerLength);\n }\n return bevelAdd * 2;\n };\n /**\n * @return {RenderOptions} The render options\n * @protected\n */\n RegularShape.prototype.createRenderOptions = function () {\n var lineJoin = defaultLineJoin;\n var miterLimit = 0;\n var lineDash = null;\n var lineDashOffset = 0;\n var strokeStyle;\n var strokeWidth = 0;\n if (this.stroke_) {\n strokeStyle = this.stroke_.getColor();\n if (strokeStyle === null) {\n strokeStyle = defaultStrokeStyle;\n }\n strokeStyle = asColorLike(strokeStyle);\n strokeWidth = this.stroke_.getWidth();\n if (strokeWidth === undefined) {\n strokeWidth = defaultLineWidth;\n }\n lineDash = this.stroke_.getLineDash();\n lineDashOffset = this.stroke_.getLineDashOffset();\n lineJoin = this.stroke_.getLineJoin();\n if (lineJoin === undefined) {\n lineJoin = defaultLineJoin;\n }\n miterLimit = this.stroke_.getMiterLimit();\n if (miterLimit === undefined) {\n miterLimit = defaultMiterLimit;\n }\n }\n var add = this.calculateLineJoinSize_(lineJoin, strokeWidth, miterLimit);\n var maxRadius = Math.max(this.radius_, this.radius2_ || 0);\n var size = Math.ceil(2 * maxRadius + add);\n return {\n strokeStyle: strokeStyle,\n strokeWidth: strokeWidth,\n size: size,\n lineDash: lineDash,\n lineDashOffset: lineDashOffset,\n lineJoin: lineJoin,\n miterLimit: miterLimit,\n };\n };\n /**\n * @protected\n */\n RegularShape.prototype.render = function () {\n this.renderOptions_ = this.createRenderOptions();\n var size = this.renderOptions_.size;\n var displacement = this.getDisplacement();\n this.canvas_ = {};\n this.anchor_ = [size / 2 - displacement[0], size / 2 + displacement[1]];\n this.size_ = [size, size];\n };\n /**\n * @private\n * @param {RenderOptions} renderOptions Render options.\n * @param {CanvasRenderingContext2D} context The rendering context.\n * @param {number} pixelRatio The pixel ratio.\n */\n RegularShape.prototype.draw_ = function (renderOptions, context, pixelRatio) {\n context.scale(pixelRatio, pixelRatio);\n // set origin to canvas center\n context.translate(renderOptions.size / 2, renderOptions.size / 2);\n this.createPath_(context);\n if (this.fill_) {\n var color = this.fill_.getColor();\n if (color === null) {\n color = defaultFillStyle;\n }\n context.fillStyle = asColorLike(color);\n context.fill();\n }\n if (this.stroke_) {\n context.strokeStyle = renderOptions.strokeStyle;\n context.lineWidth = renderOptions.strokeWidth;\n if (context.setLineDash && renderOptions.lineDash) {\n context.setLineDash(renderOptions.lineDash);\n context.lineDashOffset = renderOptions.lineDashOffset;\n }\n context.lineJoin = renderOptions.lineJoin;\n context.miterLimit = renderOptions.miterLimit;\n context.stroke();\n }\n };\n /**\n * @private\n * @param {RenderOptions} renderOptions Render options.\n */\n RegularShape.prototype.createHitDetectionCanvas_ = function (renderOptions) {\n if (this.fill_) {\n var color = this.fill_.getColor();\n // determine if fill is transparent (or pattern or gradient)\n var opacity = 0;\n if (typeof color === 'string') {\n color = asArray(color);\n }\n if (color === null) {\n opacity = 1;\n }\n else if (Array.isArray(color)) {\n opacity = color.length === 4 ? color[3] : 1;\n }\n if (opacity === 0) {\n // if a transparent fill style is set, create an extra hit-detection image\n // with a default fill style\n var context = createCanvasContext2D(renderOptions.size, renderOptions.size);\n this.hitDetectionCanvas_ = context.canvas;\n this.drawHitDetectionCanvas_(renderOptions, context);\n }\n }\n if (!this.hitDetectionCanvas_) {\n this.hitDetectionCanvas_ = this.getImage(1);\n }\n };\n /**\n * @private\n * @param {CanvasRenderingContext2D} context The context to draw in.\n */\n RegularShape.prototype.createPath_ = function (context) {\n var points = this.points_;\n var radius = this.radius_;\n if (points === Infinity) {\n context.arc(0, 0, radius, 0, 2 * Math.PI);\n }\n else {\n var radius2 = this.radius2_ === undefined ? radius : this.radius2_;\n if (this.radius2_ !== undefined) {\n points *= 2;\n }\n var startAngle = this.angle_ - Math.PI / 2;\n var step = (2 * Math.PI) / points;\n for (var i = 0; i < points; i++) {\n var angle0 = startAngle + i * step;\n var radiusC = i % 2 === 0 ? radius : radius2;\n context.lineTo(radiusC * Math.cos(angle0), radiusC * Math.sin(angle0));\n }\n context.closePath();\n }\n };\n /**\n * @private\n * @param {RenderOptions} renderOptions Render options.\n * @param {CanvasRenderingContext2D} context The context.\n */\n RegularShape.prototype.drawHitDetectionCanvas_ = function (renderOptions, context) {\n // set origin to canvas center\n context.translate(renderOptions.size / 2, renderOptions.size / 2);\n this.createPath_(context);\n context.fillStyle = defaultFillStyle;\n context.fill();\n if (this.stroke_) {\n context.strokeStyle = renderOptions.strokeStyle;\n context.lineWidth = renderOptions.strokeWidth;\n if (renderOptions.lineDash) {\n context.setLineDash(renderOptions.lineDash);\n context.lineDashOffset = renderOptions.lineDashOffset;\n }\n context.lineJoin = renderOptions.lineJoin;\n context.miterLimit = renderOptions.miterLimit;\n context.stroke();\n }\n };\n return RegularShape;\n}(ImageStyle));\nexport default RegularShape;\n//# sourceMappingURL=RegularShape.js.map","/**\n * @module ol/style/Circle\n */\nvar __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\nimport RegularShape from './RegularShape.js';\n/**\n * @typedef {Object} Options\n * @property {import(\"./Fill.js\").default} [fill] Fill style.\n * @property {number} radius Circle radius.\n * @property {import(\"./Stroke.js\").default} [stroke] Stroke style.\n * @property {Array<number>} [displacement=[0,0]] displacement\n * @property {number|import(\"../size.js\").Size} [scale=1] Scale. A two dimensional scale will produce an ellipse.\n * Unless two dimensional scaling is required a better result may be obtained with an appropriate setting for `radius`.\n * @property {number} [rotation=0] Rotation in radians\n * (positive rotation clockwise, meaningful only when used in conjunction with a two dimensional scale).\n * @property {boolean} [rotateWithView=false] Whether to rotate the shape with the view\n * (meaningful only when used in conjunction with a two dimensional scale).\n */\n/**\n * @classdesc\n * Set circle style for vector features.\n * @api\n */\nvar CircleStyle = /** @class */ (function (_super) {\n __extends(CircleStyle, _super);\n /**\n * @param {Options} [opt_options] Options.\n */\n function CircleStyle(opt_options) {\n var _this = this;\n var options = opt_options ? opt_options : {};\n _this = _super.call(this, {\n points: Infinity,\n fill: options.fill,\n radius: options.radius,\n stroke: options.stroke,\n scale: options.scale !== undefined ? options.scale : 1,\n rotation: options.rotation !== undefined ? options.rotation : 0,\n rotateWithView: options.rotateWithView !== undefined ? options.rotateWithView : false,\n displacement: options.displacement !== undefined ? options.displacement : [0, 0],\n }) || this;\n return _this;\n }\n /**\n * Clones the style.\n * @return {CircleStyle} The cloned style.\n * @api\n */\n CircleStyle.prototype.clone = function () {\n var scale = this.getScale();\n var style = new CircleStyle({\n fill: this.getFill() ? this.getFill().clone() : undefined,\n stroke: this.getStroke() ? this.getStroke().clone() : undefined,\n radius: this.getRadius(),\n scale: Array.isArray(scale) ? scale.slice() : scale,\n rotation: this.getRotation(),\n rotateWithView: this.getRotateWithView(),\n displacement: this.getDisplacement().slice(),\n });\n style.setOpacity(this.getOpacity());\n return style;\n };\n /**\n * Set the circle radius.\n *\n * @param {number} radius Circle radius.\n * @api\n */\n CircleStyle.prototype.setRadius = function (radius) {\n this.radius_ = radius;\n this.render();\n };\n return CircleStyle;\n}(RegularShape));\nexport default CircleStyle;\n//# sourceMappingURL=Circle.js.map","/**\n * @module ol/style/Fill\n */\n/**\n * @typedef {Object} Options\n * @property {import(\"../color.js\").Color|import(\"../colorlike.js\").ColorLike} [color=null] A color, gradient or pattern.\n * See {@link module:ol/color~Color} and {@link module:ol/colorlike~ColorLike} for possible formats.\n * Default null; if null, the Canvas/renderer default black will be used.\n */\n/**\n * @classdesc\n * Set fill style for vector features.\n * @api\n */\nvar Fill = /** @class */ (function () {\n /**\n * @param {Options} [opt_options] Options.\n */\n function Fill(opt_options) {\n var options = opt_options || {};\n /**\n * @private\n * @type {import(\"../color.js\").Color|import(\"../colorlike.js\").ColorLike}\n */\n this.color_ = options.color !== undefined ? options.color : null;\n }\n /**\n * Clones the style. The color is not cloned if it is an {@link module:ol/colorlike~ColorLike}.\n * @return {Fill} The cloned style.\n * @api\n */\n Fill.prototype.clone = function () {\n var color = this.getColor();\n return new Fill({\n color: Array.isArray(color) ? color.slice() : color || undefined,\n });\n };\n /**\n * Get the fill color.\n * @return {import(\"../color.js\").Color|import(\"../colorlike.js\").ColorLike} Color.\n * @api\n */\n Fill.prototype.getColor = function () {\n return this.color_;\n };\n /**\n * Set the color.\n *\n * @param {import(\"../color.js\").Color|import(\"../colorlike.js\").ColorLike} color Color.\n * @api\n */\n Fill.prototype.setColor = function (color) {\n this.color_ = color;\n };\n return Fill;\n}());\nexport default Fill;\n//# sourceMappingURL=Fill.js.map","/**\n * @module ol/style/Stroke\n */\n/**\n * @typedef {Object} Options\n * @property {import(\"../color.js\").Color|import(\"../colorlike.js\").ColorLike} [color] A color, gradient or pattern.\n * See {@link module:ol/color~Color} and {@link module:ol/colorlike~ColorLike} for possible formats.\n * Default null; if null, the Canvas/renderer default black will be used.\n * @property {CanvasLineCap} [lineCap='round'] Line cap style: `butt`, `round`, or `square`.\n * @property {CanvasLineJoin} [lineJoin='round'] Line join style: `bevel`, `round`, or `miter`.\n * @property {Array<number>} [lineDash] Line dash pattern. Default is `null` (no dash).\n * Please note that Internet Explorer 10 and lower do not support the `setLineDash` method on\n * the `CanvasRenderingContext2D` and therefore this option will have no visual effect in these browsers.\n * @property {number} [lineDashOffset=0] Line dash offset.\n * @property {number} [miterLimit=10] Miter limit.\n * @property {number} [width] Width.\n */\n/**\n * @classdesc\n * Set stroke style for vector features.\n * Note that the defaults given are the Canvas defaults, which will be used if\n * option is not defined. The `get` functions return whatever was entered in\n * the options; they will not return the default.\n * @api\n */\nvar Stroke = /** @class */ (function () {\n /**\n * @param {Options} [opt_options] Options.\n */\n function Stroke(opt_options) {\n var options = opt_options || {};\n /**\n * @private\n * @type {import(\"../color.js\").Color|import(\"../colorlike.js\").ColorLike}\n */\n this.color_ = options.color !== undefined ? options.color : null;\n /**\n * @private\n * @type {CanvasLineCap|undefined}\n */\n this.lineCap_ = options.lineCap;\n /**\n * @private\n * @type {Array<number>}\n */\n this.lineDash_ = options.lineDash !== undefined ? options.lineDash : null;\n /**\n * @private\n * @type {number|undefined}\n */\n this.lineDashOffset_ = options.lineDashOffset;\n /**\n * @private\n * @type {CanvasLineJoin|undefined}\n */\n this.lineJoin_ = options.lineJoin;\n /**\n * @private\n * @type {number|undefined}\n */\n this.miterLimit_ = options.miterLimit;\n /**\n * @private\n * @type {number|undefined}\n */\n this.width_ = options.width;\n }\n /**\n * Clones the style.\n * @return {Stroke} The cloned style.\n * @api\n */\n Stroke.prototype.clone = function () {\n var color = this.getColor();\n return new Stroke({\n color: Array.isArray(color) ? color.slice() : color || undefined,\n lineCap: this.getLineCap(),\n lineDash: this.getLineDash() ? this.getLineDash().slice() : undefined,\n lineDashOffset: this.getLineDashOffset(),\n lineJoin: this.getLineJoin(),\n miterLimit: this.getMiterLimit(),\n width: this.getWidth(),\n });\n };\n /**\n * Get the stroke color.\n * @return {import(\"../color.js\").Color|import(\"../colorlike.js\").ColorLike} Color.\n * @api\n */\n Stroke.prototype.getColor = function () {\n return this.color_;\n };\n /**\n * Get the line cap type for the stroke.\n * @return {CanvasLineCap|undefined} Line cap.\n * @api\n */\n Stroke.prototype.getLineCap = function () {\n return this.lineCap_;\n };\n /**\n * Get the line dash style for the stroke.\n * @return {Array<number>} Line dash.\n * @api\n */\n Stroke.prototype.getLineDash = function () {\n return this.lineDash_;\n };\n /**\n * Get the line dash offset for the stroke.\n * @return {number|undefined} Line dash offset.\n * @api\n */\n Stroke.prototype.getLineDashOffset = function () {\n return this.lineDashOffset_;\n };\n /**\n * Get the line join type for the stroke.\n * @return {CanvasLineJoin|undefined} Line join.\n * @api\n */\n Stroke.prototype.getLineJoin = function () {\n return this.lineJoin_;\n };\n /**\n * Get the miter limit for the stroke.\n * @return {number|undefined} Miter limit.\n * @api\n */\n Stroke.prototype.getMiterLimit = function () {\n return this.miterLimit_;\n };\n /**\n * Get the stroke width.\n * @return {number|undefined} Width.\n * @api\n */\n Stroke.prototype.getWidth = function () {\n return this.width_;\n };\n /**\n * Set the color.\n *\n * @param {import(\"../color.js\").Color|import(\"../colorlike.js\").ColorLike} color Color.\n * @api\n */\n Stroke.prototype.setColor = function (color) {\n this.color_ = color;\n };\n /**\n * Set the line cap.\n *\n * @param {CanvasLineCap|undefined} lineCap Line cap.\n * @api\n */\n Stroke.prototype.setLineCap = function (lineCap) {\n this.lineCap_ = lineCap;\n };\n /**\n * Set the line dash.\n *\n * Please note that Internet Explorer 10 and lower [do not support][mdn] the\n * `setLineDash` method on the `CanvasRenderingContext2D` and therefore this\n * property will have no visual effect in these browsers.\n *\n * [mdn]: https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D/setLineDash#Browser_compatibility\n *\n * @param {Array<number>} lineDash Line dash.\n * @api\n */\n Stroke.prototype.setLineDash = function (lineDash) {\n this.lineDash_ = lineDash;\n };\n /**\n * Set the line dash offset.\n *\n * @param {number|undefined} lineDashOffset Line dash offset.\n * @api\n */\n Stroke.prototype.setLineDashOffset = function (lineDashOffset) {\n this.lineDashOffset_ = lineDashOffset;\n };\n /**\n * Set the line join.\n *\n * @param {CanvasLineJoin|undefined} lineJoin Line join.\n * @api\n */\n Stroke.prototype.setLineJoin = function (lineJoin) {\n this.lineJoin_ = lineJoin;\n };\n /**\n * Set the miter limit.\n *\n * @param {number|undefined} miterLimit Miter limit.\n * @api\n */\n Stroke.prototype.setMiterLimit = function (miterLimit) {\n this.miterLimit_ = miterLimit;\n };\n /**\n * Set the width.\n *\n * @param {number|undefined} width Width.\n * @api\n */\n Stroke.prototype.setWidth = function (width) {\n this.width_ = width;\n };\n return Stroke;\n}());\nexport default Stroke;\n//# sourceMappingURL=Stroke.js.map","/**\n * @module ol/style/Style\n */\nimport CircleStyle from './Circle.js';\nimport Fill from './Fill.js';\nimport GeometryType from '../geom/GeometryType.js';\nimport Stroke from './Stroke.js';\nimport { assert } from '../asserts.js';\n/**\n * A function that takes an {@link module:ol/Feature} and a `{number}`\n * representing the view's resolution. The function should return a\n * {@link module:ol/style/Style} or an array of them. This way e.g. a\n * vector layer can be styled. If the function returns `undefined`, the\n * feature will not be rendered.\n *\n * @typedef {function(import(\"../Feature.js\").FeatureLike, number):(Style|Array<Style>|void)} StyleFunction\n */\n/**\n * A {@link Style}, an array of {@link Style}, or a {@link StyleFunction}.\n * @typedef {Style|Array<Style>|StyleFunction} StyleLike\n */\n/**\n * A function that takes an {@link module:ol/Feature} as argument and returns an\n * {@link module:ol/geom/Geometry} that will be rendered and styled for the feature.\n *\n * @typedef {function(import(\"../Feature.js\").FeatureLike):\n * (import(\"../geom/Geometry.js\").default|import(\"../render/Feature.js\").default|undefined)} GeometryFunction\n */\n/**\n * Custom renderer function. Takes two arguments:\n *\n * 1. The pixel coordinates of the geometry in GeoJSON notation.\n * 2. The {@link module:ol/render~State} of the layer renderer.\n *\n * @typedef {function((import(\"../coordinate.js\").Coordinate|Array<import(\"../coordinate.js\").Coordinate>|Array<Array<import(\"../coordinate.js\").Coordinate>>),import(\"../render.js\").State): void}\n * RenderFunction\n */\n/**\n * @typedef {Object} Options\n * @property {string|import(\"../geom/Geometry.js\").default|GeometryFunction} [geometry] Feature property or geometry\n * or function returning a geometry to render for this style.\n * @property {import(\"./Fill.js\").default} [fill] Fill style.\n * @property {import(\"./Image.js\").default} [image] Image style.\n * @property {RenderFunction} [renderer] Custom renderer. When configured, `fill`, `stroke` and `image` will be\n * ignored, and the provided function will be called with each render frame for each geometry.\n * @property {RenderFunction} [hitDetectionRenderer] Custom renderer for hit detection. If provided will be used\n * in hit detection rendering.\n * @property {import(\"./Stroke.js\").default} [stroke] Stroke style.\n * @property {import(\"./Text.js\").default} [text] Text style.\n * @property {number} [zIndex] Z index.\n */\n/**\n * @classdesc\n * Container for vector feature rendering styles. Any changes made to the style\n * or its children through `set*()` methods will not take effect until the\n * feature or layer that uses the style is re-rendered.\n *\n * ## Feature styles\n *\n * If no style is defined, the following default style is used:\n * ```js\n * import {Fill, Stroke, Circle, Style} from 'ol/style';\n *\n * var fill = new Fill({\n * color: 'rgba(255,255,255,0.4)'\n * });\n * var stroke = new Stroke({\n * color: '#3399CC',\n * width: 1.25\n * });\n * var styles = [\n * new Style({\n * image: new Circle({\n * fill: fill,\n * stroke: stroke,\n * radius: 5\n * }),\n * fill: fill,\n * stroke: stroke\n * })\n * ];\n * ```\n *\n * A separate editing style has the following defaults:\n * ```js\n * import {Fill, Stroke, Circle, Style} from 'ol/style';\n * import GeometryType from 'ol/geom/GeometryType';\n *\n * var white = [255, 255, 255, 1];\n * var blue = [0, 153, 255, 1];\n * var width = 3;\n * styles[GeometryType.POLYGON] = [\n * new Style({\n * fill: new Fill({\n * color: [255, 255, 255, 0.5]\n * })\n * })\n * ];\n * styles[GeometryType.MULTI_POLYGON] =\n * styles[GeometryType.POLYGON];\n * styles[GeometryType.LINE_STRING] = [\n * new Style({\n * stroke: new Stroke({\n * color: white,\n * width: width + 2\n * })\n * }),\n * new Style({\n * stroke: new Stroke({\n * color: blue,\n * width: width\n * })\n * })\n * ];\n * styles[GeometryType.MULTI_LINE_STRING] =\n * styles[GeometryType.LINE_STRING];\n * styles[GeometryType.POINT] = [\n * new Style({\n * image: new Circle({\n * radius: width * 2,\n * fill: new Fill({\n * color: blue\n * }),\n * stroke: new Stroke({\n * color: white,\n * width: width / 2\n * })\n * }),\n * zIndex: Infinity\n * })\n * ];\n * styles[GeometryType.MULTI_POINT] =\n * styles[GeometryType.POINT];\n * styles[GeometryType.GEOMETRY_COLLECTION] =\n * styles[GeometryType.POLYGON].concat(\n * styles[GeometryType.LINE_STRING],\n * styles[GeometryType.POINT]\n * );\n * ```\n *\n * @api\n */\nvar Style = /** @class */ (function () {\n /**\n * @param {Options} [opt_options] Style options.\n */\n function Style(opt_options) {\n var options = opt_options || {};\n /**\n * @private\n * @type {string|import(\"../geom/Geometry.js\").default|GeometryFunction}\n */\n this.geometry_ = null;\n /**\n * @private\n * @type {!GeometryFunction}\n */\n this.geometryFunction_ = defaultGeometryFunction;\n if (options.geometry !== undefined) {\n this.setGeometry(options.geometry);\n }\n /**\n * @private\n * @type {import(\"./Fill.js\").default}\n */\n this.fill_ = options.fill !== undefined ? options.fill : null;\n /**\n * @private\n * @type {import(\"./Image.js\").default}\n */\n this.image_ = options.image !== undefined ? options.image : null;\n /**\n * @private\n * @type {RenderFunction|null}\n */\n this.renderer_ = options.renderer !== undefined ? options.renderer : null;\n /**\n * @private\n * @type {RenderFunction|null}\n */\n this.hitDetectionRenderer_ =\n options.hitDetectionRenderer !== undefined\n ? options.hitDetectionRenderer\n : null;\n /**\n * @private\n * @type {import(\"./Stroke.js\").default}\n */\n this.stroke_ = options.stroke !== undefined ? options.stroke : null;\n /**\n * @private\n * @type {import(\"./Text.js\").default}\n */\n this.text_ = options.text !== undefined ? options.text : null;\n /**\n * @private\n * @type {number|undefined}\n */\n this.zIndex_ = options.zIndex;\n }\n /**\n * Clones the style.\n * @return {Style} The cloned style.\n * @api\n */\n Style.prototype.clone = function () {\n var geometry = this.getGeometry();\n if (geometry && typeof geometry === 'object') {\n geometry = /** @type {import(\"../geom/Geometry.js\").default} */ (geometry).clone();\n }\n return new Style({\n geometry: geometry,\n fill: this.getFill() ? this.getFill().clone() : undefined,\n image: this.getImage() ? this.getImage().clone() : undefined,\n renderer: this.getRenderer(),\n stroke: this.getStroke() ? this.getStroke().clone() : undefined,\n text: this.getText() ? this.getText().clone() : undefined,\n zIndex: this.getZIndex(),\n });\n };\n /**\n * Get the custom renderer function that was configured with\n * {@link #setRenderer} or the `renderer` constructor option.\n * @return {RenderFunction|null} Custom renderer function.\n * @api\n */\n Style.prototype.getRenderer = function () {\n return this.renderer_;\n };\n /**\n * Sets a custom renderer function for this style. When set, `fill`, `stroke`\n * and `image` options of the style will be ignored.\n * @param {RenderFunction|null} renderer Custom renderer function.\n * @api\n */\n Style.prototype.setRenderer = function (renderer) {\n this.renderer_ = renderer;\n };\n /**\n * Sets a custom renderer function for this style used\n * in hit detection.\n * @param {RenderFunction|null} renderer Custom renderer function.\n * @api\n */\n Style.prototype.setHitDetectionRenderer = function (renderer) {\n this.hitDetectionRenderer_ = renderer;\n };\n /**\n * Get the custom renderer function that was configured with\n * {@link #setHitDetectionRenderer} or the `hitDetectionRenderer` constructor option.\n * @return {RenderFunction|null} Custom renderer function.\n * @api\n */\n Style.prototype.getHitDetectionRenderer = function () {\n return this.hitDetectionRenderer_;\n };\n /**\n * Get the geometry to be rendered.\n * @return {string|import(\"../geom/Geometry.js\").default|GeometryFunction}\n * Feature property or geometry or function that returns the geometry that will\n * be rendered with this style.\n * @api\n */\n Style.prototype.getGeometry = function () {\n return this.geometry_;\n };\n /**\n * Get the function used to generate a geometry for rendering.\n * @return {!GeometryFunction} Function that is called with a feature\n * and returns the geometry to render instead of the feature's geometry.\n * @api\n */\n Style.prototype.getGeometryFunction = function () {\n return this.geometryFunction_;\n };\n /**\n * Get the fill style.\n * @return {import(\"./Fill.js\").default} Fill style.\n * @api\n */\n Style.prototype.getFill = function () {\n return this.fill_;\n };\n /**\n * Set the fill style.\n * @param {import(\"./Fill.js\").default} fill Fill style.\n * @api\n */\n Style.prototype.setFill = function (fill) {\n this.fill_ = fill;\n };\n /**\n * Get the image style.\n * @return {import(\"./Image.js\").default} Image style.\n * @api\n */\n Style.prototype.getImage = function () {\n return this.image_;\n };\n /**\n * Set the image style.\n * @param {import(\"./Image.js\").default} image Image style.\n * @api\n */\n Style.prototype.setImage = function (image) {\n this.image_ = image;\n };\n /**\n * Get the stroke style.\n * @return {import(\"./Stroke.js\").default} Stroke style.\n * @api\n */\n Style.prototype.getStroke = function () {\n return this.stroke_;\n };\n /**\n * Set the stroke style.\n * @param {import(\"./Stroke.js\").default} stroke Stroke style.\n * @api\n */\n Style.prototype.setStroke = function (stroke) {\n this.stroke_ = stroke;\n };\n /**\n * Get the text style.\n * @return {import(\"./Text.js\").default} Text style.\n * @api\n */\n Style.prototype.getText = function () {\n return this.text_;\n };\n /**\n * Set the text style.\n * @param {import(\"./Text.js\").default} text Text style.\n * @api\n */\n Style.prototype.setText = function (text) {\n this.text_ = text;\n };\n /**\n * Get the z-index for the style.\n * @return {number|undefined} ZIndex.\n * @api\n */\n Style.prototype.getZIndex = function () {\n return this.zIndex_;\n };\n /**\n * Set a geometry that is rendered instead of the feature's geometry.\n *\n * @param {string|import(\"../geom/Geometry.js\").default|GeometryFunction} geometry\n * Feature property or geometry or function returning a geometry to render\n * for this style.\n * @api\n */\n Style.prototype.setGeometry = function (geometry) {\n if (typeof geometry === 'function') {\n this.geometryFunction_ = geometry;\n }\n else if (typeof geometry === 'string') {\n this.geometryFunction_ = function (feature) {\n return /** @type {import(\"../geom/Geometry.js\").default} */ (feature.get(geometry));\n };\n }\n else if (!geometry) {\n this.geometryFunction_ = defaultGeometryFunction;\n }\n else if (geometry !== undefined) {\n this.geometryFunction_ = function () {\n return /** @type {import(\"../geom/Geometry.js\").default} */ (geometry);\n };\n }\n this.geometry_ = geometry;\n };\n /**\n * Set the z-index.\n *\n * @param {number|undefined} zIndex ZIndex.\n * @api\n */\n Style.prototype.setZIndex = function (zIndex) {\n this.zIndex_ = zIndex;\n };\n return Style;\n}());\n/**\n * Convert the provided object into a style function. Functions passed through\n * unchanged. Arrays of Style or single style objects wrapped in a\n * new style function.\n * @param {StyleFunction|Array<Style>|Style} obj\n * A style function, a single style, or an array of styles.\n * @return {StyleFunction} A style function.\n */\nexport function toFunction(obj) {\n var styleFunction;\n if (typeof obj === 'function') {\n styleFunction = obj;\n }\n else {\n /**\n * @type {Array<Style>}\n */\n var styles_1;\n if (Array.isArray(obj)) {\n styles_1 = obj;\n }\n else {\n assert(typeof ( /** @type {?} */(obj).getZIndex) === 'function', 41); // Expected an `Style` or an array of `Style`\n var style = /** @type {Style} */ (obj);\n styles_1 = [style];\n }\n styleFunction = function () {\n return styles_1;\n };\n }\n return styleFunction;\n}\n/**\n * @type {Array<Style>}\n */\nvar defaultStyles = null;\n/**\n * @param {import(\"../Feature.js\").FeatureLike} feature Feature.\n * @param {number} resolution Resolution.\n * @return {Array<Style>} Style.\n */\nexport function createDefaultStyle(feature, resolution) {\n // We don't use an immediately-invoked function\n // and a closure so we don't get an error at script evaluation time in\n // browsers that do not support Canvas. (import(\"./Circle.js\").CircleStyle does\n // canvas.getContext('2d') at construction time, which will cause an.error\n // in such browsers.)\n if (!defaultStyles) {\n var fill = new Fill({\n color: 'rgba(255,255,255,0.4)',\n });\n var stroke = new Stroke({\n color: '#3399CC',\n width: 1.25,\n });\n defaultStyles = [\n new Style({\n image: new CircleStyle({\n fill: fill,\n stroke: stroke,\n radius: 5,\n }),\n fill: fill,\n stroke: stroke,\n }),\n ];\n }\n return defaultStyles;\n}\n/**\n * Default styles for editing features.\n * @return {Object<import(\"../geom/GeometryType.js\").default, Array<Style>>} Styles\n */\nexport function createEditingStyle() {\n /** @type {Object<import(\"../geom/GeometryType.js\").default, Array<Style>>} */\n var styles = {};\n var white = [255, 255, 255, 1];\n var blue = [0, 153, 255, 1];\n var width = 3;\n styles[GeometryType.POLYGON] = [\n new Style({\n fill: new Fill({\n color: [255, 255, 255, 0.5],\n }),\n }),\n ];\n styles[GeometryType.MULTI_POLYGON] = styles[GeometryType.POLYGON];\n styles[GeometryType.LINE_STRING] = [\n new Style({\n stroke: new Stroke({\n color: white,\n width: width + 2,\n }),\n }),\n new Style({\n stroke: new Stroke({\n color: blue,\n width: width,\n }),\n }),\n ];\n styles[GeometryType.MULTI_LINE_STRING] = styles[GeometryType.LINE_STRING];\n styles[GeometryType.CIRCLE] = styles[GeometryType.POLYGON].concat(styles[GeometryType.LINE_STRING]);\n styles[GeometryType.POINT] = [\n new Style({\n image: new CircleStyle({\n radius: width * 2,\n fill: new Fill({\n color: blue,\n }),\n stroke: new Stroke({\n color: white,\n width: width / 2,\n }),\n }),\n zIndex: Infinity,\n }),\n ];\n styles[GeometryType.MULTI_POINT] = styles[GeometryType.POINT];\n styles[GeometryType.GEOMETRY_COLLECTION] = styles[GeometryType.POLYGON].concat(styles[GeometryType.LINE_STRING], styles[GeometryType.POINT]);\n return styles;\n}\n/**\n * Function that is called with a feature and returns its default geometry.\n * @param {import(\"../Feature.js\").FeatureLike} feature Feature to get the geometry for.\n * @return {import(\"../geom/Geometry.js\").default|import(\"../render/Feature.js\").default|undefined} Geometry to render.\n */\nfunction defaultGeometryFunction(feature) {\n return feature.getGeometry();\n}\nexport default Style;\n//# sourceMappingURL=Style.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/layer/BaseVector\n */\nimport Layer from './Layer.js';\nimport RBush from 'rbush';\nimport { assign } from '../obj.js';\nimport { createDefaultStyle, toFunction as toStyleFunction, } from '../style/Style.js';\n/**\n * @template {import(\"../source/Vector.js\").default|import(\"../source/VectorTile.js\").default} VectorSourceType\n * @typedef {Object} Options\n * @property {string} [className='ol-layer'] A CSS class name to set to the layer element.\n * @property {number} [opacity=1] Opacity (0, 1).\n * @property {boolean} [visible=true] Visibility.\n * @property {import(\"../extent.js\").Extent} [extent] The bounding extent for layer rendering. The layer will not be\n * rendered outside of this extent.\n * @property {number} [zIndex] The z-index for layer rendering. At rendering time, the layers\n * will be ordered, first by Z-index and then by position. When `undefined`, a `zIndex` of 0 is assumed\n * for layers that are added to the map's `layers` collection, or `Infinity` when the layer's `setMap()`\n * method was used.\n * @property {number} [minResolution] The minimum resolution (inclusive) at which this layer will be\n * visible.\n * @property {number} [maxResolution] The maximum resolution (exclusive) below which this layer will\n * be visible.\n * @property {number} [minZoom] The minimum view zoom level (exclusive) above which this layer will be\n * visible.\n * @property {number} [maxZoom] The maximum view zoom level (inclusive) at which this layer will\n * be visible.\n * @property {import(\"../render.js\").OrderFunction} [renderOrder] Render order. Function to be used when sorting\n * features before rendering. By default features are drawn in the order that they are created. Use\n * `null` to avoid the sort, but get an undefined draw order.\n * @property {number} [renderBuffer=100] The buffer in pixels around the viewport extent used by the\n * renderer when getting features from the vector source for the rendering or hit-detection.\n * Recommended value: the size of the largest symbol, line width or label.\n * @property {VectorSourceType} [source] Source.\n * @property {import(\"../PluggableMap.js\").default} [map] Sets the layer as overlay on a map. The map will not manage\n * this layer in its layers collection, and the layer will be rendered on top. This is useful for\n * temporary layers. The standard way to add a layer to a map and have it managed by the map is to\n * use {@link import(\"../PluggableMap.js\").default#addLayer map.addLayer()}.\n * @property {boolean} [declutter=false] Declutter images and text. Decluttering is applied to all\n * image and text styles of all Vector and VectorTile layers that have set this to `true`. The priority\n * is defined by the z-index of the layer, the `zIndex` of the style and the render order of features.\n * Higher z-index means higher priority. Within the same z-index, a feature rendered before another has\n * higher priority.\n * @property {import(\"../style/Style.js\").StyleLike|null} [style] Layer style. When set to `null`, only\n * features that have their own style will be rendered. See {@link module:ol/style} for default style\n * which will be used if this is not set.\n * @property {boolean} [updateWhileAnimating=false] When set to `true`, feature batches will\n * be recreated during animations. This means that no vectors will be shown clipped, but the\n * setting will have a performance impact for large amounts of vector data. When set to `false`,\n * batches will be recreated when no animation is active.\n * @property {boolean} [updateWhileInteracting=false] When set to `true`, feature batches will\n * be recreated during interactions. See also `updateWhileAnimating`.\n * @property {Object<string, *>} [properties] Arbitrary observable properties. Can be accessed with `#get()` and `#set()`.\n */\n/**\n * @enum {string}\n * @private\n */\nvar Property = {\n RENDER_ORDER: 'renderOrder',\n};\n/**\n * @classdesc\n * Vector data that is rendered client-side.\n * Note that any property set in the options is set as a {@link module:ol/Object~BaseObject}\n * property on the layer object; for example, setting `title: 'My Title'` in the\n * options means that `title` is observable, and has get/set accessors.\n *\n * @template {import(\"../source/Vector.js\").default|import(\"../source/VectorTile.js\").default} VectorSourceType\n * @extends {Layer<VectorSourceType>}\n * @api\n */\nvar BaseVectorLayer = /** @class */ (function (_super) {\n __extends(BaseVectorLayer, _super);\n /**\n * @param {Options<VectorSourceType>} [opt_options] Options.\n */\n function BaseVectorLayer(opt_options) {\n var _this = this;\n var options = opt_options ? opt_options : {};\n var baseOptions = assign({}, options);\n delete baseOptions.style;\n delete baseOptions.renderBuffer;\n delete baseOptions.updateWhileAnimating;\n delete baseOptions.updateWhileInteracting;\n _this = _super.call(this, baseOptions) || this;\n /**\n * @private\n * @type {boolean}\n */\n _this.declutter_ =\n options.declutter !== undefined ? options.declutter : false;\n /**\n * @type {number}\n * @private\n */\n _this.renderBuffer_ =\n options.renderBuffer !== undefined ? options.renderBuffer : 100;\n /**\n * User provided style.\n * @type {import(\"../style/Style.js\").StyleLike}\n * @private\n */\n _this.style_ = null;\n /**\n * Style function for use within the library.\n * @type {import(\"../style/Style.js\").StyleFunction|undefined}\n * @private\n */\n _this.styleFunction_ = undefined;\n _this.setStyle(options.style);\n /**\n * @type {boolean}\n * @private\n */\n _this.updateWhileAnimating_ =\n options.updateWhileAnimating !== undefined\n ? options.updateWhileAnimating\n : false;\n /**\n * @type {boolean}\n * @private\n */\n _this.updateWhileInteracting_ =\n options.updateWhileInteracting !== undefined\n ? options.updateWhileInteracting\n : false;\n return _this;\n }\n /**\n * @return {boolean} Declutter.\n */\n BaseVectorLayer.prototype.getDeclutter = function () {\n return this.declutter_;\n };\n /**\n * Get the topmost feature that intersects the given pixel on the viewport. Returns a promise\n * that resolves with an array of features. The array will either contain the topmost feature\n * when a hit was detected, or it will be empty.\n *\n * The hit detection algorithm used for this method is optimized for performance, but is less\n * accurate than the one used in {@link import(\"../PluggableMap.js\").default#getFeaturesAtPixel}: Text\n * is not considered, and icons are only represented by their bounding box instead of the exact\n * image.\n *\n * @param {import(\"../pixel.js\").Pixel} pixel Pixel.\n * @return {Promise<Array<import(\"../Feature\").default>>} Promise that resolves with an array of features.\n * @api\n */\n BaseVectorLayer.prototype.getFeatures = function (pixel) {\n return _super.prototype.getFeatures.call(this, pixel);\n };\n /**\n * @return {number|undefined} Render buffer.\n */\n BaseVectorLayer.prototype.getRenderBuffer = function () {\n return this.renderBuffer_;\n };\n /**\n * @return {function(import(\"../Feature.js\").default, import(\"../Feature.js\").default): number|null|undefined} Render\n * order.\n */\n BaseVectorLayer.prototype.getRenderOrder = function () {\n return /** @type {import(\"../render.js\").OrderFunction|null|undefined} */ (this.get(Property.RENDER_ORDER));\n };\n /**\n * Get the style for features. This returns whatever was passed to the `style`\n * option at construction or to the `setStyle` method.\n * @return {import(\"../style/Style.js\").StyleLike|null|undefined} Layer style.\n * @api\n */\n BaseVectorLayer.prototype.getStyle = function () {\n return this.style_;\n };\n /**\n * Get the style function.\n * @return {import(\"../style/Style.js\").StyleFunction|undefined} Layer style function.\n * @api\n */\n BaseVectorLayer.prototype.getStyleFunction = function () {\n return this.styleFunction_;\n };\n /**\n * @return {boolean} Whether the rendered layer should be updated while\n * animating.\n */\n BaseVectorLayer.prototype.getUpdateWhileAnimating = function () {\n return this.updateWhileAnimating_;\n };\n /**\n * @return {boolean} Whether the rendered layer should be updated while\n * interacting.\n */\n BaseVectorLayer.prototype.getUpdateWhileInteracting = function () {\n return this.updateWhileInteracting_;\n };\n /**\n * Render declutter items for this layer\n * @param {import(\"../PluggableMap.js\").FrameState} frameState Frame state.\n */\n BaseVectorLayer.prototype.renderDeclutter = function (frameState) {\n if (!frameState.declutterTree) {\n frameState.declutterTree = new RBush(9);\n }\n /** @type {*} */ (this.getRenderer()).renderDeclutter(frameState);\n };\n /**\n * @param {import(\"../render.js\").OrderFunction|null|undefined} renderOrder\n * Render order.\n */\n BaseVectorLayer.prototype.setRenderOrder = function (renderOrder) {\n this.set(Property.RENDER_ORDER, renderOrder);\n };\n /**\n * Set the style for features. This can be a single style object, an array\n * of styles, or a function that takes a feature and resolution and returns\n * an array of styles. If set to `null`, the layer has no style (a `null` style),\n * so only features that have their own styles will be rendered in the layer. Call\n * `setStyle()` without arguments to reset to the default style. See\n * {@link module:ol/style} for information on the default style.\n * @param {import(\"../style/Style.js\").StyleLike|null} [opt_style] Layer style.\n * @api\n */\n BaseVectorLayer.prototype.setStyle = function (opt_style) {\n this.style_ = opt_style !== undefined ? opt_style : createDefaultStyle;\n this.styleFunction_ =\n opt_style === null ? undefined : toStyleFunction(this.style_);\n this.changed();\n };\n return BaseVectorLayer;\n}(Layer));\nexport default BaseVectorLayer;\n//# sourceMappingURL=BaseVector.js.map","/**\n * @module ol/render/canvas/Instruction\n */\n/**\n * @enum {number}\n */\nvar Instruction = {\n BEGIN_GEOMETRY: 0,\n BEGIN_PATH: 1,\n CIRCLE: 2,\n CLOSE_PATH: 3,\n CUSTOM: 4,\n DRAW_CHARS: 5,\n DRAW_IMAGE: 6,\n END_GEOMETRY: 7,\n FILL: 8,\n MOVE_TO_LINE_TO: 9,\n SET_FILL_STYLE: 10,\n SET_STROKE_STYLE: 11,\n STROKE: 12,\n};\n/**\n * @type {Array<Instruction>}\n */\nexport var fillInstruction = [Instruction.FILL];\n/**\n * @type {Array<Instruction>}\n */\nexport var strokeInstruction = [Instruction.STROKE];\n/**\n * @type {Array<Instruction>}\n */\nexport var beginPathInstruction = [Instruction.BEGIN_PATH];\n/**\n * @type {Array<Instruction>}\n */\nexport var closePathInstruction = [Instruction.CLOSE_PATH];\nexport default Instruction;\n//# sourceMappingURL=Instruction.js.map","/**\n * @module ol/render/VectorContext\n */\n/**\n * @classdesc\n * Context for drawing geometries. A vector context is available on render\n * events and does not need to be constructed directly.\n * @api\n */\nvar VectorContext = /** @class */ (function () {\n function VectorContext() {\n }\n /**\n * Render a geometry with a custom renderer.\n *\n * @param {import(\"../geom/SimpleGeometry.js\").default} geometry Geometry.\n * @param {import(\"../Feature.js\").FeatureLike} feature Feature.\n * @param {Function} renderer Renderer.\n * @param {Function} hitDetectionRenderer Renderer.\n */\n VectorContext.prototype.drawCustom = function (geometry, feature, renderer, hitDetectionRenderer) { };\n /**\n * Render a geometry.\n *\n * @param {import(\"../geom/Geometry.js\").default} geometry The geometry to render.\n */\n VectorContext.prototype.drawGeometry = function (geometry) { };\n /**\n * Set the rendering style.\n *\n * @param {import(\"../style/Style.js\").default} style The rendering style.\n */\n VectorContext.prototype.setStyle = function (style) { };\n /**\n * @param {import(\"../geom/Circle.js\").default} circleGeometry Circle geometry.\n * @param {import(\"../Feature.js\").default} feature Feature.\n */\n VectorContext.prototype.drawCircle = function (circleGeometry, feature) { };\n /**\n * @param {import(\"../Feature.js\").default} feature Feature.\n * @param {import(\"../style/Style.js\").default} style Style.\n */\n VectorContext.prototype.drawFeature = function (feature, style) { };\n /**\n * @param {import(\"../geom/GeometryCollection.js\").default} geometryCollectionGeometry Geometry collection.\n * @param {import(\"../Feature.js\").default} feature Feature.\n */\n VectorContext.prototype.drawGeometryCollection = function (geometryCollectionGeometry, feature) { };\n /**\n * @param {import(\"../geom/LineString.js\").default|import(\"./Feature.js\").default} lineStringGeometry Line string geometry.\n * @param {import(\"../Feature.js\").FeatureLike} feature Feature.\n */\n VectorContext.prototype.drawLineString = function (lineStringGeometry, feature) { };\n /**\n * @param {import(\"../geom/MultiLineString.js\").default|import(\"./Feature.js\").default} multiLineStringGeometry MultiLineString geometry.\n * @param {import(\"../Feature.js\").FeatureLike} feature Feature.\n */\n VectorContext.prototype.drawMultiLineString = function (multiLineStringGeometry, feature) { };\n /**\n * @param {import(\"../geom/MultiPoint.js\").default|import(\"./Feature.js\").default} multiPointGeometry MultiPoint geometry.\n * @param {import(\"../Feature.js\").FeatureLike} feature Feature.\n */\n VectorContext.prototype.drawMultiPoint = function (multiPointGeometry, feature) { };\n /**\n * @param {import(\"../geom/MultiPolygon.js\").default} multiPolygonGeometry MultiPolygon geometry.\n * @param {import(\"../Feature.js\").FeatureLike} feature Feature.\n */\n VectorContext.prototype.drawMultiPolygon = function (multiPolygonGeometry, feature) { };\n /**\n * @param {import(\"../geom/Point.js\").default|import(\"./Feature.js\").default} pointGeometry Point geometry.\n * @param {import(\"../Feature.js\").FeatureLike} feature Feature.\n */\n VectorContext.prototype.drawPoint = function (pointGeometry, feature) { };\n /**\n * @param {import(\"../geom/Polygon.js\").default|import(\"./Feature.js\").default} polygonGeometry Polygon geometry.\n * @param {import(\"../Feature.js\").FeatureLike} feature Feature.\n */\n VectorContext.prototype.drawPolygon = function (polygonGeometry, feature) { };\n /**\n * @param {import(\"../geom/SimpleGeometry.js\").default|import(\"./Feature.js\").default} geometry Geometry.\n * @param {import(\"../Feature.js\").FeatureLike} feature Feature.\n */\n VectorContext.prototype.drawText = function (geometry, feature) { };\n /**\n * @param {import(\"../style/Fill.js\").default} fillStyle Fill style.\n * @param {import(\"../style/Stroke.js\").default} strokeStyle Stroke style.\n */\n VectorContext.prototype.setFillStrokeStyle = function (fillStyle, strokeStyle) { };\n /**\n * @param {import(\"../style/Image.js\").default} imageStyle Image style.\n * @param {import(\"../render/canvas.js\").DeclutterImageWithText} [opt_declutterImageWithText] Shared data for combined decluttering with a text style.\n */\n VectorContext.prototype.setImageStyle = function (imageStyle, opt_declutterImageWithText) { };\n /**\n * @param {import(\"../style/Text.js\").default} textStyle Text style.\n * @param {import(\"../render/canvas.js\").DeclutterImageWithText} [opt_declutterImageWithText] Shared data for combined decluttering with an image style.\n */\n VectorContext.prototype.setTextStyle = function (textStyle, opt_declutterImageWithText) { };\n return VectorContext;\n}());\nexport default VectorContext;\n//# sourceMappingURL=VectorContext.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/render/canvas/Builder\n */\nimport CanvasInstruction from './Instruction.js';\nimport GeometryType from '../../geom/GeometryType.js';\nimport Relationship from '../../extent/Relationship.js';\nimport VectorContext from '../VectorContext.js';\nimport { asColorLike } from '../../colorlike.js';\nimport { buffer, clone, containsCoordinate, coordinateRelationship, } from '../../extent.js';\nimport { defaultFillStyle, defaultLineCap, defaultLineDash, defaultLineDashOffset, defaultLineJoin, defaultLineWidth, defaultMiterLimit, defaultStrokeStyle, } from '../canvas.js';\nimport { equals, reverseSubArray } from '../../array.js';\nimport { inflateCoordinates, inflateCoordinatesArray, inflateMultiCoordinatesArray, } from '../../geom/flat/inflate.js';\nvar CanvasBuilder = /** @class */ (function (_super) {\n __extends(CanvasBuilder, _super);\n /**\n * @param {number} tolerance Tolerance.\n * @param {import(\"../../extent.js\").Extent} maxExtent Maximum extent.\n * @param {number} resolution Resolution.\n * @param {number} pixelRatio Pixel ratio.\n */\n function CanvasBuilder(tolerance, maxExtent, resolution, pixelRatio) {\n var _this = _super.call(this) || this;\n /**\n * @protected\n * @type {number}\n */\n _this.tolerance = tolerance;\n /**\n * @protected\n * @const\n * @type {import(\"../../extent.js\").Extent}\n */\n _this.maxExtent = maxExtent;\n /**\n * @protected\n * @type {number}\n */\n _this.pixelRatio = pixelRatio;\n /**\n * @protected\n * @type {number}\n */\n _this.maxLineWidth = 0;\n /**\n * @protected\n * @const\n * @type {number}\n */\n _this.resolution = resolution;\n /**\n * @private\n * @type {Array<*>}\n */\n _this.beginGeometryInstruction1_ = null;\n /**\n * @private\n * @type {Array<*>}\n */\n _this.beginGeometryInstruction2_ = null;\n /**\n * @private\n * @type {import(\"../../extent.js\").Extent}\n */\n _this.bufferedMaxExtent_ = null;\n /**\n * @protected\n * @type {Array<*>}\n */\n _this.instructions = [];\n /**\n * @protected\n * @type {Array<number>}\n */\n _this.coordinates = [];\n /**\n * @private\n * @type {import(\"../../coordinate.js\").Coordinate}\n */\n _this.tmpCoordinate_ = [];\n /**\n * @protected\n * @type {Array<*>}\n */\n _this.hitDetectionInstructions = [];\n /**\n * @protected\n * @type {import(\"../canvas.js\").FillStrokeState}\n */\n _this.state = /** @type {import(\"../canvas.js\").FillStrokeState} */ ({});\n return _this;\n }\n /**\n * @protected\n * @param {Array<number>} dashArray Dash array.\n * @return {Array<number>} Dash array with pixel ratio applied\n */\n CanvasBuilder.prototype.applyPixelRatio = function (dashArray) {\n var pixelRatio = this.pixelRatio;\n return pixelRatio == 1\n ? dashArray\n : dashArray.map(function (dash) {\n return dash * pixelRatio;\n });\n };\n /**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} stride Stride.\n * @protected\n * @return {number} My end\n */\n CanvasBuilder.prototype.appendFlatPointCoordinates = function (flatCoordinates, stride) {\n var extent = this.getBufferedMaxExtent();\n var tmpCoord = this.tmpCoordinate_;\n var coordinates = this.coordinates;\n var myEnd = coordinates.length;\n for (var i = 0, ii = flatCoordinates.length; i < ii; i += stride) {\n tmpCoord[0] = flatCoordinates[i];\n tmpCoord[1] = flatCoordinates[i + 1];\n if (containsCoordinate(extent, tmpCoord)) {\n coordinates[myEnd++] = tmpCoord[0];\n coordinates[myEnd++] = tmpCoord[1];\n }\n }\n return myEnd;\n };\n /**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {number} end End.\n * @param {number} stride Stride.\n * @param {boolean} closed Last input coordinate equals first.\n * @param {boolean} skipFirst Skip first coordinate.\n * @protected\n * @return {number} My end.\n */\n CanvasBuilder.prototype.appendFlatLineCoordinates = function (flatCoordinates, offset, end, stride, closed, skipFirst) {\n var coordinates = this.coordinates;\n var myEnd = coordinates.length;\n var extent = this.getBufferedMaxExtent();\n if (skipFirst) {\n offset += stride;\n }\n var lastXCoord = flatCoordinates[offset];\n var lastYCoord = flatCoordinates[offset + 1];\n var nextCoord = this.tmpCoordinate_;\n var skipped = true;\n var i, lastRel, nextRel;\n for (i = offset + stride; i < end; i += stride) {\n nextCoord[0] = flatCoordinates[i];\n nextCoord[1] = flatCoordinates[i + 1];\n nextRel = coordinateRelationship(extent, nextCoord);\n if (nextRel !== lastRel) {\n if (skipped) {\n coordinates[myEnd++] = lastXCoord;\n coordinates[myEnd++] = lastYCoord;\n skipped = false;\n }\n coordinates[myEnd++] = nextCoord[0];\n coordinates[myEnd++] = nextCoord[1];\n }\n else if (nextRel === Relationship.INTERSECTING) {\n coordinates[myEnd++] = nextCoord[0];\n coordinates[myEnd++] = nextCoord[1];\n skipped = false;\n }\n else {\n skipped = true;\n }\n lastXCoord = nextCoord[0];\n lastYCoord = nextCoord[1];\n lastRel = nextRel;\n }\n // Last coordinate equals first or only one point to append:\n if ((closed && skipped) || i === offset + stride) {\n coordinates[myEnd++] = lastXCoord;\n coordinates[myEnd++] = lastYCoord;\n }\n return myEnd;\n };\n /**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {Array<number>} ends Ends.\n * @param {number} stride Stride.\n * @param {Array<number>} builderEnds Builder ends.\n * @return {number} Offset.\n */\n CanvasBuilder.prototype.drawCustomCoordinates_ = function (flatCoordinates, offset, ends, stride, builderEnds) {\n for (var i = 0, ii = ends.length; i < ii; ++i) {\n var end = ends[i];\n var builderEnd = this.appendFlatLineCoordinates(flatCoordinates, offset, end, stride, false, false);\n builderEnds.push(builderEnd);\n offset = end;\n }\n return offset;\n };\n /**\n * @param {import(\"../../geom/SimpleGeometry.js\").default} geometry Geometry.\n * @param {import(\"../../Feature.js\").FeatureLike} feature Feature.\n * @param {Function} renderer Renderer.\n * @param {Function} hitDetectionRenderer Renderer.\n */\n CanvasBuilder.prototype.drawCustom = function (geometry, feature, renderer, hitDetectionRenderer) {\n this.beginGeometry(geometry, feature);\n var type = geometry.getType();\n var stride = geometry.getStride();\n var builderBegin = this.coordinates.length;\n var flatCoordinates, builderEnd, builderEnds, builderEndss;\n var offset;\n switch (type) {\n case GeometryType.MULTI_POLYGON:\n flatCoordinates =\n /** @type {import(\"../../geom/MultiPolygon.js\").default} */ (geometry).getOrientedFlatCoordinates();\n builderEndss = [];\n var endss = \n /** @type {import(\"../../geom/MultiPolygon.js\").default} */ (geometry).getEndss();\n offset = 0;\n for (var i = 0, ii = endss.length; i < ii; ++i) {\n var myEnds = [];\n offset = this.drawCustomCoordinates_(flatCoordinates, offset, endss[i], stride, myEnds);\n builderEndss.push(myEnds);\n }\n this.instructions.push([\n CanvasInstruction.CUSTOM,\n builderBegin,\n builderEndss,\n geometry,\n renderer,\n inflateMultiCoordinatesArray,\n ]);\n this.hitDetectionInstructions.push([\n CanvasInstruction.CUSTOM,\n builderBegin,\n builderEndss,\n geometry,\n hitDetectionRenderer || renderer,\n inflateMultiCoordinatesArray,\n ]);\n break;\n case GeometryType.POLYGON:\n case GeometryType.MULTI_LINE_STRING:\n builderEnds = [];\n flatCoordinates =\n type == GeometryType.POLYGON\n ? /** @type {import(\"../../geom/Polygon.js\").default} */ (geometry).getOrientedFlatCoordinates()\n : geometry.getFlatCoordinates();\n offset = this.drawCustomCoordinates_(flatCoordinates, 0, \n /** @type {import(\"../../geom/Polygon.js\").default|import(\"../../geom/MultiLineString.js\").default} */ (geometry).getEnds(), stride, builderEnds);\n this.instructions.push([\n CanvasInstruction.CUSTOM,\n builderBegin,\n builderEnds,\n geometry,\n renderer,\n inflateCoordinatesArray,\n ]);\n this.hitDetectionInstructions.push([\n CanvasInstruction.CUSTOM,\n builderBegin,\n builderEnds,\n geometry,\n hitDetectionRenderer || renderer,\n inflateCoordinatesArray,\n ]);\n break;\n case GeometryType.LINE_STRING:\n case GeometryType.CIRCLE:\n flatCoordinates = geometry.getFlatCoordinates();\n builderEnd = this.appendFlatLineCoordinates(flatCoordinates, 0, flatCoordinates.length, stride, false, false);\n this.instructions.push([\n CanvasInstruction.CUSTOM,\n builderBegin,\n builderEnd,\n geometry,\n renderer,\n inflateCoordinates,\n ]);\n this.hitDetectionInstructions.push([\n CanvasInstruction.CUSTOM,\n builderBegin,\n builderEnd,\n geometry,\n hitDetectionRenderer || renderer,\n inflateCoordinates,\n ]);\n break;\n case GeometryType.MULTI_POINT:\n flatCoordinates = geometry.getFlatCoordinates();\n builderEnd = this.appendFlatPointCoordinates(flatCoordinates, stride);\n if (builderEnd > builderBegin) {\n this.instructions.push([\n CanvasInstruction.CUSTOM,\n builderBegin,\n builderEnd,\n geometry,\n renderer,\n inflateCoordinates,\n ]);\n this.hitDetectionInstructions.push([\n CanvasInstruction.CUSTOM,\n builderBegin,\n builderEnd,\n geometry,\n hitDetectionRenderer || renderer,\n inflateCoordinates,\n ]);\n }\n break;\n case GeometryType.POINT:\n flatCoordinates = geometry.getFlatCoordinates();\n this.coordinates.push(flatCoordinates[0], flatCoordinates[1]);\n builderEnd = this.coordinates.length;\n this.instructions.push([\n CanvasInstruction.CUSTOM,\n builderBegin,\n builderEnd,\n geometry,\n renderer,\n ]);\n this.hitDetectionInstructions.push([\n CanvasInstruction.CUSTOM,\n builderBegin,\n builderEnd,\n geometry,\n hitDetectionRenderer || renderer,\n ]);\n break;\n default:\n }\n this.endGeometry(feature);\n };\n /**\n * @protected\n * @param {import(\"../../geom/Geometry\").default|import(\"../Feature.js\").default} geometry The geometry.\n * @param {import(\"../../Feature.js\").FeatureLike} feature Feature.\n */\n CanvasBuilder.prototype.beginGeometry = function (geometry, feature) {\n this.beginGeometryInstruction1_ = [\n CanvasInstruction.BEGIN_GEOMETRY,\n feature,\n 0,\n geometry,\n ];\n this.instructions.push(this.beginGeometryInstruction1_);\n this.beginGeometryInstruction2_ = [\n CanvasInstruction.BEGIN_GEOMETRY,\n feature,\n 0,\n geometry,\n ];\n this.hitDetectionInstructions.push(this.beginGeometryInstruction2_);\n };\n /**\n * @return {import(\"../canvas.js\").SerializableInstructions} the serializable instructions.\n */\n CanvasBuilder.prototype.finish = function () {\n return {\n instructions: this.instructions,\n hitDetectionInstructions: this.hitDetectionInstructions,\n coordinates: this.coordinates,\n };\n };\n /**\n * Reverse the hit detection instructions.\n */\n CanvasBuilder.prototype.reverseHitDetectionInstructions = function () {\n var hitDetectionInstructions = this.hitDetectionInstructions;\n // step 1 - reverse array\n hitDetectionInstructions.reverse();\n // step 2 - reverse instructions within geometry blocks\n var i;\n var n = hitDetectionInstructions.length;\n var instruction;\n var type;\n var begin = -1;\n for (i = 0; i < n; ++i) {\n instruction = hitDetectionInstructions[i];\n type = /** @type {import(\"./Instruction.js\").default} */ (instruction[0]);\n if (type == CanvasInstruction.END_GEOMETRY) {\n begin = i;\n }\n else if (type == CanvasInstruction.BEGIN_GEOMETRY) {\n instruction[2] = i;\n reverseSubArray(this.hitDetectionInstructions, begin, i);\n begin = -1;\n }\n }\n };\n /**\n * @param {import(\"../../style/Fill.js\").default} fillStyle Fill style.\n * @param {import(\"../../style/Stroke.js\").default} strokeStyle Stroke style.\n */\n CanvasBuilder.prototype.setFillStrokeStyle = function (fillStyle, strokeStyle) {\n var state = this.state;\n if (fillStyle) {\n var fillStyleColor = fillStyle.getColor();\n state.fillStyle = asColorLike(fillStyleColor ? fillStyleColor : defaultFillStyle);\n }\n else {\n state.fillStyle = undefined;\n }\n if (strokeStyle) {\n var strokeStyleColor = strokeStyle.getColor();\n state.strokeStyle = asColorLike(strokeStyleColor ? strokeStyleColor : defaultStrokeStyle);\n var strokeStyleLineCap = strokeStyle.getLineCap();\n state.lineCap =\n strokeStyleLineCap !== undefined ? strokeStyleLineCap : defaultLineCap;\n var strokeStyleLineDash = strokeStyle.getLineDash();\n state.lineDash = strokeStyleLineDash\n ? strokeStyleLineDash.slice()\n : defaultLineDash;\n var strokeStyleLineDashOffset = strokeStyle.getLineDashOffset();\n state.lineDashOffset = strokeStyleLineDashOffset\n ? strokeStyleLineDashOffset\n : defaultLineDashOffset;\n var strokeStyleLineJoin = strokeStyle.getLineJoin();\n state.lineJoin =\n strokeStyleLineJoin !== undefined\n ? strokeStyleLineJoin\n : defaultLineJoin;\n var strokeStyleWidth = strokeStyle.getWidth();\n state.lineWidth =\n strokeStyleWidth !== undefined ? strokeStyleWidth : defaultLineWidth;\n var strokeStyleMiterLimit = strokeStyle.getMiterLimit();\n state.miterLimit =\n strokeStyleMiterLimit !== undefined\n ? strokeStyleMiterLimit\n : defaultMiterLimit;\n if (state.lineWidth > this.maxLineWidth) {\n this.maxLineWidth = state.lineWidth;\n // invalidate the buffered max extent cache\n this.bufferedMaxExtent_ = null;\n }\n }\n else {\n state.strokeStyle = undefined;\n state.lineCap = undefined;\n state.lineDash = null;\n state.lineDashOffset = undefined;\n state.lineJoin = undefined;\n state.lineWidth = undefined;\n state.miterLimit = undefined;\n }\n };\n /**\n * @param {import(\"../canvas.js\").FillStrokeState} state State.\n * @return {Array<*>} Fill instruction.\n */\n CanvasBuilder.prototype.createFill = function (state) {\n var fillStyle = state.fillStyle;\n /** @type {Array<*>} */\n var fillInstruction = [CanvasInstruction.SET_FILL_STYLE, fillStyle];\n if (typeof fillStyle !== 'string') {\n // Fill is a pattern or gradient - align it!\n fillInstruction.push(true);\n }\n return fillInstruction;\n };\n /**\n * @param {import(\"../canvas.js\").FillStrokeState} state State.\n */\n CanvasBuilder.prototype.applyStroke = function (state) {\n this.instructions.push(this.createStroke(state));\n };\n /**\n * @param {import(\"../canvas.js\").FillStrokeState} state State.\n * @return {Array<*>} Stroke instruction.\n */\n CanvasBuilder.prototype.createStroke = function (state) {\n return [\n CanvasInstruction.SET_STROKE_STYLE,\n state.strokeStyle,\n state.lineWidth * this.pixelRatio,\n state.lineCap,\n state.lineJoin,\n state.miterLimit,\n this.applyPixelRatio(state.lineDash),\n state.lineDashOffset * this.pixelRatio,\n ];\n };\n /**\n * @param {import(\"../canvas.js\").FillStrokeState} state State.\n * @param {function(this:CanvasBuilder, import(\"../canvas.js\").FillStrokeState):Array<*>} createFill Create fill.\n */\n CanvasBuilder.prototype.updateFillStyle = function (state, createFill) {\n var fillStyle = state.fillStyle;\n if (typeof fillStyle !== 'string' || state.currentFillStyle != fillStyle) {\n if (fillStyle !== undefined) {\n this.instructions.push(createFill.call(this, state));\n }\n state.currentFillStyle = fillStyle;\n }\n };\n /**\n * @param {import(\"../canvas.js\").FillStrokeState} state State.\n * @param {function(this:CanvasBuilder, import(\"../canvas.js\").FillStrokeState): void} applyStroke Apply stroke.\n */\n CanvasBuilder.prototype.updateStrokeStyle = function (state, applyStroke) {\n var strokeStyle = state.strokeStyle;\n var lineCap = state.lineCap;\n var lineDash = state.lineDash;\n var lineDashOffset = state.lineDashOffset;\n var lineJoin = state.lineJoin;\n var lineWidth = state.lineWidth;\n var miterLimit = state.miterLimit;\n if (state.currentStrokeStyle != strokeStyle ||\n state.currentLineCap != lineCap ||\n (lineDash != state.currentLineDash &&\n !equals(state.currentLineDash, lineDash)) ||\n state.currentLineDashOffset != lineDashOffset ||\n state.currentLineJoin != lineJoin ||\n state.currentLineWidth != lineWidth ||\n state.currentMiterLimit != miterLimit) {\n if (strokeStyle !== undefined) {\n applyStroke.call(this, state);\n }\n state.currentStrokeStyle = strokeStyle;\n state.currentLineCap = lineCap;\n state.currentLineDash = lineDash;\n state.currentLineDashOffset = lineDashOffset;\n state.currentLineJoin = lineJoin;\n state.currentLineWidth = lineWidth;\n state.currentMiterLimit = miterLimit;\n }\n };\n /**\n * @param {import(\"../../Feature.js\").FeatureLike} feature Feature.\n */\n CanvasBuilder.prototype.endGeometry = function (feature) {\n this.beginGeometryInstruction1_[2] = this.instructions.length;\n this.beginGeometryInstruction1_ = null;\n this.beginGeometryInstruction2_[2] = this.hitDetectionInstructions.length;\n this.beginGeometryInstruction2_ = null;\n var endGeometryInstruction = [CanvasInstruction.END_GEOMETRY, feature];\n this.instructions.push(endGeometryInstruction);\n this.hitDetectionInstructions.push(endGeometryInstruction);\n };\n /**\n * Get the buffered rendering extent. Rendering will be clipped to the extent\n * provided to the constructor. To account for symbolizers that may intersect\n * this extent, we calculate a buffered extent (e.g. based on stroke width).\n * @return {import(\"../../extent.js\").Extent} The buffered rendering extent.\n * @protected\n */\n CanvasBuilder.prototype.getBufferedMaxExtent = function () {\n if (!this.bufferedMaxExtent_) {\n this.bufferedMaxExtent_ = clone(this.maxExtent);\n if (this.maxLineWidth > 0) {\n var width = (this.resolution * (this.maxLineWidth + 1)) / 2;\n buffer(this.bufferedMaxExtent_, width, this.bufferedMaxExtent_);\n }\n }\n return this.bufferedMaxExtent_;\n };\n return CanvasBuilder;\n}(VectorContext));\nexport default CanvasBuilder;\n//# sourceMappingURL=Builder.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/render/canvas/ImageBuilder\n */\nimport CanvasBuilder from './Builder.js';\nimport CanvasInstruction from './Instruction.js';\nvar CanvasImageBuilder = /** @class */ (function (_super) {\n __extends(CanvasImageBuilder, _super);\n /**\n * @param {number} tolerance Tolerance.\n * @param {import(\"../../extent.js\").Extent} maxExtent Maximum extent.\n * @param {number} resolution Resolution.\n * @param {number} pixelRatio Pixel ratio.\n */\n function CanvasImageBuilder(tolerance, maxExtent, resolution, pixelRatio) {\n var _this = _super.call(this, tolerance, maxExtent, resolution, pixelRatio) || this;\n /**\n * @private\n * @type {HTMLCanvasElement|HTMLVideoElement|HTMLImageElement}\n */\n _this.hitDetectionImage_ = null;\n /**\n * @private\n * @type {HTMLCanvasElement|HTMLVideoElement|HTMLImageElement}\n */\n _this.image_ = null;\n /**\n * @private\n * @type {number|undefined}\n */\n _this.imagePixelRatio_ = undefined;\n /**\n * @private\n * @type {number|undefined}\n */\n _this.anchorX_ = undefined;\n /**\n * @private\n * @type {number|undefined}\n */\n _this.anchorY_ = undefined;\n /**\n * @private\n * @type {number|undefined}\n */\n _this.height_ = undefined;\n /**\n * @private\n * @type {number|undefined}\n */\n _this.opacity_ = undefined;\n /**\n * @private\n * @type {number|undefined}\n */\n _this.originX_ = undefined;\n /**\n * @private\n * @type {number|undefined}\n */\n _this.originY_ = undefined;\n /**\n * @private\n * @type {boolean|undefined}\n */\n _this.rotateWithView_ = undefined;\n /**\n * @private\n * @type {number|undefined}\n */\n _this.rotation_ = undefined;\n /**\n * @private\n * @type {import(\"../../size.js\").Size|undefined}\n */\n _this.scale_ = undefined;\n /**\n * @private\n * @type {number|undefined}\n */\n _this.width_ = undefined;\n /**\n * Data shared with a text builder for combined decluttering.\n * @private\n * @type {import(\"../canvas.js\").DeclutterImageWithText}\n */\n _this.declutterImageWithText_ = undefined;\n return _this;\n }\n /**\n * @param {import(\"../../geom/Point.js\").default|import(\"../Feature.js\").default} pointGeometry Point geometry.\n * @param {import(\"../../Feature.js\").FeatureLike} feature Feature.\n */\n CanvasImageBuilder.prototype.drawPoint = function (pointGeometry, feature) {\n if (!this.image_) {\n return;\n }\n this.beginGeometry(pointGeometry, feature);\n var flatCoordinates = pointGeometry.getFlatCoordinates();\n var stride = pointGeometry.getStride();\n var myBegin = this.coordinates.length;\n var myEnd = this.appendFlatPointCoordinates(flatCoordinates, stride);\n this.instructions.push([\n CanvasInstruction.DRAW_IMAGE,\n myBegin,\n myEnd,\n this.image_,\n // Remaining arguments to DRAW_IMAGE are in alphabetical order\n this.anchorX_ * this.imagePixelRatio_,\n this.anchorY_ * this.imagePixelRatio_,\n Math.ceil(this.height_ * this.imagePixelRatio_),\n this.opacity_,\n this.originX_,\n this.originY_,\n this.rotateWithView_,\n this.rotation_,\n [\n (this.scale_[0] * this.pixelRatio) / this.imagePixelRatio_,\n (this.scale_[1] * this.pixelRatio) / this.imagePixelRatio_,\n ],\n Math.ceil(this.width_ * this.imagePixelRatio_),\n this.declutterImageWithText_,\n ]);\n this.hitDetectionInstructions.push([\n CanvasInstruction.DRAW_IMAGE,\n myBegin,\n myEnd,\n this.hitDetectionImage_,\n // Remaining arguments to DRAW_IMAGE are in alphabetical order\n this.anchorX_,\n this.anchorY_,\n this.height_,\n this.opacity_,\n this.originX_,\n this.originY_,\n this.rotateWithView_,\n this.rotation_,\n this.scale_,\n this.width_,\n this.declutterImageWithText_,\n ]);\n this.endGeometry(feature);\n };\n /**\n * @param {import(\"../../geom/MultiPoint.js\").default|import(\"../Feature.js\").default} multiPointGeometry MultiPoint geometry.\n * @param {import(\"../../Feature.js\").FeatureLike} feature Feature.\n */\n CanvasImageBuilder.prototype.drawMultiPoint = function (multiPointGeometry, feature) {\n if (!this.image_) {\n return;\n }\n this.beginGeometry(multiPointGeometry, feature);\n var flatCoordinates = multiPointGeometry.getFlatCoordinates();\n var stride = multiPointGeometry.getStride();\n var myBegin = this.coordinates.length;\n var myEnd = this.appendFlatPointCoordinates(flatCoordinates, stride);\n this.instructions.push([\n CanvasInstruction.DRAW_IMAGE,\n myBegin,\n myEnd,\n this.image_,\n // Remaining arguments to DRAW_IMAGE are in alphabetical order\n this.anchorX_ * this.imagePixelRatio_,\n this.anchorY_ * this.imagePixelRatio_,\n Math.ceil(this.height_ * this.imagePixelRatio_),\n this.opacity_,\n this.originX_,\n this.originY_,\n this.rotateWithView_,\n this.rotation_,\n [\n (this.scale_[0] * this.pixelRatio) / this.imagePixelRatio_,\n (this.scale_[1] * this.pixelRatio) / this.imagePixelRatio_,\n ],\n Math.ceil(this.width_ * this.imagePixelRatio_),\n this.declutterImageWithText_,\n ]);\n this.hitDetectionInstructions.push([\n CanvasInstruction.DRAW_IMAGE,\n myBegin,\n myEnd,\n this.hitDetectionImage_,\n // Remaining arguments to DRAW_IMAGE are in alphabetical order\n this.anchorX_,\n this.anchorY_,\n this.height_,\n this.opacity_,\n this.originX_,\n this.originY_,\n this.rotateWithView_,\n this.rotation_,\n this.scale_,\n this.width_,\n this.declutterImageWithText_,\n ]);\n this.endGeometry(feature);\n };\n /**\n * @return {import(\"../canvas.js\").SerializableInstructions} the serializable instructions.\n */\n CanvasImageBuilder.prototype.finish = function () {\n this.reverseHitDetectionInstructions();\n // FIXME this doesn't really protect us against further calls to draw*Geometry\n this.anchorX_ = undefined;\n this.anchorY_ = undefined;\n this.hitDetectionImage_ = null;\n this.image_ = null;\n this.imagePixelRatio_ = undefined;\n this.height_ = undefined;\n this.scale_ = undefined;\n this.opacity_ = undefined;\n this.originX_ = undefined;\n this.originY_ = undefined;\n this.rotateWithView_ = undefined;\n this.rotation_ = undefined;\n this.width_ = undefined;\n return _super.prototype.finish.call(this);\n };\n /**\n * @param {import(\"../../style/Image.js\").default} imageStyle Image style.\n * @param {Object} [opt_sharedData] Shared data.\n */\n CanvasImageBuilder.prototype.setImageStyle = function (imageStyle, opt_sharedData) {\n var anchor = imageStyle.getAnchor();\n var size = imageStyle.getSize();\n var hitDetectionImage = imageStyle.getHitDetectionImage();\n var image = imageStyle.getImage(this.pixelRatio);\n var origin = imageStyle.getOrigin();\n this.imagePixelRatio_ = imageStyle.getPixelRatio(this.pixelRatio);\n this.anchorX_ = anchor[0];\n this.anchorY_ = anchor[1];\n this.hitDetectionImage_ = hitDetectionImage;\n this.image_ = image;\n this.height_ = size[1];\n this.opacity_ = imageStyle.getOpacity();\n this.originX_ = origin[0] * this.imagePixelRatio_;\n this.originY_ = origin[1] * this.imagePixelRatio_;\n this.rotateWithView_ = imageStyle.getRotateWithView();\n this.rotation_ = imageStyle.getRotation();\n this.scale_ = imageStyle.getScaleArray();\n this.width_ = size[0];\n this.declutterImageWithText_ = opt_sharedData;\n };\n return CanvasImageBuilder;\n}(CanvasBuilder));\nexport default CanvasImageBuilder;\n//# sourceMappingURL=ImageBuilder.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/render/canvas/LineStringBuilder\n */\nimport CanvasBuilder from './Builder.js';\nimport CanvasInstruction, { beginPathInstruction, strokeInstruction, } from './Instruction.js';\nimport { defaultLineDash, defaultLineDashOffset } from '../canvas.js';\nvar CanvasLineStringBuilder = /** @class */ (function (_super) {\n __extends(CanvasLineStringBuilder, _super);\n /**\n * @param {number} tolerance Tolerance.\n * @param {import(\"../../extent.js\").Extent} maxExtent Maximum extent.\n * @param {number} resolution Resolution.\n * @param {number} pixelRatio Pixel ratio.\n */\n function CanvasLineStringBuilder(tolerance, maxExtent, resolution, pixelRatio) {\n return _super.call(this, tolerance, maxExtent, resolution, pixelRatio) || this;\n }\n /**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {number} end End.\n * @param {number} stride Stride.\n * @private\n * @return {number} end.\n */\n CanvasLineStringBuilder.prototype.drawFlatCoordinates_ = function (flatCoordinates, offset, end, stride) {\n var myBegin = this.coordinates.length;\n var myEnd = this.appendFlatLineCoordinates(flatCoordinates, offset, end, stride, false, false);\n var moveToLineToInstruction = [\n CanvasInstruction.MOVE_TO_LINE_TO,\n myBegin,\n myEnd,\n ];\n this.instructions.push(moveToLineToInstruction);\n this.hitDetectionInstructions.push(moveToLineToInstruction);\n return end;\n };\n /**\n * @param {import(\"../../geom/LineString.js\").default|import(\"../Feature.js\").default} lineStringGeometry Line string geometry.\n * @param {import(\"../../Feature.js\").FeatureLike} feature Feature.\n */\n CanvasLineStringBuilder.prototype.drawLineString = function (lineStringGeometry, feature) {\n var state = this.state;\n var strokeStyle = state.strokeStyle;\n var lineWidth = state.lineWidth;\n if (strokeStyle === undefined || lineWidth === undefined) {\n return;\n }\n this.updateStrokeStyle(state, this.applyStroke);\n this.beginGeometry(lineStringGeometry, feature);\n this.hitDetectionInstructions.push([\n CanvasInstruction.SET_STROKE_STYLE,\n state.strokeStyle,\n state.lineWidth,\n state.lineCap,\n state.lineJoin,\n state.miterLimit,\n defaultLineDash,\n defaultLineDashOffset,\n ], beginPathInstruction);\n var flatCoordinates = lineStringGeometry.getFlatCoordinates();\n var stride = lineStringGeometry.getStride();\n this.drawFlatCoordinates_(flatCoordinates, 0, flatCoordinates.length, stride);\n this.hitDetectionInstructions.push(strokeInstruction);\n this.endGeometry(feature);\n };\n /**\n * @param {import(\"../../geom/MultiLineString.js\").default|import(\"../Feature.js\").default} multiLineStringGeometry MultiLineString geometry.\n * @param {import(\"../../Feature.js\").FeatureLike} feature Feature.\n */\n CanvasLineStringBuilder.prototype.drawMultiLineString = function (multiLineStringGeometry, feature) {\n var state = this.state;\n var strokeStyle = state.strokeStyle;\n var lineWidth = state.lineWidth;\n if (strokeStyle === undefined || lineWidth === undefined) {\n return;\n }\n this.updateStrokeStyle(state, this.applyStroke);\n this.beginGeometry(multiLineStringGeometry, feature);\n this.hitDetectionInstructions.push([\n CanvasInstruction.SET_STROKE_STYLE,\n state.strokeStyle,\n state.lineWidth,\n state.lineCap,\n state.lineJoin,\n state.miterLimit,\n state.lineDash,\n state.lineDashOffset,\n ], beginPathInstruction);\n var ends = multiLineStringGeometry.getEnds();\n var flatCoordinates = multiLineStringGeometry.getFlatCoordinates();\n var stride = multiLineStringGeometry.getStride();\n var offset = 0;\n for (var i = 0, ii = ends.length; i < ii; ++i) {\n offset = this.drawFlatCoordinates_(flatCoordinates, offset, \n /** @type {number} */ (ends[i]), stride);\n }\n this.hitDetectionInstructions.push(strokeInstruction);\n this.endGeometry(feature);\n };\n /**\n * @return {import(\"../canvas.js\").SerializableInstructions} the serializable instructions.\n */\n CanvasLineStringBuilder.prototype.finish = function () {\n var state = this.state;\n if (state.lastStroke != undefined &&\n state.lastStroke != this.coordinates.length) {\n this.instructions.push(strokeInstruction);\n }\n this.reverseHitDetectionInstructions();\n this.state = null;\n return _super.prototype.finish.call(this);\n };\n /**\n * @param {import(\"../canvas.js\").FillStrokeState} state State.\n */\n CanvasLineStringBuilder.prototype.applyStroke = function (state) {\n if (state.lastStroke != undefined &&\n state.lastStroke != this.coordinates.length) {\n this.instructions.push(strokeInstruction);\n state.lastStroke = this.coordinates.length;\n }\n state.lastStroke = 0;\n _super.prototype.applyStroke.call(this, state);\n this.instructions.push(beginPathInstruction);\n };\n return CanvasLineStringBuilder;\n}(CanvasBuilder));\nexport default CanvasLineStringBuilder;\n//# sourceMappingURL=LineStringBuilder.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/render/canvas/PolygonBuilder\n */\nimport CanvasBuilder from './Builder.js';\nimport CanvasInstruction, { beginPathInstruction, closePathInstruction, fillInstruction, strokeInstruction, } from './Instruction.js';\nimport { defaultFillStyle } from '../canvas.js';\nimport { snap } from '../../geom/flat/simplify.js';\nvar CanvasPolygonBuilder = /** @class */ (function (_super) {\n __extends(CanvasPolygonBuilder, _super);\n /**\n * @param {number} tolerance Tolerance.\n * @param {import(\"../../extent.js\").Extent} maxExtent Maximum extent.\n * @param {number} resolution Resolution.\n * @param {number} pixelRatio Pixel ratio.\n */\n function CanvasPolygonBuilder(tolerance, maxExtent, resolution, pixelRatio) {\n return _super.call(this, tolerance, maxExtent, resolution, pixelRatio) || this;\n }\n /**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {Array<number>} ends Ends.\n * @param {number} stride Stride.\n * @private\n * @return {number} End.\n */\n CanvasPolygonBuilder.prototype.drawFlatCoordinatess_ = function (flatCoordinates, offset, ends, stride) {\n var state = this.state;\n var fill = state.fillStyle !== undefined;\n var stroke = state.strokeStyle !== undefined;\n var numEnds = ends.length;\n this.instructions.push(beginPathInstruction);\n this.hitDetectionInstructions.push(beginPathInstruction);\n for (var i = 0; i < numEnds; ++i) {\n var end = ends[i];\n var myBegin = this.coordinates.length;\n var myEnd = this.appendFlatLineCoordinates(flatCoordinates, offset, end, stride, true, !stroke);\n var moveToLineToInstruction = [\n CanvasInstruction.MOVE_TO_LINE_TO,\n myBegin,\n myEnd,\n ];\n this.instructions.push(moveToLineToInstruction);\n this.hitDetectionInstructions.push(moveToLineToInstruction);\n if (stroke) {\n // Performance optimization: only call closePath() when we have a stroke.\n // Otherwise the ring is closed already (see appendFlatLineCoordinates above).\n this.instructions.push(closePathInstruction);\n this.hitDetectionInstructions.push(closePathInstruction);\n }\n offset = end;\n }\n if (fill) {\n this.instructions.push(fillInstruction);\n this.hitDetectionInstructions.push(fillInstruction);\n }\n if (stroke) {\n this.instructions.push(strokeInstruction);\n this.hitDetectionInstructions.push(strokeInstruction);\n }\n return offset;\n };\n /**\n * @param {import(\"../../geom/Circle.js\").default} circleGeometry Circle geometry.\n * @param {import(\"../../Feature.js\").default} feature Feature.\n */\n CanvasPolygonBuilder.prototype.drawCircle = function (circleGeometry, feature) {\n var state = this.state;\n var fillStyle = state.fillStyle;\n var strokeStyle = state.strokeStyle;\n if (fillStyle === undefined && strokeStyle === undefined) {\n return;\n }\n this.setFillStrokeStyles_();\n this.beginGeometry(circleGeometry, feature);\n if (state.fillStyle !== undefined) {\n this.hitDetectionInstructions.push([\n CanvasInstruction.SET_FILL_STYLE,\n defaultFillStyle,\n ]);\n }\n if (state.strokeStyle !== undefined) {\n this.hitDetectionInstructions.push([\n CanvasInstruction.SET_STROKE_STYLE,\n state.strokeStyle,\n state.lineWidth,\n state.lineCap,\n state.lineJoin,\n state.miterLimit,\n state.lineDash,\n state.lineDashOffset,\n ]);\n }\n var flatCoordinates = circleGeometry.getFlatCoordinates();\n var stride = circleGeometry.getStride();\n var myBegin = this.coordinates.length;\n this.appendFlatLineCoordinates(flatCoordinates, 0, flatCoordinates.length, stride, false, false);\n var circleInstruction = [CanvasInstruction.CIRCLE, myBegin];\n this.instructions.push(beginPathInstruction, circleInstruction);\n this.hitDetectionInstructions.push(beginPathInstruction, circleInstruction);\n if (state.fillStyle !== undefined) {\n this.instructions.push(fillInstruction);\n this.hitDetectionInstructions.push(fillInstruction);\n }\n if (state.strokeStyle !== undefined) {\n this.instructions.push(strokeInstruction);\n this.hitDetectionInstructions.push(strokeInstruction);\n }\n this.endGeometry(feature);\n };\n /**\n * @param {import(\"../../geom/Polygon.js\").default|import(\"../Feature.js\").default} polygonGeometry Polygon geometry.\n * @param {import(\"../../Feature.js\").FeatureLike} feature Feature.\n */\n CanvasPolygonBuilder.prototype.drawPolygon = function (polygonGeometry, feature) {\n var state = this.state;\n var fillStyle = state.fillStyle;\n var strokeStyle = state.strokeStyle;\n if (fillStyle === undefined && strokeStyle === undefined) {\n return;\n }\n this.setFillStrokeStyles_();\n this.beginGeometry(polygonGeometry, feature);\n if (state.fillStyle !== undefined) {\n this.hitDetectionInstructions.push([\n CanvasInstruction.SET_FILL_STYLE,\n defaultFillStyle,\n ]);\n }\n if (state.strokeStyle !== undefined) {\n this.hitDetectionInstructions.push([\n CanvasInstruction.SET_STROKE_STYLE,\n state.strokeStyle,\n state.lineWidth,\n state.lineCap,\n state.lineJoin,\n state.miterLimit,\n state.lineDash,\n state.lineDashOffset,\n ]);\n }\n var ends = polygonGeometry.getEnds();\n var flatCoordinates = polygonGeometry.getOrientedFlatCoordinates();\n var stride = polygonGeometry.getStride();\n this.drawFlatCoordinatess_(flatCoordinates, 0, \n /** @type {Array<number>} */ (ends), stride);\n this.endGeometry(feature);\n };\n /**\n * @param {import(\"../../geom/MultiPolygon.js\").default} multiPolygonGeometry MultiPolygon geometry.\n * @param {import(\"../../Feature.js\").FeatureLike} feature Feature.\n */\n CanvasPolygonBuilder.prototype.drawMultiPolygon = function (multiPolygonGeometry, feature) {\n var state = this.state;\n var fillStyle = state.fillStyle;\n var strokeStyle = state.strokeStyle;\n if (fillStyle === undefined && strokeStyle === undefined) {\n return;\n }\n this.setFillStrokeStyles_();\n this.beginGeometry(multiPolygonGeometry, feature);\n if (state.fillStyle !== undefined) {\n this.hitDetectionInstructions.push([\n CanvasInstruction.SET_FILL_STYLE,\n defaultFillStyle,\n ]);\n }\n if (state.strokeStyle !== undefined) {\n this.hitDetectionInstructions.push([\n CanvasInstruction.SET_STROKE_STYLE,\n state.strokeStyle,\n state.lineWidth,\n state.lineCap,\n state.lineJoin,\n state.miterLimit,\n state.lineDash,\n state.lineDashOffset,\n ]);\n }\n var endss = multiPolygonGeometry.getEndss();\n var flatCoordinates = multiPolygonGeometry.getOrientedFlatCoordinates();\n var stride = multiPolygonGeometry.getStride();\n var offset = 0;\n for (var i = 0, ii = endss.length; i < ii; ++i) {\n offset = this.drawFlatCoordinatess_(flatCoordinates, offset, endss[i], stride);\n }\n this.endGeometry(feature);\n };\n /**\n * @return {import(\"../canvas.js\").SerializableInstructions} the serializable instructions.\n */\n CanvasPolygonBuilder.prototype.finish = function () {\n this.reverseHitDetectionInstructions();\n this.state = null;\n // We want to preserve topology when drawing polygons. Polygons are\n // simplified using quantization and point elimination. However, we might\n // have received a mix of quantized and non-quantized geometries, so ensure\n // that all are quantized by quantizing all coordinates in the batch.\n var tolerance = this.tolerance;\n if (tolerance !== 0) {\n var coordinates = this.coordinates;\n for (var i = 0, ii = coordinates.length; i < ii; ++i) {\n coordinates[i] = snap(coordinates[i], tolerance);\n }\n }\n return _super.prototype.finish.call(this);\n };\n /**\n * @private\n */\n CanvasPolygonBuilder.prototype.setFillStrokeStyles_ = function () {\n var state = this.state;\n var fillStyle = state.fillStyle;\n if (fillStyle !== undefined) {\n this.updateFillStyle(state, this.createFill);\n }\n if (state.strokeStyle !== undefined) {\n this.updateStrokeStyle(state, this.applyStroke);\n }\n };\n return CanvasPolygonBuilder;\n}(CanvasBuilder));\nexport default CanvasPolygonBuilder;\n//# sourceMappingURL=PolygonBuilder.js.map","/**\n * @module ol/geom/flat/straightchunk\n */\n/**\n * @param {number} maxAngle Maximum acceptable angle delta between segments.\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {number} end End.\n * @param {number} stride Stride.\n * @return {Array<number>} Start and end of the first suitable chunk of the\n * given `flatCoordinates`.\n */\nexport function matchingChunk(maxAngle, flatCoordinates, offset, end, stride) {\n var chunkStart = offset;\n var chunkEnd = offset;\n var chunkM = 0;\n var m = 0;\n var start = offset;\n var acos, i, m12, m23, x1, y1, x12, y12, x23, y23;\n for (i = offset; i < end; i += stride) {\n var x2 = flatCoordinates[i];\n var y2 = flatCoordinates[i + 1];\n if (x1 !== undefined) {\n x23 = x2 - x1;\n y23 = y2 - y1;\n m23 = Math.sqrt(x23 * x23 + y23 * y23);\n if (x12 !== undefined) {\n m += m12;\n acos = Math.acos((x12 * x23 + y12 * y23) / (m12 * m23));\n if (acos > maxAngle) {\n if (m > chunkM) {\n chunkM = m;\n chunkStart = start;\n chunkEnd = i;\n }\n m = 0;\n start = i - stride;\n }\n }\n m12 = m23;\n x12 = x23;\n y12 = y23;\n }\n x1 = x2;\n y1 = y2;\n }\n m += m23;\n return m > chunkM ? [start, i] : [chunkStart, chunkEnd];\n}\n//# sourceMappingURL=straightchunk.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/render/canvas/TextBuilder\n */\nimport CanvasBuilder from './Builder.js';\nimport CanvasInstruction from './Instruction.js';\nimport GeometryType from '../../geom/GeometryType.js';\nimport TextPlacement from '../../style/TextPlacement.js';\nimport { asColorLike } from '../../colorlike.js';\nimport { defaultFillStyle, defaultFont, defaultLineCap, defaultLineDash, defaultLineDashOffset, defaultLineJoin, defaultLineWidth, defaultMiterLimit, defaultPadding, defaultStrokeStyle, defaultTextAlign, defaultTextBaseline, registerFont, } from '../canvas.js';\nimport { getUid } from '../../util.js';\nimport { intersects } from '../../extent.js';\nimport { matchingChunk } from '../../geom/flat/straightchunk.js';\n/**\n * @const\n * @enum {number}\n */\nexport var TEXT_ALIGN = {\n 'left': 0,\n 'end': 0,\n 'center': 0.5,\n 'right': 1,\n 'start': 1,\n 'top': 0,\n 'middle': 0.5,\n 'hanging': 0.2,\n 'alphabetic': 0.8,\n 'ideographic': 0.8,\n 'bottom': 1,\n};\nvar CanvasTextBuilder = /** @class */ (function (_super) {\n __extends(CanvasTextBuilder, _super);\n /**\n * @param {number} tolerance Tolerance.\n * @param {import(\"../../extent.js\").Extent} maxExtent Maximum extent.\n * @param {number} resolution Resolution.\n * @param {number} pixelRatio Pixel ratio.\n */\n function CanvasTextBuilder(tolerance, maxExtent, resolution, pixelRatio) {\n var _this = _super.call(this, tolerance, maxExtent, resolution, pixelRatio) || this;\n /**\n * @private\n * @type {Array<HTMLCanvasElement>}\n */\n _this.labels_ = null;\n /**\n * @private\n * @type {string}\n */\n _this.text_ = '';\n /**\n * @private\n * @type {number}\n */\n _this.textOffsetX_ = 0;\n /**\n * @private\n * @type {number}\n */\n _this.textOffsetY_ = 0;\n /**\n * @private\n * @type {boolean|undefined}\n */\n _this.textRotateWithView_ = undefined;\n /**\n * @private\n * @type {number}\n */\n _this.textRotation_ = 0;\n /**\n * @private\n * @type {?import(\"../canvas.js\").FillState}\n */\n _this.textFillState_ = null;\n /**\n * @type {!Object<string, import(\"../canvas.js\").FillState>}\n */\n _this.fillStates = {};\n /**\n * @private\n * @type {?import(\"../canvas.js\").StrokeState}\n */\n _this.textStrokeState_ = null;\n /**\n * @type {!Object<string, import(\"../canvas.js\").StrokeState>}\n */\n _this.strokeStates = {};\n /**\n * @private\n * @type {import(\"../canvas.js\").TextState}\n */\n _this.textState_ = /** @type {import(\"../canvas.js\").TextState} */ ({});\n /**\n * @type {!Object<string, import(\"../canvas.js\").TextState>}\n */\n _this.textStates = {};\n /**\n * @private\n * @type {string}\n */\n _this.textKey_ = '';\n /**\n * @private\n * @type {string}\n */\n _this.fillKey_ = '';\n /**\n * @private\n * @type {string}\n */\n _this.strokeKey_ = '';\n /**\n * Data shared with an image builder for combined decluttering.\n * @private\n * @type {import(\"../canvas.js\").DeclutterImageWithText}\n */\n _this.declutterImageWithText_ = undefined;\n return _this;\n }\n /**\n * @return {import(\"../canvas.js\").SerializableInstructions} the serializable instructions.\n */\n CanvasTextBuilder.prototype.finish = function () {\n var instructions = _super.prototype.finish.call(this);\n instructions.textStates = this.textStates;\n instructions.fillStates = this.fillStates;\n instructions.strokeStates = this.strokeStates;\n return instructions;\n };\n /**\n * @param {import(\"../../geom/SimpleGeometry.js\").default|import(\"../Feature.js\").default} geometry Geometry.\n * @param {import(\"../../Feature.js\").FeatureLike} feature Feature.\n */\n CanvasTextBuilder.prototype.drawText = function (geometry, feature) {\n var fillState = this.textFillState_;\n var strokeState = this.textStrokeState_;\n var textState = this.textState_;\n if (this.text_ === '' || !textState || (!fillState && !strokeState)) {\n return;\n }\n var coordinates = this.coordinates;\n var begin = coordinates.length;\n var geometryType = geometry.getType();\n var flatCoordinates = null;\n var stride = geometry.getStride();\n if (textState.placement === TextPlacement.LINE &&\n (geometryType == GeometryType.LINE_STRING ||\n geometryType == GeometryType.MULTI_LINE_STRING ||\n geometryType == GeometryType.POLYGON ||\n geometryType == GeometryType.MULTI_POLYGON)) {\n if (!intersects(this.getBufferedMaxExtent(), geometry.getExtent())) {\n return;\n }\n var ends = void 0;\n flatCoordinates = geometry.getFlatCoordinates();\n if (geometryType == GeometryType.LINE_STRING) {\n ends = [flatCoordinates.length];\n }\n else if (geometryType == GeometryType.MULTI_LINE_STRING) {\n ends = /** @type {import(\"../../geom/MultiLineString.js\").default} */ (geometry).getEnds();\n }\n else if (geometryType == GeometryType.POLYGON) {\n ends = /** @type {import(\"../../geom/Polygon.js\").default} */ (geometry)\n .getEnds()\n .slice(0, 1);\n }\n else if (geometryType == GeometryType.MULTI_POLYGON) {\n var endss = \n /** @type {import(\"../../geom/MultiPolygon.js\").default} */ (geometry).getEndss();\n ends = [];\n for (var i = 0, ii = endss.length; i < ii; ++i) {\n ends.push(endss[i][0]);\n }\n }\n this.beginGeometry(geometry, feature);\n var textAlign = textState.textAlign;\n var flatOffset = 0;\n var flatEnd = void 0;\n for (var o = 0, oo = ends.length; o < oo; ++o) {\n if (textAlign == undefined) {\n var range = matchingChunk(textState.maxAngle, flatCoordinates, flatOffset, ends[o], stride);\n flatOffset = range[0];\n flatEnd = range[1];\n }\n else {\n flatEnd = ends[o];\n }\n for (var i = flatOffset; i < flatEnd; i += stride) {\n coordinates.push(flatCoordinates[i], flatCoordinates[i + 1]);\n }\n var end = coordinates.length;\n flatOffset = ends[o];\n this.drawChars_(begin, end);\n begin = end;\n }\n this.endGeometry(feature);\n }\n else {\n var geometryWidths = textState.overflow ? null : [];\n switch (geometryType) {\n case GeometryType.POINT:\n case GeometryType.MULTI_POINT:\n flatCoordinates =\n /** @type {import(\"../../geom/MultiPoint.js\").default} */ (geometry).getFlatCoordinates();\n break;\n case GeometryType.LINE_STRING:\n flatCoordinates =\n /** @type {import(\"../../geom/LineString.js\").default} */ (geometry).getFlatMidpoint();\n break;\n case GeometryType.CIRCLE:\n flatCoordinates =\n /** @type {import(\"../../geom/Circle.js\").default} */ (geometry).getCenter();\n break;\n case GeometryType.MULTI_LINE_STRING:\n flatCoordinates =\n /** @type {import(\"../../geom/MultiLineString.js\").default} */ (geometry).getFlatMidpoints();\n stride = 2;\n break;\n case GeometryType.POLYGON:\n flatCoordinates =\n /** @type {import(\"../../geom/Polygon.js\").default} */ (geometry).getFlatInteriorPoint();\n if (!textState.overflow) {\n geometryWidths.push(flatCoordinates[2] / this.resolution);\n }\n stride = 3;\n break;\n case GeometryType.MULTI_POLYGON:\n var interiorPoints = \n /** @type {import(\"../../geom/MultiPolygon.js\").default} */ (geometry).getFlatInteriorPoints();\n flatCoordinates = [];\n for (var i = 0, ii = interiorPoints.length; i < ii; i += 3) {\n if (!textState.overflow) {\n geometryWidths.push(interiorPoints[i + 2] / this.resolution);\n }\n flatCoordinates.push(interiorPoints[i], interiorPoints[i + 1]);\n }\n if (flatCoordinates.length === 0) {\n return;\n }\n stride = 2;\n break;\n default:\n }\n var end = this.appendFlatPointCoordinates(flatCoordinates, stride);\n if (end === begin) {\n return;\n }\n if (geometryWidths &&\n (end - begin) / 2 !== flatCoordinates.length / stride) {\n var beg_1 = begin / 2;\n geometryWidths = geometryWidths.filter(function (w, i) {\n var keep = coordinates[(beg_1 + i) * 2] === flatCoordinates[i * stride] &&\n coordinates[(beg_1 + i) * 2 + 1] === flatCoordinates[i * stride + 1];\n if (!keep) {\n --beg_1;\n }\n return keep;\n });\n }\n this.saveTextStates_();\n if (textState.backgroundFill || textState.backgroundStroke) {\n this.setFillStrokeStyle(textState.backgroundFill, textState.backgroundStroke);\n if (textState.backgroundFill) {\n this.updateFillStyle(this.state, this.createFill);\n this.hitDetectionInstructions.push(this.createFill(this.state));\n }\n if (textState.backgroundStroke) {\n this.updateStrokeStyle(this.state, this.applyStroke);\n this.hitDetectionInstructions.push(this.createStroke(this.state));\n }\n }\n this.beginGeometry(geometry, feature);\n // adjust padding for negative scale\n var padding = textState.padding;\n if (padding != defaultPadding &&\n (textState.scale[0] < 0 || textState.scale[1] < 0)) {\n var p0 = textState.padding[0];\n var p1 = textState.padding[1];\n var p2 = textState.padding[2];\n var p3 = textState.padding[3];\n if (textState.scale[0] < 0) {\n p1 = -p1;\n p3 = -p3;\n }\n if (textState.scale[1] < 0) {\n p0 = -p0;\n p2 = -p2;\n }\n padding = [p0, p1, p2, p3];\n }\n // The image is unknown at this stage so we pass null; it will be computed at render time.\n // For clarity, we pass NaN for offsetX, offsetY, width and height, which will be computed at\n // render time.\n var pixelRatio_1 = this.pixelRatio;\n this.instructions.push([\n CanvasInstruction.DRAW_IMAGE,\n begin,\n end,\n null,\n NaN,\n NaN,\n NaN,\n 1,\n 0,\n 0,\n this.textRotateWithView_,\n this.textRotation_,\n [1, 1],\n NaN,\n this.declutterImageWithText_,\n padding == defaultPadding\n ? defaultPadding\n : padding.map(function (p) {\n return p * pixelRatio_1;\n }),\n !!textState.backgroundFill,\n !!textState.backgroundStroke,\n this.text_,\n this.textKey_,\n this.strokeKey_,\n this.fillKey_,\n this.textOffsetX_,\n this.textOffsetY_,\n geometryWidths,\n ]);\n var scale = 1 / pixelRatio_1;\n this.hitDetectionInstructions.push([\n CanvasInstruction.DRAW_IMAGE,\n begin,\n end,\n null,\n NaN,\n NaN,\n NaN,\n 1,\n 0,\n 0,\n this.textRotateWithView_,\n this.textRotation_,\n [scale, scale],\n NaN,\n this.declutterImageWithText_,\n padding,\n !!textState.backgroundFill,\n !!textState.backgroundStroke,\n this.text_,\n this.textKey_,\n this.strokeKey_,\n this.fillKey_,\n this.textOffsetX_,\n this.textOffsetY_,\n geometryWidths,\n ]);\n this.endGeometry(feature);\n }\n };\n /**\n * @private\n */\n CanvasTextBuilder.prototype.saveTextStates_ = function () {\n var strokeState = this.textStrokeState_;\n var textState = this.textState_;\n var fillState = this.textFillState_;\n var strokeKey = this.strokeKey_;\n if (strokeState) {\n if (!(strokeKey in this.strokeStates)) {\n this.strokeStates[strokeKey] = {\n strokeStyle: strokeState.strokeStyle,\n lineCap: strokeState.lineCap,\n lineDashOffset: strokeState.lineDashOffset,\n lineWidth: strokeState.lineWidth,\n lineJoin: strokeState.lineJoin,\n miterLimit: strokeState.miterLimit,\n lineDash: strokeState.lineDash,\n };\n }\n }\n var textKey = this.textKey_;\n if (!(textKey in this.textStates)) {\n this.textStates[textKey] = {\n font: textState.font,\n textAlign: textState.textAlign || defaultTextAlign,\n textBaseline: textState.textBaseline || defaultTextBaseline,\n scale: textState.scale,\n };\n }\n var fillKey = this.fillKey_;\n if (fillState) {\n if (!(fillKey in this.fillStates)) {\n this.fillStates[fillKey] = {\n fillStyle: fillState.fillStyle,\n };\n }\n }\n };\n /**\n * @private\n * @param {number} begin Begin.\n * @param {number} end End.\n */\n CanvasTextBuilder.prototype.drawChars_ = function (begin, end) {\n var strokeState = this.textStrokeState_;\n var textState = this.textState_;\n var strokeKey = this.strokeKey_;\n var textKey = this.textKey_;\n var fillKey = this.fillKey_;\n this.saveTextStates_();\n var pixelRatio = this.pixelRatio;\n var baseline = TEXT_ALIGN[textState.textBaseline];\n var offsetY = this.textOffsetY_ * pixelRatio;\n var text = this.text_;\n var strokeWidth = strokeState\n ? (strokeState.lineWidth * Math.abs(textState.scale[0])) / 2\n : 0;\n this.instructions.push([\n CanvasInstruction.DRAW_CHARS,\n begin,\n end,\n baseline,\n textState.overflow,\n fillKey,\n textState.maxAngle,\n pixelRatio,\n offsetY,\n strokeKey,\n strokeWidth * pixelRatio,\n text,\n textKey,\n 1,\n ]);\n this.hitDetectionInstructions.push([\n CanvasInstruction.DRAW_CHARS,\n begin,\n end,\n baseline,\n textState.overflow,\n fillKey,\n textState.maxAngle,\n 1,\n offsetY,\n strokeKey,\n strokeWidth,\n text,\n textKey,\n 1 / pixelRatio,\n ]);\n };\n /**\n * @param {import(\"../../style/Text.js\").default} textStyle Text style.\n * @param {Object} [opt_sharedData] Shared data.\n */\n CanvasTextBuilder.prototype.setTextStyle = function (textStyle, opt_sharedData) {\n var textState, fillState, strokeState;\n if (!textStyle) {\n this.text_ = '';\n }\n else {\n var textFillStyle = textStyle.getFill();\n if (!textFillStyle) {\n fillState = null;\n this.textFillState_ = fillState;\n }\n else {\n fillState = this.textFillState_;\n if (!fillState) {\n fillState = /** @type {import(\"../canvas.js\").FillState} */ ({});\n this.textFillState_ = fillState;\n }\n fillState.fillStyle = asColorLike(textFillStyle.getColor() || defaultFillStyle);\n }\n var textStrokeStyle = textStyle.getStroke();\n if (!textStrokeStyle) {\n strokeState = null;\n this.textStrokeState_ = strokeState;\n }\n else {\n strokeState = this.textStrokeState_;\n if (!strokeState) {\n strokeState = /** @type {import(\"../canvas.js\").StrokeState} */ ({});\n this.textStrokeState_ = strokeState;\n }\n var lineDash = textStrokeStyle.getLineDash();\n var lineDashOffset = textStrokeStyle.getLineDashOffset();\n var lineWidth = textStrokeStyle.getWidth();\n var miterLimit = textStrokeStyle.getMiterLimit();\n strokeState.lineCap = textStrokeStyle.getLineCap() || defaultLineCap;\n strokeState.lineDash = lineDash ? lineDash.slice() : defaultLineDash;\n strokeState.lineDashOffset =\n lineDashOffset === undefined ? defaultLineDashOffset : lineDashOffset;\n strokeState.lineJoin = textStrokeStyle.getLineJoin() || defaultLineJoin;\n strokeState.lineWidth =\n lineWidth === undefined ? defaultLineWidth : lineWidth;\n strokeState.miterLimit =\n miterLimit === undefined ? defaultMiterLimit : miterLimit;\n strokeState.strokeStyle = asColorLike(textStrokeStyle.getColor() || defaultStrokeStyle);\n }\n textState = this.textState_;\n var font = textStyle.getFont() || defaultFont;\n registerFont(font);\n var textScale = textStyle.getScaleArray();\n textState.overflow = textStyle.getOverflow();\n textState.font = font;\n textState.maxAngle = textStyle.getMaxAngle();\n textState.placement = textStyle.getPlacement();\n textState.textAlign = textStyle.getTextAlign();\n textState.textBaseline =\n textStyle.getTextBaseline() || defaultTextBaseline;\n textState.backgroundFill = textStyle.getBackgroundFill();\n textState.backgroundStroke = textStyle.getBackgroundStroke();\n textState.padding = textStyle.getPadding() || defaultPadding;\n textState.scale = textScale === undefined ? [1, 1] : textScale;\n var textOffsetX = textStyle.getOffsetX();\n var textOffsetY = textStyle.getOffsetY();\n var textRotateWithView = textStyle.getRotateWithView();\n var textRotation = textStyle.getRotation();\n this.text_ = textStyle.getText() || '';\n this.textOffsetX_ = textOffsetX === undefined ? 0 : textOffsetX;\n this.textOffsetY_ = textOffsetY === undefined ? 0 : textOffsetY;\n this.textRotateWithView_ =\n textRotateWithView === undefined ? false : textRotateWithView;\n this.textRotation_ = textRotation === undefined ? 0 : textRotation;\n this.strokeKey_ = strokeState\n ? (typeof strokeState.strokeStyle == 'string'\n ? strokeState.strokeStyle\n : getUid(strokeState.strokeStyle)) +\n strokeState.lineCap +\n strokeState.lineDashOffset +\n '|' +\n strokeState.lineWidth +\n strokeState.lineJoin +\n strokeState.miterLimit +\n '[' +\n strokeState.lineDash.join() +\n ']'\n : '';\n this.textKey_ =\n textState.font +\n textState.scale +\n (textState.textAlign || '?') +\n (textState.textBaseline || '?');\n this.fillKey_ = fillState\n ? typeof fillState.fillStyle == 'string'\n ? fillState.fillStyle\n : '|' + getUid(fillState.fillStyle)\n : '';\n }\n this.declutterImageWithText_ = opt_sharedData;\n };\n return CanvasTextBuilder;\n}(CanvasBuilder));\nexport default CanvasTextBuilder;\n//# sourceMappingURL=TextBuilder.js.map","/**\n * @module ol/style/TextPlacement\n */\n/**\n * Text placement. One of `'point'`, `'line'`. Default is `'point'`. Note that\n * `'line'` requires the underlying geometry to be a {@link module:ol/geom/LineString~LineString},\n * {@link module:ol/geom/Polygon~Polygon}, {@link module:ol/geom/MultiLineString~MultiLineString} or\n * {@link module:ol/geom/MultiPolygon~MultiPolygon}.\n * @enum {string}\n */\nexport default {\n POINT: 'point',\n LINE: 'line',\n};\n//# sourceMappingURL=TextPlacement.js.map","/**\n * @module ol/render/canvas/BuilderGroup\n */\nimport Builder from './Builder.js';\nimport ImageBuilder from './ImageBuilder.js';\nimport LineStringBuilder from './LineStringBuilder.js';\nimport PolygonBuilder from './PolygonBuilder.js';\nimport TextBuilder from './TextBuilder.js';\n/**\n * @type {Object<import(\"./BuilderType\").default, typeof Builder>}\n */\nvar BATCH_CONSTRUCTORS = {\n 'Circle': PolygonBuilder,\n 'Default': Builder,\n 'Image': ImageBuilder,\n 'LineString': LineStringBuilder,\n 'Polygon': PolygonBuilder,\n 'Text': TextBuilder,\n};\nvar BuilderGroup = /** @class */ (function () {\n /**\n * @param {number} tolerance Tolerance.\n * @param {import(\"../../extent.js\").Extent} maxExtent Max extent.\n * @param {number} resolution Resolution.\n * @param {number} pixelRatio Pixel ratio.\n */\n function BuilderGroup(tolerance, maxExtent, resolution, pixelRatio) {\n /**\n * @private\n * @type {number}\n */\n this.tolerance_ = tolerance;\n /**\n * @private\n * @type {import(\"../../extent.js\").Extent}\n */\n this.maxExtent_ = maxExtent;\n /**\n * @private\n * @type {number}\n */\n this.pixelRatio_ = pixelRatio;\n /**\n * @private\n * @type {number}\n */\n this.resolution_ = resolution;\n /**\n * @private\n * @type {!Object<string, !Object<import(\"./BuilderType\").default, Builder>>}\n */\n this.buildersByZIndex_ = {};\n }\n /**\n * @return {!Object<string, !Object<import(\"./BuilderType\").default, import(\"./Builder.js\").SerializableInstructions>>} The serializable instructions\n */\n BuilderGroup.prototype.finish = function () {\n var builderInstructions = {};\n for (var zKey in this.buildersByZIndex_) {\n builderInstructions[zKey] = builderInstructions[zKey] || {};\n var builders = this.buildersByZIndex_[zKey];\n for (var builderKey in builders) {\n var builderInstruction = builders[builderKey].finish();\n builderInstructions[zKey][builderKey] = builderInstruction;\n }\n }\n return builderInstructions;\n };\n /**\n * @param {number|undefined} zIndex Z index.\n * @param {import(\"./BuilderType.js\").default} builderType Replay type.\n * @return {import(\"../VectorContext.js\").default} Replay.\n */\n BuilderGroup.prototype.getBuilder = function (zIndex, builderType) {\n var zIndexKey = zIndex !== undefined ? zIndex.toString() : '0';\n var replays = this.buildersByZIndex_[zIndexKey];\n if (replays === undefined) {\n replays = {};\n this.buildersByZIndex_[zIndexKey] = replays;\n }\n var replay = replays[builderType];\n if (replay === undefined) {\n var Constructor = BATCH_CONSTRUCTORS[builderType];\n replay = new Constructor(this.tolerance_, this.maxExtent_, this.resolution_, this.pixelRatio_);\n replays[builderType] = replay;\n }\n return replay;\n };\n return BuilderGroup;\n}());\nexport default BuilderGroup;\n//# sourceMappingURL=BuilderGroup.js.map","/**\n * @module ol/render/canvas/BuilderType\n */\n/**\n * @enum {string}\n */\nexport default {\n CIRCLE: 'Circle',\n DEFAULT: 'Default',\n IMAGE: 'Image',\n LINE_STRING: 'LineString',\n POLYGON: 'Polygon',\n TEXT: 'Text',\n};\n//# sourceMappingURL=BuilderType.js.map","/**\n * @module ol/geom/flat/textpath\n */\nimport { lerp } from '../../math.js';\nimport { rotate } from './transform.js';\n/**\n * @param {Array<number>} flatCoordinates Path to put text on.\n * @param {number} offset Start offset of the `flatCoordinates`.\n * @param {number} end End offset of the `flatCoordinates`.\n * @param {number} stride Stride.\n * @param {string} text Text to place on the path.\n * @param {number} startM m along the path where the text starts.\n * @param {number} maxAngle Max angle between adjacent chars in radians.\n * @param {number} scale The product of the text scale and the device pixel ratio.\n * @param {function(string, string, Object<string, number>):number} measureAndCacheTextWidth Measure and cache text width.\n * @param {string} font The font.\n * @param {Object<string, number>} cache A cache of measured widths.\n * @param {number} rotation Rotation to apply to the flatCoordinates to determine whether text needs to be reversed.\n * @return {Array<Array<*>>} The result array (or null if `maxAngle` was\n * exceeded). Entries of the array are x, y, anchorX, angle, chunk.\n */\nexport function drawTextOnPath(flatCoordinates, offset, end, stride, text, startM, maxAngle, scale, measureAndCacheTextWidth, font, cache, rotation) {\n var x2 = flatCoordinates[offset];\n var y2 = flatCoordinates[offset + 1];\n var x1 = 0;\n var y1 = 0;\n var segmentLength = 0;\n var segmentM = 0;\n function advance() {\n x1 = x2;\n y1 = y2;\n offset += stride;\n x2 = flatCoordinates[offset];\n y2 = flatCoordinates[offset + 1];\n segmentM += segmentLength;\n segmentLength = Math.sqrt((x2 - x1) * (x2 - x1) + (y2 - y1) * (y2 - y1));\n }\n do {\n advance();\n } while (offset < end - stride && segmentM + segmentLength < startM);\n var interpolate = segmentLength === 0 ? 0 : (startM - segmentM) / segmentLength;\n var beginX = lerp(x1, x2, interpolate);\n var beginY = lerp(y1, y2, interpolate);\n var startOffset = offset - stride;\n var startLength = segmentM;\n var endM = startM + scale * measureAndCacheTextWidth(font, text, cache);\n while (offset < end - stride && segmentM + segmentLength < endM) {\n advance();\n }\n interpolate = segmentLength === 0 ? 0 : (endM - segmentM) / segmentLength;\n var endX = lerp(x1, x2, interpolate);\n var endY = lerp(y1, y2, interpolate);\n // Keep text upright\n var reverse;\n if (rotation) {\n var flat = [beginX, beginY, endX, endY];\n rotate(flat, 0, 4, 2, rotation, flat, flat);\n reverse = flat[0] > flat[2];\n }\n else {\n reverse = beginX > endX;\n }\n var PI = Math.PI;\n var result = [];\n var singleSegment = startOffset + stride === offset;\n offset = startOffset;\n segmentLength = 0;\n segmentM = startLength;\n x2 = flatCoordinates[offset];\n y2 = flatCoordinates[offset + 1];\n var previousAngle;\n // All on the same segment\n if (singleSegment) {\n advance();\n previousAngle = Math.atan2(y2 - y1, x2 - x1);\n if (reverse) {\n previousAngle += previousAngle > 0 ? -PI : PI;\n }\n var x = (endX + beginX) / 2;\n var y = (endY + beginY) / 2;\n result[0] = [x, y, (endM - startM) / 2, previousAngle, text];\n return result;\n }\n for (var i = 0, ii = text.length; i < ii;) {\n advance();\n var angle = Math.atan2(y2 - y1, x2 - x1);\n if (reverse) {\n angle += angle > 0 ? -PI : PI;\n }\n if (previousAngle !== undefined) {\n var delta = angle - previousAngle;\n delta += delta > PI ? -2 * PI : delta < -PI ? 2 * PI : 0;\n if (Math.abs(delta) > maxAngle) {\n return null;\n }\n }\n previousAngle = angle;\n var iStart = i;\n var charLength = 0;\n for (; i < ii; ++i) {\n var index = reverse ? ii - i - 1 : i;\n var len = scale * measureAndCacheTextWidth(font, text[index], cache);\n if (offset + stride < end &&\n segmentM + segmentLength < startM + charLength + len / 2) {\n break;\n }\n charLength += len;\n }\n if (i === iStart) {\n continue;\n }\n var chars = reverse\n ? text.substring(ii - iStart, ii - i)\n : text.substring(iStart, i);\n interpolate =\n segmentLength === 0\n ? 0\n : (startM + charLength / 2 - segmentM) / segmentLength;\n var x = lerp(x1, x2, interpolate);\n var y = lerp(y1, y2, interpolate);\n result.push([x, y, charLength / 2, angle, chars]);\n startM += charLength;\n }\n return result;\n}\n//# sourceMappingURL=textpath.js.map","/**\n * @module ol/render/canvas/Executor\n */\nimport CanvasInstruction from './Instruction.js';\nimport { TEXT_ALIGN } from './TextBuilder.js';\nimport { WORKER_OFFSCREEN_CANVAS } from '../../has.js';\nimport { apply as applyTransform, compose as composeTransform, create as createTransform, setFromArray as transformSetFromArray, } from '../../transform.js';\nimport { createEmpty, createOrUpdate, intersects } from '../../extent.js';\nimport { defaultPadding, defaultTextBaseline, drawImageOrLabel, } from '../canvas.js';\nimport { defaultTextAlign, measureAndCacheTextWidth, measureTextHeight, measureTextWidths, } from '../canvas.js';\nimport { drawTextOnPath } from '../../geom/flat/textpath.js';\nimport { equals } from '../../array.js';\nimport { lineStringLength } from '../../geom/flat/length.js';\nimport { transform2D } from '../../geom/flat/transform.js';\n/**\n * @typedef {Object} BBox\n * @property {number} minX Minimal x.\n * @property {number} minY Minimal y.\n * @property {number} maxX Maximal x.\n * @property {number} maxY Maximal y\n * @property {*} value Value.\n */\n/**\n * @typedef {Object} ImageOrLabelDimensions\n * @property {number} drawImageX DrawImageX.\n * @property {number} drawImageY DrawImageY.\n * @property {number} drawImageW DrawImageW.\n * @property {number} drawImageH DrawImageH.\n * @property {number} originX OriginX.\n * @property {number} originY OriginY.\n * @property {Array<number>} scale Scale.\n * @property {BBox} declutterBox DeclutterBox.\n * @property {import(\"../../transform.js\").Transform} canvasTransform CanvasTransform.\n */\n/**\n * @typedef {{0: CanvasRenderingContext2D, 1: number, 2: import(\"../canvas.js\").Label|HTMLImageElement|HTMLCanvasElement|HTMLVideoElement, 3: ImageOrLabelDimensions, 4: number, 5: Array<*>, 6: Array<*>}} ReplayImageOrLabelArgs\n */\n/**\n * @template T\n * @typedef {function(import(\"../../Feature.js\").FeatureLike, import(\"../../geom/SimpleGeometry.js\").default): T} FeatureCallback\n */\n/**\n * @type {import(\"../../extent.js\").Extent}\n */\nvar tmpExtent = createEmpty();\n/** @type {import(\"../../coordinate.js\").Coordinate} */\nvar p1 = [];\n/** @type {import(\"../../coordinate.js\").Coordinate} */\nvar p2 = [];\n/** @type {import(\"../../coordinate.js\").Coordinate} */\nvar p3 = [];\n/** @type {import(\"../../coordinate.js\").Coordinate} */\nvar p4 = [];\n/**\n * @param {ReplayImageOrLabelArgs} replayImageOrLabelArgs Arguments to replayImageOrLabel\n * @return {BBox} Declutter bbox.\n */\nfunction getDeclutterBox(replayImageOrLabelArgs) {\n return replayImageOrLabelArgs[3].declutterBox;\n}\nvar rtlRegEx = new RegExp(\n/* eslint-disable prettier/prettier */\n'[' +\n String.fromCharCode(0x00591) + '-' + String.fromCharCode(0x008ff) +\n String.fromCharCode(0x0fb1d) + '-' + String.fromCharCode(0x0fdff) +\n String.fromCharCode(0x0fe70) + '-' + String.fromCharCode(0x0fefc) +\n String.fromCharCode(0x10800) + '-' + String.fromCharCode(0x10fff) +\n String.fromCharCode(0x1e800) + '-' + String.fromCharCode(0x1efff) +\n ']'\n/* eslint-enable prettier/prettier */\n);\n/**\n * @param {string} text Text.\n * @param {string} align Alignment.\n * @return {number} Text alignment.\n */\nfunction horizontalTextAlign(text, align) {\n if ((align === 'start' || align === 'end') && !rtlRegEx.test(text)) {\n align = align === 'start' ? 'left' : 'right';\n }\n return TEXT_ALIGN[align];\n}\nvar Executor = /** @class */ (function () {\n /**\n * @param {number} resolution Resolution.\n * @param {number} pixelRatio Pixel ratio.\n * @param {boolean} overlaps The replay can have overlapping geometries.\n * @param {import(\"../canvas.js\").SerializableInstructions} instructions The serializable instructions\n */\n function Executor(resolution, pixelRatio, overlaps, instructions) {\n /**\n * @protected\n * @type {boolean}\n */\n this.overlaps = overlaps;\n /**\n * @protected\n * @type {number}\n */\n this.pixelRatio = pixelRatio;\n /**\n * @protected\n * @const\n * @type {number}\n */\n this.resolution = resolution;\n /**\n * @private\n * @type {boolean}\n */\n this.alignFill_;\n /**\n * @protected\n * @type {Array<*>}\n */\n this.instructions = instructions.instructions;\n /**\n * @protected\n * @type {Array<number>}\n */\n this.coordinates = instructions.coordinates;\n /**\n * @private\n * @type {!Object<number,import(\"../../coordinate.js\").Coordinate|Array<import(\"../../coordinate.js\").Coordinate>|Array<Array<import(\"../../coordinate.js\").Coordinate>>>}\n */\n this.coordinateCache_ = {};\n /**\n * @private\n * @type {!import(\"../../transform.js\").Transform}\n */\n this.renderedTransform_ = createTransform();\n /**\n * @protected\n * @type {Array<*>}\n */\n this.hitDetectionInstructions = instructions.hitDetectionInstructions;\n /**\n * @private\n * @type {Array<number>}\n */\n this.pixelCoordinates_ = null;\n /**\n * @private\n * @type {number}\n */\n this.viewRotation_ = 0;\n /**\n * @type {!Object<string, import(\"../canvas.js\").FillState>}\n */\n this.fillStates = instructions.fillStates || {};\n /**\n * @type {!Object<string, import(\"../canvas.js\").StrokeState>}\n */\n this.strokeStates = instructions.strokeStates || {};\n /**\n * @type {!Object<string, import(\"../canvas.js\").TextState>}\n */\n this.textStates = instructions.textStates || {};\n /**\n * @private\n * @type {Object<string, Object<string, number>>}\n */\n this.widths_ = {};\n /**\n * @private\n * @type {Object<string, import(\"../canvas.js\").Label>}\n */\n this.labels_ = {};\n }\n /**\n * @param {string} text Text.\n * @param {string} textKey Text style key.\n * @param {string} fillKey Fill style key.\n * @param {string} strokeKey Stroke style key.\n * @return {import(\"../canvas.js\").Label} Label.\n */\n Executor.prototype.createLabel = function (text, textKey, fillKey, strokeKey) {\n var key = text + textKey + fillKey + strokeKey;\n if (this.labels_[key]) {\n return this.labels_[key];\n }\n var strokeState = strokeKey ? this.strokeStates[strokeKey] : null;\n var fillState = fillKey ? this.fillStates[fillKey] : null;\n var textState = this.textStates[textKey];\n var pixelRatio = this.pixelRatio;\n var scale = [\n textState.scale[0] * pixelRatio,\n textState.scale[1] * pixelRatio,\n ];\n var align = horizontalTextAlign(text, textState.textAlign || defaultTextAlign);\n var strokeWidth = strokeKey && strokeState.lineWidth ? strokeState.lineWidth : 0;\n var lines = text.split('\\n');\n var numLines = lines.length;\n var widths = [];\n var width = measureTextWidths(textState.font, lines, widths);\n var lineHeight = measureTextHeight(textState.font);\n var height = lineHeight * numLines;\n var renderWidth = width + strokeWidth;\n var contextInstructions = [];\n // make canvas 2 pixels wider to account for italic text width measurement errors\n var w = (renderWidth + 2) * scale[0];\n var h = (height + strokeWidth) * scale[1];\n /** @type {import(\"../canvas.js\").Label} */\n var label = {\n width: w < 0 ? Math.floor(w) : Math.ceil(w),\n height: h < 0 ? Math.floor(h) : Math.ceil(h),\n contextInstructions: contextInstructions,\n };\n if (scale[0] != 1 || scale[1] != 1) {\n contextInstructions.push('scale', scale);\n }\n contextInstructions.push('font', textState.font);\n if (strokeKey) {\n contextInstructions.push('strokeStyle', strokeState.strokeStyle);\n contextInstructions.push('lineWidth', strokeWidth);\n contextInstructions.push('lineCap', strokeState.lineCap);\n contextInstructions.push('lineJoin', strokeState.lineJoin);\n contextInstructions.push('miterLimit', strokeState.miterLimit);\n // eslint-disable-next-line\n var Context = WORKER_OFFSCREEN_CANVAS ? OffscreenCanvasRenderingContext2D : CanvasRenderingContext2D;\n if (Context.prototype.setLineDash) {\n contextInstructions.push('setLineDash', [strokeState.lineDash]);\n contextInstructions.push('lineDashOffset', strokeState.lineDashOffset);\n }\n }\n if (fillKey) {\n contextInstructions.push('fillStyle', fillState.fillStyle);\n }\n contextInstructions.push('textBaseline', 'middle');\n contextInstructions.push('textAlign', 'center');\n var leftRight = 0.5 - align;\n var x = align * renderWidth + leftRight * strokeWidth;\n var i;\n if (strokeKey) {\n for (i = 0; i < numLines; ++i) {\n contextInstructions.push('strokeText', [\n lines[i],\n x + leftRight * widths[i],\n 0.5 * (strokeWidth + lineHeight) + i * lineHeight,\n ]);\n }\n }\n if (fillKey) {\n for (i = 0; i < numLines; ++i) {\n contextInstructions.push('fillText', [\n lines[i],\n x + leftRight * widths[i],\n 0.5 * (strokeWidth + lineHeight) + i * lineHeight,\n ]);\n }\n }\n this.labels_[key] = label;\n return label;\n };\n /**\n * @param {CanvasRenderingContext2D} context Context.\n * @param {import(\"../../coordinate.js\").Coordinate} p1 1st point of the background box.\n * @param {import(\"../../coordinate.js\").Coordinate} p2 2nd point of the background box.\n * @param {import(\"../../coordinate.js\").Coordinate} p3 3rd point of the background box.\n * @param {import(\"../../coordinate.js\").Coordinate} p4 4th point of the background box.\n * @param {Array<*>} fillInstruction Fill instruction.\n * @param {Array<*>} strokeInstruction Stroke instruction.\n */\n Executor.prototype.replayTextBackground_ = function (context, p1, p2, p3, p4, fillInstruction, strokeInstruction) {\n context.beginPath();\n context.moveTo.apply(context, p1);\n context.lineTo.apply(context, p2);\n context.lineTo.apply(context, p3);\n context.lineTo.apply(context, p4);\n context.lineTo.apply(context, p1);\n if (fillInstruction) {\n this.alignFill_ = /** @type {boolean} */ (fillInstruction[2]);\n this.fill_(context);\n }\n if (strokeInstruction) {\n this.setStrokeStyle_(context, \n /** @type {Array<*>} */ (strokeInstruction));\n context.stroke();\n }\n };\n /**\n * @private\n * @param {number} sheetWidth Width of the sprite sheet.\n * @param {number} sheetHeight Height of the sprite sheet.\n * @param {number} centerX X.\n * @param {number} centerY Y.\n * @param {number} width Width.\n * @param {number} height Height.\n * @param {number} anchorX Anchor X.\n * @param {number} anchorY Anchor Y.\n * @param {number} originX Origin X.\n * @param {number} originY Origin Y.\n * @param {number} rotation Rotation.\n * @param {import(\"../../size.js\").Size} scale Scale.\n * @param {boolean} snapToPixel Snap to pixel.\n * @param {Array<number>} padding Padding.\n * @param {boolean} fillStroke Background fill or stroke.\n * @param {import(\"../../Feature.js\").FeatureLike} feature Feature.\n * @return {ImageOrLabelDimensions} Dimensions for positioning and decluttering the image or label.\n */\n Executor.prototype.calculateImageOrLabelDimensions_ = function (sheetWidth, sheetHeight, centerX, centerY, width, height, anchorX, anchorY, originX, originY, rotation, scale, snapToPixel, padding, fillStroke, feature) {\n anchorX *= scale[0];\n anchorY *= scale[1];\n var x = centerX - anchorX;\n var y = centerY - anchorY;\n var w = width + originX > sheetWidth ? sheetWidth - originX : width;\n var h = height + originY > sheetHeight ? sheetHeight - originY : height;\n var boxW = padding[3] + w * scale[0] + padding[1];\n var boxH = padding[0] + h * scale[1] + padding[2];\n var boxX = x - padding[3];\n var boxY = y - padding[0];\n if (fillStroke || rotation !== 0) {\n p1[0] = boxX;\n p4[0] = boxX;\n p1[1] = boxY;\n p2[1] = boxY;\n p2[0] = boxX + boxW;\n p3[0] = p2[0];\n p3[1] = boxY + boxH;\n p4[1] = p3[1];\n }\n var transform;\n if (rotation !== 0) {\n transform = composeTransform(createTransform(), centerX, centerY, 1, 1, rotation, -centerX, -centerY);\n applyTransform(transform, p1);\n applyTransform(transform, p2);\n applyTransform(transform, p3);\n applyTransform(transform, p4);\n createOrUpdate(Math.min(p1[0], p2[0], p3[0], p4[0]), Math.min(p1[1], p2[1], p3[1], p4[1]), Math.max(p1[0], p2[0], p3[0], p4[0]), Math.max(p1[1], p2[1], p3[1], p4[1]), tmpExtent);\n }\n else {\n createOrUpdate(Math.min(boxX, boxX + boxW), Math.min(boxY, boxY + boxH), Math.max(boxX, boxX + boxW), Math.max(boxY, boxY + boxH), tmpExtent);\n }\n if (snapToPixel) {\n x = Math.round(x);\n y = Math.round(y);\n }\n return {\n drawImageX: x,\n drawImageY: y,\n drawImageW: w,\n drawImageH: h,\n originX: originX,\n originY: originY,\n declutterBox: {\n minX: tmpExtent[0],\n minY: tmpExtent[1],\n maxX: tmpExtent[2],\n maxY: tmpExtent[3],\n value: feature,\n },\n canvasTransform: transform,\n scale: scale,\n };\n };\n /**\n * @private\n * @param {CanvasRenderingContext2D} context Context.\n * @param {number} contextScale Scale of the context.\n * @param {import(\"../canvas.js\").Label|HTMLImageElement|HTMLCanvasElement|HTMLVideoElement} imageOrLabel Image.\n * @param {ImageOrLabelDimensions} dimensions Dimensions.\n * @param {number} opacity Opacity.\n * @param {Array<*>} fillInstruction Fill instruction.\n * @param {Array<*>} strokeInstruction Stroke instruction.\n * @return {boolean} The image or label was rendered.\n */\n Executor.prototype.replayImageOrLabel_ = function (context, contextScale, imageOrLabel, dimensions, opacity, fillInstruction, strokeInstruction) {\n var fillStroke = !!(fillInstruction || strokeInstruction);\n var box = dimensions.declutterBox;\n var canvas = context.canvas;\n var strokePadding = strokeInstruction\n ? (strokeInstruction[2] * dimensions.scale[0]) / 2\n : 0;\n var intersects = box.minX - strokePadding <= canvas.width / contextScale &&\n box.maxX + strokePadding >= 0 &&\n box.minY - strokePadding <= canvas.height / contextScale &&\n box.maxY + strokePadding >= 0;\n if (intersects) {\n if (fillStroke) {\n this.replayTextBackground_(context, p1, p2, p3, p4, \n /** @type {Array<*>} */ (fillInstruction), \n /** @type {Array<*>} */ (strokeInstruction));\n }\n drawImageOrLabel(context, dimensions.canvasTransform, opacity, imageOrLabel, dimensions.originX, dimensions.originY, dimensions.drawImageW, dimensions.drawImageH, dimensions.drawImageX, dimensions.drawImageY, dimensions.scale);\n }\n return true;\n };\n /**\n * @private\n * @param {CanvasRenderingContext2D} context Context.\n */\n Executor.prototype.fill_ = function (context) {\n if (this.alignFill_) {\n var origin_1 = applyTransform(this.renderedTransform_, [0, 0]);\n var repeatSize = 512 * this.pixelRatio;\n context.save();\n context.translate(origin_1[0] % repeatSize, origin_1[1] % repeatSize);\n context.rotate(this.viewRotation_);\n }\n context.fill();\n if (this.alignFill_) {\n context.restore();\n }\n };\n /**\n * @private\n * @param {CanvasRenderingContext2D} context Context.\n * @param {Array<*>} instruction Instruction.\n */\n Executor.prototype.setStrokeStyle_ = function (context, instruction) {\n context['strokeStyle'] =\n /** @type {import(\"../../colorlike.js\").ColorLike} */ (instruction[1]);\n context.lineWidth = /** @type {number} */ (instruction[2]);\n context.lineCap = /** @type {CanvasLineCap} */ (instruction[3]);\n context.lineJoin = /** @type {CanvasLineJoin} */ (instruction[4]);\n context.miterLimit = /** @type {number} */ (instruction[5]);\n if (context.setLineDash) {\n context.lineDashOffset = /** @type {number} */ (instruction[7]);\n context.setLineDash(/** @type {Array<number>} */ (instruction[6]));\n }\n };\n /**\n * @private\n * @param {string} text The text to draw.\n * @param {string} textKey The key of the text state.\n * @param {string} strokeKey The key for the stroke state.\n * @param {string} fillKey The key for the fill state.\n * @return {{label: import(\"../canvas.js\").Label, anchorX: number, anchorY: number}} The text image and its anchor.\n */\n Executor.prototype.drawLabelWithPointPlacement_ = function (text, textKey, strokeKey, fillKey) {\n var textState = this.textStates[textKey];\n var label = this.createLabel(text, textKey, fillKey, strokeKey);\n var strokeState = this.strokeStates[strokeKey];\n var pixelRatio = this.pixelRatio;\n var align = horizontalTextAlign(text, textState.textAlign || defaultTextAlign);\n var baseline = TEXT_ALIGN[textState.textBaseline || defaultTextBaseline];\n var strokeWidth = strokeState && strokeState.lineWidth ? strokeState.lineWidth : 0;\n // Remove the 2 pixels we added in createLabel() for the anchor\n var width = label.width / pixelRatio - 2 * textState.scale[0];\n var anchorX = align * width + 2 * (0.5 - align) * strokeWidth;\n var anchorY = (baseline * label.height) / pixelRatio +\n 2 * (0.5 - baseline) * strokeWidth;\n return {\n label: label,\n anchorX: anchorX,\n anchorY: anchorY,\n };\n };\n /**\n * @private\n * @param {CanvasRenderingContext2D} context Context.\n * @param {number} contextScale Scale of the context.\n * @param {import(\"../../transform.js\").Transform} transform Transform.\n * @param {Array<*>} instructions Instructions array.\n * @param {boolean} snapToPixel Snap point symbols and text to integer pixels.\n * @param {FeatureCallback<T>} [opt_featureCallback] Feature callback.\n * @param {import(\"../../extent.js\").Extent} [opt_hitExtent] Only check\n * features that intersect this extent.\n * @param {import(\"rbush\").default} [opt_declutterTree] Declutter tree.\n * @return {T|undefined} Callback result.\n * @template T\n */\n Executor.prototype.execute_ = function (context, contextScale, transform, instructions, snapToPixel, opt_featureCallback, opt_hitExtent, opt_declutterTree) {\n /** @type {Array<number>} */\n var pixelCoordinates;\n if (this.pixelCoordinates_ && equals(transform, this.renderedTransform_)) {\n pixelCoordinates = this.pixelCoordinates_;\n }\n else {\n if (!this.pixelCoordinates_) {\n this.pixelCoordinates_ = [];\n }\n pixelCoordinates = transform2D(this.coordinates, 0, this.coordinates.length, 2, transform, this.pixelCoordinates_);\n transformSetFromArray(this.renderedTransform_, transform);\n }\n var i = 0; // instruction index\n var ii = instructions.length; // end of instructions\n var d = 0; // data index\n var dd; // end of per-instruction data\n var anchorX, anchorY, prevX, prevY, roundX, roundY, image, text, textKey, strokeKey, fillKey;\n var pendingFill = 0;\n var pendingStroke = 0;\n var lastFillInstruction = null;\n var lastStrokeInstruction = null;\n var coordinateCache = this.coordinateCache_;\n var viewRotation = this.viewRotation_;\n var viewRotationFromTransform = Math.round(Math.atan2(-transform[1], transform[0]) * 1e12) / 1e12;\n var state = /** @type {import(\"../../render.js\").State} */ ({\n context: context,\n pixelRatio: this.pixelRatio,\n resolution: this.resolution,\n rotation: viewRotation,\n });\n // When the batch size gets too big, performance decreases. 200 is a good\n // balance between batch size and number of fill/stroke instructions.\n var batchSize = this.instructions != instructions || this.overlaps ? 0 : 200;\n var /** @type {import(\"../../Feature.js\").FeatureLike} */ feature;\n var x, y, currentGeometry;\n while (i < ii) {\n var instruction = instructions[i];\n var type = /** @type {import(\"./Instruction.js\").default} */ (instruction[0]);\n switch (type) {\n case CanvasInstruction.BEGIN_GEOMETRY:\n feature = /** @type {import(\"../../Feature.js\").FeatureLike} */ (instruction[1]);\n currentGeometry = instruction[3];\n if (!feature.getGeometry()) {\n i = /** @type {number} */ (instruction[2]);\n }\n else if (opt_hitExtent !== undefined &&\n !intersects(opt_hitExtent, currentGeometry.getExtent())) {\n i = /** @type {number} */ (instruction[2]) + 1;\n }\n else {\n ++i;\n }\n break;\n case CanvasInstruction.BEGIN_PATH:\n if (pendingFill > batchSize) {\n this.fill_(context);\n pendingFill = 0;\n }\n if (pendingStroke > batchSize) {\n context.stroke();\n pendingStroke = 0;\n }\n if (!pendingFill && !pendingStroke) {\n context.beginPath();\n prevX = NaN;\n prevY = NaN;\n }\n ++i;\n break;\n case CanvasInstruction.CIRCLE:\n d = /** @type {number} */ (instruction[1]);\n var x1 = pixelCoordinates[d];\n var y1 = pixelCoordinates[d + 1];\n var x2 = pixelCoordinates[d + 2];\n var y2 = pixelCoordinates[d + 3];\n var dx = x2 - x1;\n var dy = y2 - y1;\n var r = Math.sqrt(dx * dx + dy * dy);\n context.moveTo(x1 + r, y1);\n context.arc(x1, y1, r, 0, 2 * Math.PI, true);\n ++i;\n break;\n case CanvasInstruction.CLOSE_PATH:\n context.closePath();\n ++i;\n break;\n case CanvasInstruction.CUSTOM:\n d = /** @type {number} */ (instruction[1]);\n dd = instruction[2];\n var geometry = \n /** @type {import(\"../../geom/SimpleGeometry.js\").default} */ (instruction[3]);\n var renderer = instruction[4];\n var fn = instruction.length == 6 ? instruction[5] : undefined;\n state.geometry = geometry;\n state.feature = feature;\n if (!(i in coordinateCache)) {\n coordinateCache[i] = [];\n }\n var coords = coordinateCache[i];\n if (fn) {\n fn(pixelCoordinates, d, dd, 2, coords);\n }\n else {\n coords[0] = pixelCoordinates[d];\n coords[1] = pixelCoordinates[d + 1];\n coords.length = 2;\n }\n renderer(coords, state);\n ++i;\n break;\n case CanvasInstruction.DRAW_IMAGE:\n d = /** @type {number} */ (instruction[1]);\n dd = /** @type {number} */ (instruction[2]);\n image =\n /** @type {HTMLCanvasElement|HTMLVideoElement|HTMLImageElement} */ (instruction[3]);\n // Remaining arguments in DRAW_IMAGE are in alphabetical order\n anchorX = /** @type {number} */ (instruction[4]);\n anchorY = /** @type {number} */ (instruction[5]);\n var height = /** @type {number} */ (instruction[6]);\n var opacity = /** @type {number} */ (instruction[7]);\n var originX = /** @type {number} */ (instruction[8]);\n var originY = /** @type {number} */ (instruction[9]);\n var rotateWithView = /** @type {boolean} */ (instruction[10]);\n var rotation = /** @type {number} */ (instruction[11]);\n var scale = /** @type {import(\"../../size.js\").Size} */ (instruction[12]);\n var width = /** @type {number} */ (instruction[13]);\n var declutterImageWithText = \n /** @type {import(\"../canvas.js\").DeclutterImageWithText} */ (instruction[14]);\n if (!image && instruction.length >= 19) {\n // create label images\n text = /** @type {string} */ (instruction[18]);\n textKey = /** @type {string} */ (instruction[19]);\n strokeKey = /** @type {string} */ (instruction[20]);\n fillKey = /** @type {string} */ (instruction[21]);\n var labelWithAnchor = this.drawLabelWithPointPlacement_(text, textKey, strokeKey, fillKey);\n image = labelWithAnchor.label;\n instruction[3] = image;\n var textOffsetX = /** @type {number} */ (instruction[22]);\n anchorX = (labelWithAnchor.anchorX - textOffsetX) * this.pixelRatio;\n instruction[4] = anchorX;\n var textOffsetY = /** @type {number} */ (instruction[23]);\n anchorY = (labelWithAnchor.anchorY - textOffsetY) * this.pixelRatio;\n instruction[5] = anchorY;\n height = image.height;\n instruction[6] = height;\n width = image.width;\n instruction[13] = width;\n }\n var geometryWidths = void 0;\n if (instruction.length > 24) {\n geometryWidths = /** @type {number} */ (instruction[24]);\n }\n var padding = void 0, backgroundFill = void 0, backgroundStroke = void 0;\n if (instruction.length > 16) {\n padding = /** @type {Array<number>} */ (instruction[15]);\n backgroundFill = /** @type {boolean} */ (instruction[16]);\n backgroundStroke = /** @type {boolean} */ (instruction[17]);\n }\n else {\n padding = defaultPadding;\n backgroundFill = false;\n backgroundStroke = false;\n }\n if (rotateWithView && viewRotationFromTransform) {\n // Canvas is expected to be rotated to reverse view rotation.\n rotation += viewRotation;\n }\n else if (!rotateWithView && !viewRotationFromTransform) {\n // Canvas is not rotated, images need to be rotated back to be north-up.\n rotation -= viewRotation;\n }\n var widthIndex = 0;\n for (; d < dd; d += 2) {\n if (geometryWidths &&\n geometryWidths[widthIndex++] < width / this.pixelRatio) {\n continue;\n }\n var dimensions = this.calculateImageOrLabelDimensions_(image.width, image.height, pixelCoordinates[d], pixelCoordinates[d + 1], width, height, anchorX, anchorY, originX, originY, rotation, scale, snapToPixel, padding, backgroundFill || backgroundStroke, feature);\n /** @type {ReplayImageOrLabelArgs} */\n var args = [\n context,\n contextScale,\n image,\n dimensions,\n opacity,\n backgroundFill\n ? /** @type {Array<*>} */ (lastFillInstruction)\n : null,\n backgroundStroke\n ? /** @type {Array<*>} */ (lastStrokeInstruction)\n : null,\n ];\n var imageArgs = void 0;\n var imageDeclutterBox = void 0;\n if (opt_declutterTree && declutterImageWithText) {\n var index = dd - d;\n if (!declutterImageWithText[index]) {\n // We now have the image for an image+text combination.\n declutterImageWithText[index] = args;\n // Don't render anything for now, wait for the text.\n continue;\n }\n imageArgs = declutterImageWithText[index];\n delete declutterImageWithText[index];\n imageDeclutterBox = getDeclutterBox(imageArgs);\n if (opt_declutterTree.collides(imageDeclutterBox)) {\n continue;\n }\n }\n if (opt_declutterTree &&\n opt_declutterTree.collides(dimensions.declutterBox)) {\n continue;\n }\n if (imageArgs) {\n // We now have image and text for an image+text combination.\n if (opt_declutterTree) {\n opt_declutterTree.insert(imageDeclutterBox);\n }\n // Render the image before we render the text.\n this.replayImageOrLabel_.apply(this, imageArgs);\n }\n if (opt_declutterTree) {\n opt_declutterTree.insert(dimensions.declutterBox);\n }\n this.replayImageOrLabel_.apply(this, args);\n }\n ++i;\n break;\n case CanvasInstruction.DRAW_CHARS:\n var begin = /** @type {number} */ (instruction[1]);\n var end = /** @type {number} */ (instruction[2]);\n var baseline = /** @type {number} */ (instruction[3]);\n var overflow = /** @type {number} */ (instruction[4]);\n fillKey = /** @type {string} */ (instruction[5]);\n var maxAngle = /** @type {number} */ (instruction[6]);\n var measurePixelRatio = /** @type {number} */ (instruction[7]);\n var offsetY = /** @type {number} */ (instruction[8]);\n strokeKey = /** @type {string} */ (instruction[9]);\n var strokeWidth = /** @type {number} */ (instruction[10]);\n text = /** @type {string} */ (instruction[11]);\n textKey = /** @type {string} */ (instruction[12]);\n var pixelRatioScale = [\n /** @type {number} */ (instruction[13]),\n /** @type {number} */ (instruction[13]),\n ];\n var textState = this.textStates[textKey];\n var font = textState.font;\n var textScale = [\n textState.scale[0] * measurePixelRatio,\n textState.scale[1] * measurePixelRatio,\n ];\n var cachedWidths = void 0;\n if (font in this.widths_) {\n cachedWidths = this.widths_[font];\n }\n else {\n cachedWidths = {};\n this.widths_[font] = cachedWidths;\n }\n var pathLength = lineStringLength(pixelCoordinates, begin, end, 2);\n var textLength = Math.abs(textScale[0]) *\n measureAndCacheTextWidth(font, text, cachedWidths);\n if (overflow || textLength <= pathLength) {\n var textAlign = this.textStates[textKey].textAlign;\n var startM = (pathLength - textLength) * TEXT_ALIGN[textAlign];\n var parts = drawTextOnPath(pixelCoordinates, begin, end, 2, text, startM, maxAngle, Math.abs(textScale[0]), measureAndCacheTextWidth, font, cachedWidths, viewRotationFromTransform ? 0 : this.viewRotation_);\n drawChars: if (parts) {\n /** @type {Array<ReplayImageOrLabelArgs>} */\n var replayImageOrLabelArgs = [];\n var c = void 0, cc = void 0, chars = void 0, label = void 0, part = void 0;\n if (strokeKey) {\n for (c = 0, cc = parts.length; c < cc; ++c) {\n part = parts[c]; // x, y, anchorX, rotation, chunk\n chars = /** @type {string} */ (part[4]);\n label = this.createLabel(chars, textKey, '', strokeKey);\n anchorX =\n /** @type {number} */ (part[2]) +\n (textScale[0] < 0 ? -strokeWidth : strokeWidth);\n anchorY =\n baseline * label.height +\n ((0.5 - baseline) * 2 * strokeWidth * textScale[1]) /\n textScale[0] -\n offsetY;\n var dimensions = this.calculateImageOrLabelDimensions_(label.width, label.height, part[0], part[1], label.width, label.height, anchorX, anchorY, 0, 0, part[3], pixelRatioScale, false, defaultPadding, false, feature);\n if (opt_declutterTree &&\n opt_declutterTree.collides(dimensions.declutterBox)) {\n break drawChars;\n }\n replayImageOrLabelArgs.push([\n context,\n contextScale,\n label,\n dimensions,\n 1,\n null,\n null,\n ]);\n }\n }\n if (fillKey) {\n for (c = 0, cc = parts.length; c < cc; ++c) {\n part = parts[c]; // x, y, anchorX, rotation, chunk\n chars = /** @type {string} */ (part[4]);\n label = this.createLabel(chars, textKey, fillKey, '');\n anchorX = /** @type {number} */ (part[2]);\n anchorY = baseline * label.height - offsetY;\n var dimensions = this.calculateImageOrLabelDimensions_(label.width, label.height, part[0], part[1], label.width, label.height, anchorX, anchorY, 0, 0, part[3], pixelRatioScale, false, defaultPadding, false, feature);\n if (opt_declutterTree &&\n opt_declutterTree.collides(dimensions.declutterBox)) {\n break drawChars;\n }\n replayImageOrLabelArgs.push([\n context,\n contextScale,\n label,\n dimensions,\n 1,\n null,\n null,\n ]);\n }\n }\n if (opt_declutterTree) {\n opt_declutterTree.load(replayImageOrLabelArgs.map(getDeclutterBox));\n }\n for (var i_1 = 0, ii_1 = replayImageOrLabelArgs.length; i_1 < ii_1; ++i_1) {\n this.replayImageOrLabel_.apply(this, replayImageOrLabelArgs[i_1]);\n }\n }\n }\n ++i;\n break;\n case CanvasInstruction.END_GEOMETRY:\n if (opt_featureCallback !== undefined) {\n feature = /** @type {import(\"../../Feature.js\").FeatureLike} */ (instruction[1]);\n var result = opt_featureCallback(feature, currentGeometry);\n if (result) {\n return result;\n }\n }\n ++i;\n break;\n case CanvasInstruction.FILL:\n if (batchSize) {\n pendingFill++;\n }\n else {\n this.fill_(context);\n }\n ++i;\n break;\n case CanvasInstruction.MOVE_TO_LINE_TO:\n d = /** @type {number} */ (instruction[1]);\n dd = /** @type {number} */ (instruction[2]);\n x = pixelCoordinates[d];\n y = pixelCoordinates[d + 1];\n roundX = (x + 0.5) | 0;\n roundY = (y + 0.5) | 0;\n if (roundX !== prevX || roundY !== prevY) {\n context.moveTo(x, y);\n prevX = roundX;\n prevY = roundY;\n }\n for (d += 2; d < dd; d += 2) {\n x = pixelCoordinates[d];\n y = pixelCoordinates[d + 1];\n roundX = (x + 0.5) | 0;\n roundY = (y + 0.5) | 0;\n if (d == dd - 2 || roundX !== prevX || roundY !== prevY) {\n context.lineTo(x, y);\n prevX = roundX;\n prevY = roundY;\n }\n }\n ++i;\n break;\n case CanvasInstruction.SET_FILL_STYLE:\n lastFillInstruction = instruction;\n this.alignFill_ = instruction[2];\n if (pendingFill) {\n this.fill_(context);\n pendingFill = 0;\n if (pendingStroke) {\n context.stroke();\n pendingStroke = 0;\n }\n }\n context.fillStyle =\n /** @type {import(\"../../colorlike.js\").ColorLike} */ (instruction[1]);\n ++i;\n break;\n case CanvasInstruction.SET_STROKE_STYLE:\n lastStrokeInstruction = instruction;\n if (pendingStroke) {\n context.stroke();\n pendingStroke = 0;\n }\n this.setStrokeStyle_(context, /** @type {Array<*>} */ (instruction));\n ++i;\n break;\n case CanvasInstruction.STROKE:\n if (batchSize) {\n pendingStroke++;\n }\n else {\n context.stroke();\n }\n ++i;\n break;\n default:\n ++i; // consume the instruction anyway, to avoid an infinite loop\n break;\n }\n }\n if (pendingFill) {\n this.fill_(context);\n }\n if (pendingStroke) {\n context.stroke();\n }\n return undefined;\n };\n /**\n * @param {CanvasRenderingContext2D} context Context.\n * @param {number} contextScale Scale of the context.\n * @param {import(\"../../transform.js\").Transform} transform Transform.\n * @param {number} viewRotation View rotation.\n * @param {boolean} snapToPixel Snap point symbols and text to integer pixels.\n * @param {import(\"rbush\").default} [opt_declutterTree] Declutter tree.\n */\n Executor.prototype.execute = function (context, contextScale, transform, viewRotation, snapToPixel, opt_declutterTree) {\n this.viewRotation_ = viewRotation;\n this.execute_(context, contextScale, transform, this.instructions, snapToPixel, undefined, undefined, opt_declutterTree);\n };\n /**\n * @param {CanvasRenderingContext2D} context Context.\n * @param {import(\"../../transform.js\").Transform} transform Transform.\n * @param {number} viewRotation View rotation.\n * @param {FeatureCallback<T>} [opt_featureCallback] Feature callback.\n * @param {import(\"../../extent.js\").Extent} [opt_hitExtent] Only check\n * features that intersect this extent.\n * @return {T|undefined} Callback result.\n * @template T\n */\n Executor.prototype.executeHitDetection = function (context, transform, viewRotation, opt_featureCallback, opt_hitExtent) {\n this.viewRotation_ = viewRotation;\n return this.execute_(context, 1, transform, this.hitDetectionInstructions, true, opt_featureCallback, opt_hitExtent);\n };\n return Executor;\n}());\nexport default Executor;\n//# sourceMappingURL=Executor.js.map","/**\n * @module ol/render/canvas/ExecutorGroup\n */\nimport BuilderType from './BuilderType.js';\nimport Executor from './Executor.js';\nimport { buffer, createEmpty, extendCoordinate } from '../../extent.js';\nimport { compose as composeTransform, create as createTransform, } from '../../transform.js';\nimport { createCanvasContext2D } from '../../dom.js';\nimport { isEmpty } from '../../obj.js';\nimport { numberSafeCompareFunction } from '../../array.js';\nimport { transform2D } from '../../geom/flat/transform.js';\n/**\n * @const\n * @type {Array<import(\"./BuilderType.js\").default>}\n */\nvar ORDER = [\n BuilderType.POLYGON,\n BuilderType.CIRCLE,\n BuilderType.LINE_STRING,\n BuilderType.IMAGE,\n BuilderType.TEXT,\n BuilderType.DEFAULT,\n];\nvar ExecutorGroup = /** @class */ (function () {\n /**\n * @param {import(\"../../extent.js\").Extent} maxExtent Max extent for clipping. When a\n * `maxExtent` was set on the Builder for this executor group, the same `maxExtent`\n * should be set here, unless the target context does not exceed that extent (which\n * can be the case when rendering to tiles).\n * @param {number} resolution Resolution.\n * @param {number} pixelRatio Pixel ratio.\n * @param {boolean} overlaps The executor group can have overlapping geometries.\n * @param {!Object<string, !Object<import(\"./BuilderType.js\").default, import(\"../canvas.js\").SerializableInstructions>>} allInstructions\n * The serializable instructions.\n * @param {number} [opt_renderBuffer] Optional rendering buffer.\n */\n function ExecutorGroup(maxExtent, resolution, pixelRatio, overlaps, allInstructions, opt_renderBuffer) {\n /**\n * @private\n * @type {import(\"../../extent.js\").Extent}\n */\n this.maxExtent_ = maxExtent;\n /**\n * @private\n * @type {boolean}\n */\n this.overlaps_ = overlaps;\n /**\n * @private\n * @type {number}\n */\n this.pixelRatio_ = pixelRatio;\n /**\n * @private\n * @type {number}\n */\n this.resolution_ = resolution;\n /**\n * @private\n * @type {number|undefined}\n */\n this.renderBuffer_ = opt_renderBuffer;\n /**\n * @private\n * @type {!Object<string, !Object<import(\"./BuilderType.js\").default, import(\"./Executor\").default>>}\n */\n this.executorsByZIndex_ = {};\n /**\n * @private\n * @type {CanvasRenderingContext2D}\n */\n this.hitDetectionContext_ = null;\n /**\n * @private\n * @type {import(\"../../transform.js\").Transform}\n */\n this.hitDetectionTransform_ = createTransform();\n this.createExecutors_(allInstructions);\n }\n /**\n * @param {CanvasRenderingContext2D} context Context.\n * @param {import(\"../../transform.js\").Transform} transform Transform.\n */\n ExecutorGroup.prototype.clip = function (context, transform) {\n var flatClipCoords = this.getClipCoords(transform);\n context.beginPath();\n context.moveTo(flatClipCoords[0], flatClipCoords[1]);\n context.lineTo(flatClipCoords[2], flatClipCoords[3]);\n context.lineTo(flatClipCoords[4], flatClipCoords[5]);\n context.lineTo(flatClipCoords[6], flatClipCoords[7]);\n context.clip();\n };\n /**\n * Create executors and populate them using the provided instructions.\n * @private\n * @param {!Object<string, !Object<import(\"./BuilderType.js\").default, import(\"../canvas.js\").SerializableInstructions>>} allInstructions The serializable instructions\n */\n ExecutorGroup.prototype.createExecutors_ = function (allInstructions) {\n for (var zIndex in allInstructions) {\n var executors = this.executorsByZIndex_[zIndex];\n if (executors === undefined) {\n executors = {};\n this.executorsByZIndex_[zIndex] = executors;\n }\n var instructionByZindex = allInstructions[zIndex];\n for (var builderType in instructionByZindex) {\n var instructions = instructionByZindex[builderType];\n executors[builderType] = new Executor(this.resolution_, this.pixelRatio_, this.overlaps_, instructions);\n }\n }\n };\n /**\n * @param {Array<import(\"./BuilderType.js\").default>} executors Executors.\n * @return {boolean} Has executors of the provided types.\n */\n ExecutorGroup.prototype.hasExecutors = function (executors) {\n for (var zIndex in this.executorsByZIndex_) {\n var candidates = this.executorsByZIndex_[zIndex];\n for (var i = 0, ii = executors.length; i < ii; ++i) {\n if (executors[i] in candidates) {\n return true;\n }\n }\n }\n return false;\n };\n /**\n * @param {import(\"../../coordinate.js\").Coordinate} coordinate Coordinate.\n * @param {number} resolution Resolution.\n * @param {number} rotation Rotation.\n * @param {number} hitTolerance Hit tolerance in pixels.\n * @param {function(import(\"../../Feature.js\").FeatureLike, import(\"../../geom/SimpleGeometry.js\").default, number): T} callback Feature callback.\n * @param {Array<import(\"../../Feature.js\").FeatureLike>} declutteredFeatures Decluttered features.\n * @return {T|undefined} Callback result.\n * @template T\n */\n ExecutorGroup.prototype.forEachFeatureAtCoordinate = function (coordinate, resolution, rotation, hitTolerance, callback, declutteredFeatures) {\n hitTolerance = Math.round(hitTolerance);\n var contextSize = hitTolerance * 2 + 1;\n var transform = composeTransform(this.hitDetectionTransform_, hitTolerance + 0.5, hitTolerance + 0.5, 1 / resolution, -1 / resolution, -rotation, -coordinate[0], -coordinate[1]);\n var newContext = !this.hitDetectionContext_;\n if (newContext) {\n this.hitDetectionContext_ = createCanvasContext2D(contextSize, contextSize);\n }\n var context = this.hitDetectionContext_;\n if (context.canvas.width !== contextSize ||\n context.canvas.height !== contextSize) {\n context.canvas.width = contextSize;\n context.canvas.height = contextSize;\n }\n else if (!newContext) {\n context.clearRect(0, 0, contextSize, contextSize);\n }\n /**\n * @type {import(\"../../extent.js\").Extent}\n */\n var hitExtent;\n if (this.renderBuffer_ !== undefined) {\n hitExtent = createEmpty();\n extendCoordinate(hitExtent, coordinate);\n buffer(hitExtent, resolution * (this.renderBuffer_ + hitTolerance), hitExtent);\n }\n var indexes = getPixelIndexArray(hitTolerance);\n var builderType;\n /**\n * @param {import(\"../../Feature.js\").FeatureLike} feature Feature.\n * @param {import(\"../../geom/SimpleGeometry.js\").default} geometry Geometry.\n * @return {T|undefined} Callback result.\n */\n function featureCallback(feature, geometry) {\n var imageData = context.getImageData(0, 0, contextSize, contextSize).data;\n for (var i_1 = 0, ii = indexes.length; i_1 < ii; i_1++) {\n if (imageData[indexes[i_1]] > 0) {\n if (!declutteredFeatures ||\n (builderType !== BuilderType.IMAGE &&\n builderType !== BuilderType.TEXT) ||\n declutteredFeatures.indexOf(feature) !== -1) {\n var idx = (indexes[i_1] - 3) / 4;\n var x = hitTolerance - (idx % contextSize);\n var y = hitTolerance - ((idx / contextSize) | 0);\n var result_1 = callback(feature, geometry, x * x + y * y);\n if (result_1) {\n return result_1;\n }\n }\n context.clearRect(0, 0, contextSize, contextSize);\n break;\n }\n }\n return undefined;\n }\n /** @type {Array<number>} */\n var zs = Object.keys(this.executorsByZIndex_).map(Number);\n zs.sort(numberSafeCompareFunction);\n var i, j, executors, executor, result;\n for (i = zs.length - 1; i >= 0; --i) {\n var zIndexKey = zs[i].toString();\n executors = this.executorsByZIndex_[zIndexKey];\n for (j = ORDER.length - 1; j >= 0; --j) {\n builderType = ORDER[j];\n executor = executors[builderType];\n if (executor !== undefined) {\n result = executor.executeHitDetection(context, transform, rotation, featureCallback, hitExtent);\n if (result) {\n return result;\n }\n }\n }\n }\n return undefined;\n };\n /**\n * @param {import(\"../../transform.js\").Transform} transform Transform.\n * @return {Array<number>} Clip coordinates.\n */\n ExecutorGroup.prototype.getClipCoords = function (transform) {\n var maxExtent = this.maxExtent_;\n if (!maxExtent) {\n return null;\n }\n var minX = maxExtent[0];\n var minY = maxExtent[1];\n var maxX = maxExtent[2];\n var maxY = maxExtent[3];\n var flatClipCoords = [minX, minY, minX, maxY, maxX, maxY, maxX, minY];\n transform2D(flatClipCoords, 0, 8, 2, transform, flatClipCoords);\n return flatClipCoords;\n };\n /**\n * @return {boolean} Is empty.\n */\n ExecutorGroup.prototype.isEmpty = function () {\n return isEmpty(this.executorsByZIndex_);\n };\n /**\n * @param {CanvasRenderingContext2D} context Context.\n * @param {number} contextScale Scale of the context.\n * @param {import(\"../../transform.js\").Transform} transform Transform.\n * @param {number} viewRotation View rotation.\n * @param {boolean} snapToPixel Snap point symbols and test to integer pixel.\n * @param {Array<import(\"./BuilderType.js\").default>} [opt_builderTypes] Ordered replay types to replay.\n * Default is {@link module:ol/render/replay~ORDER}\n * @param {import(\"rbush\").default} [opt_declutterTree] Declutter tree.\n */\n ExecutorGroup.prototype.execute = function (context, contextScale, transform, viewRotation, snapToPixel, opt_builderTypes, opt_declutterTree) {\n /** @type {Array<number>} */\n var zs = Object.keys(this.executorsByZIndex_).map(Number);\n zs.sort(numberSafeCompareFunction);\n // setup clipping so that the parts of over-simplified geometries are not\n // visible outside the current extent when panning\n if (this.maxExtent_) {\n context.save();\n this.clip(context, transform);\n }\n var builderTypes = opt_builderTypes ? opt_builderTypes : ORDER;\n var i, ii, j, jj, replays, replay;\n if (opt_declutterTree) {\n zs.reverse();\n }\n for (i = 0, ii = zs.length; i < ii; ++i) {\n var zIndexKey = zs[i].toString();\n replays = this.executorsByZIndex_[zIndexKey];\n for (j = 0, jj = builderTypes.length; j < jj; ++j) {\n var builderType = builderTypes[j];\n replay = replays[builderType];\n if (replay !== undefined) {\n replay.execute(context, contextScale, transform, viewRotation, snapToPixel, opt_declutterTree);\n }\n }\n }\n if (this.maxExtent_) {\n context.restore();\n }\n };\n return ExecutorGroup;\n}());\n/**\n * This cache is used to store arrays of indexes for calculated pixel circles\n * to increase performance.\n * It is a static property to allow each Replaygroup to access it.\n * @type {Object<number, Array<number>>}\n */\nvar circlePixelIndexArrayCache = {};\n/**\n * This methods creates an array with indexes of all pixels within a circle,\n * ordered by how close they are to the center.\n * A cache is used to increase performance.\n * @param {number} radius Radius.\n * @return {Array<number>} An array with indexes within a circle.\n */\nexport function getPixelIndexArray(radius) {\n if (circlePixelIndexArrayCache[radius] !== undefined) {\n return circlePixelIndexArrayCache[radius];\n }\n var size = radius * 2 + 1;\n var maxDistanceSq = radius * radius;\n var distances = new Array(maxDistanceSq + 1);\n for (var i = 0; i <= radius; ++i) {\n for (var j = 0; j <= radius; ++j) {\n var distanceSq = i * i + j * j;\n if (distanceSq > maxDistanceSq) {\n break;\n }\n var distance = distances[distanceSq];\n if (!distance) {\n distance = [];\n distances[distanceSq] = distance;\n }\n distance.push(((radius + i) * size + (radius + j)) * 4 + 3);\n if (i > 0) {\n distance.push(((radius - i) * size + (radius + j)) * 4 + 3);\n }\n if (j > 0) {\n distance.push(((radius + i) * size + (radius - j)) * 4 + 3);\n if (i > 0) {\n distance.push(((radius - i) * size + (radius - j)) * 4 + 3);\n }\n }\n }\n }\n var pixelIndex = [];\n for (var i = 0, ii = distances.length; i < ii; ++i) {\n if (distances[i]) {\n pixelIndex.push.apply(pixelIndex, distances[i]);\n }\n }\n circlePixelIndexArrayCache[radius] = pixelIndex;\n return pixelIndex;\n}\nexport default ExecutorGroup;\n//# sourceMappingURL=ExecutorGroup.js.map","/**\n * @module ol/render/canvas/Immediate\n */\n// FIXME test, especially polygons with holes and multipolygons\n// FIXME need to handle large thick features (where pixel size matters)\n// FIXME add offset and end to ol/geom/flat/transform~transform2D?\nvar __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\nimport GeometryType from '../../geom/GeometryType.js';\nimport VectorContext from '../VectorContext.js';\nimport { asColorLike } from '../../colorlike.js';\nimport { compose as composeTransform, create as createTransform, } from '../../transform.js';\nimport { defaultFillStyle, defaultFont, defaultLineCap, defaultLineDash, defaultLineDashOffset, defaultLineJoin, defaultLineWidth, defaultMiterLimit, defaultStrokeStyle, defaultTextAlign, defaultTextBaseline, } from '../canvas.js';\nimport { equals } from '../../array.js';\nimport { intersects } from '../../extent.js';\nimport { transform2D } from '../../geom/flat/transform.js';\nimport { transformGeom2D } from '../../geom/SimpleGeometry.js';\n/**\n * @classdesc\n * A concrete subclass of {@link module:ol/render/VectorContext VectorContext} that implements\n * direct rendering of features and geometries to an HTML5 Canvas context.\n * Instances of this class are created internally by the library and\n * provided to application code as vectorContext member of the\n * {@link module:ol/render/Event~RenderEvent RenderEvent} object associated with postcompose, precompose and\n * render events emitted by layers and maps.\n */\nvar CanvasImmediateRenderer = /** @class */ (function (_super) {\n __extends(CanvasImmediateRenderer, _super);\n /**\n * @param {CanvasRenderingContext2D} context Context.\n * @param {number} pixelRatio Pixel ratio.\n * @param {import(\"../../extent.js\").Extent} extent Extent.\n * @param {import(\"../../transform.js\").Transform} transform Transform.\n * @param {number} viewRotation View rotation.\n * @param {number} [opt_squaredTolerance] Optional squared tolerance for simplification.\n * @param {import(\"../../proj.js\").TransformFunction} [opt_userTransform] Transform from user to view projection.\n */\n function CanvasImmediateRenderer(context, pixelRatio, extent, transform, viewRotation, opt_squaredTolerance, opt_userTransform) {\n var _this = _super.call(this) || this;\n /**\n * @private\n * @type {CanvasRenderingContext2D}\n */\n _this.context_ = context;\n /**\n * @private\n * @type {number}\n */\n _this.pixelRatio_ = pixelRatio;\n /**\n * @private\n * @type {import(\"../../extent.js\").Extent}\n */\n _this.extent_ = extent;\n /**\n * @private\n * @type {import(\"../../transform.js\").Transform}\n */\n _this.transform_ = transform;\n /**\n * @private\n * @type {number}\n */\n _this.viewRotation_ = viewRotation;\n /**\n * @private\n * @type {number}\n */\n _this.squaredTolerance_ = opt_squaredTolerance;\n /**\n * @private\n * @type {import(\"../../proj.js\").TransformFunction}\n */\n _this.userTransform_ = opt_userTransform;\n /**\n * @private\n * @type {?import(\"../canvas.js\").FillState}\n */\n _this.contextFillState_ = null;\n /**\n * @private\n * @type {?import(\"../canvas.js\").StrokeState}\n */\n _this.contextStrokeState_ = null;\n /**\n * @private\n * @type {?import(\"../canvas.js\").TextState}\n */\n _this.contextTextState_ = null;\n /**\n * @private\n * @type {?import(\"../canvas.js\").FillState}\n */\n _this.fillState_ = null;\n /**\n * @private\n * @type {?import(\"../canvas.js\").StrokeState}\n */\n _this.strokeState_ = null;\n /**\n * @private\n * @type {HTMLCanvasElement|HTMLVideoElement|HTMLImageElement}\n */\n _this.image_ = null;\n /**\n * @private\n * @type {number}\n */\n _this.imageAnchorX_ = 0;\n /**\n * @private\n * @type {number}\n */\n _this.imageAnchorY_ = 0;\n /**\n * @private\n * @type {number}\n */\n _this.imageHeight_ = 0;\n /**\n * @private\n * @type {number}\n */\n _this.imageOpacity_ = 0;\n /**\n * @private\n * @type {number}\n */\n _this.imageOriginX_ = 0;\n /**\n * @private\n * @type {number}\n */\n _this.imageOriginY_ = 0;\n /**\n * @private\n * @type {boolean}\n */\n _this.imageRotateWithView_ = false;\n /**\n * @private\n * @type {number}\n */\n _this.imageRotation_ = 0;\n /**\n * @private\n * @type {import(\"../../size.js\").Size}\n */\n _this.imageScale_ = [0, 0];\n /**\n * @private\n * @type {number}\n */\n _this.imageWidth_ = 0;\n /**\n * @private\n * @type {string}\n */\n _this.text_ = '';\n /**\n * @private\n * @type {number}\n */\n _this.textOffsetX_ = 0;\n /**\n * @private\n * @type {number}\n */\n _this.textOffsetY_ = 0;\n /**\n * @private\n * @type {boolean}\n */\n _this.textRotateWithView_ = false;\n /**\n * @private\n * @type {number}\n */\n _this.textRotation_ = 0;\n /**\n * @private\n * @type {import(\"../../size.js\").Size}\n */\n _this.textScale_ = [0, 0];\n /**\n * @private\n * @type {?import(\"../canvas.js\").FillState}\n */\n _this.textFillState_ = null;\n /**\n * @private\n * @type {?import(\"../canvas.js\").StrokeState}\n */\n _this.textStrokeState_ = null;\n /**\n * @private\n * @type {?import(\"../canvas.js\").TextState}\n */\n _this.textState_ = null;\n /**\n * @private\n * @type {Array<number>}\n */\n _this.pixelCoordinates_ = [];\n /**\n * @private\n * @type {import(\"../../transform.js\").Transform}\n */\n _this.tmpLocalTransform_ = createTransform();\n return _this;\n }\n /**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {number} end End.\n * @param {number} stride Stride.\n * @private\n */\n CanvasImmediateRenderer.prototype.drawImages_ = function (flatCoordinates, offset, end, stride) {\n if (!this.image_) {\n return;\n }\n var pixelCoordinates = transform2D(flatCoordinates, offset, end, stride, this.transform_, this.pixelCoordinates_);\n var context = this.context_;\n var localTransform = this.tmpLocalTransform_;\n var alpha = context.globalAlpha;\n if (this.imageOpacity_ != 1) {\n context.globalAlpha = alpha * this.imageOpacity_;\n }\n var rotation = this.imageRotation_;\n if (this.imageRotateWithView_) {\n rotation += this.viewRotation_;\n }\n for (var i = 0, ii = pixelCoordinates.length; i < ii; i += 2) {\n var x = pixelCoordinates[i] - this.imageAnchorX_;\n var y = pixelCoordinates[i + 1] - this.imageAnchorY_;\n if (rotation !== 0 ||\n this.imageScale_[0] != 1 ||\n this.imageScale_[1] != 1) {\n var centerX = x + this.imageAnchorX_;\n var centerY = y + this.imageAnchorY_;\n composeTransform(localTransform, centerX, centerY, 1, 1, rotation, -centerX, -centerY);\n context.setTransform.apply(context, localTransform);\n context.translate(centerX, centerY);\n context.scale(this.imageScale_[0], this.imageScale_[1]);\n context.drawImage(this.image_, this.imageOriginX_, this.imageOriginY_, this.imageWidth_, this.imageHeight_, -this.imageAnchorX_, -this.imageAnchorY_, this.imageWidth_, this.imageHeight_);\n context.setTransform(1, 0, 0, 1, 0, 0);\n }\n else {\n context.drawImage(this.image_, this.imageOriginX_, this.imageOriginY_, this.imageWidth_, this.imageHeight_, x, y, this.imageWidth_, this.imageHeight_);\n }\n }\n if (this.imageOpacity_ != 1) {\n context.globalAlpha = alpha;\n }\n };\n /**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {number} end End.\n * @param {number} stride Stride.\n * @private\n */\n CanvasImmediateRenderer.prototype.drawText_ = function (flatCoordinates, offset, end, stride) {\n if (!this.textState_ || this.text_ === '') {\n return;\n }\n if (this.textFillState_) {\n this.setContextFillState_(this.textFillState_);\n }\n if (this.textStrokeState_) {\n this.setContextStrokeState_(this.textStrokeState_);\n }\n this.setContextTextState_(this.textState_);\n var pixelCoordinates = transform2D(flatCoordinates, offset, end, stride, this.transform_, this.pixelCoordinates_);\n var context = this.context_;\n var rotation = this.textRotation_;\n if (this.textRotateWithView_) {\n rotation += this.viewRotation_;\n }\n for (; offset < end; offset += stride) {\n var x = pixelCoordinates[offset] + this.textOffsetX_;\n var y = pixelCoordinates[offset + 1] + this.textOffsetY_;\n if (rotation !== 0 ||\n this.textScale_[0] != 1 ||\n this.textScale_[1] != 1) {\n var localTransform = composeTransform(this.tmpLocalTransform_, x, y, 1, 1, rotation, -x, -y);\n context.setTransform.apply(context, localTransform);\n context.translate(x, y);\n context.scale(this.textScale_[0], this.textScale_[1]);\n if (this.textStrokeState_) {\n context.strokeText(this.text_, 0, 0);\n }\n if (this.textFillState_) {\n context.fillText(this.text_, 0, 0);\n }\n context.setTransform(1, 0, 0, 1, 0, 0);\n }\n else {\n if (this.textStrokeState_) {\n context.strokeText(this.text_, x, y);\n }\n if (this.textFillState_) {\n context.fillText(this.text_, x, y);\n }\n }\n }\n };\n /**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {number} end End.\n * @param {number} stride Stride.\n * @param {boolean} close Close.\n * @private\n * @return {number} end End.\n */\n CanvasImmediateRenderer.prototype.moveToLineTo_ = function (flatCoordinates, offset, end, stride, close) {\n var context = this.context_;\n var pixelCoordinates = transform2D(flatCoordinates, offset, end, stride, this.transform_, this.pixelCoordinates_);\n context.moveTo(pixelCoordinates[0], pixelCoordinates[1]);\n var length = pixelCoordinates.length;\n if (close) {\n length -= 2;\n }\n for (var i = 2; i < length; i += 2) {\n context.lineTo(pixelCoordinates[i], pixelCoordinates[i + 1]);\n }\n if (close) {\n context.closePath();\n }\n return end;\n };\n /**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {Array<number>} ends Ends.\n * @param {number} stride Stride.\n * @private\n * @return {number} End.\n */\n CanvasImmediateRenderer.prototype.drawRings_ = function (flatCoordinates, offset, ends, stride) {\n for (var i = 0, ii = ends.length; i < ii; ++i) {\n offset = this.moveToLineTo_(flatCoordinates, offset, ends[i], stride, true);\n }\n return offset;\n };\n /**\n * Render a circle geometry into the canvas. Rendering is immediate and uses\n * the current fill and stroke styles.\n *\n * @param {import(\"../../geom/Circle.js\").default} geometry Circle geometry.\n * @api\n */\n CanvasImmediateRenderer.prototype.drawCircle = function (geometry) {\n if (!intersects(this.extent_, geometry.getExtent())) {\n return;\n }\n if (this.fillState_ || this.strokeState_) {\n if (this.fillState_) {\n this.setContextFillState_(this.fillState_);\n }\n if (this.strokeState_) {\n this.setContextStrokeState_(this.strokeState_);\n }\n var pixelCoordinates = transformGeom2D(geometry, this.transform_, this.pixelCoordinates_);\n var dx = pixelCoordinates[2] - pixelCoordinates[0];\n var dy = pixelCoordinates[3] - pixelCoordinates[1];\n var radius = Math.sqrt(dx * dx + dy * dy);\n var context = this.context_;\n context.beginPath();\n context.arc(pixelCoordinates[0], pixelCoordinates[1], radius, 0, 2 * Math.PI);\n if (this.fillState_) {\n context.fill();\n }\n if (this.strokeState_) {\n context.stroke();\n }\n }\n if (this.text_ !== '') {\n this.drawText_(geometry.getCenter(), 0, 2, 2);\n }\n };\n /**\n * Set the rendering style. Note that since this is an immediate rendering API,\n * any `zIndex` on the provided style will be ignored.\n *\n * @param {import(\"../../style/Style.js\").default} style The rendering style.\n * @api\n */\n CanvasImmediateRenderer.prototype.setStyle = function (style) {\n this.setFillStrokeStyle(style.getFill(), style.getStroke());\n this.setImageStyle(style.getImage());\n this.setTextStyle(style.getText());\n };\n /**\n * @param {import(\"../../transform.js\").Transform} transform Transform.\n */\n CanvasImmediateRenderer.prototype.setTransform = function (transform) {\n this.transform_ = transform;\n };\n /**\n * Render a geometry into the canvas. Call\n * {@link module:ol/render/canvas/Immediate~CanvasImmediateRenderer#setStyle renderer.setStyle()} first to set the rendering style.\n *\n * @param {import(\"../../geom/Geometry.js\").default|import(\"../Feature.js\").default} geometry The geometry to render.\n * @api\n */\n CanvasImmediateRenderer.prototype.drawGeometry = function (geometry) {\n var type = geometry.getType();\n switch (type) {\n case GeometryType.POINT:\n this.drawPoint(\n /** @type {import(\"../../geom/Point.js\").default} */ (geometry));\n break;\n case GeometryType.LINE_STRING:\n this.drawLineString(\n /** @type {import(\"../../geom/LineString.js\").default} */ (geometry));\n break;\n case GeometryType.POLYGON:\n this.drawPolygon(\n /** @type {import(\"../../geom/Polygon.js\").default} */ (geometry));\n break;\n case GeometryType.MULTI_POINT:\n this.drawMultiPoint(\n /** @type {import(\"../../geom/MultiPoint.js\").default} */ (geometry));\n break;\n case GeometryType.MULTI_LINE_STRING:\n this.drawMultiLineString(\n /** @type {import(\"../../geom/MultiLineString.js\").default} */ (geometry));\n break;\n case GeometryType.MULTI_POLYGON:\n this.drawMultiPolygon(\n /** @type {import(\"../../geom/MultiPolygon.js\").default} */ (geometry));\n break;\n case GeometryType.GEOMETRY_COLLECTION:\n this.drawGeometryCollection(\n /** @type {import(\"../../geom/GeometryCollection.js\").default} */ (geometry));\n break;\n case GeometryType.CIRCLE:\n this.drawCircle(\n /** @type {import(\"../../geom/Circle.js\").default} */ (geometry));\n break;\n default:\n }\n };\n /**\n * Render a feature into the canvas. Note that any `zIndex` on the provided\n * style will be ignored - features are rendered immediately in the order that\n * this method is called. If you need `zIndex` support, you should be using an\n * {@link module:ol/layer/Vector~VectorLayer VectorLayer} instead.\n *\n * @param {import(\"../../Feature.js\").default} feature Feature.\n * @param {import(\"../../style/Style.js\").default} style Style.\n * @api\n */\n CanvasImmediateRenderer.prototype.drawFeature = function (feature, style) {\n var geometry = style.getGeometryFunction()(feature);\n if (!geometry || !intersects(this.extent_, geometry.getExtent())) {\n return;\n }\n this.setStyle(style);\n this.drawGeometry(geometry);\n };\n /**\n * Render a GeometryCollection to the canvas. Rendering is immediate and\n * uses the current styles appropriate for each geometry in the collection.\n *\n * @param {import(\"../../geom/GeometryCollection.js\").default} geometry Geometry collection.\n */\n CanvasImmediateRenderer.prototype.drawGeometryCollection = function (geometry) {\n var geometries = geometry.getGeometriesArray();\n for (var i = 0, ii = geometries.length; i < ii; ++i) {\n this.drawGeometry(geometries[i]);\n }\n };\n /**\n * Render a Point geometry into the canvas. Rendering is immediate and uses\n * the current style.\n *\n * @param {import(\"../../geom/Point.js\").default|import(\"../Feature.js\").default} geometry Point geometry.\n */\n CanvasImmediateRenderer.prototype.drawPoint = function (geometry) {\n if (this.squaredTolerance_) {\n geometry = /** @type {import(\"../../geom/Point.js\").default} */ (geometry.simplifyTransformed(this.squaredTolerance_, this.userTransform_));\n }\n var flatCoordinates = geometry.getFlatCoordinates();\n var stride = geometry.getStride();\n if (this.image_) {\n this.drawImages_(flatCoordinates, 0, flatCoordinates.length, stride);\n }\n if (this.text_ !== '') {\n this.drawText_(flatCoordinates, 0, flatCoordinates.length, stride);\n }\n };\n /**\n * Render a MultiPoint geometry into the canvas. Rendering is immediate and\n * uses the current style.\n *\n * @param {import(\"../../geom/MultiPoint.js\").default|import(\"../Feature.js\").default} geometry MultiPoint geometry.\n */\n CanvasImmediateRenderer.prototype.drawMultiPoint = function (geometry) {\n if (this.squaredTolerance_) {\n geometry = /** @type {import(\"../../geom/MultiPoint.js\").default} */ (geometry.simplifyTransformed(this.squaredTolerance_, this.userTransform_));\n }\n var flatCoordinates = geometry.getFlatCoordinates();\n var stride = geometry.getStride();\n if (this.image_) {\n this.drawImages_(flatCoordinates, 0, flatCoordinates.length, stride);\n }\n if (this.text_ !== '') {\n this.drawText_(flatCoordinates, 0, flatCoordinates.length, stride);\n }\n };\n /**\n * Render a LineString into the canvas. Rendering is immediate and uses\n * the current style.\n *\n * @param {import(\"../../geom/LineString.js\").default|import(\"../Feature.js\").default} geometry LineString geometry.\n */\n CanvasImmediateRenderer.prototype.drawLineString = function (geometry) {\n if (this.squaredTolerance_) {\n geometry = /** @type {import(\"../../geom/LineString.js\").default} */ (geometry.simplifyTransformed(this.squaredTolerance_, this.userTransform_));\n }\n if (!intersects(this.extent_, geometry.getExtent())) {\n return;\n }\n if (this.strokeState_) {\n this.setContextStrokeState_(this.strokeState_);\n var context = this.context_;\n var flatCoordinates = geometry.getFlatCoordinates();\n context.beginPath();\n this.moveToLineTo_(flatCoordinates, 0, flatCoordinates.length, geometry.getStride(), false);\n context.stroke();\n }\n if (this.text_ !== '') {\n var flatMidpoint = geometry.getFlatMidpoint();\n this.drawText_(flatMidpoint, 0, 2, 2);\n }\n };\n /**\n * Render a MultiLineString geometry into the canvas. Rendering is immediate\n * and uses the current style.\n *\n * @param {import(\"../../geom/MultiLineString.js\").default|import(\"../Feature.js\").default} geometry MultiLineString geometry.\n */\n CanvasImmediateRenderer.prototype.drawMultiLineString = function (geometry) {\n if (this.squaredTolerance_) {\n geometry =\n /** @type {import(\"../../geom/MultiLineString.js\").default} */ (geometry.simplifyTransformed(this.squaredTolerance_, this.userTransform_));\n }\n var geometryExtent = geometry.getExtent();\n if (!intersects(this.extent_, geometryExtent)) {\n return;\n }\n if (this.strokeState_) {\n this.setContextStrokeState_(this.strokeState_);\n var context = this.context_;\n var flatCoordinates = geometry.getFlatCoordinates();\n var offset = 0;\n var ends = /** @type {Array<number>} */ (geometry.getEnds());\n var stride = geometry.getStride();\n context.beginPath();\n for (var i = 0, ii = ends.length; i < ii; ++i) {\n offset = this.moveToLineTo_(flatCoordinates, offset, ends[i], stride, false);\n }\n context.stroke();\n }\n if (this.text_ !== '') {\n var flatMidpoints = geometry.getFlatMidpoints();\n this.drawText_(flatMidpoints, 0, flatMidpoints.length, 2);\n }\n };\n /**\n * Render a Polygon geometry into the canvas. Rendering is immediate and uses\n * the current style.\n *\n * @param {import(\"../../geom/Polygon.js\").default|import(\"../Feature.js\").default} geometry Polygon geometry.\n */\n CanvasImmediateRenderer.prototype.drawPolygon = function (geometry) {\n if (this.squaredTolerance_) {\n geometry = /** @type {import(\"../../geom/Polygon.js\").default} */ (geometry.simplifyTransformed(this.squaredTolerance_, this.userTransform_));\n }\n if (!intersects(this.extent_, geometry.getExtent())) {\n return;\n }\n if (this.strokeState_ || this.fillState_) {\n if (this.fillState_) {\n this.setContextFillState_(this.fillState_);\n }\n if (this.strokeState_) {\n this.setContextStrokeState_(this.strokeState_);\n }\n var context = this.context_;\n context.beginPath();\n this.drawRings_(geometry.getOrientedFlatCoordinates(), 0, \n /** @type {Array<number>} */ (geometry.getEnds()), geometry.getStride());\n if (this.fillState_) {\n context.fill();\n }\n if (this.strokeState_) {\n context.stroke();\n }\n }\n if (this.text_ !== '') {\n var flatInteriorPoint = geometry.getFlatInteriorPoint();\n this.drawText_(flatInteriorPoint, 0, 2, 2);\n }\n };\n /**\n * Render MultiPolygon geometry into the canvas. Rendering is immediate and\n * uses the current style.\n * @param {import(\"../../geom/MultiPolygon.js\").default} geometry MultiPolygon geometry.\n */\n CanvasImmediateRenderer.prototype.drawMultiPolygon = function (geometry) {\n if (this.squaredTolerance_) {\n geometry = /** @type {import(\"../../geom/MultiPolygon.js\").default} */ (geometry.simplifyTransformed(this.squaredTolerance_, this.userTransform_));\n }\n if (!intersects(this.extent_, geometry.getExtent())) {\n return;\n }\n if (this.strokeState_ || this.fillState_) {\n if (this.fillState_) {\n this.setContextFillState_(this.fillState_);\n }\n if (this.strokeState_) {\n this.setContextStrokeState_(this.strokeState_);\n }\n var context = this.context_;\n var flatCoordinates = geometry.getOrientedFlatCoordinates();\n var offset = 0;\n var endss = geometry.getEndss();\n var stride = geometry.getStride();\n context.beginPath();\n for (var i = 0, ii = endss.length; i < ii; ++i) {\n var ends = endss[i];\n offset = this.drawRings_(flatCoordinates, offset, ends, stride);\n }\n if (this.fillState_) {\n context.fill();\n }\n if (this.strokeState_) {\n context.stroke();\n }\n }\n if (this.text_ !== '') {\n var flatInteriorPoints = geometry.getFlatInteriorPoints();\n this.drawText_(flatInteriorPoints, 0, flatInteriorPoints.length, 2);\n }\n };\n /**\n * @param {import(\"../canvas.js\").FillState} fillState Fill state.\n * @private\n */\n CanvasImmediateRenderer.prototype.setContextFillState_ = function (fillState) {\n var context = this.context_;\n var contextFillState = this.contextFillState_;\n if (!contextFillState) {\n context.fillStyle = fillState.fillStyle;\n this.contextFillState_ = {\n fillStyle: fillState.fillStyle,\n };\n }\n else {\n if (contextFillState.fillStyle != fillState.fillStyle) {\n contextFillState.fillStyle = fillState.fillStyle;\n context.fillStyle = fillState.fillStyle;\n }\n }\n };\n /**\n * @param {import(\"../canvas.js\").StrokeState} strokeState Stroke state.\n * @private\n */\n CanvasImmediateRenderer.prototype.setContextStrokeState_ = function (strokeState) {\n var context = this.context_;\n var contextStrokeState = this.contextStrokeState_;\n if (!contextStrokeState) {\n context.lineCap = strokeState.lineCap;\n if (context.setLineDash) {\n context.setLineDash(strokeState.lineDash);\n context.lineDashOffset = strokeState.lineDashOffset;\n }\n context.lineJoin = strokeState.lineJoin;\n context.lineWidth = strokeState.lineWidth;\n context.miterLimit = strokeState.miterLimit;\n context.strokeStyle = strokeState.strokeStyle;\n this.contextStrokeState_ = {\n lineCap: strokeState.lineCap,\n lineDash: strokeState.lineDash,\n lineDashOffset: strokeState.lineDashOffset,\n lineJoin: strokeState.lineJoin,\n lineWidth: strokeState.lineWidth,\n miterLimit: strokeState.miterLimit,\n strokeStyle: strokeState.strokeStyle,\n };\n }\n else {\n if (contextStrokeState.lineCap != strokeState.lineCap) {\n contextStrokeState.lineCap = strokeState.lineCap;\n context.lineCap = strokeState.lineCap;\n }\n if (context.setLineDash) {\n if (!equals(contextStrokeState.lineDash, strokeState.lineDash)) {\n context.setLineDash((contextStrokeState.lineDash = strokeState.lineDash));\n }\n if (contextStrokeState.lineDashOffset != strokeState.lineDashOffset) {\n contextStrokeState.lineDashOffset = strokeState.lineDashOffset;\n context.lineDashOffset = strokeState.lineDashOffset;\n }\n }\n if (contextStrokeState.lineJoin != strokeState.lineJoin) {\n contextStrokeState.lineJoin = strokeState.lineJoin;\n context.lineJoin = strokeState.lineJoin;\n }\n if (contextStrokeState.lineWidth != strokeState.lineWidth) {\n contextStrokeState.lineWidth = strokeState.lineWidth;\n context.lineWidth = strokeState.lineWidth;\n }\n if (contextStrokeState.miterLimit != strokeState.miterLimit) {\n contextStrokeState.miterLimit = strokeState.miterLimit;\n context.miterLimit = strokeState.miterLimit;\n }\n if (contextStrokeState.strokeStyle != strokeState.strokeStyle) {\n contextStrokeState.strokeStyle = strokeState.strokeStyle;\n context.strokeStyle = strokeState.strokeStyle;\n }\n }\n };\n /**\n * @param {import(\"../canvas.js\").TextState} textState Text state.\n * @private\n */\n CanvasImmediateRenderer.prototype.setContextTextState_ = function (textState) {\n var context = this.context_;\n var contextTextState = this.contextTextState_;\n var textAlign = textState.textAlign\n ? textState.textAlign\n : defaultTextAlign;\n if (!contextTextState) {\n context.font = textState.font;\n context.textAlign = /** @type {CanvasTextAlign} */ (textAlign);\n context.textBaseline = /** @type {CanvasTextBaseline} */ (textState.textBaseline);\n this.contextTextState_ = {\n font: textState.font,\n textAlign: textAlign,\n textBaseline: textState.textBaseline,\n };\n }\n else {\n if (contextTextState.font != textState.font) {\n contextTextState.font = textState.font;\n context.font = textState.font;\n }\n if (contextTextState.textAlign != textAlign) {\n contextTextState.textAlign = /** @type {CanvasTextAlign} */ (textAlign);\n context.textAlign = /** @type {CanvasTextAlign} */ (textAlign);\n }\n if (contextTextState.textBaseline != textState.textBaseline) {\n contextTextState.textBaseline = /** @type {CanvasTextBaseline} */ (textState.textBaseline);\n context.textBaseline = /** @type {CanvasTextBaseline} */ (textState.textBaseline);\n }\n }\n };\n /**\n * Set the fill and stroke style for subsequent draw operations. To clear\n * either fill or stroke styles, pass null for the appropriate parameter.\n *\n * @param {import(\"../../style/Fill.js\").default} fillStyle Fill style.\n * @param {import(\"../../style/Stroke.js\").default} strokeStyle Stroke style.\n */\n CanvasImmediateRenderer.prototype.setFillStrokeStyle = function (fillStyle, strokeStyle) {\n var _this = this;\n if (!fillStyle) {\n this.fillState_ = null;\n }\n else {\n var fillStyleColor = fillStyle.getColor();\n this.fillState_ = {\n fillStyle: asColorLike(fillStyleColor ? fillStyleColor : defaultFillStyle),\n };\n }\n if (!strokeStyle) {\n this.strokeState_ = null;\n }\n else {\n var strokeStyleColor = strokeStyle.getColor();\n var strokeStyleLineCap = strokeStyle.getLineCap();\n var strokeStyleLineDash = strokeStyle.getLineDash();\n var strokeStyleLineDashOffset = strokeStyle.getLineDashOffset();\n var strokeStyleLineJoin = strokeStyle.getLineJoin();\n var strokeStyleWidth = strokeStyle.getWidth();\n var strokeStyleMiterLimit = strokeStyle.getMiterLimit();\n var lineDash = strokeStyleLineDash\n ? strokeStyleLineDash\n : defaultLineDash;\n this.strokeState_ = {\n lineCap: strokeStyleLineCap !== undefined\n ? strokeStyleLineCap\n : defaultLineCap,\n lineDash: this.pixelRatio_ === 1\n ? lineDash\n : lineDash.map(function (n) { return n * _this.pixelRatio_; }),\n lineDashOffset: (strokeStyleLineDashOffset\n ? strokeStyleLineDashOffset\n : defaultLineDashOffset) * this.pixelRatio_,\n lineJoin: strokeStyleLineJoin !== undefined\n ? strokeStyleLineJoin\n : defaultLineJoin,\n lineWidth: (strokeStyleWidth !== undefined\n ? strokeStyleWidth\n : defaultLineWidth) * this.pixelRatio_,\n miterLimit: strokeStyleMiterLimit !== undefined\n ? strokeStyleMiterLimit\n : defaultMiterLimit,\n strokeStyle: asColorLike(strokeStyleColor ? strokeStyleColor : defaultStrokeStyle),\n };\n }\n };\n /**\n * Set the image style for subsequent draw operations. Pass null to remove\n * the image style.\n *\n * @param {import(\"../../style/Image.js\").default} imageStyle Image style.\n */\n CanvasImmediateRenderer.prototype.setImageStyle = function (imageStyle) {\n var imageSize;\n if (!imageStyle || !(imageSize = imageStyle.getSize())) {\n this.image_ = null;\n return;\n }\n var imageAnchor = imageStyle.getAnchor();\n var imageOrigin = imageStyle.getOrigin();\n this.image_ = imageStyle.getImage(this.pixelRatio_);\n this.imageAnchorX_ = imageAnchor[0] * this.pixelRatio_;\n this.imageAnchorY_ = imageAnchor[1] * this.pixelRatio_;\n this.imageHeight_ = imageSize[1] * this.pixelRatio_;\n this.imageOpacity_ = imageStyle.getOpacity();\n this.imageOriginX_ = imageOrigin[0];\n this.imageOriginY_ = imageOrigin[1];\n this.imageRotateWithView_ = imageStyle.getRotateWithView();\n this.imageRotation_ = imageStyle.getRotation();\n this.imageScale_ = imageStyle.getScaleArray();\n this.imageWidth_ = imageSize[0] * this.pixelRatio_;\n };\n /**\n * Set the text style for subsequent draw operations. Pass null to\n * remove the text style.\n *\n * @param {import(\"../../style/Text.js\").default} textStyle Text style.\n */\n CanvasImmediateRenderer.prototype.setTextStyle = function (textStyle) {\n if (!textStyle) {\n this.text_ = '';\n }\n else {\n var textFillStyle = textStyle.getFill();\n if (!textFillStyle) {\n this.textFillState_ = null;\n }\n else {\n var textFillStyleColor = textFillStyle.getColor();\n this.textFillState_ = {\n fillStyle: asColorLike(textFillStyleColor ? textFillStyleColor : defaultFillStyle),\n };\n }\n var textStrokeStyle = textStyle.getStroke();\n if (!textStrokeStyle) {\n this.textStrokeState_ = null;\n }\n else {\n var textStrokeStyleColor = textStrokeStyle.getColor();\n var textStrokeStyleLineCap = textStrokeStyle.getLineCap();\n var textStrokeStyleLineDash = textStrokeStyle.getLineDash();\n var textStrokeStyleLineDashOffset = textStrokeStyle.getLineDashOffset();\n var textStrokeStyleLineJoin = textStrokeStyle.getLineJoin();\n var textStrokeStyleWidth = textStrokeStyle.getWidth();\n var textStrokeStyleMiterLimit = textStrokeStyle.getMiterLimit();\n this.textStrokeState_ = {\n lineCap: textStrokeStyleLineCap !== undefined\n ? textStrokeStyleLineCap\n : defaultLineCap,\n lineDash: textStrokeStyleLineDash\n ? textStrokeStyleLineDash\n : defaultLineDash,\n lineDashOffset: textStrokeStyleLineDashOffset\n ? textStrokeStyleLineDashOffset\n : defaultLineDashOffset,\n lineJoin: textStrokeStyleLineJoin !== undefined\n ? textStrokeStyleLineJoin\n : defaultLineJoin,\n lineWidth: textStrokeStyleWidth !== undefined\n ? textStrokeStyleWidth\n : defaultLineWidth,\n miterLimit: textStrokeStyleMiterLimit !== undefined\n ? textStrokeStyleMiterLimit\n : defaultMiterLimit,\n strokeStyle: asColorLike(textStrokeStyleColor ? textStrokeStyleColor : defaultStrokeStyle),\n };\n }\n var textFont = textStyle.getFont();\n var textOffsetX = textStyle.getOffsetX();\n var textOffsetY = textStyle.getOffsetY();\n var textRotateWithView = textStyle.getRotateWithView();\n var textRotation = textStyle.getRotation();\n var textScale = textStyle.getScaleArray();\n var textText = textStyle.getText();\n var textTextAlign = textStyle.getTextAlign();\n var textTextBaseline = textStyle.getTextBaseline();\n this.textState_ = {\n font: textFont !== undefined ? textFont : defaultFont,\n textAlign: textTextAlign !== undefined ? textTextAlign : defaultTextAlign,\n textBaseline: textTextBaseline !== undefined\n ? textTextBaseline\n : defaultTextBaseline,\n };\n this.text_ = textText !== undefined ? textText : '';\n this.textOffsetX_ =\n textOffsetX !== undefined ? this.pixelRatio_ * textOffsetX : 0;\n this.textOffsetY_ =\n textOffsetY !== undefined ? this.pixelRatio_ * textOffsetY : 0;\n this.textRotateWithView_ =\n textRotateWithView !== undefined ? textRotateWithView : false;\n this.textRotation_ = textRotation !== undefined ? textRotation : 0;\n this.textScale_ = [\n this.pixelRatio_ * textScale[0],\n this.pixelRatio_ * textScale[1],\n ];\n }\n };\n return CanvasImmediateRenderer;\n}(VectorContext));\nexport default CanvasImmediateRenderer;\n//# sourceMappingURL=Immediate.js.map","/**\n * @module ol/style/IconAnchorUnits\n */\n/**\n * Icon anchor units. One of 'fraction', 'pixels'.\n * @enum {string}\n */\nexport default {\n /**\n * Anchor is a fraction\n * @api\n */\n FRACTION: 'fraction',\n /**\n * Anchor is in pixels\n * @api\n */\n PIXELS: 'pixels',\n};\n//# sourceMappingURL=IconAnchorUnits.js.map","/**\n * @module ol/style/IconOrigin\n */\n/**\n * Icon origin. One of 'bottom-left', 'bottom-right', 'top-left', 'top-right'.\n * @enum {string}\n */\nexport default {\n /**\n * Origin is at bottom left\n * @api\n */\n BOTTOM_LEFT: 'bottom-left',\n /**\n * Origin is at bottom right\n * @api\n */\n BOTTOM_RIGHT: 'bottom-right',\n /**\n * Origin is at top left\n * @api\n */\n TOP_LEFT: 'top-left',\n /**\n * Origin is at top right\n * @api\n */\n TOP_RIGHT: 'top-right',\n};\n//# sourceMappingURL=IconOrigin.js.map","/**\n * @module ol/style/IconImageCache\n */\nimport { asString } from '../color.js';\n/**\n * @classdesc\n * Singleton class. Available through {@link module:ol/style/IconImageCache~shared}.\n */\nvar IconImageCache = /** @class */ (function () {\n function IconImageCache() {\n /**\n * @type {!Object<string, import(\"./IconImage.js\").default>}\n * @private\n */\n this.cache_ = {};\n /**\n * @type {number}\n * @private\n */\n this.cacheSize_ = 0;\n /**\n * @type {number}\n * @private\n */\n this.maxCacheSize_ = 32;\n }\n /**\n * FIXME empty description for jsdoc\n */\n IconImageCache.prototype.clear = function () {\n this.cache_ = {};\n this.cacheSize_ = 0;\n };\n /**\n * @return {boolean} Can expire cache.\n */\n IconImageCache.prototype.canExpireCache = function () {\n return this.cacheSize_ > this.maxCacheSize_;\n };\n /**\n * FIXME empty description for jsdoc\n */\n IconImageCache.prototype.expire = function () {\n if (this.canExpireCache()) {\n var i = 0;\n for (var key in this.cache_) {\n var iconImage = this.cache_[key];\n if ((i++ & 3) === 0 && !iconImage.hasListener()) {\n delete this.cache_[key];\n --this.cacheSize_;\n }\n }\n }\n };\n /**\n * @param {string} src Src.\n * @param {?string} crossOrigin Cross origin.\n * @param {import(\"../color.js\").Color} color Color.\n * @return {import(\"./IconImage.js\").default} Icon image.\n */\n IconImageCache.prototype.get = function (src, crossOrigin, color) {\n var key = getKey(src, crossOrigin, color);\n return key in this.cache_ ? this.cache_[key] : null;\n };\n /**\n * @param {string} src Src.\n * @param {?string} crossOrigin Cross origin.\n * @param {import(\"../color.js\").Color} color Color.\n * @param {import(\"./IconImage.js\").default} iconImage Icon image.\n */\n IconImageCache.prototype.set = function (src, crossOrigin, color, iconImage) {\n var key = getKey(src, crossOrigin, color);\n this.cache_[key] = iconImage;\n ++this.cacheSize_;\n };\n /**\n * Set the cache size of the icon cache. Default is `32`. Change this value when\n * your map uses more than 32 different icon images and you are not caching icon\n * styles on the application level.\n * @param {number} maxCacheSize Cache max size.\n * @api\n */\n IconImageCache.prototype.setSize = function (maxCacheSize) {\n this.maxCacheSize_ = maxCacheSize;\n this.expire();\n };\n return IconImageCache;\n}());\n/**\n * @param {string} src Src.\n * @param {?string} crossOrigin Cross origin.\n * @param {import(\"../color.js\").Color} color Color.\n * @return {string} Cache key.\n */\nfunction getKey(src, crossOrigin, color) {\n var colorString = color ? asString(color) : 'null';\n return crossOrigin + ':' + src + ':' + colorString;\n}\nexport default IconImageCache;\n/**\n * The {@link module:ol/style/IconImageCache~IconImageCache} for\n * {@link module:ol/style/Icon~Icon} images.\n * @api\n */\nexport var shared = new IconImageCache();\n//# sourceMappingURL=IconImageCache.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/ImageBase\n */\nimport EventTarget from './events/Target.js';\nimport EventType from './events/EventType.js';\nimport { abstract } from './util.js';\n/**\n * @abstract\n */\nvar ImageBase = /** @class */ (function (_super) {\n __extends(ImageBase, _super);\n /**\n * @param {import(\"./extent.js\").Extent} extent Extent.\n * @param {number|undefined} resolution Resolution.\n * @param {number} pixelRatio Pixel ratio.\n * @param {import(\"./ImageState.js\").default} state State.\n */\n function ImageBase(extent, resolution, pixelRatio, state) {\n var _this = _super.call(this) || this;\n /**\n * @protected\n * @type {import(\"./extent.js\").Extent}\n */\n _this.extent = extent;\n /**\n * @private\n * @type {number}\n */\n _this.pixelRatio_ = pixelRatio;\n /**\n * @protected\n * @type {number|undefined}\n */\n _this.resolution = resolution;\n /**\n * @protected\n * @type {import(\"./ImageState.js\").default}\n */\n _this.state = state;\n return _this;\n }\n /**\n * @protected\n */\n ImageBase.prototype.changed = function () {\n this.dispatchEvent(EventType.CHANGE);\n };\n /**\n * @return {import(\"./extent.js\").Extent} Extent.\n */\n ImageBase.prototype.getExtent = function () {\n return this.extent;\n };\n /**\n * @abstract\n * @return {HTMLCanvasElement|HTMLImageElement|HTMLVideoElement} Image.\n */\n ImageBase.prototype.getImage = function () {\n return abstract();\n };\n /**\n * @return {number} PixelRatio.\n */\n ImageBase.prototype.getPixelRatio = function () {\n return this.pixelRatio_;\n };\n /**\n * @return {number} Resolution.\n */\n ImageBase.prototype.getResolution = function () {\n return /** @type {number} */ (this.resolution);\n };\n /**\n * @return {import(\"./ImageState.js\").default} State.\n */\n ImageBase.prototype.getState = function () {\n return this.state;\n };\n /**\n * Load not yet loaded URI.\n * @abstract\n */\n ImageBase.prototype.load = function () {\n abstract();\n };\n return ImageBase;\n}(EventTarget));\nexport default ImageBase;\n//# sourceMappingURL=ImageBase.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/Image\n */\nimport EventType from './events/EventType.js';\nimport ImageBase from './ImageBase.js';\nimport ImageState from './ImageState.js';\nimport { IMAGE_DECODE } from './has.js';\nimport { getHeight } from './extent.js';\nimport { listenOnce, unlistenByKey } from './events.js';\n/**\n * A function that takes an {@link module:ol/Image~Image} for the image and a\n * `{string}` for the src as arguments. It is supposed to make it so the\n * underlying image {@link module:ol/Image~Image#getImage} is assigned the\n * content specified by the src. If not specified, the default is\n *\n * function(image, src) {\n * image.getImage().src = src;\n * }\n *\n * Providing a custom `imageLoadFunction` can be useful to load images with\n * post requests or - in general - through XHR requests, where the src of the\n * image element would be set to a data URI when the content is loaded.\n *\n * @typedef {function(ImageWrapper, string): void} LoadFunction\n * @api\n */\nvar ImageWrapper = /** @class */ (function (_super) {\n __extends(ImageWrapper, _super);\n /**\n * @param {import(\"./extent.js\").Extent} extent Extent.\n * @param {number|undefined} resolution Resolution.\n * @param {number} pixelRatio Pixel ratio.\n * @param {string} src Image source URI.\n * @param {?string} crossOrigin Cross origin.\n * @param {LoadFunction} imageLoadFunction Image load function.\n */\n function ImageWrapper(extent, resolution, pixelRatio, src, crossOrigin, imageLoadFunction) {\n var _this = _super.call(this, extent, resolution, pixelRatio, ImageState.IDLE) || this;\n /**\n * @private\n * @type {string}\n */\n _this.src_ = src;\n /**\n * @private\n * @type {HTMLCanvasElement|HTMLImageElement|HTMLVideoElement}\n */\n _this.image_ = new Image();\n if (crossOrigin !== null) {\n _this.image_.crossOrigin = crossOrigin;\n }\n /**\n * @private\n * @type {?function():void}\n */\n _this.unlisten_ = null;\n /**\n * @protected\n * @type {import(\"./ImageState.js\").default}\n */\n _this.state = ImageState.IDLE;\n /**\n * @private\n * @type {LoadFunction}\n */\n _this.imageLoadFunction_ = imageLoadFunction;\n return _this;\n }\n /**\n * @return {HTMLCanvasElement|HTMLImageElement|HTMLVideoElement} Image.\n * @api\n */\n ImageWrapper.prototype.getImage = function () {\n return this.image_;\n };\n /**\n * Tracks loading or read errors.\n *\n * @private\n */\n ImageWrapper.prototype.handleImageError_ = function () {\n this.state = ImageState.ERROR;\n this.unlistenImage_();\n this.changed();\n };\n /**\n * Tracks successful image load.\n *\n * @private\n */\n ImageWrapper.prototype.handleImageLoad_ = function () {\n if (this.resolution === undefined) {\n this.resolution = getHeight(this.extent) / this.image_.height;\n }\n this.state = ImageState.LOADED;\n this.unlistenImage_();\n this.changed();\n };\n /**\n * Load the image or retry if loading previously failed.\n * Loading is taken care of by the tile queue, and calling this method is\n * only needed for preloading or for reloading in case of an error.\n * @api\n */\n ImageWrapper.prototype.load = function () {\n if (this.state == ImageState.IDLE || this.state == ImageState.ERROR) {\n this.state = ImageState.LOADING;\n this.changed();\n this.imageLoadFunction_(this, this.src_);\n this.unlisten_ = listenImage(this.image_, this.handleImageLoad_.bind(this), this.handleImageError_.bind(this));\n }\n };\n /**\n * @param {HTMLCanvasElement|HTMLImageElement|HTMLVideoElement} image Image.\n */\n ImageWrapper.prototype.setImage = function (image) {\n this.image_ = image;\n this.resolution = getHeight(this.extent) / this.image_.height;\n };\n /**\n * Discards event handlers which listen for load completion or errors.\n *\n * @private\n */\n ImageWrapper.prototype.unlistenImage_ = function () {\n if (this.unlisten_) {\n this.unlisten_();\n this.unlisten_ = null;\n }\n };\n return ImageWrapper;\n}(ImageBase));\n/**\n * @param {HTMLCanvasElement|HTMLImageElement|HTMLVideoElement} image Image element.\n * @param {function():any} loadHandler Load callback function.\n * @param {function():any} errorHandler Error callback function.\n * @return {function():void} Callback to stop listening.\n */\nexport function listenImage(image, loadHandler, errorHandler) {\n var img = /** @type {HTMLImageElement} */ (image);\n if (img.src && IMAGE_DECODE) {\n var promise = img.decode();\n var listening_1 = true;\n var unlisten = function () {\n listening_1 = false;\n };\n promise\n .then(function () {\n if (listening_1) {\n loadHandler();\n }\n })\n .catch(function (error) {\n if (listening_1) {\n // FIXME: Unconditionally call errorHandler() when this bug is fixed upstream:\n // https://bugs.webkit.org/show_bug.cgi?id=198527\n if (error.name === 'EncodingError' &&\n error.message === 'Invalid image type.') {\n loadHandler();\n }\n else {\n errorHandler();\n }\n }\n });\n return unlisten;\n }\n var listenerKeys = [\n listenOnce(img, EventType.LOAD, loadHandler),\n listenOnce(img, EventType.ERROR, errorHandler),\n ];\n return function unlisten() {\n listenerKeys.forEach(unlistenByKey);\n };\n}\nexport default ImageWrapper;\n//# sourceMappingURL=Image.js.map","/**\n * @module ol/style/IconImage\n */\nvar __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\nimport EventTarget from '../events/Target.js';\nimport EventType from '../events/EventType.js';\nimport ImageState from '../ImageState.js';\nimport { asString } from '../color.js';\nimport { createCanvasContext2D } from '../dom.js';\nimport { shared as iconImageCache } from './IconImageCache.js';\nimport { listenImage } from '../Image.js';\n/**\n * @type {CanvasRenderingContext2D}\n */\nvar taintedTestContext = null;\nvar IconImage = /** @class */ (function (_super) {\n __extends(IconImage, _super);\n /**\n * @param {HTMLImageElement|HTMLCanvasElement} image Image.\n * @param {string|undefined} src Src.\n * @param {import(\"../size.js\").Size} size Size.\n * @param {?string} crossOrigin Cross origin.\n * @param {import(\"../ImageState.js\").default} imageState Image state.\n * @param {import(\"../color.js\").Color} color Color.\n */\n function IconImage(image, src, size, crossOrigin, imageState, color) {\n var _this = _super.call(this) || this;\n /**\n * @private\n * @type {HTMLImageElement|HTMLCanvasElement}\n */\n _this.hitDetectionImage_ = null;\n /**\n * @private\n * @type {HTMLImageElement|HTMLCanvasElement}\n */\n _this.image_ = !image ? new Image() : image;\n if (crossOrigin !== null) {\n /** @type {HTMLImageElement} */ (_this.image_).crossOrigin = crossOrigin;\n }\n /**\n * @private\n * @type {Object<number, HTMLCanvasElement>}\n */\n _this.canvas_ = {};\n /**\n * @private\n * @type {import(\"../color.js\").Color}\n */\n _this.color_ = color;\n /**\n * @private\n * @type {?function():void}\n */\n _this.unlisten_ = null;\n /**\n * @private\n * @type {import(\"../ImageState.js\").default}\n */\n _this.imageState_ = imageState;\n /**\n * @private\n * @type {import(\"../size.js\").Size}\n */\n _this.size_ = size;\n /**\n * @private\n * @type {string|undefined}\n */\n _this.src_ = src;\n /**\n * @private\n */\n _this.tainted_;\n return _this;\n }\n /**\n * @private\n * @return {boolean} The image canvas is tainted.\n */\n IconImage.prototype.isTainted_ = function () {\n if (this.tainted_ === undefined && this.imageState_ === ImageState.LOADED) {\n if (!taintedTestContext) {\n taintedTestContext = createCanvasContext2D(1, 1);\n }\n taintedTestContext.drawImage(this.image_, 0, 0);\n try {\n taintedTestContext.getImageData(0, 0, 1, 1);\n this.tainted_ = false;\n }\n catch (e) {\n taintedTestContext = null;\n this.tainted_ = true;\n }\n }\n return this.tainted_ === true;\n };\n /**\n * @private\n */\n IconImage.prototype.dispatchChangeEvent_ = function () {\n this.dispatchEvent(EventType.CHANGE);\n };\n /**\n * @private\n */\n IconImage.prototype.handleImageError_ = function () {\n this.imageState_ = ImageState.ERROR;\n this.unlistenImage_();\n this.dispatchChangeEvent_();\n };\n /**\n * @private\n */\n IconImage.prototype.handleImageLoad_ = function () {\n this.imageState_ = ImageState.LOADED;\n if (this.size_) {\n this.image_.width = this.size_[0];\n this.image_.height = this.size_[1];\n }\n else {\n this.size_ = [this.image_.width, this.image_.height];\n }\n this.unlistenImage_();\n this.dispatchChangeEvent_();\n };\n /**\n * @param {number} pixelRatio Pixel ratio.\n * @return {HTMLImageElement|HTMLCanvasElement} Image or Canvas element.\n */\n IconImage.prototype.getImage = function (pixelRatio) {\n this.replaceColor_(pixelRatio);\n return this.canvas_[pixelRatio] ? this.canvas_[pixelRatio] : this.image_;\n };\n /**\n * @param {number} pixelRatio Pixel ratio.\n * @return {number} Image or Canvas element.\n */\n IconImage.prototype.getPixelRatio = function (pixelRatio) {\n this.replaceColor_(pixelRatio);\n return this.canvas_[pixelRatio] ? pixelRatio : 1;\n };\n /**\n * @return {import(\"../ImageState.js\").default} Image state.\n */\n IconImage.prototype.getImageState = function () {\n return this.imageState_;\n };\n /**\n * @return {HTMLImageElement|HTMLCanvasElement} Image element.\n */\n IconImage.prototype.getHitDetectionImage = function () {\n if (!this.hitDetectionImage_) {\n if (this.isTainted_()) {\n var width = this.size_[0];\n var height = this.size_[1];\n var context = createCanvasContext2D(width, height);\n context.fillRect(0, 0, width, height);\n this.hitDetectionImage_ = context.canvas;\n }\n else {\n this.hitDetectionImage_ = this.image_;\n }\n }\n return this.hitDetectionImage_;\n };\n /**\n * Get the size of the icon (in pixels).\n * @return {import(\"../size.js\").Size} Image size.\n */\n IconImage.prototype.getSize = function () {\n return this.size_;\n };\n /**\n * @return {string|undefined} Image src.\n */\n IconImage.prototype.getSrc = function () {\n return this.src_;\n };\n /**\n * Load not yet loaded URI.\n */\n IconImage.prototype.load = function () {\n if (this.imageState_ == ImageState.IDLE) {\n this.imageState_ = ImageState.LOADING;\n try {\n /** @type {HTMLImageElement} */ (this.image_).src = this.src_;\n }\n catch (e) {\n this.handleImageError_();\n }\n this.unlisten_ = listenImage(this.image_, this.handleImageLoad_.bind(this), this.handleImageError_.bind(this));\n }\n };\n /**\n * @param {number} pixelRatio Pixel ratio.\n * @private\n */\n IconImage.prototype.replaceColor_ = function (pixelRatio) {\n if (!this.color_ ||\n this.canvas_[pixelRatio] ||\n this.imageState_ !== ImageState.LOADED) {\n return;\n }\n var canvas = document.createElement('canvas');\n this.canvas_[pixelRatio] = canvas;\n canvas.width = Math.ceil(this.image_.width * pixelRatio);\n canvas.height = Math.ceil(this.image_.height * pixelRatio);\n var ctx = canvas.getContext('2d');\n ctx.scale(pixelRatio, pixelRatio);\n ctx.drawImage(this.image_, 0, 0);\n ctx.globalCompositeOperation = 'multiply';\n // Internet Explorer 11 does not support the multiply operation.\n // If the canvas is tainted in Internet Explorer this still produces\n // a solid color image with the shape of the icon.\n if (ctx.globalCompositeOperation === 'multiply' || this.isTainted_()) {\n ctx.fillStyle = asString(this.color_);\n ctx.fillRect(0, 0, canvas.width / pixelRatio, canvas.height / pixelRatio);\n ctx.globalCompositeOperation = 'destination-in';\n ctx.drawImage(this.image_, 0, 0);\n }\n else {\n var imgData = ctx.getImageData(0, 0, canvas.width, canvas.height);\n var data = imgData.data;\n var r = this.color_[0] / 255.0;\n var g = this.color_[1] / 255.0;\n var b = this.color_[2] / 255.0;\n var a = this.color_[3];\n for (var i = 0, ii = data.length; i < ii; i += 4) {\n data[i] *= r;\n data[i + 1] *= g;\n data[i + 2] *= b;\n data[i + 3] *= a;\n }\n ctx.putImageData(imgData, 0, 0);\n }\n };\n /**\n * Discards event handlers which listen for load completion or errors.\n *\n * @private\n */\n IconImage.prototype.unlistenImage_ = function () {\n if (this.unlisten_) {\n this.unlisten_();\n this.unlisten_ = null;\n }\n };\n return IconImage;\n}(EventTarget));\n/**\n * @param {HTMLImageElement|HTMLCanvasElement} image Image.\n * @param {string} src Src.\n * @param {import(\"../size.js\").Size} size Size.\n * @param {?string} crossOrigin Cross origin.\n * @param {import(\"../ImageState.js\").default} imageState Image state.\n * @param {import(\"../color.js\").Color} color Color.\n * @return {IconImage} Icon image.\n */\nexport function get(image, src, size, crossOrigin, imageState, color) {\n var iconImage = iconImageCache.get(src, crossOrigin, color);\n if (!iconImage) {\n iconImage = new IconImage(image, src, size, crossOrigin, imageState, color);\n iconImageCache.set(src, crossOrigin, color, iconImage);\n }\n return iconImage;\n}\nexport default IconImage;\n//# sourceMappingURL=IconImage.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/style/Icon\n */\nimport EventType from '../events/EventType.js';\nimport IconAnchorUnits from './IconAnchorUnits.js';\nimport IconOrigin from './IconOrigin.js';\nimport ImageState from '../ImageState.js';\nimport ImageStyle from './Image.js';\nimport { asArray } from '../color.js';\nimport { assert } from '../asserts.js';\nimport { get as getIconImage } from './IconImage.js';\nimport { getUid } from '../util.js';\n/**\n * @typedef {Object} Options\n * @property {Array<number>} [anchor=[0.5, 0.5]] Anchor. Default value is the icon center.\n * @property {import(\"./IconOrigin.js\").default} [anchorOrigin='top-left'] Origin of the anchor: `bottom-left`, `bottom-right`,\n * `top-left` or `top-right`.\n * @property {import(\"./IconAnchorUnits.js\").default} [anchorXUnits='fraction'] Units in which the anchor x value is\n * specified. A value of `'fraction'` indicates the x value is a fraction of the icon. A value of `'pixels'` indicates\n * the x value in pixels.\n * @property {import(\"./IconAnchorUnits.js\").default} [anchorYUnits='fraction'] Units in which the anchor y value is\n * specified. A value of `'fraction'` indicates the y value is a fraction of the icon. A value of `'pixels'` indicates\n * the y value in pixels.\n * @property {import(\"../color.js\").Color|string} [color] Color to tint the icon. If not specified,\n * the icon will be left as is.\n * @property {null|string} [crossOrigin] The `crossOrigin` attribute for loaded images. Note that you must provide a\n * `crossOrigin` value if you want to access pixel data with the Canvas renderer.\n * See https://developer.mozilla.org/en-US/docs/Web/HTML/CORS_enabled_image for more detail.\n * @property {HTMLImageElement|HTMLCanvasElement} [img] Image object for the icon. If the `src` option is not provided then the\n * provided image must already be loaded. And in that case, it is required\n * to provide the size of the image, with the `imgSize` option.\n * @property {Array<number>} [offset=[0, 0]] Offset, which, together with the size and the offset origin, define the\n * sub-rectangle to use from the original icon image.\n * @property {Array<number>} [displacement=[0,0]] Displacement the icon\n * @property {import(\"./IconOrigin.js\").default} [offsetOrigin='top-left'] Origin of the offset: `bottom-left`, `bottom-right`,\n * `top-left` or `top-right`.\n * @property {number} [opacity=1] Opacity of the icon.\n * @property {number|import(\"../size.js\").Size} [scale=1] Scale.\n * @property {boolean} [rotateWithView=false] Whether to rotate the icon with the view.\n * @property {number} [rotation=0] Rotation in radians (positive rotation clockwise).\n * @property {import(\"../size.js\").Size} [size] Icon size in pixel. Can be used together with `offset` to define the\n * sub-rectangle to use from the origin (sprite) icon image.\n * @property {import(\"../size.js\").Size} [imgSize] Image size in pixels. Only required if `img` is set and `src` is not, and\n * for SVG images in Internet Explorer 11. The provided `imgSize` needs to match the actual size of the image.\n * @property {string} [src] Image source URI.\n */\n/**\n * @classdesc\n * Set icon style for vector features.\n * @api\n */\nvar Icon = /** @class */ (function (_super) {\n __extends(Icon, _super);\n /**\n * @param {Options} [opt_options] Options.\n */\n function Icon(opt_options) {\n var _this = this;\n var options = opt_options || {};\n /**\n * @type {number}\n */\n var opacity = options.opacity !== undefined ? options.opacity : 1;\n /**\n * @type {number}\n */\n var rotation = options.rotation !== undefined ? options.rotation : 0;\n /**\n * @type {number|import(\"../size.js\").Size}\n */\n var scale = options.scale !== undefined ? options.scale : 1;\n /**\n * @type {boolean}\n */\n var rotateWithView = options.rotateWithView !== undefined ? options.rotateWithView : false;\n _this = _super.call(this, {\n opacity: opacity,\n rotation: rotation,\n scale: scale,\n displacement: options.displacement !== undefined ? options.displacement : [0, 0],\n rotateWithView: rotateWithView,\n }) || this;\n /**\n * @private\n * @type {Array<number>}\n */\n _this.anchor_ = options.anchor !== undefined ? options.anchor : [0.5, 0.5];\n /**\n * @private\n * @type {Array<number>}\n */\n _this.normalizedAnchor_ = null;\n /**\n * @private\n * @type {import(\"./IconOrigin.js\").default}\n */\n _this.anchorOrigin_ =\n options.anchorOrigin !== undefined\n ? options.anchorOrigin\n : IconOrigin.TOP_LEFT;\n /**\n * @private\n * @type {import(\"./IconAnchorUnits.js\").default}\n */\n _this.anchorXUnits_ =\n options.anchorXUnits !== undefined\n ? options.anchorXUnits\n : IconAnchorUnits.FRACTION;\n /**\n * @private\n * @type {import(\"./IconAnchorUnits.js\").default}\n */\n _this.anchorYUnits_ =\n options.anchorYUnits !== undefined\n ? options.anchorYUnits\n : IconAnchorUnits.FRACTION;\n /**\n * @private\n * @type {?string}\n */\n _this.crossOrigin_ =\n options.crossOrigin !== undefined ? options.crossOrigin : null;\n /**\n * @type {HTMLImageElement|HTMLCanvasElement}\n */\n var image = options.img !== undefined ? options.img : null;\n /**\n * @type {import(\"../size.js\").Size}\n */\n var imgSize = options.imgSize !== undefined ? options.imgSize : null;\n /**\n * @type {string|undefined}\n */\n var src = options.src;\n assert(!(src !== undefined && image), 4); // `image` and `src` cannot be provided at the same time\n assert(!image || (image && imgSize), 5); // `imgSize` must be set when `image` is provided\n if ((src === undefined || src.length === 0) && image) {\n src = /** @type {HTMLImageElement} */ (image).src || getUid(image);\n }\n assert(src !== undefined && src.length > 0, 6); // A defined and non-empty `src` or `image` must be provided\n /**\n * @type {import(\"../ImageState.js\").default}\n */\n var imageState = options.src !== undefined ? ImageState.IDLE : ImageState.LOADED;\n /**\n * @private\n * @type {import(\"../color.js\").Color}\n */\n _this.color_ = options.color !== undefined ? asArray(options.color) : null;\n /**\n * @private\n * @type {import(\"./IconImage.js\").default}\n */\n _this.iconImage_ = getIconImage(image, \n /** @type {string} */ (src), imgSize, _this.crossOrigin_, imageState, _this.color_);\n /**\n * @private\n * @type {Array<number>}\n */\n _this.offset_ = options.offset !== undefined ? options.offset : [0, 0];\n /**\n * @private\n * @type {import(\"./IconOrigin.js\").default}\n */\n _this.offsetOrigin_ =\n options.offsetOrigin !== undefined\n ? options.offsetOrigin\n : IconOrigin.TOP_LEFT;\n /**\n * @private\n * @type {Array<number>}\n */\n _this.origin_ = null;\n /**\n * @private\n * @type {import(\"../size.js\").Size}\n */\n _this.size_ = options.size !== undefined ? options.size : null;\n return _this;\n }\n /**\n * Clones the style. The underlying Image/HTMLCanvasElement is not cloned.\n * @return {Icon} The cloned style.\n * @api\n */\n Icon.prototype.clone = function () {\n var scale = this.getScale();\n return new Icon({\n anchor: this.anchor_.slice(),\n anchorOrigin: this.anchorOrigin_,\n anchorXUnits: this.anchorXUnits_,\n anchorYUnits: this.anchorYUnits_,\n crossOrigin: this.crossOrigin_,\n color: this.color_ && this.color_.slice\n ? this.color_.slice()\n : this.color_ || undefined,\n src: this.getSrc(),\n offset: this.offset_.slice(),\n offsetOrigin: this.offsetOrigin_,\n size: this.size_ !== null ? this.size_.slice() : undefined,\n opacity: this.getOpacity(),\n scale: Array.isArray(scale) ? scale.slice() : scale,\n rotation: this.getRotation(),\n rotateWithView: this.getRotateWithView(),\n });\n };\n /**\n * Get the anchor point in pixels. The anchor determines the center point for the\n * symbolizer.\n * @return {Array<number>} Anchor.\n * @api\n */\n Icon.prototype.getAnchor = function () {\n if (this.normalizedAnchor_) {\n return this.normalizedAnchor_;\n }\n var anchor = this.anchor_;\n var size = this.getSize();\n if (this.anchorXUnits_ == IconAnchorUnits.FRACTION ||\n this.anchorYUnits_ == IconAnchorUnits.FRACTION) {\n if (!size) {\n return null;\n }\n anchor = this.anchor_.slice();\n if (this.anchorXUnits_ == IconAnchorUnits.FRACTION) {\n anchor[0] *= size[0];\n }\n if (this.anchorYUnits_ == IconAnchorUnits.FRACTION) {\n anchor[1] *= size[1];\n }\n }\n if (this.anchorOrigin_ != IconOrigin.TOP_LEFT) {\n if (!size) {\n return null;\n }\n if (anchor === this.anchor_) {\n anchor = this.anchor_.slice();\n }\n if (this.anchorOrigin_ == IconOrigin.TOP_RIGHT ||\n this.anchorOrigin_ == IconOrigin.BOTTOM_RIGHT) {\n anchor[0] = -anchor[0] + size[0];\n }\n if (this.anchorOrigin_ == IconOrigin.BOTTOM_LEFT ||\n this.anchorOrigin_ == IconOrigin.BOTTOM_RIGHT) {\n anchor[1] = -anchor[1] + size[1];\n }\n }\n var displacement = this.getDisplacement();\n anchor[0] -= displacement[0];\n anchor[1] += displacement[1];\n this.normalizedAnchor_ = anchor;\n return this.normalizedAnchor_;\n };\n /**\n * Set the anchor point. The anchor determines the center point for the\n * symbolizer.\n *\n * @param {Array<number>} anchor Anchor.\n * @api\n */\n Icon.prototype.setAnchor = function (anchor) {\n this.anchor_ = anchor;\n this.normalizedAnchor_ = null;\n };\n /**\n * Get the icon color.\n * @return {import(\"../color.js\").Color} Color.\n * @api\n */\n Icon.prototype.getColor = function () {\n return this.color_;\n };\n /**\n * Get the image icon.\n * @param {number} pixelRatio Pixel ratio.\n * @return {HTMLImageElement|HTMLCanvasElement} Image or Canvas element.\n * @api\n */\n Icon.prototype.getImage = function (pixelRatio) {\n return this.iconImage_.getImage(pixelRatio);\n };\n /**\n * Get the pixel ratio.\n * @param {number} pixelRatio Pixel ratio.\n * @return {number} The pixel ratio of the image.\n * @api\n */\n Icon.prototype.getPixelRatio = function (pixelRatio) {\n return this.iconImage_.getPixelRatio(pixelRatio);\n };\n /**\n * @return {import(\"../size.js\").Size} Image size.\n */\n Icon.prototype.getImageSize = function () {\n return this.iconImage_.getSize();\n };\n /**\n * @return {import(\"../ImageState.js\").default} Image state.\n */\n Icon.prototype.getImageState = function () {\n return this.iconImage_.getImageState();\n };\n /**\n * @return {HTMLImageElement|HTMLCanvasElement} Image element.\n */\n Icon.prototype.getHitDetectionImage = function () {\n return this.iconImage_.getHitDetectionImage();\n };\n /**\n * Get the origin of the symbolizer.\n * @return {Array<number>} Origin.\n * @api\n */\n Icon.prototype.getOrigin = function () {\n if (this.origin_) {\n return this.origin_;\n }\n var offset = this.offset_;\n if (this.offsetOrigin_ != IconOrigin.TOP_LEFT) {\n var size = this.getSize();\n var iconImageSize = this.iconImage_.getSize();\n if (!size || !iconImageSize) {\n return null;\n }\n offset = offset.slice();\n if (this.offsetOrigin_ == IconOrigin.TOP_RIGHT ||\n this.offsetOrigin_ == IconOrigin.BOTTOM_RIGHT) {\n offset[0] = iconImageSize[0] - size[0] - offset[0];\n }\n if (this.offsetOrigin_ == IconOrigin.BOTTOM_LEFT ||\n this.offsetOrigin_ == IconOrigin.BOTTOM_RIGHT) {\n offset[1] = iconImageSize[1] - size[1] - offset[1];\n }\n }\n this.origin_ = offset;\n return this.origin_;\n };\n /**\n * Get the image URL.\n * @return {string|undefined} Image src.\n * @api\n */\n Icon.prototype.getSrc = function () {\n return this.iconImage_.getSrc();\n };\n /**\n * Get the size of the icon (in pixels).\n * @return {import(\"../size.js\").Size} Image size.\n * @api\n */\n Icon.prototype.getSize = function () {\n return !this.size_ ? this.iconImage_.getSize() : this.size_;\n };\n /**\n * @param {function(import(\"../events/Event.js\").default): void} listener Listener function.\n */\n Icon.prototype.listenImageChange = function (listener) {\n this.iconImage_.addEventListener(EventType.CHANGE, listener);\n };\n /**\n * Load not yet loaded URI.\n * When rendering a feature with an icon style, the vector renderer will\n * automatically call this method. However, you might want to call this\n * method yourself for preloading or other purposes.\n * @api\n */\n Icon.prototype.load = function () {\n this.iconImage_.load();\n };\n /**\n * @param {function(import(\"../events/Event.js\").default): void} listener Listener function.\n */\n Icon.prototype.unlistenImageChange = function (listener) {\n this.iconImage_.removeEventListener(EventType.CHANGE, listener);\n };\n return Icon;\n}(ImageStyle));\nexport default Icon;\n//# sourceMappingURL=Icon.js.map","/**\n * @module ol/render/canvas/hitdetect\n */\nimport CanvasImmediateRenderer from './Immediate.js';\nimport GeometryType from '../../geom/GeometryType.js';\nimport IconAnchorUnits from '../../style/IconAnchorUnits.js';\nimport { Icon } from '../../style.js';\nimport { clamp } from '../../math.js';\nimport { createCanvasContext2D } from '../../dom.js';\nimport { intersects } from '../../extent.js';\nimport { numberSafeCompareFunction } from '../../array.js';\nexport var HIT_DETECT_RESOLUTION = 0.5;\n/**\n * @param {import(\"../../size.js\").Size} size Canvas size in css pixels.\n * @param {Array<import(\"../../transform.js\").Transform>} transforms Transforms\n * for rendering features to all worlds of the viewport, from coordinates to css\n * pixels.\n * @param {Array<import(\"../../Feature.js\").FeatureLike>} features\n * Features to consider for hit detection.\n * @param {import(\"../../style/Style.js\").StyleFunction|undefined} styleFunction\n * Layer style function.\n * @param {import(\"../../extent.js\").Extent} extent Extent.\n * @param {number} resolution Resolution.\n * @param {number} rotation Rotation.\n * @return {ImageData} Hit detection image data.\n */\nexport function createHitDetectionImageData(size, transforms, features, styleFunction, extent, resolution, rotation) {\n var width = size[0] * HIT_DETECT_RESOLUTION;\n var height = size[1] * HIT_DETECT_RESOLUTION;\n var context = createCanvasContext2D(width, height);\n context.imageSmoothingEnabled = false;\n var canvas = context.canvas;\n var renderer = new CanvasImmediateRenderer(context, HIT_DETECT_RESOLUTION, extent, null, rotation);\n var featureCount = features.length;\n // Stretch hit detection index to use the whole available color range\n var indexFactor = Math.floor((256 * 256 * 256 - 1) / featureCount);\n var featuresByZIndex = {};\n for (var i = 1; i <= featureCount; ++i) {\n var feature = features[i - 1];\n var featureStyleFunction = feature.getStyleFunction() || styleFunction;\n if (!styleFunction) {\n continue;\n }\n var styles = featureStyleFunction(feature, resolution);\n if (!styles) {\n continue;\n }\n if (!Array.isArray(styles)) {\n styles = [styles];\n }\n var index = i * indexFactor;\n var color = '#' + ('000000' + index.toString(16)).slice(-6);\n for (var j = 0, jj = styles.length; j < jj; ++j) {\n var originalStyle = styles[j];\n var geometry = originalStyle.getGeometryFunction()(feature);\n if (!geometry || !intersects(extent, geometry.getExtent())) {\n continue;\n }\n var style = originalStyle.clone();\n var fill = style.getFill();\n if (fill) {\n fill.setColor(color);\n }\n var stroke = style.getStroke();\n if (stroke) {\n stroke.setColor(color);\n stroke.setLineDash(null);\n }\n style.setText(undefined);\n var image = originalStyle.getImage();\n if (image && image.getOpacity() !== 0) {\n var imgSize = image.getImageSize();\n if (!imgSize) {\n continue;\n }\n var imgContext = createCanvasContext2D(imgSize[0], imgSize[1], undefined, { alpha: false });\n var img = imgContext.canvas;\n imgContext.fillStyle = color;\n imgContext.fillRect(0, 0, img.width, img.height);\n style.setImage(new Icon({\n img: img,\n imgSize: imgSize,\n anchor: image.getAnchor(),\n anchorXUnits: IconAnchorUnits.PIXELS,\n anchorYUnits: IconAnchorUnits.PIXELS,\n offset: image.getOrigin(),\n opacity: 1,\n size: image.getSize(),\n scale: image.getScale(),\n rotation: image.getRotation(),\n rotateWithView: image.getRotateWithView(),\n }));\n }\n var zIndex = style.getZIndex() || 0;\n var byGeometryType = featuresByZIndex[zIndex];\n if (!byGeometryType) {\n byGeometryType = {};\n featuresByZIndex[zIndex] = byGeometryType;\n byGeometryType[GeometryType.POLYGON] = [];\n byGeometryType[GeometryType.CIRCLE] = [];\n byGeometryType[GeometryType.LINE_STRING] = [];\n byGeometryType[GeometryType.POINT] = [];\n }\n byGeometryType[geometry.getType().replace('Multi', '')].push(geometry, style);\n }\n }\n var zIndexKeys = Object.keys(featuresByZIndex)\n .map(Number)\n .sort(numberSafeCompareFunction);\n for (var i = 0, ii = zIndexKeys.length; i < ii; ++i) {\n var byGeometryType = featuresByZIndex[zIndexKeys[i]];\n for (var type in byGeometryType) {\n var geomAndStyle = byGeometryType[type];\n for (var j = 0, jj = geomAndStyle.length; j < jj; j += 2) {\n renderer.setStyle(geomAndStyle[j + 1]);\n for (var k = 0, kk = transforms.length; k < kk; ++k) {\n renderer.setTransform(transforms[k]);\n renderer.drawGeometry(geomAndStyle[j]);\n }\n }\n }\n }\n return context.getImageData(0, 0, canvas.width, canvas.height);\n}\n/**\n * @param {import(\"../../pixel\").Pixel} pixel Pixel coordinate on the hit\n * detection canvas in css pixels.\n * @param {Array<import(\"../../Feature\").FeatureLike>} features Features. Has to\n * match the `features` array that was passed to `createHitDetectionImageData()`.\n * @param {ImageData} imageData Hit detection image data generated by\n * `createHitDetectionImageData()`.\n * @return {Array<import(\"../../Feature\").FeatureLike>} features Features.\n */\nexport function hitDetect(pixel, features, imageData) {\n var resultFeatures = [];\n if (imageData) {\n var x = Math.floor(Math.round(pixel[0]) * HIT_DETECT_RESOLUTION);\n var y = Math.floor(Math.round(pixel[1]) * HIT_DETECT_RESOLUTION);\n // The pixel coordinate is clamped down to the hit-detect canvas' size to account\n // for browsers returning coordinates slightly larger than the actual canvas size\n // due to a non-integer pixel ratio.\n var index = (clamp(x, 0, imageData.width - 1) +\n clamp(y, 0, imageData.height - 1) * imageData.width) *\n 4;\n var r = imageData.data[index];\n var g = imageData.data[index + 1];\n var b = imageData.data[index + 2];\n var i = b + 256 * (g + 256 * r);\n var indexFactor = Math.floor((256 * 256 * 256 - 1) / features.length);\n if (i && i % indexFactor === 0) {\n resultFeatures.push(features[i / indexFactor - 1]);\n }\n }\n return resultFeatures;\n}\n//# sourceMappingURL=hitdetect.js.map","/**\n * @module ol/renderer/vector\n */\nimport BuilderType from '../render/canvas/BuilderType.js';\nimport GeometryType from '../geom/GeometryType.js';\nimport ImageState from '../ImageState.js';\nimport { getUid } from '../util.js';\n/**\n * Feature callback. The callback will be called with three arguments. The first\n * argument is one {@link module:ol/Feature feature} or {@link module:ol/render/Feature render feature}\n * at the pixel, the second is the {@link module:ol/layer/Layer layer} of the feature and will be null for\n * unmanaged layers. The third is the {@link module:ol/geom/SimpleGeometry} of the feature. For features\n * with a GeometryCollection geometry, it will be the first detected geometry from the collection.\n * @template T\n * @typedef {function(import(\"../Feature.js\").FeatureLike, import(\"../layer/Layer.js\").default<import(\"../source/Source\").default>, import(\"../geom/SimpleGeometry.js\").default): T} FeatureCallback\n */\n/**\n * Tolerance for geometry simplification in device pixels.\n * @type {number}\n */\nvar SIMPLIFY_TOLERANCE = 0.5;\n/**\n * @const\n * @type {Object<import(\"../geom/GeometryType.js\").default,\n * function(import(\"../render/canvas/BuilderGroup.js\").default, import(\"../geom/Geometry.js\").default,\n * import(\"../style/Style.js\").default, Object): void>}\n */\nvar GEOMETRY_RENDERERS = {\n 'Point': renderPointGeometry,\n 'LineString': renderLineStringGeometry,\n 'Polygon': renderPolygonGeometry,\n 'MultiPoint': renderMultiPointGeometry,\n 'MultiLineString': renderMultiLineStringGeometry,\n 'MultiPolygon': renderMultiPolygonGeometry,\n 'GeometryCollection': renderGeometryCollectionGeometry,\n 'Circle': renderCircleGeometry,\n};\n/**\n * @param {import(\"../Feature.js\").FeatureLike} feature1 Feature 1.\n * @param {import(\"../Feature.js\").FeatureLike} feature2 Feature 2.\n * @return {number} Order.\n */\nexport function defaultOrder(feature1, feature2) {\n return parseInt(getUid(feature1), 10) - parseInt(getUid(feature2), 10);\n}\n/**\n * @param {number} resolution Resolution.\n * @param {number} pixelRatio Pixel ratio.\n * @return {number} Squared pixel tolerance.\n */\nexport function getSquaredTolerance(resolution, pixelRatio) {\n var tolerance = getTolerance(resolution, pixelRatio);\n return tolerance * tolerance;\n}\n/**\n * @param {number} resolution Resolution.\n * @param {number} pixelRatio Pixel ratio.\n * @return {number} Pixel tolerance.\n */\nexport function getTolerance(resolution, pixelRatio) {\n return (SIMPLIFY_TOLERANCE * resolution) / pixelRatio;\n}\n/**\n * @param {import(\"../render/canvas/BuilderGroup.js\").default} builderGroup Builder group.\n * @param {import(\"../geom/Circle.js\").default} geometry Geometry.\n * @param {import(\"../style/Style.js\").default} style Style.\n * @param {import(\"../Feature.js\").default} feature Feature.\n * @param {import(\"../render/canvas/BuilderGroup.js\").default} [opt_declutterBuilderGroup] Builder for decluttering.\n */\nfunction renderCircleGeometry(builderGroup, geometry, style, feature, opt_declutterBuilderGroup) {\n var fillStyle = style.getFill();\n var strokeStyle = style.getStroke();\n if (fillStyle || strokeStyle) {\n var circleReplay = builderGroup.getBuilder(style.getZIndex(), BuilderType.CIRCLE);\n circleReplay.setFillStrokeStyle(fillStyle, strokeStyle);\n circleReplay.drawCircle(geometry, feature);\n }\n var textStyle = style.getText();\n if (textStyle && textStyle.getText()) {\n var textReplay = (opt_declutterBuilderGroup || builderGroup).getBuilder(style.getZIndex(), BuilderType.TEXT);\n textReplay.setTextStyle(textStyle);\n textReplay.drawText(geometry, feature);\n }\n}\n/**\n * @param {import(\"../render/canvas/BuilderGroup.js\").default} replayGroup Replay group.\n * @param {import(\"../Feature.js\").FeatureLike} feature Feature.\n * @param {import(\"../style/Style.js\").default} style Style.\n * @param {number} squaredTolerance Squared tolerance.\n * @param {function(import(\"../events/Event.js\").default): void} listener Listener function.\n * @param {import(\"../proj.js\").TransformFunction} [opt_transform] Transform from user to view projection.\n * @param {import(\"../render/canvas/BuilderGroup.js\").default} [opt_declutterBuilderGroup] Builder for decluttering.\n * @return {boolean} `true` if style is loading.\n */\nexport function renderFeature(replayGroup, feature, style, squaredTolerance, listener, opt_transform, opt_declutterBuilderGroup) {\n var loading = false;\n var imageStyle = style.getImage();\n if (imageStyle) {\n var imageState = imageStyle.getImageState();\n if (imageState == ImageState.LOADED || imageState == ImageState.ERROR) {\n imageStyle.unlistenImageChange(listener);\n }\n else {\n if (imageState == ImageState.IDLE) {\n imageStyle.load();\n }\n imageState = imageStyle.getImageState();\n imageStyle.listenImageChange(listener);\n loading = true;\n }\n }\n renderFeatureInternal(replayGroup, feature, style, squaredTolerance, opt_transform, opt_declutterBuilderGroup);\n return loading;\n}\n/**\n * @param {import(\"../render/canvas/BuilderGroup.js\").default} replayGroup Replay group.\n * @param {import(\"../Feature.js\").FeatureLike} feature Feature.\n * @param {import(\"../style/Style.js\").default} style Style.\n * @param {number} squaredTolerance Squared tolerance.\n * @param {import(\"../proj.js\").TransformFunction} [opt_transform] Optional transform function.\n * @param {import(\"../render/canvas/BuilderGroup.js\").default} [opt_declutterBuilderGroup] Builder for decluttering.\n */\nfunction renderFeatureInternal(replayGroup, feature, style, squaredTolerance, opt_transform, opt_declutterBuilderGroup) {\n var geometry = style.getGeometryFunction()(feature);\n if (!geometry) {\n return;\n }\n var simplifiedGeometry = geometry.simplifyTransformed(squaredTolerance, opt_transform);\n var renderer = style.getRenderer();\n if (renderer) {\n renderGeometry(replayGroup, simplifiedGeometry, style, feature);\n }\n else {\n var geometryRenderer = GEOMETRY_RENDERERS[simplifiedGeometry.getType()];\n geometryRenderer(replayGroup, simplifiedGeometry, style, feature, opt_declutterBuilderGroup);\n }\n}\n/**\n * @param {import(\"../render/canvas/BuilderGroup.js\").default} replayGroup Replay group.\n * @param {import(\"../geom/Geometry.js\").default|import(\"../render/Feature.js\").default} geometry Geometry.\n * @param {import(\"../style/Style.js\").default} style Style.\n * @param {import(\"../Feature.js\").FeatureLike} feature Feature.\n */\nfunction renderGeometry(replayGroup, geometry, style, feature) {\n if (geometry.getType() == GeometryType.GEOMETRY_COLLECTION) {\n var geometries = \n /** @type {import(\"../geom/GeometryCollection.js\").default} */ (geometry).getGeometries();\n for (var i = 0, ii = geometries.length; i < ii; ++i) {\n renderGeometry(replayGroup, geometries[i], style, feature);\n }\n return;\n }\n var replay = replayGroup.getBuilder(style.getZIndex(), BuilderType.DEFAULT);\n replay.drawCustom(\n /** @type {import(\"../geom/SimpleGeometry.js\").default} */ (geometry), feature, style.getRenderer(), style.getHitDetectionRenderer());\n}\n/**\n * @param {import(\"../render/canvas/BuilderGroup.js\").default} replayGroup Replay group.\n * @param {import(\"../geom/GeometryCollection.js\").default} geometry Geometry.\n * @param {import(\"../style/Style.js\").default} style Style.\n * @param {import(\"../Feature.js\").default} feature Feature.\n * @param {import(\"../render/canvas/BuilderGroup.js\").default} [opt_declutterBuilderGroup] Builder for decluttering.\n */\nfunction renderGeometryCollectionGeometry(replayGroup, geometry, style, feature, opt_declutterBuilderGroup) {\n var geometries = geometry.getGeometriesArray();\n var i, ii;\n for (i = 0, ii = geometries.length; i < ii; ++i) {\n var geometryRenderer = GEOMETRY_RENDERERS[geometries[i].getType()];\n geometryRenderer(replayGroup, geometries[i], style, feature, opt_declutterBuilderGroup);\n }\n}\n/**\n * @param {import(\"../render/canvas/BuilderGroup.js\").default} builderGroup Replay group.\n * @param {import(\"../geom/LineString.js\").default|import(\"../render/Feature.js\").default} geometry Geometry.\n * @param {import(\"../style/Style.js\").default} style Style.\n * @param {import(\"../Feature.js\").FeatureLike} feature Feature.\n * @param {import(\"../render/canvas/BuilderGroup.js\").default} [opt_declutterBuilderGroup] Builder for decluttering.\n */\nfunction renderLineStringGeometry(builderGroup, geometry, style, feature, opt_declutterBuilderGroup) {\n var strokeStyle = style.getStroke();\n if (strokeStyle) {\n var lineStringReplay = builderGroup.getBuilder(style.getZIndex(), BuilderType.LINE_STRING);\n lineStringReplay.setFillStrokeStyle(null, strokeStyle);\n lineStringReplay.drawLineString(geometry, feature);\n }\n var textStyle = style.getText();\n if (textStyle && textStyle.getText()) {\n var textReplay = (opt_declutterBuilderGroup || builderGroup).getBuilder(style.getZIndex(), BuilderType.TEXT);\n textReplay.setTextStyle(textStyle);\n textReplay.drawText(geometry, feature);\n }\n}\n/**\n * @param {import(\"../render/canvas/BuilderGroup.js\").default} builderGroup Replay group.\n * @param {import(\"../geom/MultiLineString.js\").default|import(\"../render/Feature.js\").default} geometry Geometry.\n * @param {import(\"../style/Style.js\").default} style Style.\n * @param {import(\"../Feature.js\").FeatureLike} feature Feature.\n * @param {import(\"../render/canvas/BuilderGroup.js\").default} [opt_declutterBuilderGroup] Builder for decluttering.\n */\nfunction renderMultiLineStringGeometry(builderGroup, geometry, style, feature, opt_declutterBuilderGroup) {\n var strokeStyle = style.getStroke();\n if (strokeStyle) {\n var lineStringReplay = builderGroup.getBuilder(style.getZIndex(), BuilderType.LINE_STRING);\n lineStringReplay.setFillStrokeStyle(null, strokeStyle);\n lineStringReplay.drawMultiLineString(geometry, feature);\n }\n var textStyle = style.getText();\n if (textStyle && textStyle.getText()) {\n var textReplay = (opt_declutterBuilderGroup || builderGroup).getBuilder(style.getZIndex(), BuilderType.TEXT);\n textReplay.setTextStyle(textStyle);\n textReplay.drawText(geometry, feature);\n }\n}\n/**\n * @param {import(\"../render/canvas/BuilderGroup.js\").default} builderGroup Replay group.\n * @param {import(\"../geom/MultiPolygon.js\").default} geometry Geometry.\n * @param {import(\"../style/Style.js\").default} style Style.\n * @param {import(\"../Feature.js\").default} feature Feature.\n * @param {import(\"../render/canvas/BuilderGroup.js\").default} [opt_declutterBuilderGroup] Builder for decluttering.\n */\nfunction renderMultiPolygonGeometry(builderGroup, geometry, style, feature, opt_declutterBuilderGroup) {\n var fillStyle = style.getFill();\n var strokeStyle = style.getStroke();\n if (strokeStyle || fillStyle) {\n var polygonReplay = builderGroup.getBuilder(style.getZIndex(), BuilderType.POLYGON);\n polygonReplay.setFillStrokeStyle(fillStyle, strokeStyle);\n polygonReplay.drawMultiPolygon(geometry, feature);\n }\n var textStyle = style.getText();\n if (textStyle && textStyle.getText()) {\n var textReplay = (opt_declutterBuilderGroup || builderGroup).getBuilder(style.getZIndex(), BuilderType.TEXT);\n textReplay.setTextStyle(textStyle);\n textReplay.drawText(geometry, feature);\n }\n}\n/**\n * @param {import(\"../render/canvas/BuilderGroup.js\").default} builderGroup Replay group.\n * @param {import(\"../geom/Point.js\").default|import(\"../render/Feature.js\").default} geometry Geometry.\n * @param {import(\"../style/Style.js\").default} style Style.\n * @param {import(\"../Feature.js\").FeatureLike} feature Feature.\n * @param {import(\"../render/canvas/BuilderGroup.js\").default} [opt_declutterBuilderGroup] Builder for decluttering.\n */\nfunction renderPointGeometry(builderGroup, geometry, style, feature, opt_declutterBuilderGroup) {\n var imageStyle = style.getImage();\n var textStyle = style.getText();\n /** @type {import(\"../render/canvas.js\").DeclutterImageWithText} */\n var declutterImageWithText;\n if (opt_declutterBuilderGroup) {\n builderGroup = opt_declutterBuilderGroup;\n declutterImageWithText =\n imageStyle && textStyle && textStyle.getText() ? {} : undefined;\n }\n if (imageStyle) {\n if (imageStyle.getImageState() != ImageState.LOADED) {\n return;\n }\n var imageReplay = builderGroup.getBuilder(style.getZIndex(), BuilderType.IMAGE);\n imageReplay.setImageStyle(imageStyle, declutterImageWithText);\n imageReplay.drawPoint(geometry, feature);\n }\n if (textStyle && textStyle.getText()) {\n var textReplay = builderGroup.getBuilder(style.getZIndex(), BuilderType.TEXT);\n textReplay.setTextStyle(textStyle, declutterImageWithText);\n textReplay.drawText(geometry, feature);\n }\n}\n/**\n * @param {import(\"../render/canvas/BuilderGroup.js\").default} builderGroup Replay group.\n * @param {import(\"../geom/MultiPoint.js\").default|import(\"../render/Feature.js\").default} geometry Geometry.\n * @param {import(\"../style/Style.js\").default} style Style.\n * @param {import(\"../Feature.js\").FeatureLike} feature Feature.\n * @param {import(\"../render/canvas/BuilderGroup.js\").default} [opt_declutterBuilderGroup] Builder for decluttering.\n */\nfunction renderMultiPointGeometry(builderGroup, geometry, style, feature, opt_declutterBuilderGroup) {\n var imageStyle = style.getImage();\n var textStyle = style.getText();\n /** @type {import(\"../render/canvas.js\").DeclutterImageWithText} */\n var declutterImageWithText;\n if (opt_declutterBuilderGroup) {\n builderGroup = opt_declutterBuilderGroup;\n declutterImageWithText =\n imageStyle && textStyle && textStyle.getText() ? {} : undefined;\n }\n if (imageStyle) {\n if (imageStyle.getImageState() != ImageState.LOADED) {\n return;\n }\n var imageReplay = builderGroup.getBuilder(style.getZIndex(), BuilderType.IMAGE);\n imageReplay.setImageStyle(imageStyle, declutterImageWithText);\n imageReplay.drawMultiPoint(geometry, feature);\n }\n if (textStyle && textStyle.getText()) {\n var textReplay = (opt_declutterBuilderGroup || builderGroup).getBuilder(style.getZIndex(), BuilderType.TEXT);\n textReplay.setTextStyle(textStyle, declutterImageWithText);\n textReplay.drawText(geometry, feature);\n }\n}\n/**\n * @param {import(\"../render/canvas/BuilderGroup.js\").default} builderGroup Replay group.\n * @param {import(\"../geom/Polygon.js\").default|import(\"../render/Feature.js\").default} geometry Geometry.\n * @param {import(\"../style/Style.js\").default} style Style.\n * @param {import(\"../Feature.js\").FeatureLike} feature Feature.\n * @param {import(\"../render/canvas/BuilderGroup.js\").default} [opt_declutterBuilderGroup] Builder for decluttering.\n */\nfunction renderPolygonGeometry(builderGroup, geometry, style, feature, opt_declutterBuilderGroup) {\n var fillStyle = style.getFill();\n var strokeStyle = style.getStroke();\n if (fillStyle || strokeStyle) {\n var polygonReplay = builderGroup.getBuilder(style.getZIndex(), BuilderType.POLYGON);\n polygonReplay.setFillStrokeStyle(fillStyle, strokeStyle);\n polygonReplay.drawPolygon(geometry, feature);\n }\n var textStyle = style.getText();\n if (textStyle && textStyle.getText()) {\n var textReplay = (opt_declutterBuilderGroup || builderGroup).getBuilder(style.getZIndex(), BuilderType.TEXT);\n textReplay.setTextStyle(textStyle);\n textReplay.drawText(geometry, feature);\n }\n}\n//# sourceMappingURL=vector.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/renderer/canvas/VectorLayer\n */\nimport CanvasBuilderGroup from '../../render/canvas/BuilderGroup.js';\nimport CanvasLayerRenderer from './Layer.js';\nimport ExecutorGroup from '../../render/canvas/ExecutorGroup.js';\nimport ViewHint from '../../ViewHint.js';\nimport { HIT_DETECT_RESOLUTION, createHitDetectionImageData, hitDetect, } from '../../render/canvas/hitdetect.js';\nimport { apply, makeInverse, makeScale, toString as transformToString, } from '../../transform.js';\nimport { buffer, containsExtent, createEmpty, getWidth, intersects as intersectsExtent, wrapX as wrapExtentX, } from '../../extent.js';\nimport { cssOpacity } from '../../css.js';\nimport { defaultOrder as defaultRenderOrder, getTolerance as getRenderTolerance, getSquaredTolerance as getSquaredRenderTolerance, renderFeature, } from '../vector.js';\nimport { equals } from '../../array.js';\nimport { fromUserExtent, getTransformFromProjections, getUserProjection, toUserExtent, toUserResolution, } from '../../proj.js';\nimport { getUid } from '../../util.js';\nimport { wrapX as wrapCoordinateX } from '../../coordinate.js';\n/**\n * @classdesc\n * Canvas renderer for vector layers.\n * @api\n */\nvar CanvasVectorLayerRenderer = /** @class */ (function (_super) {\n __extends(CanvasVectorLayerRenderer, _super);\n /**\n * @param {import(\"../../layer/Vector.js\").default} vectorLayer Vector layer.\n */\n function CanvasVectorLayerRenderer(vectorLayer) {\n var _this = _super.call(this, vectorLayer) || this;\n /** @private */\n _this.boundHandleStyleImageChange_ = _this.handleStyleImageChange_.bind(_this);\n /**\n * @type {boolean}\n */\n _this.animatingOrInteracting_;\n /**\n * @private\n * @type {boolean}\n */\n _this.dirty_ = false;\n /**\n * @type {ImageData}\n */\n _this.hitDetectionImageData_ = null;\n /**\n * @type {Array<import(\"../../Feature.js\").default>}\n */\n _this.renderedFeatures_ = null;\n /**\n * @private\n * @type {number}\n */\n _this.renderedRevision_ = -1;\n /**\n * @private\n * @type {number}\n */\n _this.renderedResolution_ = NaN;\n /**\n * @private\n * @type {import(\"../../extent.js\").Extent}\n */\n _this.renderedExtent_ = createEmpty();\n /**\n * @private\n * @type {import(\"../../extent.js\").Extent}\n */\n _this.wrappedRenderedExtent_ = createEmpty();\n /**\n * @private\n * @type {number}\n */\n _this.renderedRotation_;\n /**\n * @private\n * @type {import(\"../../coordinate\").Coordinate}\n */\n _this.renderedCenter_ = null;\n /**\n * @private\n * @type {import(\"../../proj/Projection\").default}\n */\n _this.renderedProjection_ = null;\n /**\n * @private\n * @type {function(import(\"../../Feature.js\").default, import(\"../../Feature.js\").default): number|null}\n */\n _this.renderedRenderOrder_ = null;\n /**\n * @private\n * @type {import(\"../../render/canvas/ExecutorGroup\").default}\n */\n _this.replayGroup_ = null;\n /**\n * A new replay group had to be created by `prepareFrame()`\n * @type {boolean}\n */\n _this.replayGroupChanged = true;\n /**\n * @type {import(\"../../render/canvas/ExecutorGroup\").default}\n */\n _this.declutterExecutorGroup = null;\n /**\n * Clipping to be performed by `renderFrame()`\n * @type {boolean}\n */\n _this.clipping = true;\n return _this;\n }\n /**\n * Get a rendering container from an existing target, if compatible.\n * @param {HTMLElement} target Potential render target.\n * @param {string} transform CSS Transform.\n * @param {number} opacity Opacity.\n */\n CanvasVectorLayerRenderer.prototype.useContainer = function (target, transform, opacity) {\n if (opacity < 1) {\n target = null;\n }\n _super.prototype.useContainer.call(this, target, transform, opacity);\n };\n /**\n * @param {ExecutorGroup} executorGroup Executor group.\n * @param {import(\"../../PluggableMap.js\").FrameState} frameState Frame state.\n * @param {import(\"rbush\").default} [opt_declutterTree] Declutter tree.\n */\n CanvasVectorLayerRenderer.prototype.renderWorlds = function (executorGroup, frameState, opt_declutterTree) {\n var extent = frameState.extent;\n var viewState = frameState.viewState;\n var center = viewState.center;\n var resolution = viewState.resolution;\n var projection = viewState.projection;\n var rotation = viewState.rotation;\n var projectionExtent = projection.getExtent();\n var vectorSource = this.getLayer().getSource();\n var pixelRatio = frameState.pixelRatio;\n var viewHints = frameState.viewHints;\n var snapToPixel = !(viewHints[ViewHint.ANIMATING] || viewHints[ViewHint.INTERACTING]);\n var context = this.context;\n var width = Math.round(frameState.size[0] * pixelRatio);\n var height = Math.round(frameState.size[1] * pixelRatio);\n var multiWorld = vectorSource.getWrapX() && projection.canWrapX();\n var worldWidth = multiWorld ? getWidth(projectionExtent) : null;\n var endWorld = multiWorld\n ? Math.ceil((extent[2] - projectionExtent[2]) / worldWidth) + 1\n : 1;\n var world = multiWorld\n ? Math.floor((extent[0] - projectionExtent[0]) / worldWidth)\n : 0;\n do {\n var transform = this.getRenderTransform(center, resolution, rotation, pixelRatio, width, height, world * worldWidth);\n executorGroup.execute(context, 1, transform, rotation, snapToPixel, undefined, opt_declutterTree);\n } while (++world < endWorld);\n };\n /**\n * Render declutter items for this layer\n * @param {import(\"../../PluggableMap.js\").FrameState} frameState Frame state.\n */\n CanvasVectorLayerRenderer.prototype.renderDeclutter = function (frameState) {\n if (this.declutterExecutorGroup) {\n this.renderWorlds(this.declutterExecutorGroup, frameState, frameState.declutterTree);\n }\n };\n /**\n * Render the layer.\n * @param {import(\"../../PluggableMap.js\").FrameState} frameState Frame state.\n * @param {HTMLElement} target Target that may be used to render content to.\n * @return {HTMLElement} The rendered element.\n */\n CanvasVectorLayerRenderer.prototype.renderFrame = function (frameState, target) {\n var pixelRatio = frameState.pixelRatio;\n var layerState = frameState.layerStatesArray[frameState.layerIndex];\n // set forward and inverse pixel transforms\n makeScale(this.pixelTransform, 1 / pixelRatio, 1 / pixelRatio);\n makeInverse(this.inversePixelTransform, this.pixelTransform);\n var canvasTransform = transformToString(this.pixelTransform);\n this.useContainer(target, canvasTransform, layerState.opacity);\n var context = this.context;\n var canvas = context.canvas;\n var replayGroup = this.replayGroup_;\n var declutterExecutorGroup = this.declutterExecutorGroup;\n if ((!replayGroup || replayGroup.isEmpty()) &&\n (!declutterExecutorGroup || declutterExecutorGroup.isEmpty())) {\n return null;\n }\n // resize and clear\n var width = Math.round(frameState.size[0] * pixelRatio);\n var height = Math.round(frameState.size[1] * pixelRatio);\n if (canvas.width != width || canvas.height != height) {\n canvas.width = width;\n canvas.height = height;\n if (canvas.style.transform !== canvasTransform) {\n canvas.style.transform = canvasTransform;\n }\n }\n else if (!this.containerReused) {\n context.clearRect(0, 0, width, height);\n }\n this.preRender(context, frameState);\n var viewState = frameState.viewState;\n var projection = viewState.projection;\n // clipped rendering if layer extent is set\n var clipped = false;\n var render = true;\n if (layerState.extent && this.clipping) {\n var layerExtent = fromUserExtent(layerState.extent, projection);\n render = intersectsExtent(layerExtent, frameState.extent);\n clipped = render && !containsExtent(layerExtent, frameState.extent);\n if (clipped) {\n this.clipUnrotated(context, frameState, layerExtent);\n }\n }\n if (render) {\n this.renderWorlds(replayGroup, frameState);\n }\n if (clipped) {\n context.restore();\n }\n this.postRender(context, frameState);\n var opacity = cssOpacity(layerState.opacity);\n var container = this.container;\n if (opacity !== container.style.opacity) {\n container.style.opacity = opacity;\n }\n if (this.renderedRotation_ !== viewState.rotation) {\n this.renderedRotation_ = viewState.rotation;\n this.hitDetectionImageData_ = null;\n }\n return this.container;\n };\n /**\n * Asynchronous layer level hit detection.\n * @param {import(\"../../pixel.js\").Pixel} pixel Pixel.\n * @return {Promise<Array<import(\"../../Feature\").default>>} Promise that resolves with an array of features.\n */\n CanvasVectorLayerRenderer.prototype.getFeatures = function (pixel) {\n return new Promise(\n /**\n * @param {function(Array<import(\"../../Feature\").default|import(\"../../render/Feature\").default>): void} resolve Resolver function.\n * @this {CanvasVectorLayerRenderer}\n */\n function (resolve) {\n if (!this.hitDetectionImageData_ && !this.animatingOrInteracting_) {\n var size = [this.context.canvas.width, this.context.canvas.height];\n apply(this.pixelTransform, size);\n var center = this.renderedCenter_;\n var resolution = this.renderedResolution_;\n var rotation = this.renderedRotation_;\n var projection = this.renderedProjection_;\n var extent = this.wrappedRenderedExtent_;\n var layer = this.getLayer();\n var transforms = [];\n var width = size[0] * HIT_DETECT_RESOLUTION;\n var height = size[1] * HIT_DETECT_RESOLUTION;\n transforms.push(this.getRenderTransform(center, resolution, rotation, HIT_DETECT_RESOLUTION, width, height, 0).slice());\n var source = layer.getSource();\n var projectionExtent = projection.getExtent();\n if (source.getWrapX() &&\n projection.canWrapX() &&\n !containsExtent(projectionExtent, extent)) {\n var startX = extent[0];\n var worldWidth = getWidth(projectionExtent);\n var world = 0;\n var offsetX = void 0;\n while (startX < projectionExtent[0]) {\n --world;\n offsetX = worldWidth * world;\n transforms.push(this.getRenderTransform(center, resolution, rotation, HIT_DETECT_RESOLUTION, width, height, offsetX).slice());\n startX += worldWidth;\n }\n world = 0;\n startX = extent[2];\n while (startX > projectionExtent[2]) {\n ++world;\n offsetX = worldWidth * world;\n transforms.push(this.getRenderTransform(center, resolution, rotation, HIT_DETECT_RESOLUTION, width, height, offsetX).slice());\n startX -= worldWidth;\n }\n }\n this.hitDetectionImageData_ = createHitDetectionImageData(size, transforms, this.renderedFeatures_, layer.getStyleFunction(), extent, resolution, rotation);\n }\n resolve(hitDetect(pixel, this.renderedFeatures_, this.hitDetectionImageData_));\n }.bind(this));\n };\n /**\n * @param {import(\"../../coordinate.js\").Coordinate} coordinate Coordinate.\n * @param {import(\"../../PluggableMap.js\").FrameState} frameState Frame state.\n * @param {number} hitTolerance Hit tolerance in pixels.\n * @param {import(\"../vector.js\").FeatureCallback<T>} callback Feature callback.\n * @param {Array<import(\"../Map.js\").HitMatch<T>>} matches The hit detected matches with tolerance.\n * @return {T|undefined} Callback result.\n * @template T\n */\n CanvasVectorLayerRenderer.prototype.forEachFeatureAtCoordinate = function (coordinate, frameState, hitTolerance, callback, matches) {\n var _this = this;\n if (!this.replayGroup_) {\n return undefined;\n }\n var resolution = frameState.viewState.resolution;\n var rotation = frameState.viewState.rotation;\n var layer = this.getLayer();\n /** @type {!Object<string, import(\"../Map.js\").HitMatch<T>|true>} */\n var features = {};\n /**\n * @param {import(\"../../Feature.js\").FeatureLike} feature Feature.\n * @param {import(\"../../geom/SimpleGeometry.js\").default} geometry Geometry.\n * @param {number} distanceSq The squared distance to the click position\n * @return {T|undefined} Callback result.\n */\n var featureCallback = function (feature, geometry, distanceSq) {\n var key = getUid(feature);\n var match = features[key];\n if (!match) {\n if (distanceSq === 0) {\n features[key] = true;\n return callback(feature, layer, geometry);\n }\n matches.push((features[key] = {\n feature: feature,\n layer: layer,\n geometry: geometry,\n distanceSq: distanceSq,\n callback: callback,\n }));\n }\n else if (match !== true && distanceSq < match.distanceSq) {\n if (distanceSq === 0) {\n features[key] = true;\n matches.splice(matches.lastIndexOf(match), 1);\n return callback(feature, layer, geometry);\n }\n match.geometry = geometry;\n match.distanceSq = distanceSq;\n }\n return undefined;\n };\n var result;\n var executorGroups = [this.replayGroup_];\n if (this.declutterExecutorGroup) {\n executorGroups.push(this.declutterExecutorGroup);\n }\n executorGroups.some(function (executorGroup) {\n return (result = executorGroup.forEachFeatureAtCoordinate(coordinate, resolution, rotation, hitTolerance, featureCallback, executorGroup === _this.declutterExecutorGroup\n ? frameState.declutterTree.all().map(function (item) { return item.value; })\n : null));\n });\n return result;\n };\n /**\n * Perform action necessary to get the layer rendered after new fonts have loaded\n */\n CanvasVectorLayerRenderer.prototype.handleFontsChanged = function () {\n var layer = this.getLayer();\n if (layer.getVisible() && this.replayGroup_) {\n layer.changed();\n }\n };\n /**\n * Handle changes in image style state.\n * @param {import(\"../../events/Event.js\").default} event Image style change event.\n * @private\n */\n CanvasVectorLayerRenderer.prototype.handleStyleImageChange_ = function (event) {\n this.renderIfReadyAndVisible();\n };\n /**\n * Determine whether render should be called.\n * @param {import(\"../../PluggableMap.js\").FrameState} frameState Frame state.\n * @return {boolean} Layer is ready to be rendered.\n */\n CanvasVectorLayerRenderer.prototype.prepareFrame = function (frameState) {\n var vectorLayer = this.getLayer();\n var vectorSource = vectorLayer.getSource();\n if (!vectorSource) {\n return false;\n }\n var animating = frameState.viewHints[ViewHint.ANIMATING];\n var interacting = frameState.viewHints[ViewHint.INTERACTING];\n var updateWhileAnimating = vectorLayer.getUpdateWhileAnimating();\n var updateWhileInteracting = vectorLayer.getUpdateWhileInteracting();\n if ((!this.dirty_ && !updateWhileAnimating && animating) ||\n (!updateWhileInteracting && interacting)) {\n this.animatingOrInteracting_ = true;\n return true;\n }\n this.animatingOrInteracting_ = false;\n var frameStateExtent = frameState.extent;\n var viewState = frameState.viewState;\n var projection = viewState.projection;\n var resolution = viewState.resolution;\n var pixelRatio = frameState.pixelRatio;\n var vectorLayerRevision = vectorLayer.getRevision();\n var vectorLayerRenderBuffer = vectorLayer.getRenderBuffer();\n var vectorLayerRenderOrder = vectorLayer.getRenderOrder();\n if (vectorLayerRenderOrder === undefined) {\n vectorLayerRenderOrder = defaultRenderOrder;\n }\n var center = viewState.center.slice();\n var extent = buffer(frameStateExtent, vectorLayerRenderBuffer * resolution);\n var renderedExtent = extent.slice();\n var loadExtents = [extent.slice()];\n var projectionExtent = projection.getExtent();\n if (vectorSource.getWrapX() &&\n projection.canWrapX() &&\n !containsExtent(projectionExtent, frameState.extent)) {\n // For the replay group, we need an extent that intersects the real world\n // (-180° to +180°). To support geometries in a coordinate range from -540°\n // to +540°, we add at least 1 world width on each side of the projection\n // extent. If the viewport is wider than the world, we need to add half of\n // the viewport width to make sure we cover the whole viewport.\n var worldWidth = getWidth(projectionExtent);\n var gutter = Math.max(getWidth(extent) / 2, worldWidth);\n extent[0] = projectionExtent[0] - gutter;\n extent[2] = projectionExtent[2] + gutter;\n wrapCoordinateX(center, projection);\n var loadExtent = wrapExtentX(loadExtents[0], projection);\n // If the extent crosses the date line, we load data for both edges of the worlds\n if (loadExtent[0] < projectionExtent[0] &&\n loadExtent[2] < projectionExtent[2]) {\n loadExtents.push([\n loadExtent[0] + worldWidth,\n loadExtent[1],\n loadExtent[2] + worldWidth,\n loadExtent[3],\n ]);\n }\n else if (loadExtent[0] > projectionExtent[0] &&\n loadExtent[2] > projectionExtent[2]) {\n loadExtents.push([\n loadExtent[0] - worldWidth,\n loadExtent[1],\n loadExtent[2] - worldWidth,\n loadExtent[3],\n ]);\n }\n }\n if (!this.dirty_ &&\n this.renderedResolution_ == resolution &&\n this.renderedRevision_ == vectorLayerRevision &&\n this.renderedRenderOrder_ == vectorLayerRenderOrder &&\n containsExtent(this.wrappedRenderedExtent_, extent)) {\n if (!equals(this.renderedExtent_, renderedExtent)) {\n this.hitDetectionImageData_ = null;\n this.renderedExtent_ = renderedExtent;\n }\n this.renderedCenter_ = center;\n this.replayGroupChanged = false;\n return true;\n }\n this.replayGroup_ = null;\n this.dirty_ = false;\n var replayGroup = new CanvasBuilderGroup(getRenderTolerance(resolution, pixelRatio), extent, resolution, pixelRatio);\n var declutterBuilderGroup;\n if (this.getLayer().getDeclutter()) {\n declutterBuilderGroup = new CanvasBuilderGroup(getRenderTolerance(resolution, pixelRatio), extent, resolution, pixelRatio);\n }\n var userProjection = getUserProjection();\n var userTransform;\n if (userProjection) {\n for (var i = 0, ii = loadExtents.length; i < ii; ++i) {\n var extent_1 = loadExtents[i];\n var userExtent_1 = toUserExtent(extent_1, projection);\n vectorSource.loadFeatures(userExtent_1, toUserResolution(resolution, projection), userProjection);\n }\n userTransform = getTransformFromProjections(userProjection, projection);\n }\n else {\n for (var i = 0, ii = loadExtents.length; i < ii; ++i) {\n vectorSource.loadFeatures(loadExtents[i], resolution, projection);\n }\n }\n var squaredTolerance = getSquaredRenderTolerance(resolution, pixelRatio);\n var render = \n /**\n * @param {import(\"../../Feature.js\").default} feature Feature.\n * @this {CanvasVectorLayerRenderer}\n */\n function (feature) {\n var styles;\n var styleFunction = feature.getStyleFunction() || vectorLayer.getStyleFunction();\n if (styleFunction) {\n styles = styleFunction(feature, resolution);\n }\n if (styles) {\n var dirty = this.renderFeature(feature, squaredTolerance, styles, replayGroup, userTransform, declutterBuilderGroup);\n this.dirty_ = this.dirty_ || dirty;\n }\n }.bind(this);\n var userExtent = toUserExtent(extent, projection);\n /** @type {Array<import(\"../../Feature.js\").default>} */\n var features = vectorSource.getFeaturesInExtent(userExtent);\n if (vectorLayerRenderOrder) {\n features.sort(vectorLayerRenderOrder);\n }\n for (var i = 0, ii = features.length; i < ii; ++i) {\n render(features[i]);\n }\n this.renderedFeatures_ = features;\n var replayGroupInstructions = replayGroup.finish();\n var executorGroup = new ExecutorGroup(extent, resolution, pixelRatio, vectorSource.getOverlaps(), replayGroupInstructions, vectorLayer.getRenderBuffer());\n if (declutterBuilderGroup) {\n this.declutterExecutorGroup = new ExecutorGroup(extent, resolution, pixelRatio, vectorSource.getOverlaps(), declutterBuilderGroup.finish(), vectorLayer.getRenderBuffer());\n }\n this.renderedResolution_ = resolution;\n this.renderedRevision_ = vectorLayerRevision;\n this.renderedRenderOrder_ = vectorLayerRenderOrder;\n this.renderedExtent_ = renderedExtent;\n this.wrappedRenderedExtent_ = extent;\n this.renderedCenter_ = center;\n this.renderedProjection_ = projection;\n this.replayGroup_ = executorGroup;\n this.hitDetectionImageData_ = null;\n this.replayGroupChanged = true;\n return true;\n };\n /**\n * @param {import(\"../../Feature.js\").default} feature Feature.\n * @param {number} squaredTolerance Squared render tolerance.\n * @param {import(\"../../style/Style.js\").default|Array<import(\"../../style/Style.js\").default>} styles The style or array of styles.\n * @param {import(\"../../render/canvas/BuilderGroup.js\").default} builderGroup Builder group.\n * @param {import(\"../../proj.js\").TransformFunction} [opt_transform] Transform from user to view projection.\n * @param {import(\"../../render/canvas/BuilderGroup.js\").default} [opt_declutterBuilderGroup] Builder for decluttering.\n * @return {boolean} `true` if an image is loading.\n */\n CanvasVectorLayerRenderer.prototype.renderFeature = function (feature, squaredTolerance, styles, builderGroup, opt_transform, opt_declutterBuilderGroup) {\n if (!styles) {\n return false;\n }\n var loading = false;\n if (Array.isArray(styles)) {\n for (var i = 0, ii = styles.length; i < ii; ++i) {\n loading =\n renderFeature(builderGroup, feature, styles[i], squaredTolerance, this.boundHandleStyleImageChange_, opt_transform, opt_declutterBuilderGroup) || loading;\n }\n }\n else {\n loading = renderFeature(builderGroup, feature, styles, squaredTolerance, this.boundHandleStyleImageChange_, opt_transform, opt_declutterBuilderGroup);\n }\n return loading;\n };\n return CanvasVectorLayerRenderer;\n}(CanvasLayerRenderer));\nexport default CanvasVectorLayerRenderer;\n//# sourceMappingURL=VectorLayer.js.map","/**\n * @module ol/reproj\n */\nimport { IMAGE_SMOOTHING_DISABLED } from './source/common.js';\nimport { assign } from './obj.js';\nimport { containsCoordinate, createEmpty, extend, forEachCorner, getCenter, getHeight, getTopLeft, getWidth, } from './extent.js';\nimport { createCanvasContext2D } from './dom.js';\nimport { getPointResolution, transform } from './proj.js';\nimport { solveLinearSystem } from './math.js';\nvar brokenDiagonalRendering_;\n/**\n * This draws a small triangle into a canvas by setting the triangle as the clip region\n * and then drawing a (too large) rectangle\n *\n * @param {CanvasRenderingContext2D} ctx The context in which to draw the triangle\n * @param {number} u1 The x-coordinate of the second point. The first point is 0,0.\n * @param {number} v1 The y-coordinate of the second point.\n * @param {number} u2 The x-coordinate of the third point.\n * @param {number} v2 The y-coordinate of the third point.\n */\nfunction drawTestTriangle(ctx, u1, v1, u2, v2) {\n ctx.beginPath();\n ctx.moveTo(0, 0);\n ctx.lineTo(u1, v1);\n ctx.lineTo(u2, v2);\n ctx.closePath();\n ctx.save();\n ctx.clip();\n ctx.fillRect(0, 0, Math.max(u1, u2) + 1, Math.max(v1, v2));\n ctx.restore();\n}\n/**\n * Given the data from getImageData, see if the right values appear at the provided offset.\n * Returns true if either the color or transparency is off\n *\n * @param {Uint8ClampedArray} data The data returned from getImageData\n * @param {number} offset The pixel offset from the start of data.\n * @return {boolean} true if the diagonal rendering is broken\n */\nfunction verifyBrokenDiagonalRendering(data, offset) {\n // the values ought to be close to the rgba(210, 0, 0, 0.75)\n return (Math.abs(data[offset * 4] - 210) > 2 ||\n Math.abs(data[offset * 4 + 3] - 0.75 * 255) > 2);\n}\n/**\n * Determines if the current browser configuration can render triangular clip regions correctly.\n * This value is cached so the function is only expensive the first time called.\n * Firefox on Windows (as of now) does not if HWA is enabled. See https://bugzilla.mozilla.org/show_bug.cgi?id=1606976\n * IE also doesn't. Chrome works, and everything seems to work on OSX and Android. This function caches the\n * result. I suppose that it is conceivably possible that a browser might flip modes while the app is\n * running, but lets hope not.\n *\n * @return {boolean} true if the Diagonal Rendering is broken.\n */\nfunction isBrokenDiagonalRendering() {\n if (brokenDiagonalRendering_ === undefined) {\n var ctx = document.createElement('canvas').getContext('2d');\n ctx.globalCompositeOperation = 'lighter';\n ctx.fillStyle = 'rgba(210, 0, 0, 0.75)';\n drawTestTriangle(ctx, 4, 5, 4, 0);\n drawTestTriangle(ctx, 4, 5, 0, 5);\n var data = ctx.getImageData(0, 0, 3, 3).data;\n brokenDiagonalRendering_ =\n verifyBrokenDiagonalRendering(data, 0) ||\n verifyBrokenDiagonalRendering(data, 4) ||\n verifyBrokenDiagonalRendering(data, 8);\n }\n return brokenDiagonalRendering_;\n}\n/**\n * Calculates ideal resolution to use from the source in order to achieve\n * pixel mapping as close as possible to 1:1 during reprojection.\n * The resolution is calculated regardless of what resolutions\n * are actually available in the dataset (TileGrid, Image, ...).\n *\n * @param {import(\"./proj/Projection.js\").default} sourceProj Source projection.\n * @param {import(\"./proj/Projection.js\").default} targetProj Target projection.\n * @param {import(\"./coordinate.js\").Coordinate} targetCenter Target center.\n * @param {number} targetResolution Target resolution.\n * @return {number} The best resolution to use. Can be +-Infinity, NaN or 0.\n */\nexport function calculateSourceResolution(sourceProj, targetProj, targetCenter, targetResolution) {\n var sourceCenter = transform(targetCenter, targetProj, sourceProj);\n // calculate the ideal resolution of the source data\n var sourceResolution = getPointResolution(targetProj, targetResolution, targetCenter);\n var targetMetersPerUnit = targetProj.getMetersPerUnit();\n if (targetMetersPerUnit !== undefined) {\n sourceResolution *= targetMetersPerUnit;\n }\n var sourceMetersPerUnit = sourceProj.getMetersPerUnit();\n if (sourceMetersPerUnit !== undefined) {\n sourceResolution /= sourceMetersPerUnit;\n }\n // Based on the projection properties, the point resolution at the specified\n // coordinates may be slightly different. We need to reverse-compensate this\n // in order to achieve optimal results.\n var sourceExtent = sourceProj.getExtent();\n if (!sourceExtent || containsCoordinate(sourceExtent, sourceCenter)) {\n var compensationFactor = getPointResolution(sourceProj, sourceResolution, sourceCenter) /\n sourceResolution;\n if (isFinite(compensationFactor) && compensationFactor > 0) {\n sourceResolution /= compensationFactor;\n }\n }\n return sourceResolution;\n}\n/**\n * Calculates ideal resolution to use from the source in order to achieve\n * pixel mapping as close as possible to 1:1 during reprojection.\n * The resolution is calculated regardless of what resolutions\n * are actually available in the dataset (TileGrid, Image, ...).\n *\n * @param {import(\"./proj/Projection.js\").default} sourceProj Source projection.\n * @param {import(\"./proj/Projection.js\").default} targetProj Target projection.\n * @param {import(\"./extent.js\").Extent} targetExtent Target extent\n * @param {number} targetResolution Target resolution.\n * @return {number} The best resolution to use. Can be +-Infinity, NaN or 0.\n */\nexport function calculateSourceExtentResolution(sourceProj, targetProj, targetExtent, targetResolution) {\n var targetCenter = getCenter(targetExtent);\n var sourceResolution = calculateSourceResolution(sourceProj, targetProj, targetCenter, targetResolution);\n if (!isFinite(sourceResolution) || sourceResolution <= 0) {\n forEachCorner(targetExtent, function (corner) {\n sourceResolution = calculateSourceResolution(sourceProj, targetProj, corner, targetResolution);\n return isFinite(sourceResolution) && sourceResolution > 0;\n });\n }\n return sourceResolution;\n}\n/**\n * @typedef {Object} ImageExtent\n * @property {import(\"./extent.js\").Extent} extent Extent.\n * @property {HTMLCanvasElement|HTMLImageElement|HTMLVideoElement} image Image.\n */\n/**\n * Renders the source data into new canvas based on the triangulation.\n *\n * @param {number} width Width of the canvas.\n * @param {number} height Height of the canvas.\n * @param {number} pixelRatio Pixel ratio.\n * @param {number} sourceResolution Source resolution.\n * @param {import(\"./extent.js\").Extent} sourceExtent Extent of the data source.\n * @param {number} targetResolution Target resolution.\n * @param {import(\"./extent.js\").Extent} targetExtent Target extent.\n * @param {import(\"./reproj/Triangulation.js\").default} triangulation Calculated triangulation.\n * @param {Array<ImageExtent>} sources Array of sources.\n * @param {number} gutter Gutter of the sources.\n * @param {boolean} [opt_renderEdges] Render reprojection edges.\n * @param {object} [opt_contextOptions] Properties to set on the canvas context.\n * @return {HTMLCanvasElement} Canvas with reprojected data.\n */\nexport function render(width, height, pixelRatio, sourceResolution, sourceExtent, targetResolution, targetExtent, triangulation, sources, gutter, opt_renderEdges, opt_contextOptions) {\n var context = createCanvasContext2D(Math.round(pixelRatio * width), Math.round(pixelRatio * height));\n assign(context, opt_contextOptions);\n if (sources.length === 0) {\n return context.canvas;\n }\n context.scale(pixelRatio, pixelRatio);\n function pixelRound(value) {\n return Math.round(value * pixelRatio) / pixelRatio;\n }\n context.globalCompositeOperation = 'lighter';\n var sourceDataExtent = createEmpty();\n sources.forEach(function (src, i, arr) {\n extend(sourceDataExtent, src.extent);\n });\n var canvasWidthInUnits = getWidth(sourceDataExtent);\n var canvasHeightInUnits = getHeight(sourceDataExtent);\n var stitchContext = createCanvasContext2D(Math.round((pixelRatio * canvasWidthInUnits) / sourceResolution), Math.round((pixelRatio * canvasHeightInUnits) / sourceResolution));\n assign(stitchContext, opt_contextOptions);\n var stitchScale = pixelRatio / sourceResolution;\n sources.forEach(function (src, i, arr) {\n var xPos = src.extent[0] - sourceDataExtent[0];\n var yPos = -(src.extent[3] - sourceDataExtent[3]);\n var srcWidth = getWidth(src.extent);\n var srcHeight = getHeight(src.extent);\n // This test should never fail -- but it does. Need to find a fix the upstream condition\n if (src.image.width > 0 && src.image.height > 0) {\n stitchContext.drawImage(src.image, gutter, gutter, src.image.width - 2 * gutter, src.image.height - 2 * gutter, xPos * stitchScale, yPos * stitchScale, srcWidth * stitchScale, srcHeight * stitchScale);\n }\n });\n var targetTopLeft = getTopLeft(targetExtent);\n triangulation.getTriangles().forEach(function (triangle, i, arr) {\n /* Calculate affine transform (src -> dst)\n * Resulting matrix can be used to transform coordinate\n * from `sourceProjection` to destination pixels.\n *\n * To optimize number of context calls and increase numerical stability,\n * we also do the following operations:\n * trans(-topLeftExtentCorner), scale(1 / targetResolution), scale(1, -1)\n * here before solving the linear system so [ui, vi] are pixel coordinates.\n *\n * Src points: xi, yi\n * Dst points: ui, vi\n * Affine coefficients: aij\n *\n * | x0 y0 1 0 0 0 | |a00| |u0|\n * | x1 y1 1 0 0 0 | |a01| |u1|\n * | x2 y2 1 0 0 0 | x |a02| = |u2|\n * | 0 0 0 x0 y0 1 | |a10| |v0|\n * | 0 0 0 x1 y1 1 | |a11| |v1|\n * | 0 0 0 x2 y2 1 | |a12| |v2|\n */\n var source = triangle.source;\n var target = triangle.target;\n var x0 = source[0][0], y0 = source[0][1];\n var x1 = source[1][0], y1 = source[1][1];\n var x2 = source[2][0], y2 = source[2][1];\n // Make sure that everything is on pixel boundaries\n var u0 = pixelRound((target[0][0] - targetTopLeft[0]) / targetResolution);\n var v0 = pixelRound(-(target[0][1] - targetTopLeft[1]) / targetResolution);\n var u1 = pixelRound((target[1][0] - targetTopLeft[0]) / targetResolution);\n var v1 = pixelRound(-(target[1][1] - targetTopLeft[1]) / targetResolution);\n var u2 = pixelRound((target[2][0] - targetTopLeft[0]) / targetResolution);\n var v2 = pixelRound(-(target[2][1] - targetTopLeft[1]) / targetResolution);\n // Shift all the source points to improve numerical stability\n // of all the subsequent calculations. The [x0, y0] is used here.\n // This is also used to simplify the linear system.\n var sourceNumericalShiftX = x0;\n var sourceNumericalShiftY = y0;\n x0 = 0;\n y0 = 0;\n x1 -= sourceNumericalShiftX;\n y1 -= sourceNumericalShiftY;\n x2 -= sourceNumericalShiftX;\n y2 -= sourceNumericalShiftY;\n var augmentedMatrix = [\n [x1, y1, 0, 0, u1 - u0],\n [x2, y2, 0, 0, u2 - u0],\n [0, 0, x1, y1, v1 - v0],\n [0, 0, x2, y2, v2 - v0],\n ];\n var affineCoefs = solveLinearSystem(augmentedMatrix);\n if (!affineCoefs) {\n return;\n }\n context.save();\n context.beginPath();\n if (isBrokenDiagonalRendering() ||\n opt_contextOptions === IMAGE_SMOOTHING_DISABLED) {\n // Make sure that all lines are horizontal or vertical\n context.moveTo(u1, v1);\n // This is the diagonal line. Do it in 4 steps\n var steps = 4;\n var ud = u0 - u1;\n var vd = v0 - v1;\n for (var step = 0; step < steps; step++) {\n // Go horizontally\n context.lineTo(u1 + pixelRound(((step + 1) * ud) / steps), v1 + pixelRound((step * vd) / (steps - 1)));\n // Go vertically\n if (step != steps - 1) {\n context.lineTo(u1 + pixelRound(((step + 1) * ud) / steps), v1 + pixelRound(((step + 1) * vd) / (steps - 1)));\n }\n }\n // We are almost at u0r, v0r\n context.lineTo(u2, v2);\n }\n else {\n context.moveTo(u1, v1);\n context.lineTo(u0, v0);\n context.lineTo(u2, v2);\n }\n context.clip();\n context.transform(affineCoefs[0], affineCoefs[2], affineCoefs[1], affineCoefs[3], u0, v0);\n context.translate(sourceDataExtent[0] - sourceNumericalShiftX, sourceDataExtent[3] - sourceNumericalShiftY);\n context.scale(sourceResolution / pixelRatio, -sourceResolution / pixelRatio);\n context.drawImage(stitchContext.canvas, 0, 0);\n context.restore();\n });\n if (opt_renderEdges) {\n context.save();\n context.globalCompositeOperation = 'source-over';\n context.strokeStyle = 'black';\n context.lineWidth = 1;\n triangulation.getTriangles().forEach(function (triangle, i, arr) {\n var target = triangle.target;\n var u0 = (target[0][0] - targetTopLeft[0]) / targetResolution;\n var v0 = -(target[0][1] - targetTopLeft[1]) / targetResolution;\n var u1 = (target[1][0] - targetTopLeft[0]) / targetResolution;\n var v1 = -(target[1][1] - targetTopLeft[1]) / targetResolution;\n var u2 = (target[2][0] - targetTopLeft[0]) / targetResolution;\n var v2 = -(target[2][1] - targetTopLeft[1]) / targetResolution;\n context.beginPath();\n context.moveTo(u1, v1);\n context.lineTo(u0, v0);\n context.lineTo(u2, v2);\n context.closePath();\n context.stroke();\n });\n context.restore();\n }\n return context.canvas;\n}\n//# sourceMappingURL=reproj.js.map","/**\n * @module ol/ViewHint\n */\n/**\n * @enum {number}\n */\nexport default {\n ANIMATING: 0,\n INTERACTING: 1,\n};\n//# sourceMappingURL=ViewHint.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/layer/Vector\n */\nimport BaseVectorLayer from './BaseVector.js';\nimport CanvasVectorLayerRenderer from '../renderer/canvas/VectorLayer.js';\n/**\n * @classdesc\n * Vector data that is rendered client-side.\n * Note that any property set in the options is set as a {@link module:ol/Object~BaseObject}\n * property on the layer object; for example, setting `title: 'My Title'` in the\n * options means that `title` is observable, and has get/set accessors.\n *\n * @template {import(\"../source/Vector.js\").default} VectorSourceType\n * @extends {BaseVectorLayer<VectorSourceType>}\n * @api\n */\nvar VectorLayer = /** @class */ (function (_super) {\n __extends(VectorLayer, _super);\n /**\n * @param {import(\"./BaseVector.js\").Options<VectorSourceType>} [opt_options] Options.\n */\n function VectorLayer(opt_options) {\n return _super.call(this, opt_options) || this;\n }\n /**\n * Create a renderer for this layer.\n * @return {import(\"../renderer/Layer.js\").default} A layer renderer.\n */\n VectorLayer.prototype.createRenderer = function () {\n return new CanvasVectorLayerRenderer(this);\n };\n return VectorLayer;\n}(BaseVectorLayer));\nexport default VectorLayer;\n//# sourceMappingURL=Vector.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/Tile\n */\nimport EventTarget from './events/Target.js';\nimport EventType from './events/EventType.js';\nimport TileState from './TileState.js';\nimport { abstract } from './util.js';\nimport { easeIn } from './easing.js';\n/**\n * A function that takes an {@link module:ol/Tile} for the tile and a\n * `{string}` for the url as arguments. The default is\n * ```js\n * source.setTileLoadFunction(function(tile, src) {\n * tile.getImage().src = src;\n * });\n * ```\n * For more fine grained control, the load function can use fetch or XMLHttpRequest and involve\n * error handling:\n *\n * ```js\n * import TileState from 'ol/TileState';\n *\n * source.setTileLoadFunction(function(tile, src) {\n * var xhr = new XMLHttpRequest();\n * xhr.responseType = 'blob';\n * xhr.addEventListener('loadend', function (evt) {\n * var data = this.response;\n * if (data !== undefined) {\n * tile.getImage().src = URL.createObjectURL(data);\n * } else {\n * tile.setState(TileState.ERROR);\n * }\n * });\n * xhr.addEventListener('error', function () {\n * tile.setState(TileState.ERROR);\n * });\n * xhr.open('GET', src);\n * xhr.send();\n * });\n * ```\n *\n * @typedef {function(Tile, string): void} LoadFunction\n * @api\n */\n/**\n * {@link module:ol/source/Tile~Tile} sources use a function of this type to get\n * the url that provides a tile for a given tile coordinate.\n *\n * This function takes an {@link module:ol/tilecoord~TileCoord} for the tile\n * coordinate, a `{number}` representing the pixel ratio and a\n * {@link module:ol/proj/Projection} for the projection as arguments\n * and returns a `{string}` representing the tile URL, or undefined if no tile\n * should be requested for the passed tile coordinate.\n *\n * @typedef {function(import(\"./tilecoord.js\").TileCoord, number,\n * import(\"./proj/Projection.js\").default): (string|undefined)} UrlFunction\n * @api\n */\n/**\n * @typedef {Object} Options\n * @property {number} [transition=250] A duration for tile opacity\n * transitions in milliseconds. A duration of 0 disables the opacity transition.\n * @api\n */\n/**\n * @classdesc\n * Base class for tiles.\n *\n * @abstract\n */\nvar Tile = /** @class */ (function (_super) {\n __extends(Tile, _super);\n /**\n * @param {import(\"./tilecoord.js\").TileCoord} tileCoord Tile coordinate.\n * @param {import(\"./TileState.js\").default} state State.\n * @param {Options} [opt_options] Tile options.\n */\n function Tile(tileCoord, state, opt_options) {\n var _this = _super.call(this) || this;\n var options = opt_options ? opt_options : {};\n /**\n * @type {import(\"./tilecoord.js\").TileCoord}\n */\n _this.tileCoord = tileCoord;\n /**\n * @protected\n * @type {import(\"./TileState.js\").default}\n */\n _this.state = state;\n /**\n * An \"interim\" tile for this tile. The interim tile may be used while this\n * one is loading, for \"smooth\" transitions when changing params/dimensions\n * on the source.\n * @type {Tile}\n */\n _this.interimTile = null;\n /**\n * A key assigned to the tile. This is used by the tile source to determine\n * if this tile can effectively be used, or if a new tile should be created\n * and this one be used as an interim tile for this new tile.\n * @type {string}\n */\n _this.key = '';\n /**\n * The duration for the opacity transition.\n * @type {number}\n */\n _this.transition_ =\n options.transition === undefined ? 250 : options.transition;\n /**\n * Lookup of start times for rendering transitions. If the start time is\n * equal to -1, the transition is complete.\n * @type {Object<string, number>}\n */\n _this.transitionStarts_ = {};\n return _this;\n }\n /**\n * @protected\n */\n Tile.prototype.changed = function () {\n this.dispatchEvent(EventType.CHANGE);\n };\n /**\n * Called by the tile cache when the tile is removed from the cache due to expiry\n */\n Tile.prototype.release = function () { };\n /**\n * @return {string} Key.\n */\n Tile.prototype.getKey = function () {\n return this.key + '/' + this.tileCoord;\n };\n /**\n * Get the interim tile most suitable for rendering using the chain of interim\n * tiles. This corresponds to the most recent tile that has been loaded, if no\n * such tile exists, the original tile is returned.\n * @return {!Tile} Best tile for rendering.\n */\n Tile.prototype.getInterimTile = function () {\n if (!this.interimTile) {\n //empty chain\n return this;\n }\n var tile = this.interimTile;\n // find the first loaded tile and return it. Since the chain is sorted in\n // decreasing order of creation time, there is no need to search the remainder\n // of the list (all those tiles correspond to older requests and will be\n // cleaned up by refreshInterimChain)\n do {\n if (tile.getState() == TileState.LOADED) {\n // Show tile immediately instead of fading it in after loading, because\n // the interim tile is in place already\n this.transition_ = 0;\n return tile;\n }\n tile = tile.interimTile;\n } while (tile);\n // we can not find a better tile\n return this;\n };\n /**\n * Goes through the chain of interim tiles and discards sections of the chain\n * that are no longer relevant.\n */\n Tile.prototype.refreshInterimChain = function () {\n if (!this.interimTile) {\n return;\n }\n var tile = this.interimTile;\n var prev = /** @type {Tile} */ (this);\n do {\n if (tile.getState() == TileState.LOADED) {\n //we have a loaded tile, we can discard the rest of the list\n //we would could abort any LOADING tile request\n //older than this tile (i.e. any LOADING tile following this entry in the chain)\n tile.interimTile = null;\n break;\n }\n else if (tile.getState() == TileState.LOADING) {\n //keep this LOADING tile any loaded tiles later in the chain are\n //older than this tile, so we're still interested in the request\n prev = tile;\n }\n else if (tile.getState() == TileState.IDLE) {\n //the head of the list is the most current tile, we don't need\n //to start any other requests for this chain\n prev.interimTile = tile.interimTile;\n }\n else {\n prev = tile;\n }\n tile = prev.interimTile;\n } while (tile);\n };\n /**\n * Get the tile coordinate for this tile.\n * @return {import(\"./tilecoord.js\").TileCoord} The tile coordinate.\n * @api\n */\n Tile.prototype.getTileCoord = function () {\n return this.tileCoord;\n };\n /**\n * @return {import(\"./TileState.js\").default} State.\n */\n Tile.prototype.getState = function () {\n return this.state;\n };\n /**\n * Sets the state of this tile. If you write your own {@link module:ol/Tile~LoadFunction tileLoadFunction} ,\n * it is important to set the state correctly to {@link module:ol/TileState~ERROR}\n * when the tile cannot be loaded. Otherwise the tile cannot be removed from\n * the tile queue and will block other requests.\n * @param {import(\"./TileState.js\").default} state State.\n * @api\n */\n Tile.prototype.setState = function (state) {\n if (this.state !== TileState.ERROR && this.state > state) {\n throw new Error('Tile load sequence violation');\n }\n this.state = state;\n this.changed();\n };\n /**\n * Load the image or retry if loading previously failed.\n * Loading is taken care of by the tile queue, and calling this method is\n * only needed for preloading or for reloading in case of an error.\n * @abstract\n * @api\n */\n Tile.prototype.load = function () {\n abstract();\n };\n /**\n * Get the alpha value for rendering.\n * @param {string} id An id for the renderer.\n * @param {number} time The render frame time.\n * @return {number} A number between 0 and 1.\n */\n Tile.prototype.getAlpha = function (id, time) {\n if (!this.transition_) {\n return 1;\n }\n var start = this.transitionStarts_[id];\n if (!start) {\n start = time;\n this.transitionStarts_[id] = start;\n }\n else if (start === -1) {\n return 1;\n }\n var delta = time - start + 1000 / 60; // avoid rendering at 0\n if (delta >= this.transition_) {\n return 1;\n }\n return easeIn(delta / this.transition_);\n };\n /**\n * Determine if a tile is in an alpha transition. A tile is considered in\n * transition if tile.getAlpha() has not yet been called or has been called\n * and returned 1.\n * @param {string} id An id for the renderer.\n * @return {boolean} The tile is in transition.\n */\n Tile.prototype.inTransition = function (id) {\n if (!this.transition_) {\n return false;\n }\n return this.transitionStarts_[id] !== -1;\n };\n /**\n * Mark a transition as complete.\n * @param {string} id An id for the renderer.\n */\n Tile.prototype.endTransition = function (id) {\n if (this.transition_) {\n this.transitionStarts_[id] = -1;\n }\n };\n return Tile;\n}(EventTarget));\nexport default Tile;\n//# sourceMappingURL=Tile.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/ImageTile\n */\nimport Tile from './Tile.js';\nimport TileState from './TileState.js';\nimport { createCanvasContext2D } from './dom.js';\nimport { listenImage } from './Image.js';\nvar ImageTile = /** @class */ (function (_super) {\n __extends(ImageTile, _super);\n /**\n * @param {import(\"./tilecoord.js\").TileCoord} tileCoord Tile coordinate.\n * @param {import(\"./TileState.js\").default} state State.\n * @param {string} src Image source URI.\n * @param {?string} crossOrigin Cross origin.\n * @param {import(\"./Tile.js\").LoadFunction} tileLoadFunction Tile load function.\n * @param {import(\"./Tile.js\").Options} [opt_options] Tile options.\n */\n function ImageTile(tileCoord, state, src, crossOrigin, tileLoadFunction, opt_options) {\n var _this = _super.call(this, tileCoord, state, opt_options) || this;\n /**\n * @private\n * @type {?string}\n */\n _this.crossOrigin_ = crossOrigin;\n /**\n * Image URI\n *\n * @private\n * @type {string}\n */\n _this.src_ = src;\n _this.key = src;\n /**\n * @private\n * @type {HTMLImageElement|HTMLCanvasElement}\n */\n _this.image_ = new Image();\n if (crossOrigin !== null) {\n _this.image_.crossOrigin = crossOrigin;\n }\n /**\n * @private\n * @type {?function():void}\n */\n _this.unlisten_ = null;\n /**\n * @private\n * @type {import(\"./Tile.js\").LoadFunction}\n */\n _this.tileLoadFunction_ = tileLoadFunction;\n return _this;\n }\n /**\n * Get the HTML image element for this tile (may be a Canvas, Image, or Video).\n * @return {HTMLCanvasElement|HTMLImageElement|HTMLVideoElement} Image.\n * @api\n */\n ImageTile.prototype.getImage = function () {\n return this.image_;\n };\n /**\n * Sets an HTML image element for this tile (may be a Canvas or preloaded Image).\n * @param {HTMLCanvasElement|HTMLImageElement} element Element.\n */\n ImageTile.prototype.setImage = function (element) {\n this.image_ = element;\n this.state = TileState.LOADED;\n this.unlistenImage_();\n this.changed();\n };\n /**\n * Tracks loading or read errors.\n *\n * @private\n */\n ImageTile.prototype.handleImageError_ = function () {\n this.state = TileState.ERROR;\n this.unlistenImage_();\n this.image_ = getBlankImage();\n this.changed();\n };\n /**\n * Tracks successful image load.\n *\n * @private\n */\n ImageTile.prototype.handleImageLoad_ = function () {\n var image = /** @type {HTMLImageElement} */ (this.image_);\n if (image.naturalWidth && image.naturalHeight) {\n this.state = TileState.LOADED;\n }\n else {\n this.state = TileState.EMPTY;\n }\n this.unlistenImage_();\n this.changed();\n };\n /**\n * Load not yet loaded URI.\n * @api\n */\n ImageTile.prototype.load = function () {\n if (this.state == TileState.ERROR) {\n this.state = TileState.IDLE;\n this.image_ = new Image();\n if (this.crossOrigin_ !== null) {\n this.image_.crossOrigin = this.crossOrigin_;\n }\n }\n if (this.state == TileState.IDLE) {\n this.state = TileState.LOADING;\n this.changed();\n this.tileLoadFunction_(this, this.src_);\n this.unlisten_ = listenImage(this.image_, this.handleImageLoad_.bind(this), this.handleImageError_.bind(this));\n }\n };\n /**\n * Discards event handlers which listen for load completion or errors.\n *\n * @private\n */\n ImageTile.prototype.unlistenImage_ = function () {\n if (this.unlisten_) {\n this.unlisten_();\n this.unlisten_ = null;\n }\n };\n return ImageTile;\n}(Tile));\n/**\n * Get a 1-pixel blank image.\n * @return {HTMLCanvasElement} Blank image.\n */\nfunction getBlankImage() {\n var ctx = createCanvasContext2D(1, 1);\n ctx.fillStyle = 'rgba(0,0,0,0)';\n ctx.fillRect(0, 0, 1, 1);\n return ctx.canvas;\n}\nexport default ImageTile;\n//# sourceMappingURL=ImageTile.js.map","/**\n * @module ol/reproj/Triangulation\n */\nimport { boundingExtent, createEmpty, extendCoordinate, getArea, getBottomLeft, getBottomRight, getTopLeft, getTopRight, getWidth, intersects, } from '../extent.js';\nimport { getTransform } from '../proj.js';\nimport { log2, modulo } from '../math.js';\n/**\n * Single triangle; consists of 3 source points and 3 target points.\n * @typedef {Object} Triangle\n * @property {Array<import(\"../coordinate.js\").Coordinate>} source Source.\n * @property {Array<import(\"../coordinate.js\").Coordinate>} target Target.\n */\n/**\n * Maximum number of subdivision steps during raster reprojection triangulation.\n * Prevents high memory usage and large number of proj4 calls (for certain\n * transformations and areas). At most `2*(2^this)` triangles are created for\n * each triangulated extent (tile/image).\n * @type {number}\n */\nvar MAX_SUBDIVISION = 10;\n/**\n * Maximum allowed size of triangle relative to world width. When transforming\n * corners of world extent between certain projections, the resulting\n * triangulation seems to have zero error and no subdivision is performed. If\n * the triangle width is more than this (relative to world width; 0-1),\n * subdivison is forced (up to `MAX_SUBDIVISION`). Default is `0.25`.\n * @type {number}\n */\nvar MAX_TRIANGLE_WIDTH = 0.25;\n/**\n * @classdesc\n * Class containing triangulation of the given target extent.\n * Used for determining source data and the reprojection itself.\n */\nvar Triangulation = /** @class */ (function () {\n /**\n * @param {import(\"../proj/Projection.js\").default} sourceProj Source projection.\n * @param {import(\"../proj/Projection.js\").default} targetProj Target projection.\n * @param {import(\"../extent.js\").Extent} targetExtent Target extent to triangulate.\n * @param {import(\"../extent.js\").Extent} maxSourceExtent Maximal source extent that can be used.\n * @param {number} errorThreshold Acceptable error (in source units).\n * @param {?number} opt_destinationResolution The (optional) resolution of the destination.\n */\n function Triangulation(sourceProj, targetProj, targetExtent, maxSourceExtent, errorThreshold, opt_destinationResolution) {\n /**\n * @type {import(\"../proj/Projection.js\").default}\n * @private\n */\n this.sourceProj_ = sourceProj;\n /**\n * @type {import(\"../proj/Projection.js\").default}\n * @private\n */\n this.targetProj_ = targetProj;\n /** @type {!Object<string, import(\"../coordinate.js\").Coordinate>} */\n var transformInvCache = {};\n var transformInv = getTransform(this.targetProj_, this.sourceProj_);\n /**\n * @param {import(\"../coordinate.js\").Coordinate} c A coordinate.\n * @return {import(\"../coordinate.js\").Coordinate} Transformed coordinate.\n * @private\n */\n this.transformInv_ = function (c) {\n var key = c[0] + '/' + c[1];\n if (!transformInvCache[key]) {\n transformInvCache[key] = transformInv(c);\n }\n return transformInvCache[key];\n };\n /**\n * @type {import(\"../extent.js\").Extent}\n * @private\n */\n this.maxSourceExtent_ = maxSourceExtent;\n /**\n * @type {number}\n * @private\n */\n this.errorThresholdSquared_ = errorThreshold * errorThreshold;\n /**\n * @type {Array<Triangle>}\n * @private\n */\n this.triangles_ = [];\n /**\n * Indicates that the triangulation crosses edge of the source projection.\n * @type {boolean}\n * @private\n */\n this.wrapsXInSource_ = false;\n /**\n * @type {boolean}\n * @private\n */\n this.canWrapXInSource_ =\n this.sourceProj_.canWrapX() &&\n !!maxSourceExtent &&\n !!this.sourceProj_.getExtent() &&\n getWidth(maxSourceExtent) == getWidth(this.sourceProj_.getExtent());\n /**\n * @type {?number}\n * @private\n */\n this.sourceWorldWidth_ = this.sourceProj_.getExtent()\n ? getWidth(this.sourceProj_.getExtent())\n : null;\n /**\n * @type {?number}\n * @private\n */\n this.targetWorldWidth_ = this.targetProj_.getExtent()\n ? getWidth(this.targetProj_.getExtent())\n : null;\n var destinationTopLeft = getTopLeft(targetExtent);\n var destinationTopRight = getTopRight(targetExtent);\n var destinationBottomRight = getBottomRight(targetExtent);\n var destinationBottomLeft = getBottomLeft(targetExtent);\n var sourceTopLeft = this.transformInv_(destinationTopLeft);\n var sourceTopRight = this.transformInv_(destinationTopRight);\n var sourceBottomRight = this.transformInv_(destinationBottomRight);\n var sourceBottomLeft = this.transformInv_(destinationBottomLeft);\n /*\n * The maxSubdivision controls how many splittings of the target area can\n * be done. The idea here is to do a linear mapping of the target areas\n * but the actual overal reprojection (can be) extremely non-linear. The\n * default value of MAX_SUBDIVISION was chosen based on mapping a 256x256\n * tile size. However this function is also called to remap canvas rendered\n * layers which can be much larger. This calculation increases the maxSubdivision\n * value by the right factor so that each 256x256 pixel area has\n * MAX_SUBDIVISION divisions.\n */\n var maxSubdivision = MAX_SUBDIVISION +\n (opt_destinationResolution\n ? Math.max(0, Math.ceil(log2(getArea(targetExtent) /\n (opt_destinationResolution *\n opt_destinationResolution *\n 256 *\n 256))))\n : 0);\n this.addQuad_(destinationTopLeft, destinationTopRight, destinationBottomRight, destinationBottomLeft, sourceTopLeft, sourceTopRight, sourceBottomRight, sourceBottomLeft, maxSubdivision);\n if (this.wrapsXInSource_) {\n var leftBound_1 = Infinity;\n this.triangles_.forEach(function (triangle, i, arr) {\n leftBound_1 = Math.min(leftBound_1, triangle.source[0][0], triangle.source[1][0], triangle.source[2][0]);\n });\n // Shift triangles to be as close to `leftBound` as possible\n // (if the distance is more than `worldWidth / 2` it can be closer.\n this.triangles_.forEach(function (triangle) {\n if (Math.max(triangle.source[0][0], triangle.source[1][0], triangle.source[2][0]) -\n leftBound_1 >\n this.sourceWorldWidth_ / 2) {\n var newTriangle = [\n [triangle.source[0][0], triangle.source[0][1]],\n [triangle.source[1][0], triangle.source[1][1]],\n [triangle.source[2][0], triangle.source[2][1]],\n ];\n if (newTriangle[0][0] - leftBound_1 > this.sourceWorldWidth_ / 2) {\n newTriangle[0][0] -= this.sourceWorldWidth_;\n }\n if (newTriangle[1][0] - leftBound_1 > this.sourceWorldWidth_ / 2) {\n newTriangle[1][0] -= this.sourceWorldWidth_;\n }\n if (newTriangle[2][0] - leftBound_1 > this.sourceWorldWidth_ / 2) {\n newTriangle[2][0] -= this.sourceWorldWidth_;\n }\n // Rarely (if the extent contains both the dateline and prime meridian)\n // the shift can in turn break some triangles.\n // Detect this here and don't shift in such cases.\n var minX = Math.min(newTriangle[0][0], newTriangle[1][0], newTriangle[2][0]);\n var maxX = Math.max(newTriangle[0][0], newTriangle[1][0], newTriangle[2][0]);\n if (maxX - minX < this.sourceWorldWidth_ / 2) {\n triangle.source = newTriangle;\n }\n }\n }.bind(this));\n }\n transformInvCache = {};\n }\n /**\n * Adds triangle to the triangulation.\n * @param {import(\"../coordinate.js\").Coordinate} a The target a coordinate.\n * @param {import(\"../coordinate.js\").Coordinate} b The target b coordinate.\n * @param {import(\"../coordinate.js\").Coordinate} c The target c coordinate.\n * @param {import(\"../coordinate.js\").Coordinate} aSrc The source a coordinate.\n * @param {import(\"../coordinate.js\").Coordinate} bSrc The source b coordinate.\n * @param {import(\"../coordinate.js\").Coordinate} cSrc The source c coordinate.\n * @private\n */\n Triangulation.prototype.addTriangle_ = function (a, b, c, aSrc, bSrc, cSrc) {\n this.triangles_.push({\n source: [aSrc, bSrc, cSrc],\n target: [a, b, c],\n });\n };\n /**\n * Adds quad (points in clock-wise order) to the triangulation\n * (and reprojects the vertices) if valid.\n * Performs quad subdivision if needed to increase precision.\n *\n * @param {import(\"../coordinate.js\").Coordinate} a The target a coordinate.\n * @param {import(\"../coordinate.js\").Coordinate} b The target b coordinate.\n * @param {import(\"../coordinate.js\").Coordinate} c The target c coordinate.\n * @param {import(\"../coordinate.js\").Coordinate} d The target d coordinate.\n * @param {import(\"../coordinate.js\").Coordinate} aSrc The source a coordinate.\n * @param {import(\"../coordinate.js\").Coordinate} bSrc The source b coordinate.\n * @param {import(\"../coordinate.js\").Coordinate} cSrc The source c coordinate.\n * @param {import(\"../coordinate.js\").Coordinate} dSrc The source d coordinate.\n * @param {number} maxSubdivision Maximal allowed subdivision of the quad.\n * @private\n */\n Triangulation.prototype.addQuad_ = function (a, b, c, d, aSrc, bSrc, cSrc, dSrc, maxSubdivision) {\n var sourceQuadExtent = boundingExtent([aSrc, bSrc, cSrc, dSrc]);\n var sourceCoverageX = this.sourceWorldWidth_\n ? getWidth(sourceQuadExtent) / this.sourceWorldWidth_\n : null;\n var sourceWorldWidth = /** @type {number} */ (this.sourceWorldWidth_);\n // when the quad is wrapped in the source projection\n // it covers most of the projection extent, but not fully\n var wrapsX = this.sourceProj_.canWrapX() &&\n sourceCoverageX > 0.5 &&\n sourceCoverageX < 1;\n var needsSubdivision = false;\n if (maxSubdivision > 0) {\n if (this.targetProj_.isGlobal() && this.targetWorldWidth_) {\n var targetQuadExtent = boundingExtent([a, b, c, d]);\n var targetCoverageX = getWidth(targetQuadExtent) / this.targetWorldWidth_;\n needsSubdivision =\n targetCoverageX > MAX_TRIANGLE_WIDTH || needsSubdivision;\n }\n if (!wrapsX && this.sourceProj_.isGlobal() && sourceCoverageX) {\n needsSubdivision =\n sourceCoverageX > MAX_TRIANGLE_WIDTH || needsSubdivision;\n }\n }\n if (!needsSubdivision && this.maxSourceExtent_) {\n if (isFinite(sourceQuadExtent[0]) &&\n isFinite(sourceQuadExtent[1]) &&\n isFinite(sourceQuadExtent[2]) &&\n isFinite(sourceQuadExtent[3])) {\n if (!intersects(sourceQuadExtent, this.maxSourceExtent_)) {\n // whole quad outside source projection extent -> ignore\n return;\n }\n }\n }\n var isNotFinite = 0;\n if (!needsSubdivision) {\n if (!isFinite(aSrc[0]) ||\n !isFinite(aSrc[1]) ||\n !isFinite(bSrc[0]) ||\n !isFinite(bSrc[1]) ||\n !isFinite(cSrc[0]) ||\n !isFinite(cSrc[1]) ||\n !isFinite(dSrc[0]) ||\n !isFinite(dSrc[1])) {\n if (maxSubdivision > 0) {\n needsSubdivision = true;\n }\n else {\n // It might be the case that only 1 of the points is infinite. In this case\n // we can draw a single triangle with the other three points\n isNotFinite =\n (!isFinite(aSrc[0]) || !isFinite(aSrc[1]) ? 8 : 0) +\n (!isFinite(bSrc[0]) || !isFinite(bSrc[1]) ? 4 : 0) +\n (!isFinite(cSrc[0]) || !isFinite(cSrc[1]) ? 2 : 0) +\n (!isFinite(dSrc[0]) || !isFinite(dSrc[1]) ? 1 : 0);\n if (isNotFinite != 1 &&\n isNotFinite != 2 &&\n isNotFinite != 4 &&\n isNotFinite != 8) {\n return;\n }\n }\n }\n }\n if (maxSubdivision > 0) {\n if (!needsSubdivision) {\n var center = [(a[0] + c[0]) / 2, (a[1] + c[1]) / 2];\n var centerSrc = this.transformInv_(center);\n var dx = void 0;\n if (wrapsX) {\n var centerSrcEstimX = (modulo(aSrc[0], sourceWorldWidth) +\n modulo(cSrc[0], sourceWorldWidth)) /\n 2;\n dx = centerSrcEstimX - modulo(centerSrc[0], sourceWorldWidth);\n }\n else {\n dx = (aSrc[0] + cSrc[0]) / 2 - centerSrc[0];\n }\n var dy = (aSrc[1] + cSrc[1]) / 2 - centerSrc[1];\n var centerSrcErrorSquared = dx * dx + dy * dy;\n needsSubdivision = centerSrcErrorSquared > this.errorThresholdSquared_;\n }\n if (needsSubdivision) {\n if (Math.abs(a[0] - c[0]) <= Math.abs(a[1] - c[1])) {\n // split horizontally (top & bottom)\n var bc = [(b[0] + c[0]) / 2, (b[1] + c[1]) / 2];\n var bcSrc = this.transformInv_(bc);\n var da = [(d[0] + a[0]) / 2, (d[1] + a[1]) / 2];\n var daSrc = this.transformInv_(da);\n this.addQuad_(a, b, bc, da, aSrc, bSrc, bcSrc, daSrc, maxSubdivision - 1);\n this.addQuad_(da, bc, c, d, daSrc, bcSrc, cSrc, dSrc, maxSubdivision - 1);\n }\n else {\n // split vertically (left & right)\n var ab = [(a[0] + b[0]) / 2, (a[1] + b[1]) / 2];\n var abSrc = this.transformInv_(ab);\n var cd = [(c[0] + d[0]) / 2, (c[1] + d[1]) / 2];\n var cdSrc = this.transformInv_(cd);\n this.addQuad_(a, ab, cd, d, aSrc, abSrc, cdSrc, dSrc, maxSubdivision - 1);\n this.addQuad_(ab, b, c, cd, abSrc, bSrc, cSrc, cdSrc, maxSubdivision - 1);\n }\n return;\n }\n }\n if (wrapsX) {\n if (!this.canWrapXInSource_) {\n return;\n }\n this.wrapsXInSource_ = true;\n }\n // Exactly zero or one of *Src is not finite\n // The triangles must have the diagonal line as the first side\n // This is to allow easy code in reproj.s to make it straight for broken\n // browsers that can't handle diagonal clipping\n if ((isNotFinite & 0xb) == 0) {\n this.addTriangle_(a, c, d, aSrc, cSrc, dSrc);\n }\n if ((isNotFinite & 0xe) == 0) {\n this.addTriangle_(a, c, b, aSrc, cSrc, bSrc);\n }\n if (isNotFinite) {\n // Try the other two triangles\n if ((isNotFinite & 0xd) == 0) {\n this.addTriangle_(b, d, a, bSrc, dSrc, aSrc);\n }\n if ((isNotFinite & 0x7) == 0) {\n this.addTriangle_(b, d, c, bSrc, dSrc, cSrc);\n }\n }\n };\n /**\n * Calculates extent of the 'source' coordinates from all the triangles.\n *\n * @return {import(\"../extent.js\").Extent} Calculated extent.\n */\n Triangulation.prototype.calculateSourceExtent = function () {\n var extent = createEmpty();\n this.triangles_.forEach(function (triangle, i, arr) {\n var src = triangle.source;\n extendCoordinate(extent, src[0]);\n extendCoordinate(extent, src[1]);\n extendCoordinate(extent, src[2]);\n });\n return extent;\n };\n /**\n * @return {Array<Triangle>} Array of the calculated triangles.\n */\n Triangulation.prototype.getTriangles = function () {\n return this.triangles_;\n };\n return Triangulation;\n}());\nexport default Triangulation;\n//# sourceMappingURL=Triangulation.js.map","/**\n * @module ol/source/common\n */\n/**\n * Default WMS version.\n * @type {string}\n */\nexport var DEFAULT_WMS_VERSION = '1.3.0';\n/**\n * Context options to disable image smoothing.\n * @type {Object}\n */\nexport var IMAGE_SMOOTHING_DISABLED = {\n imageSmoothingEnabled: false,\n msImageSmoothingEnabled: false,\n};\n//# sourceMappingURL=common.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/reproj/Tile\n */\nimport { ERROR_THRESHOLD } from './common.js';\nimport EventType from '../events/EventType.js';\nimport Tile from '../Tile.js';\nimport TileState from '../TileState.js';\nimport Triangulation from './Triangulation.js';\nimport { calculateSourceExtentResolution, render as renderReprojected, } from '../reproj.js';\nimport { clamp } from '../math.js';\nimport { getArea, getIntersection } from '../extent.js';\nimport { listen, unlistenByKey } from '../events.js';\n/**\n * @typedef {function(number, number, number, number) : import(\"../Tile.js\").default} FunctionType\n */\n/**\n * @classdesc\n * Class encapsulating single reprojected tile.\n * See {@link module:ol/source/TileImage~TileImage}.\n *\n */\nvar ReprojTile = /** @class */ (function (_super) {\n __extends(ReprojTile, _super);\n /**\n * @param {import(\"../proj/Projection.js\").default} sourceProj Source projection.\n * @param {import(\"../tilegrid/TileGrid.js\").default} sourceTileGrid Source tile grid.\n * @param {import(\"../proj/Projection.js\").default} targetProj Target projection.\n * @param {import(\"../tilegrid/TileGrid.js\").default} targetTileGrid Target tile grid.\n * @param {import(\"../tilecoord.js\").TileCoord} tileCoord Coordinate of the tile.\n * @param {import(\"../tilecoord.js\").TileCoord} wrappedTileCoord Coordinate of the tile wrapped in X.\n * @param {number} pixelRatio Pixel ratio.\n * @param {number} gutter Gutter of the source tiles.\n * @param {FunctionType} getTileFunction\n * Function returning source tiles (z, x, y, pixelRatio).\n * @param {number} [opt_errorThreshold] Acceptable reprojection error (in px).\n * @param {boolean} [opt_renderEdges] Render reprojection edges.\n * @param {object} [opt_contextOptions] Properties to set on the canvas context.\n */\n function ReprojTile(sourceProj, sourceTileGrid, targetProj, targetTileGrid, tileCoord, wrappedTileCoord, pixelRatio, gutter, getTileFunction, opt_errorThreshold, opt_renderEdges, opt_contextOptions) {\n var _this = _super.call(this, tileCoord, TileState.IDLE) || this;\n /**\n * @private\n * @type {boolean}\n */\n _this.renderEdges_ = opt_renderEdges !== undefined ? opt_renderEdges : false;\n /**\n * @private\n * @type {object}\n */\n _this.contextOptions_ = opt_contextOptions;\n /**\n * @private\n * @type {number}\n */\n _this.pixelRatio_ = pixelRatio;\n /**\n * @private\n * @type {number}\n */\n _this.gutter_ = gutter;\n /**\n * @private\n * @type {HTMLCanvasElement}\n */\n _this.canvas_ = null;\n /**\n * @private\n * @type {import(\"../tilegrid/TileGrid.js\").default}\n */\n _this.sourceTileGrid_ = sourceTileGrid;\n /**\n * @private\n * @type {import(\"../tilegrid/TileGrid.js\").default}\n */\n _this.targetTileGrid_ = targetTileGrid;\n /**\n * @private\n * @type {import(\"../tilecoord.js\").TileCoord}\n */\n _this.wrappedTileCoord_ = wrappedTileCoord ? wrappedTileCoord : tileCoord;\n /**\n * @private\n * @type {!Array<import(\"../Tile.js\").default>}\n */\n _this.sourceTiles_ = [];\n /**\n * @private\n * @type {?Array<import(\"../events.js\").EventsKey>}\n */\n _this.sourcesListenerKeys_ = null;\n /**\n * @private\n * @type {number}\n */\n _this.sourceZ_ = 0;\n var targetExtent = targetTileGrid.getTileCoordExtent(_this.wrappedTileCoord_);\n var maxTargetExtent = _this.targetTileGrid_.getExtent();\n var maxSourceExtent = _this.sourceTileGrid_.getExtent();\n var limitedTargetExtent = maxTargetExtent\n ? getIntersection(targetExtent, maxTargetExtent)\n : targetExtent;\n if (getArea(limitedTargetExtent) === 0) {\n // Tile is completely outside range -> EMPTY\n // TODO: is it actually correct that the source even creates the tile ?\n _this.state = TileState.EMPTY;\n return _this;\n }\n var sourceProjExtent = sourceProj.getExtent();\n if (sourceProjExtent) {\n if (!maxSourceExtent) {\n maxSourceExtent = sourceProjExtent;\n }\n else {\n maxSourceExtent = getIntersection(maxSourceExtent, sourceProjExtent);\n }\n }\n var targetResolution = targetTileGrid.getResolution(_this.wrappedTileCoord_[0]);\n var sourceResolution = calculateSourceExtentResolution(sourceProj, targetProj, limitedTargetExtent, targetResolution);\n if (!isFinite(sourceResolution) || sourceResolution <= 0) {\n // invalid sourceResolution -> EMPTY\n // probably edges of the projections when no extent is defined\n _this.state = TileState.EMPTY;\n return _this;\n }\n var errorThresholdInPixels = opt_errorThreshold !== undefined ? opt_errorThreshold : ERROR_THRESHOLD;\n /**\n * @private\n * @type {!import(\"./Triangulation.js\").default}\n */\n _this.triangulation_ = new Triangulation(sourceProj, targetProj, limitedTargetExtent, maxSourceExtent, sourceResolution * errorThresholdInPixels, targetResolution);\n if (_this.triangulation_.getTriangles().length === 0) {\n // no valid triangles -> EMPTY\n _this.state = TileState.EMPTY;\n return _this;\n }\n _this.sourceZ_ = sourceTileGrid.getZForResolution(sourceResolution);\n var sourceExtent = _this.triangulation_.calculateSourceExtent();\n if (maxSourceExtent) {\n if (sourceProj.canWrapX()) {\n sourceExtent[1] = clamp(sourceExtent[1], maxSourceExtent[1], maxSourceExtent[3]);\n sourceExtent[3] = clamp(sourceExtent[3], maxSourceExtent[1], maxSourceExtent[3]);\n }\n else {\n sourceExtent = getIntersection(sourceExtent, maxSourceExtent);\n }\n }\n if (!getArea(sourceExtent)) {\n _this.state = TileState.EMPTY;\n }\n else {\n var sourceRange = sourceTileGrid.getTileRangeForExtentAndZ(sourceExtent, _this.sourceZ_);\n for (var srcX = sourceRange.minX; srcX <= sourceRange.maxX; srcX++) {\n for (var srcY = sourceRange.minY; srcY <= sourceRange.maxY; srcY++) {\n var tile = getTileFunction(_this.sourceZ_, srcX, srcY, pixelRatio);\n if (tile) {\n _this.sourceTiles_.push(tile);\n }\n }\n }\n if (_this.sourceTiles_.length === 0) {\n _this.state = TileState.EMPTY;\n }\n }\n return _this;\n }\n /**\n * Get the HTML Canvas element for this tile.\n * @return {HTMLCanvasElement} Canvas.\n */\n ReprojTile.prototype.getImage = function () {\n return this.canvas_;\n };\n /**\n * @private\n */\n ReprojTile.prototype.reproject_ = function () {\n var sources = [];\n this.sourceTiles_.forEach(function (tile, i, arr) {\n if (tile && tile.getState() == TileState.LOADED) {\n sources.push({\n extent: this.sourceTileGrid_.getTileCoordExtent(tile.tileCoord),\n image: tile.getImage(),\n });\n }\n }.bind(this));\n this.sourceTiles_.length = 0;\n if (sources.length === 0) {\n this.state = TileState.ERROR;\n }\n else {\n var z = this.wrappedTileCoord_[0];\n var size = this.targetTileGrid_.getTileSize(z);\n var width = typeof size === 'number' ? size : size[0];\n var height = typeof size === 'number' ? size : size[1];\n var targetResolution = this.targetTileGrid_.getResolution(z);\n var sourceResolution = this.sourceTileGrid_.getResolution(this.sourceZ_);\n var targetExtent = this.targetTileGrid_.getTileCoordExtent(this.wrappedTileCoord_);\n this.canvas_ = renderReprojected(width, height, this.pixelRatio_, sourceResolution, this.sourceTileGrid_.getExtent(), targetResolution, targetExtent, this.triangulation_, sources, this.gutter_, this.renderEdges_, this.contextOptions_);\n this.state = TileState.LOADED;\n }\n this.changed();\n };\n /**\n * Load not yet loaded URI.\n */\n ReprojTile.prototype.load = function () {\n if (this.state == TileState.IDLE) {\n this.state = TileState.LOADING;\n this.changed();\n var leftToLoad_1 = 0;\n this.sourcesListenerKeys_ = [];\n this.sourceTiles_.forEach(function (tile, i, arr) {\n var state = tile.getState();\n if (state == TileState.IDLE || state == TileState.LOADING) {\n leftToLoad_1++;\n var sourceListenKey_1 = listen(tile, EventType.CHANGE, function (e) {\n var state = tile.getState();\n if (state == TileState.LOADED ||\n state == TileState.ERROR ||\n state == TileState.EMPTY) {\n unlistenByKey(sourceListenKey_1);\n leftToLoad_1--;\n if (leftToLoad_1 === 0) {\n this.unlistenSources_();\n this.reproject_();\n }\n }\n }, this);\n this.sourcesListenerKeys_.push(sourceListenKey_1);\n }\n }.bind(this));\n if (leftToLoad_1 === 0) {\n setTimeout(this.reproject_.bind(this), 0);\n }\n else {\n this.sourceTiles_.forEach(function (tile, i, arr) {\n var state = tile.getState();\n if (state == TileState.IDLE) {\n tile.load();\n }\n });\n }\n }\n };\n /**\n * @private\n */\n ReprojTile.prototype.unlistenSources_ = function () {\n this.sourcesListenerKeys_.forEach(unlistenByKey);\n this.sourcesListenerKeys_ = null;\n };\n return ReprojTile;\n}(Tile));\nexport default ReprojTile;\n//# sourceMappingURL=Tile.js.map","/**\n * @module ol/reproj/common\n */\n/**\n * Default maximum allowed threshold (in pixels) for reprojection\n * triangulation.\n * @type {number}\n */\nexport var ERROR_THRESHOLD = 0.5;\n/**\n * Enable automatic reprojection of raster sources. Default is `true`.\n * TODO: decide if we want to expose this as a build flag or remove it\n * @type {boolean}\n */\nexport var ENABLE_RASTER_REPROJECTION = true;\n//# sourceMappingURL=common.js.map","/**\n * @module ol/structs/LRUCache\n */\nimport { assert } from '../asserts.js';\n/**\n * @typedef {Object} Entry\n * @property {string} key_ Key.\n * @property {Object} newer Newer.\n * @property {Object} older Older.\n * @property {*} value_ Value.\n */\n/**\n * @classdesc\n * Implements a Least-Recently-Used cache where the keys do not conflict with\n * Object's properties (e.g. 'hasOwnProperty' is not allowed as a key). Expiring\n * items from the cache is the responsibility of the user.\n *\n * @fires import(\"../events/Event.js\").default\n * @template T\n */\nvar LRUCache = /** @class */ (function () {\n /**\n * @param {number} [opt_highWaterMark] High water mark.\n */\n function LRUCache(opt_highWaterMark) {\n /**\n * Desired max cache size after expireCache(). If set to 0, no cache entries\n * will be pruned at all.\n * @type {number}\n */\n this.highWaterMark =\n opt_highWaterMark !== undefined ? opt_highWaterMark : 2048;\n /**\n * @private\n * @type {number}\n */\n this.count_ = 0;\n /**\n * @private\n * @type {!Object<string, Entry>}\n */\n this.entries_ = {};\n /**\n * @private\n * @type {?Entry}\n */\n this.oldest_ = null;\n /**\n * @private\n * @type {?Entry}\n */\n this.newest_ = null;\n }\n /**\n * @return {boolean} Can expire cache.\n */\n LRUCache.prototype.canExpireCache = function () {\n return this.highWaterMark > 0 && this.getCount() > this.highWaterMark;\n };\n /**\n * FIXME empty description for jsdoc\n */\n LRUCache.prototype.clear = function () {\n this.count_ = 0;\n this.entries_ = {};\n this.oldest_ = null;\n this.newest_ = null;\n };\n /**\n * @param {string} key Key.\n * @return {boolean} Contains key.\n */\n LRUCache.prototype.containsKey = function (key) {\n return this.entries_.hasOwnProperty(key);\n };\n /**\n * @param {function(T, string, LRUCache<T>): ?} f The function\n * to call for every entry from the oldest to the newer. This function takes\n * 3 arguments (the entry value, the entry key and the LRUCache object).\n * The return value is ignored.\n */\n LRUCache.prototype.forEach = function (f) {\n var entry = this.oldest_;\n while (entry) {\n f(entry.value_, entry.key_, this);\n entry = entry.newer;\n }\n };\n /**\n * @param {string} key Key.\n * @param {*} [opt_options] Options (reserved for subclasses).\n * @return {T} Value.\n */\n LRUCache.prototype.get = function (key, opt_options) {\n var entry = this.entries_[key];\n assert(entry !== undefined, 15); // Tried to get a value for a key that does not exist in the cache\n if (entry === this.newest_) {\n return entry.value_;\n }\n else if (entry === this.oldest_) {\n this.oldest_ = /** @type {Entry} */ (this.oldest_.newer);\n this.oldest_.older = null;\n }\n else {\n entry.newer.older = entry.older;\n entry.older.newer = entry.newer;\n }\n entry.newer = null;\n entry.older = this.newest_;\n this.newest_.newer = entry;\n this.newest_ = entry;\n return entry.value_;\n };\n /**\n * Remove an entry from the cache.\n * @param {string} key The entry key.\n * @return {T} The removed entry.\n */\n LRUCache.prototype.remove = function (key) {\n var entry = this.entries_[key];\n assert(entry !== undefined, 15); // Tried to get a value for a key that does not exist in the cache\n if (entry === this.newest_) {\n this.newest_ = /** @type {Entry} */ (entry.older);\n if (this.newest_) {\n this.newest_.newer = null;\n }\n }\n else if (entry === this.oldest_) {\n this.oldest_ = /** @type {Entry} */ (entry.newer);\n if (this.oldest_) {\n this.oldest_.older = null;\n }\n }\n else {\n entry.newer.older = entry.older;\n entry.older.newer = entry.newer;\n }\n delete this.entries_[key];\n --this.count_;\n return entry.value_;\n };\n /**\n * @return {number} Count.\n */\n LRUCache.prototype.getCount = function () {\n return this.count_;\n };\n /**\n * @return {Array<string>} Keys.\n */\n LRUCache.prototype.getKeys = function () {\n var keys = new Array(this.count_);\n var i = 0;\n var entry;\n for (entry = this.newest_; entry; entry = entry.older) {\n keys[i++] = entry.key_;\n }\n return keys;\n };\n /**\n * @return {Array<T>} Values.\n */\n LRUCache.prototype.getValues = function () {\n var values = new Array(this.count_);\n var i = 0;\n var entry;\n for (entry = this.newest_; entry; entry = entry.older) {\n values[i++] = entry.value_;\n }\n return values;\n };\n /**\n * @return {T} Last value.\n */\n LRUCache.prototype.peekLast = function () {\n return this.oldest_.value_;\n };\n /**\n * @return {string} Last key.\n */\n LRUCache.prototype.peekLastKey = function () {\n return this.oldest_.key_;\n };\n /**\n * Get the key of the newest item in the cache. Throws if the cache is empty.\n * @return {string} The newest key.\n */\n LRUCache.prototype.peekFirstKey = function () {\n return this.newest_.key_;\n };\n /**\n * @return {T} value Value.\n */\n LRUCache.prototype.pop = function () {\n var entry = this.oldest_;\n delete this.entries_[entry.key_];\n if (entry.newer) {\n entry.newer.older = null;\n }\n this.oldest_ = /** @type {Entry} */ (entry.newer);\n if (!this.oldest_) {\n this.newest_ = null;\n }\n --this.count_;\n return entry.value_;\n };\n /**\n * @param {string} key Key.\n * @param {T} value Value.\n */\n LRUCache.prototype.replace = function (key, value) {\n this.get(key); // update `newest_`\n this.entries_[key].value_ = value;\n };\n /**\n * @param {string} key Key.\n * @param {T} value Value.\n */\n LRUCache.prototype.set = function (key, value) {\n assert(!(key in this.entries_), 16); // Tried to set a value for a key that is used already\n var entry = {\n key_: key,\n newer: null,\n older: this.newest_,\n value_: value,\n };\n if (!this.newest_) {\n this.oldest_ = entry;\n }\n else {\n this.newest_.newer = entry;\n }\n this.newest_ = entry;\n this.entries_[key] = entry;\n ++this.count_;\n };\n /**\n * Set a maximum number of entries for the cache.\n * @param {number} size Cache size.\n * @api\n */\n LRUCache.prototype.setSize = function (size) {\n this.highWaterMark = size;\n };\n return LRUCache;\n}());\nexport default LRUCache;\n//# sourceMappingURL=LRUCache.js.map","/**\n * @module ol/tilecoord\n */\n/**\n * An array of three numbers representing the location of a tile in a tile\n * grid. The order is `z` (zoom level), `x` (column), and `y` (row).\n * @typedef {Array<number>} TileCoord\n * @api\n */\n/**\n * @param {number} z Z.\n * @param {number} x X.\n * @param {number} y Y.\n * @param {TileCoord} [opt_tileCoord] Tile coordinate.\n * @return {TileCoord} Tile coordinate.\n */\nexport function createOrUpdate(z, x, y, opt_tileCoord) {\n if (opt_tileCoord !== undefined) {\n opt_tileCoord[0] = z;\n opt_tileCoord[1] = x;\n opt_tileCoord[2] = y;\n return opt_tileCoord;\n }\n else {\n return [z, x, y];\n }\n}\n/**\n * @param {number} z Z.\n * @param {number} x X.\n * @param {number} y Y.\n * @return {string} Key.\n */\nexport function getKeyZXY(z, x, y) {\n return z + '/' + x + '/' + y;\n}\n/**\n * Get the key for a tile coord.\n * @param {TileCoord} tileCoord The tile coord.\n * @return {string} Key.\n */\nexport function getKey(tileCoord) {\n return getKeyZXY(tileCoord[0], tileCoord[1], tileCoord[2]);\n}\n/**\n * Get the tile cache key for a tile key obtained through `tile.getKey()`.\n * @param {string} tileKey The tile key.\n * @return {string} The cache key.\n */\nexport function getCacheKeyForTileKey(tileKey) {\n var _a = tileKey\n .substring(tileKey.lastIndexOf('/') + 1, tileKey.length)\n .split(',')\n .map(Number), z = _a[0], x = _a[1], y = _a[2];\n return getKeyZXY(z, x, y);\n}\n/**\n * Get a tile coord given a key.\n * @param {string} key The tile coord key.\n * @return {TileCoord} The tile coord.\n */\nexport function fromKey(key) {\n return key.split('/').map(Number);\n}\n/**\n * @param {TileCoord} tileCoord Tile coord.\n * @return {number} Hash.\n */\nexport function hash(tileCoord) {\n return (tileCoord[1] << tileCoord[0]) + tileCoord[2];\n}\n/**\n * @param {TileCoord} tileCoord Tile coordinate.\n * @param {!import(\"./tilegrid/TileGrid.js\").default} tileGrid Tile grid.\n * @return {boolean} Tile coordinate is within extent and zoom level range.\n */\nexport function withinExtentAndZ(tileCoord, tileGrid) {\n var z = tileCoord[0];\n var x = tileCoord[1];\n var y = tileCoord[2];\n if (tileGrid.getMinZoom() > z || z > tileGrid.getMaxZoom()) {\n return false;\n }\n var tileRange = tileGrid.getFullTileRange(z);\n if (!tileRange) {\n return true;\n }\n else {\n return tileRange.containsXY(x, y);\n }\n}\n//# sourceMappingURL=tilecoord.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/TileCache\n */\nimport LRUCache from './structs/LRUCache.js';\nimport { fromKey, getKey } from './tilecoord.js';\nvar TileCache = /** @class */ (function (_super) {\n __extends(TileCache, _super);\n function TileCache() {\n return _super !== null && _super.apply(this, arguments) || this;\n }\n /**\n * @param {!Object<string, boolean>} usedTiles Used tiles.\n */\n TileCache.prototype.expireCache = function (usedTiles) {\n while (this.canExpireCache()) {\n var tile = this.peekLast();\n if (tile.getKey() in usedTiles) {\n break;\n }\n else {\n this.pop().release();\n }\n }\n };\n /**\n * Prune all tiles from the cache that don't have the same z as the newest tile.\n */\n TileCache.prototype.pruneExceptNewestZ = function () {\n if (this.getCount() === 0) {\n return;\n }\n var key = this.peekFirstKey();\n var tileCoord = fromKey(key);\n var z = tileCoord[0];\n this.forEach(function (tile) {\n if (tile.tileCoord[0] !== z) {\n this.remove(getKey(tile.tileCoord));\n tile.release();\n }\n }.bind(this));\n };\n return TileCache;\n}(LRUCache));\nexport default TileCache;\n//# sourceMappingURL=TileCache.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/source/Source\n */\nimport BaseObject from '../Object.js';\nimport SourceState from './State.js';\nimport { abstract } from '../util.js';\nimport { get as getProjection } from '../proj.js';\n/**\n * A function that takes a {@link module:ol/PluggableMap~FrameState} and returns a string or\n * an array of strings representing source attributions.\n *\n * @typedef {function(import(\"../PluggableMap.js\").FrameState): (string|Array<string>)} Attribution\n */\n/**\n * A type that can be used to provide attribution information for data sources.\n *\n * It represents either\n * * a simple string (e.g. `'© Acme Inc.'`)\n * * an array of simple strings (e.g. `['© Acme Inc.', '© Bacme Inc.']`)\n * * a function that returns a string or array of strings ({@link module:ol/source/Source~Attribution})\n *\n * @typedef {string|Array<string>|Attribution} AttributionLike\n */\n/**\n * @typedef {Object} Options\n * @property {AttributionLike} [attributions] Attributions.\n * @property {boolean} [attributionsCollapsible=true] Attributions are collapsible.\n * @property {import(\"../proj.js\").ProjectionLike} [projection] Projection. Default is the view projection.\n * @property {import(\"./State.js\").default} [state='ready'] State.\n * @property {boolean} [wrapX=false] WrapX.\n */\n/**\n * @classdesc\n * Abstract base class; normally only used for creating subclasses and not\n * instantiated in apps.\n * Base class for {@link module:ol/layer/Layer~Layer} sources.\n *\n * A generic `change` event is triggered when the state of the source changes.\n * @abstract\n * @api\n */\nvar Source = /** @class */ (function (_super) {\n __extends(Source, _super);\n /**\n * @param {Options} options Source options.\n */\n function Source(options) {\n var _this = _super.call(this) || this;\n /**\n * @protected\n * @type {import(\"../proj/Projection.js\").default}\n */\n _this.projection = getProjection(options.projection);\n /**\n * @private\n * @type {?Attribution}\n */\n _this.attributions_ = adaptAttributions(options.attributions);\n /**\n * @private\n * @type {boolean}\n */\n _this.attributionsCollapsible_ =\n options.attributionsCollapsible !== undefined\n ? options.attributionsCollapsible\n : true;\n /**\n * This source is currently loading data. Sources that defer loading to the\n * map's tile queue never set this to `true`.\n * @type {boolean}\n */\n _this.loading = false;\n /**\n * @private\n * @type {import(\"./State.js\").default}\n */\n _this.state_ =\n options.state !== undefined ? options.state : SourceState.READY;\n /**\n * @private\n * @type {boolean}\n */\n _this.wrapX_ = options.wrapX !== undefined ? options.wrapX : false;\n /**\n * @protected\n * @type {function(import(\"../View.js\").ViewOptions):void}\n */\n _this.viewResolver = null;\n /**\n * @protected\n * @type {function(Error):void}\n */\n _this.viewRejector = null;\n var self = _this;\n /**\n * @private\n * @type {Promise<import(\"../View.js\").ViewOptions>}\n */\n _this.viewPromise_ = new Promise(function (resolve, reject) {\n self.viewResolver = resolve;\n self.viewRejector = reject;\n });\n return _this;\n }\n /**\n * Get the attribution function for the source.\n * @return {?Attribution} Attribution function.\n * @api\n */\n Source.prototype.getAttributions = function () {\n return this.attributions_;\n };\n /**\n * @return {boolean} Attributions are collapsible.\n * @api\n */\n Source.prototype.getAttributionsCollapsible = function () {\n return this.attributionsCollapsible_;\n };\n /**\n * Get the projection of the source.\n * @return {import(\"../proj/Projection.js\").default} Projection.\n * @api\n */\n Source.prototype.getProjection = function () {\n return this.projection;\n };\n /**\n * @abstract\n * @return {Array<number>|undefined} Resolutions.\n */\n Source.prototype.getResolutions = function () {\n return abstract();\n };\n /**\n * @return {Promise<import(\"../View.js\").ViewOptions>} A promise for view-related properties.\n */\n Source.prototype.getView = function () {\n return this.viewPromise_;\n };\n /**\n * Get the state of the source, see {@link module:ol/source/State~State} for possible states.\n * @return {import(\"./State.js\").default} State.\n * @api\n */\n Source.prototype.getState = function () {\n return this.state_;\n };\n /**\n * @return {boolean|undefined} Wrap X.\n */\n Source.prototype.getWrapX = function () {\n return this.wrapX_;\n };\n /**\n * @return {Object|undefined} Context options.\n */\n Source.prototype.getContextOptions = function () {\n return undefined;\n };\n /**\n * Refreshes the source. The source will be cleared, and data from the server will be reloaded.\n * @api\n */\n Source.prototype.refresh = function () {\n this.changed();\n };\n /**\n * Set the attributions of the source.\n * @param {AttributionLike|undefined} attributions Attributions.\n * Can be passed as `string`, `Array<string>`, {@link module:ol/source/Source~Attribution},\n * or `undefined`.\n * @api\n */\n Source.prototype.setAttributions = function (attributions) {\n this.attributions_ = adaptAttributions(attributions);\n this.changed();\n };\n /**\n * Set the state of the source.\n * @param {import(\"./State.js\").default} state State.\n */\n Source.prototype.setState = function (state) {\n this.state_ = state;\n this.changed();\n };\n return Source;\n}(BaseObject));\n/**\n * Turns the attributions option into an attributions function.\n * @param {AttributionLike|undefined} attributionLike The attribution option.\n * @return {?Attribution} An attribution function (or null).\n */\nfunction adaptAttributions(attributionLike) {\n if (!attributionLike) {\n return null;\n }\n if (Array.isArray(attributionLike)) {\n return function (frameState) {\n return attributionLike;\n };\n }\n if (typeof attributionLike === 'function') {\n return attributionLike;\n }\n return function (frameState) {\n return [attributionLike];\n };\n}\nexport default Source;\n//# sourceMappingURL=Source.js.map","/**\n * @module ol/tilegrid/TileGrid\n */\nimport TileRange, { createOrUpdate as createOrUpdateTileRange, } from '../TileRange.js';\nimport { DEFAULT_TILE_SIZE } from './common.js';\nimport { assert } from '../asserts.js';\nimport { clamp } from '../math.js';\nimport { createOrUpdate, getTopLeft } from '../extent.js';\nimport { createOrUpdate as createOrUpdateTileCoord } from '../tilecoord.js';\nimport { isSorted, linearFindNearest } from '../array.js';\nimport { toSize } from '../size.js';\n/**\n * @private\n * @type {import(\"../tilecoord.js\").TileCoord}\n */\nvar tmpTileCoord = [0, 0, 0];\n/**\n * @typedef {Object} Options\n * @property {import(\"../extent.js\").Extent} [extent] Extent for the tile grid. No tiles outside this\n * extent will be requested by {@link module:ol/source/Tile} sources. When no `origin` or\n * `origins` are configured, the `origin` will be set to the top-left corner of the extent.\n * @property {number} [minZoom=0] Minimum zoom.\n * @property {import(\"../coordinate.js\").Coordinate} [origin] The tile grid origin, i.e. where the `x`\n * and `y` axes meet (`[z, 0, 0]`). Tile coordinates increase left to right and downwards. If not\n * specified, `extent` or `origins` must be provided.\n * @property {Array<import(\"../coordinate.js\").Coordinate>} [origins] Tile grid origins, i.e. where\n * the `x` and `y` axes meet (`[z, 0, 0]`), for each zoom level. If given, the array length\n * should match the length of the `resolutions` array, i.e. each resolution can have a different\n * origin. Tile coordinates increase left to right and downwards. If not specified, `extent` or\n * `origin` must be provided.\n * @property {!Array<number>} resolutions Resolutions. The array index of each resolution needs\n * to match the zoom level. This means that even if a `minZoom` is configured, the resolutions\n * array will have a length of `maxZoom + 1`.\n * @property {Array<import(\"../size.js\").Size>} [sizes] Number of tile rows and columns\n * of the grid for each zoom level. If specified the values\n * define each zoom level's extent together with the `origin` or `origins`.\n * A grid `extent` can be configured in addition, and will further limit the extent\n * for which tile requests are made by sources. If the bottom-left corner of\n * an extent is used as `origin` or `origins`, then the `y` value must be\n * negative because OpenLayers tile coordinates use the top left as the origin.\n * @property {number|import(\"../size.js\").Size} [tileSize] Tile size.\n * Default is `[256, 256]`.\n * @property {Array<import(\"../size.js\").Size>} [tileSizes] Tile sizes. If given, the array length\n * should match the length of the `resolutions` array, i.e. each resolution can have a different\n * tile size.\n */\n/**\n * @classdesc\n * Base class for setting the grid pattern for sources accessing tiled-image\n * servers.\n * @api\n */\nvar TileGrid = /** @class */ (function () {\n /**\n * @param {Options} options Tile grid options.\n */\n function TileGrid(options) {\n /**\n * @protected\n * @type {number}\n */\n this.minZoom = options.minZoom !== undefined ? options.minZoom : 0;\n /**\n * @private\n * @type {!Array<number>}\n */\n this.resolutions_ = options.resolutions;\n assert(isSorted(this.resolutions_, function (a, b) {\n return b - a;\n }, true), 17); // `resolutions` must be sorted in descending order\n // check if we've got a consistent zoom factor and origin\n var zoomFactor;\n if (!options.origins) {\n for (var i = 0, ii = this.resolutions_.length - 1; i < ii; ++i) {\n if (!zoomFactor) {\n zoomFactor = this.resolutions_[i] / this.resolutions_[i + 1];\n }\n else {\n if (this.resolutions_[i] / this.resolutions_[i + 1] !== zoomFactor) {\n zoomFactor = undefined;\n break;\n }\n }\n }\n }\n /**\n * @private\n * @type {number|undefined}\n */\n this.zoomFactor_ = zoomFactor;\n /**\n * @protected\n * @type {number}\n */\n this.maxZoom = this.resolutions_.length - 1;\n /**\n * @private\n * @type {import(\"../coordinate.js\").Coordinate}\n */\n this.origin_ = options.origin !== undefined ? options.origin : null;\n /**\n * @private\n * @type {Array<import(\"../coordinate.js\").Coordinate>}\n */\n this.origins_ = null;\n if (options.origins !== undefined) {\n this.origins_ = options.origins;\n assert(this.origins_.length == this.resolutions_.length, 20); // Number of `origins` and `resolutions` must be equal\n }\n var extent = options.extent;\n if (extent !== undefined && !this.origin_ && !this.origins_) {\n this.origin_ = getTopLeft(extent);\n }\n assert((!this.origin_ && this.origins_) || (this.origin_ && !this.origins_), 18); // Either `origin` or `origins` must be configured, never both\n /**\n * @private\n * @type {Array<number|import(\"../size.js\").Size>}\n */\n this.tileSizes_ = null;\n if (options.tileSizes !== undefined) {\n this.tileSizes_ = options.tileSizes;\n assert(this.tileSizes_.length == this.resolutions_.length, 19); // Number of `tileSizes` and `resolutions` must be equal\n }\n /**\n * @private\n * @type {number|import(\"../size.js\").Size}\n */\n this.tileSize_ =\n options.tileSize !== undefined\n ? options.tileSize\n : !this.tileSizes_\n ? DEFAULT_TILE_SIZE\n : null;\n assert((!this.tileSize_ && this.tileSizes_) ||\n (this.tileSize_ && !this.tileSizes_), 22); // Either `tileSize` or `tileSizes` must be configured, never both\n /**\n * @private\n * @type {import(\"../extent.js\").Extent}\n */\n this.extent_ = extent !== undefined ? extent : null;\n /**\n * @private\n * @type {Array<import(\"../TileRange.js\").default>}\n */\n this.fullTileRanges_ = null;\n /**\n * @private\n * @type {import(\"../size.js\").Size}\n */\n this.tmpSize_ = [0, 0];\n /**\n * @private\n * @type {import(\"../extent.js\").Extent}\n */\n this.tmpExtent_ = [0, 0, 0, 0];\n if (options.sizes !== undefined) {\n this.fullTileRanges_ = options.sizes.map(function (size, z) {\n var tileRange = new TileRange(Math.min(0, size[0]), Math.max(size[0] - 1, -1), Math.min(0, size[1]), Math.max(size[1] - 1, -1));\n if (extent) {\n var restrictedTileRange = this.getTileRangeForExtentAndZ(extent, z);\n tileRange.minX = Math.max(restrictedTileRange.minX, tileRange.minX);\n tileRange.maxX = Math.min(restrictedTileRange.maxX, tileRange.maxX);\n tileRange.minY = Math.max(restrictedTileRange.minY, tileRange.minY);\n tileRange.maxY = Math.min(restrictedTileRange.maxY, tileRange.maxY);\n }\n return tileRange;\n }, this);\n }\n else if (extent) {\n this.calculateTileRanges_(extent);\n }\n }\n /**\n * Call a function with each tile coordinate for a given extent and zoom level.\n *\n * @param {import(\"../extent.js\").Extent} extent Extent.\n * @param {number} zoom Integer zoom level.\n * @param {function(import(\"../tilecoord.js\").TileCoord): void} callback Function called with each tile coordinate.\n * @api\n */\n TileGrid.prototype.forEachTileCoord = function (extent, zoom, callback) {\n var tileRange = this.getTileRangeForExtentAndZ(extent, zoom);\n for (var i = tileRange.minX, ii = tileRange.maxX; i <= ii; ++i) {\n for (var j = tileRange.minY, jj = tileRange.maxY; j <= jj; ++j) {\n callback([zoom, i, j]);\n }\n }\n };\n /**\n * @param {import(\"../tilecoord.js\").TileCoord} tileCoord Tile coordinate.\n * @param {function(number, import(\"../TileRange.js\").default): boolean} callback Callback.\n * @param {import(\"../TileRange.js\").default} [opt_tileRange] Temporary import(\"../TileRange.js\").default object.\n * @param {import(\"../extent.js\").Extent} [opt_extent] Temporary import(\"../extent.js\").Extent object.\n * @return {boolean} Callback succeeded.\n */\n TileGrid.prototype.forEachTileCoordParentTileRange = function (tileCoord, callback, opt_tileRange, opt_extent) {\n var tileRange, x, y;\n var tileCoordExtent = null;\n var z = tileCoord[0] - 1;\n if (this.zoomFactor_ === 2) {\n x = tileCoord[1];\n y = tileCoord[2];\n }\n else {\n tileCoordExtent = this.getTileCoordExtent(tileCoord, opt_extent);\n }\n while (z >= this.minZoom) {\n if (this.zoomFactor_ === 2) {\n x = Math.floor(x / 2);\n y = Math.floor(y / 2);\n tileRange = createOrUpdateTileRange(x, x, y, y, opt_tileRange);\n }\n else {\n tileRange = this.getTileRangeForExtentAndZ(tileCoordExtent, z, opt_tileRange);\n }\n if (callback(z, tileRange)) {\n return true;\n }\n --z;\n }\n return false;\n };\n /**\n * Get the extent for this tile grid, if it was configured.\n * @return {import(\"../extent.js\").Extent} Extent.\n * @api\n */\n TileGrid.prototype.getExtent = function () {\n return this.extent_;\n };\n /**\n * Get the maximum zoom level for the grid.\n * @return {number} Max zoom.\n * @api\n */\n TileGrid.prototype.getMaxZoom = function () {\n return this.maxZoom;\n };\n /**\n * Get the minimum zoom level for the grid.\n * @return {number} Min zoom.\n * @api\n */\n TileGrid.prototype.getMinZoom = function () {\n return this.minZoom;\n };\n /**\n * Get the origin for the grid at the given zoom level.\n * @param {number} z Integer zoom level.\n * @return {import(\"../coordinate.js\").Coordinate} Origin.\n * @api\n */\n TileGrid.prototype.getOrigin = function (z) {\n if (this.origin_) {\n return this.origin_;\n }\n else {\n return this.origins_[z];\n }\n };\n /**\n * Get the resolution for the given zoom level.\n * @param {number} z Integer zoom level.\n * @return {number} Resolution.\n * @api\n */\n TileGrid.prototype.getResolution = function (z) {\n return this.resolutions_[z];\n };\n /**\n * Get the list of resolutions for the tile grid.\n * @return {Array<number>} Resolutions.\n * @api\n */\n TileGrid.prototype.getResolutions = function () {\n return this.resolutions_;\n };\n /**\n * @param {import(\"../tilecoord.js\").TileCoord} tileCoord Tile coordinate.\n * @param {import(\"../TileRange.js\").default} [opt_tileRange] Temporary import(\"../TileRange.js\").default object.\n * @param {import(\"../extent.js\").Extent} [opt_extent] Temporary import(\"../extent.js\").Extent object.\n * @return {import(\"../TileRange.js\").default} Tile range.\n */\n TileGrid.prototype.getTileCoordChildTileRange = function (tileCoord, opt_tileRange, opt_extent) {\n if (tileCoord[0] < this.maxZoom) {\n if (this.zoomFactor_ === 2) {\n var minX = tileCoord[1] * 2;\n var minY = tileCoord[2] * 2;\n return createOrUpdateTileRange(minX, minX + 1, minY, minY + 1, opt_tileRange);\n }\n var tileCoordExtent = this.getTileCoordExtent(tileCoord, opt_extent || this.tmpExtent_);\n return this.getTileRangeForExtentAndZ(tileCoordExtent, tileCoord[0] + 1, opt_tileRange);\n }\n return null;\n };\n /**\n * @param {import(\"../tilecoord.js\").TileCoord} tileCoord Tile coordinate.\n * @param {number} z Integer zoom level.\n * @param {import(\"../TileRange.js\").default} [opt_tileRange] Temporary import(\"../TileRange.js\").default object.\n * @return {import(\"../TileRange.js\").default} Tile range.\n */\n TileGrid.prototype.getTileRangeForTileCoordAndZ = function (tileCoord, z, opt_tileRange) {\n if (z > this.maxZoom || z < this.minZoom) {\n return null;\n }\n var tileCoordZ = tileCoord[0];\n var tileCoordX = tileCoord[1];\n var tileCoordY = tileCoord[2];\n if (z === tileCoordZ) {\n return createOrUpdateTileRange(tileCoordX, tileCoordY, tileCoordX, tileCoordY, opt_tileRange);\n }\n if (this.zoomFactor_) {\n var factor = Math.pow(this.zoomFactor_, z - tileCoordZ);\n var minX = Math.floor(tileCoordX * factor);\n var minY = Math.floor(tileCoordY * factor);\n if (z < tileCoordZ) {\n return createOrUpdateTileRange(minX, minX, minY, minY, opt_tileRange);\n }\n var maxX = Math.floor(factor * (tileCoordX + 1)) - 1;\n var maxY = Math.floor(factor * (tileCoordY + 1)) - 1;\n return createOrUpdateTileRange(minX, maxX, minY, maxY, opt_tileRange);\n }\n var tileCoordExtent = this.getTileCoordExtent(tileCoord, this.tmpExtent_);\n return this.getTileRangeForExtentAndZ(tileCoordExtent, z, opt_tileRange);\n };\n /**\n * Get the extent for a tile range.\n * @param {number} z Integer zoom level.\n * @param {import(\"../TileRange.js\").default} tileRange Tile range.\n * @param {import(\"../extent.js\").Extent} [opt_extent] Temporary import(\"../extent.js\").Extent object.\n * @return {import(\"../extent.js\").Extent} Extent.\n */\n TileGrid.prototype.getTileRangeExtent = function (z, tileRange, opt_extent) {\n var origin = this.getOrigin(z);\n var resolution = this.getResolution(z);\n var tileSize = toSize(this.getTileSize(z), this.tmpSize_);\n var minX = origin[0] + tileRange.minX * tileSize[0] * resolution;\n var maxX = origin[0] + (tileRange.maxX + 1) * tileSize[0] * resolution;\n var minY = origin[1] + tileRange.minY * tileSize[1] * resolution;\n var maxY = origin[1] + (tileRange.maxY + 1) * tileSize[1] * resolution;\n return createOrUpdate(minX, minY, maxX, maxY, opt_extent);\n };\n /**\n * Get a tile range for the given extent and integer zoom level.\n * @param {import(\"../extent.js\").Extent} extent Extent.\n * @param {number} z Integer zoom level.\n * @param {import(\"../TileRange.js\").default} [opt_tileRange] Temporary tile range object.\n * @return {import(\"../TileRange.js\").default} Tile range.\n */\n TileGrid.prototype.getTileRangeForExtentAndZ = function (extent, z, opt_tileRange) {\n var tileCoord = tmpTileCoord;\n this.getTileCoordForXYAndZ_(extent[0], extent[3], z, false, tileCoord);\n var minX = tileCoord[1];\n var minY = tileCoord[2];\n this.getTileCoordForXYAndZ_(extent[2], extent[1], z, true, tileCoord);\n return createOrUpdateTileRange(minX, tileCoord[1], minY, tileCoord[2], opt_tileRange);\n };\n /**\n * @param {import(\"../tilecoord.js\").TileCoord} tileCoord Tile coordinate.\n * @return {import(\"../coordinate.js\").Coordinate} Tile center.\n */\n TileGrid.prototype.getTileCoordCenter = function (tileCoord) {\n var origin = this.getOrigin(tileCoord[0]);\n var resolution = this.getResolution(tileCoord[0]);\n var tileSize = toSize(this.getTileSize(tileCoord[0]), this.tmpSize_);\n return [\n origin[0] + (tileCoord[1] + 0.5) * tileSize[0] * resolution,\n origin[1] - (tileCoord[2] + 0.5) * tileSize[1] * resolution,\n ];\n };\n /**\n * Get the extent of a tile coordinate.\n *\n * @param {import(\"../tilecoord.js\").TileCoord} tileCoord Tile coordinate.\n * @param {import(\"../extent.js\").Extent} [opt_extent] Temporary extent object.\n * @return {import(\"../extent.js\").Extent} Extent.\n * @api\n */\n TileGrid.prototype.getTileCoordExtent = function (tileCoord, opt_extent) {\n var origin = this.getOrigin(tileCoord[0]);\n var resolution = this.getResolution(tileCoord[0]);\n var tileSize = toSize(this.getTileSize(tileCoord[0]), this.tmpSize_);\n var minX = origin[0] + tileCoord[1] * tileSize[0] * resolution;\n var minY = origin[1] - (tileCoord[2] + 1) * tileSize[1] * resolution;\n var maxX = minX + tileSize[0] * resolution;\n var maxY = minY + tileSize[1] * resolution;\n return createOrUpdate(minX, minY, maxX, maxY, opt_extent);\n };\n /**\n * Get the tile coordinate for the given map coordinate and resolution. This\n * method considers that coordinates that intersect tile boundaries should be\n * assigned the higher tile coordinate.\n *\n * @param {import(\"../coordinate.js\").Coordinate} coordinate Coordinate.\n * @param {number} resolution Resolution.\n * @param {import(\"../tilecoord.js\").TileCoord} [opt_tileCoord] Destination import(\"../tilecoord.js\").TileCoord object.\n * @return {import(\"../tilecoord.js\").TileCoord} Tile coordinate.\n * @api\n */\n TileGrid.prototype.getTileCoordForCoordAndResolution = function (coordinate, resolution, opt_tileCoord) {\n return this.getTileCoordForXYAndResolution_(coordinate[0], coordinate[1], resolution, false, opt_tileCoord);\n };\n /**\n * Note that this method should not be called for resolutions that correspond\n * to an integer zoom level. Instead call the `getTileCoordForXYAndZ_` method.\n * @param {number} x X.\n * @param {number} y Y.\n * @param {number} resolution Resolution (for a non-integer zoom level).\n * @param {boolean} reverseIntersectionPolicy Instead of letting edge\n * intersections go to the higher tile coordinate, let edge intersections\n * go to the lower tile coordinate.\n * @param {import(\"../tilecoord.js\").TileCoord} [opt_tileCoord] Temporary import(\"../tilecoord.js\").TileCoord object.\n * @return {import(\"../tilecoord.js\").TileCoord} Tile coordinate.\n * @private\n */\n TileGrid.prototype.getTileCoordForXYAndResolution_ = function (x, y, resolution, reverseIntersectionPolicy, opt_tileCoord) {\n var z = this.getZForResolution(resolution);\n var scale = resolution / this.getResolution(z);\n var origin = this.getOrigin(z);\n var tileSize = toSize(this.getTileSize(z), this.tmpSize_);\n var adjustX = reverseIntersectionPolicy ? 0.5 : 0;\n var adjustY = reverseIntersectionPolicy ? 0.5 : 0;\n var xFromOrigin = Math.floor((x - origin[0]) / resolution + adjustX);\n var yFromOrigin = Math.floor((origin[1] - y) / resolution + adjustY);\n var tileCoordX = (scale * xFromOrigin) / tileSize[0];\n var tileCoordY = (scale * yFromOrigin) / tileSize[1];\n if (reverseIntersectionPolicy) {\n tileCoordX = Math.ceil(tileCoordX) - 1;\n tileCoordY = Math.ceil(tileCoordY) - 1;\n }\n else {\n tileCoordX = Math.floor(tileCoordX);\n tileCoordY = Math.floor(tileCoordY);\n }\n return createOrUpdateTileCoord(z, tileCoordX, tileCoordY, opt_tileCoord);\n };\n /**\n * Although there is repetition between this method and `getTileCoordForXYAndResolution_`,\n * they should have separate implementations. This method is for integer zoom\n * levels. The other method should only be called for resolutions corresponding\n * to non-integer zoom levels.\n * @param {number} x Map x coordinate.\n * @param {number} y Map y coordinate.\n * @param {number} z Integer zoom level.\n * @param {boolean} reverseIntersectionPolicy Instead of letting edge\n * intersections go to the higher tile coordinate, let edge intersections\n * go to the lower tile coordinate.\n * @param {import(\"../tilecoord.js\").TileCoord} [opt_tileCoord] Temporary import(\"../tilecoord.js\").TileCoord object.\n * @return {import(\"../tilecoord.js\").TileCoord} Tile coordinate.\n * @private\n */\n TileGrid.prototype.getTileCoordForXYAndZ_ = function (x, y, z, reverseIntersectionPolicy, opt_tileCoord) {\n var origin = this.getOrigin(z);\n var resolution = this.getResolution(z);\n var tileSize = toSize(this.getTileSize(z), this.tmpSize_);\n var adjustX = reverseIntersectionPolicy ? 0.5 : 0;\n var adjustY = reverseIntersectionPolicy ? 0.5 : 0;\n var xFromOrigin = Math.floor((x - origin[0]) / resolution + adjustX);\n var yFromOrigin = Math.floor((origin[1] - y) / resolution + adjustY);\n var tileCoordX = xFromOrigin / tileSize[0];\n var tileCoordY = yFromOrigin / tileSize[1];\n if (reverseIntersectionPolicy) {\n tileCoordX = Math.ceil(tileCoordX) - 1;\n tileCoordY = Math.ceil(tileCoordY) - 1;\n }\n else {\n tileCoordX = Math.floor(tileCoordX);\n tileCoordY = Math.floor(tileCoordY);\n }\n return createOrUpdateTileCoord(z, tileCoordX, tileCoordY, opt_tileCoord);\n };\n /**\n * Get a tile coordinate given a map coordinate and zoom level.\n * @param {import(\"../coordinate.js\").Coordinate} coordinate Coordinate.\n * @param {number} z Zoom level.\n * @param {import(\"../tilecoord.js\").TileCoord} [opt_tileCoord] Destination import(\"../tilecoord.js\").TileCoord object.\n * @return {import(\"../tilecoord.js\").TileCoord} Tile coordinate.\n * @api\n */\n TileGrid.prototype.getTileCoordForCoordAndZ = function (coordinate, z, opt_tileCoord) {\n return this.getTileCoordForXYAndZ_(coordinate[0], coordinate[1], z, false, opt_tileCoord);\n };\n /**\n * @param {import(\"../tilecoord.js\").TileCoord} tileCoord Tile coordinate.\n * @return {number} Tile resolution.\n */\n TileGrid.prototype.getTileCoordResolution = function (tileCoord) {\n return this.resolutions_[tileCoord[0]];\n };\n /**\n * Get the tile size for a zoom level. The type of the return value matches the\n * `tileSize` or `tileSizes` that the tile grid was configured with. To always\n * get an `import(\"../size.js\").Size`, run the result through `import(\"../size.js\").Size.toSize()`.\n * @param {number} z Z.\n * @return {number|import(\"../size.js\").Size} Tile size.\n * @api\n */\n TileGrid.prototype.getTileSize = function (z) {\n if (this.tileSize_) {\n return this.tileSize_;\n }\n else {\n return this.tileSizes_[z];\n }\n };\n /**\n * @param {number} z Zoom level.\n * @return {import(\"../TileRange.js\").default} Extent tile range for the specified zoom level.\n */\n TileGrid.prototype.getFullTileRange = function (z) {\n if (!this.fullTileRanges_) {\n return this.extent_\n ? this.getTileRangeForExtentAndZ(this.extent_, z)\n : null;\n }\n else {\n return this.fullTileRanges_[z];\n }\n };\n /**\n * @param {number} resolution Resolution.\n * @param {number|import(\"../array.js\").NearestDirectionFunction} [opt_direction]\n * If 0, the nearest resolution will be used.\n * If 1, the nearest higher resolution (lower Z) will be used. If -1, the\n * nearest lower resolution (higher Z) will be used. Default is 0.\n * Use a {@link module:ol/array~NearestDirectionFunction} for more precise control.\n *\n * For example to change tile Z at the midpoint of zoom levels\n * ```js\n * function(value, high, low) {\n * return value - low * Math.sqrt(high / low);\n * }\n * ```\n * @return {number} Z.\n * @api\n */\n TileGrid.prototype.getZForResolution = function (resolution, opt_direction) {\n var z = linearFindNearest(this.resolutions_, resolution, opt_direction || 0);\n return clamp(z, this.minZoom, this.maxZoom);\n };\n /**\n * @param {!import(\"../extent.js\").Extent} extent Extent for this tile grid.\n * @private\n */\n TileGrid.prototype.calculateTileRanges_ = function (extent) {\n var length = this.resolutions_.length;\n var fullTileRanges = new Array(length);\n for (var z = this.minZoom; z < length; ++z) {\n fullTileRanges[z] = this.getTileRangeForExtentAndZ(extent, z);\n }\n this.fullTileRanges_ = fullTileRanges;\n };\n return TileGrid;\n}());\nexport default TileGrid;\n//# sourceMappingURL=TileGrid.js.map","/**\n * @module ol/tilegrid/common\n */\n/**\n * Default maximum zoom for default tile grids.\n * @type {number}\n */\nexport var DEFAULT_MAX_ZOOM = 42;\n/**\n * Default tile size.\n * @type {number}\n */\nexport var DEFAULT_TILE_SIZE = 256;\n//# sourceMappingURL=common.js.map","/**\n * @module ol/tilegrid\n */\nimport Corner from './extent/Corner.js';\nimport TileGrid from './tilegrid/TileGrid.js';\nimport Units from './proj/Units.js';\nimport { DEFAULT_MAX_ZOOM, DEFAULT_TILE_SIZE } from './tilegrid/common.js';\nimport { METERS_PER_UNIT, get as getProjection } from './proj.js';\nimport { containsCoordinate, createOrUpdate, getCorner, getHeight, getWidth, } from './extent.js';\nimport { toSize } from './size.js';\n/**\n * @param {import(\"./proj/Projection.js\").default} projection Projection.\n * @return {!TileGrid} Default tile grid for the\n * passed projection.\n */\nexport function getForProjection(projection) {\n var tileGrid = projection.getDefaultTileGrid();\n if (!tileGrid) {\n tileGrid = createForProjection(projection);\n projection.setDefaultTileGrid(tileGrid);\n }\n return tileGrid;\n}\n/**\n * @param {TileGrid} tileGrid Tile grid.\n * @param {import(\"./tilecoord.js\").TileCoord} tileCoord Tile coordinate.\n * @param {import(\"./proj/Projection.js\").default} projection Projection.\n * @return {import(\"./tilecoord.js\").TileCoord} Tile coordinate.\n */\nexport function wrapX(tileGrid, tileCoord, projection) {\n var z = tileCoord[0];\n var center = tileGrid.getTileCoordCenter(tileCoord);\n var projectionExtent = extentFromProjection(projection);\n if (!containsCoordinate(projectionExtent, center)) {\n var worldWidth = getWidth(projectionExtent);\n var worldsAway = Math.ceil((projectionExtent[0] - center[0]) / worldWidth);\n center[0] += worldWidth * worldsAway;\n return tileGrid.getTileCoordForCoordAndZ(center, z);\n }\n else {\n return tileCoord;\n }\n}\n/**\n * @param {import(\"./extent.js\").Extent} extent Extent.\n * @param {number} [opt_maxZoom] Maximum zoom level (default is\n * DEFAULT_MAX_ZOOM).\n * @param {number|import(\"./size.js\").Size} [opt_tileSize] Tile size (default uses\n * DEFAULT_TILE_SIZE).\n * @param {import(\"./extent/Corner.js\").default} [opt_corner] Extent corner (default is `'top-left'`).\n * @return {!TileGrid} TileGrid instance.\n */\nexport function createForExtent(extent, opt_maxZoom, opt_tileSize, opt_corner) {\n var corner = opt_corner !== undefined ? opt_corner : Corner.TOP_LEFT;\n var resolutions = resolutionsFromExtent(extent, opt_maxZoom, opt_tileSize);\n return new TileGrid({\n extent: extent,\n origin: getCorner(extent, corner),\n resolutions: resolutions,\n tileSize: opt_tileSize,\n });\n}\n/**\n * @typedef {Object} XYZOptions\n * @property {import(\"./extent.js\").Extent} [extent] Extent for the tile grid. The origin for an XYZ tile grid is the\n * top-left corner of the extent. If `maxResolution` is not provided the zero level of the grid is defined by the resolution\n * at which one tile fits in the provided extent. If not provided, the extent of the EPSG:3857 projection is used.\n * @property {number} [maxResolution] Resolution at level zero.\n * @property {number} [maxZoom] Maximum zoom. The default is `42`. This determines the number of levels\n * in the grid set. For example, a `maxZoom` of 21 means there are 22 levels in the grid set.\n * @property {number} [minZoom=0] Minimum zoom.\n * @property {number|import(\"./size.js\").Size} [tileSize=[256, 256]] Tile size in pixels.\n */\n/**\n * Creates a tile grid with a standard XYZ tiling scheme.\n * @param {XYZOptions} [opt_options] Tile grid options.\n * @return {!TileGrid} Tile grid instance.\n * @api\n */\nexport function createXYZ(opt_options) {\n var xyzOptions = opt_options || {};\n var extent = xyzOptions.extent || getProjection('EPSG:3857').getExtent();\n var gridOptions = {\n extent: extent,\n minZoom: xyzOptions.minZoom,\n tileSize: xyzOptions.tileSize,\n resolutions: resolutionsFromExtent(extent, xyzOptions.maxZoom, xyzOptions.tileSize, xyzOptions.maxResolution),\n };\n return new TileGrid(gridOptions);\n}\n/**\n * Create a resolutions array from an extent. A zoom factor of 2 is assumed.\n * @param {import(\"./extent.js\").Extent} extent Extent.\n * @param {number} [opt_maxZoom] Maximum zoom level (default is\n * DEFAULT_MAX_ZOOM).\n * @param {number|import(\"./size.js\").Size} [opt_tileSize] Tile size (default uses\n * DEFAULT_TILE_SIZE).\n * @param {number} [opt_maxResolution] Resolution at level zero.\n * @return {!Array<number>} Resolutions array.\n */\nfunction resolutionsFromExtent(extent, opt_maxZoom, opt_tileSize, opt_maxResolution) {\n var maxZoom = opt_maxZoom !== undefined ? opt_maxZoom : DEFAULT_MAX_ZOOM;\n var height = getHeight(extent);\n var width = getWidth(extent);\n var tileSize = toSize(opt_tileSize !== undefined ? opt_tileSize : DEFAULT_TILE_SIZE);\n var maxResolution = opt_maxResolution > 0\n ? opt_maxResolution\n : Math.max(width / tileSize[0], height / tileSize[1]);\n var length = maxZoom + 1;\n var resolutions = new Array(length);\n for (var z = 0; z < length; ++z) {\n resolutions[z] = maxResolution / Math.pow(2, z);\n }\n return resolutions;\n}\n/**\n * @param {import(\"./proj.js\").ProjectionLike} projection Projection.\n * @param {number} [opt_maxZoom] Maximum zoom level (default is\n * DEFAULT_MAX_ZOOM).\n * @param {number|import(\"./size.js\").Size} [opt_tileSize] Tile size (default uses\n * DEFAULT_TILE_SIZE).\n * @param {import(\"./extent/Corner.js\").default} [opt_corner] Extent corner (default is `'top-left'`).\n * @return {!TileGrid} TileGrid instance.\n */\nexport function createForProjection(projection, opt_maxZoom, opt_tileSize, opt_corner) {\n var extent = extentFromProjection(projection);\n return createForExtent(extent, opt_maxZoom, opt_tileSize, opt_corner);\n}\n/**\n * Generate a tile grid extent from a projection. If the projection has an\n * extent, it is used. If not, a global extent is assumed.\n * @param {import(\"./proj.js\").ProjectionLike} projection Projection.\n * @return {import(\"./extent.js\").Extent} Extent.\n */\nexport function extentFromProjection(projection) {\n projection = getProjection(projection);\n var extent = projection.getExtent();\n if (!extent) {\n var half = (180 * METERS_PER_UNIT[Units.DEGREES]) / projection.getMetersPerUnit();\n extent = createOrUpdate(-half, -half, half, half);\n }\n return extent;\n}\n//# sourceMappingURL=tilegrid.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/source/Tile\n */\nimport Event from '../events/Event.js';\nimport Source from './Source.js';\nimport TileCache from '../TileCache.js';\nimport TileState from '../TileState.js';\nimport { abstract } from '../util.js';\nimport { assert } from '../asserts.js';\nimport { equivalent } from '../proj.js';\nimport { getKeyZXY, withinExtentAndZ } from '../tilecoord.js';\nimport { getForProjection as getTileGridForProjection, wrapX, } from '../tilegrid.js';\nimport { scale as scaleSize, toSize } from '../size.js';\n/***\n * @template Return\n * @typedef {import(\"../Observable\").OnSignature<import(\"../Observable\").EventTypes, import(\"../events/Event.js\").default, Return> &\n * import(\"../Observable\").OnSignature<import(\"../ObjectEventType\").Types, import(\"../Object\").ObjectEvent, Return> &\n * import(\"../Observable\").OnSignature<import(\"./TileEventType\").TileSourceEventTypes, TileSourceEvent, Return> &\n * import(\"../Observable\").CombinedOnSignature<import(\"../Observable\").EventTypes|import(\"../ObjectEventType\").Types|\n * import(\"./TileEventType\").TileSourceEventTypes, Return>} TileSourceOnSignature\n */\n/**\n * @typedef {Object} Options\n * @property {import(\"./Source.js\").AttributionLike} [attributions] Attributions.\n * @property {boolean} [attributionsCollapsible=true] Attributions are collapsible.\n * @property {number} [cacheSize] CacheSize.\n * @property {boolean} [opaque=false] Whether the layer is opaque.\n * @property {number} [tilePixelRatio] TilePixelRatio.\n * @property {import(\"../proj.js\").ProjectionLike} [projection] Projection.\n * @property {import(\"./State.js\").default} [state] State.\n * @property {import(\"../tilegrid/TileGrid.js\").default} [tileGrid] TileGrid.\n * @property {boolean} [wrapX=true] WrapX.\n * @property {number} [transition] Transition.\n * @property {string} [key] Key.\n * @property {number|import(\"../array.js\").NearestDirectionFunction} [zDirection=0] ZDirection.\n */\n/**\n * @classdesc\n * Abstract base class; normally only used for creating subclasses and not\n * instantiated in apps.\n * Base class for sources providing images divided into a tile grid.\n * @abstract\n * @api\n */\nvar TileSource = /** @class */ (function (_super) {\n __extends(TileSource, _super);\n /**\n * @param {Options} options SourceTile source options.\n */\n function TileSource(options) {\n var _this = _super.call(this, {\n attributions: options.attributions,\n attributionsCollapsible: options.attributionsCollapsible,\n projection: options.projection,\n state: options.state,\n wrapX: options.wrapX,\n }) || this;\n /***\n * @type {TileSourceOnSignature<import(\"../events\").EventsKey>}\n */\n _this.on;\n /***\n * @type {TileSourceOnSignature<import(\"../events\").EventsKey>}\n */\n _this.once;\n /***\n * @type {TileSourceOnSignature<void>}\n */\n _this.un;\n /**\n * @private\n * @type {boolean}\n */\n _this.opaque_ = options.opaque !== undefined ? options.opaque : false;\n /**\n * @private\n * @type {number}\n */\n _this.tilePixelRatio_ =\n options.tilePixelRatio !== undefined ? options.tilePixelRatio : 1;\n /**\n * @protected\n * @type {import(\"../tilegrid/TileGrid.js\").default}\n */\n _this.tileGrid = options.tileGrid !== undefined ? options.tileGrid : null;\n var tileSize = [256, 256];\n var tileGrid = options.tileGrid;\n if (tileGrid) {\n toSize(tileGrid.getTileSize(tileGrid.getMinZoom()), tileSize);\n }\n /**\n * @protected\n * @type {import(\"../TileCache.js\").default}\n */\n _this.tileCache = new TileCache(options.cacheSize || 0);\n /**\n * @protected\n * @type {import(\"../size.js\").Size}\n */\n _this.tmpSize = [0, 0];\n /**\n * @private\n * @type {string}\n */\n _this.key_ = options.key || '';\n /**\n * @protected\n * @type {import(\"../Tile.js\").Options}\n */\n _this.tileOptions = { transition: options.transition };\n /**\n * zDirection hint, read by the renderer. Indicates which resolution should be used\n * by a renderer if the views resolution does not match any resolution of the tile source.\n * If 0, the nearest resolution will be used. If 1, the nearest lower resolution\n * will be used. If -1, the nearest higher resolution will be used.\n * @type {number|import(\"../array.js\").NearestDirectionFunction}\n */\n _this.zDirection = options.zDirection ? options.zDirection : 0;\n return _this;\n }\n /**\n * @return {boolean} Can expire cache.\n */\n TileSource.prototype.canExpireCache = function () {\n return this.tileCache.canExpireCache();\n };\n /**\n * @param {import(\"../proj/Projection.js\").default} projection Projection.\n * @param {!Object<string, boolean>} usedTiles Used tiles.\n */\n TileSource.prototype.expireCache = function (projection, usedTiles) {\n var tileCache = this.getTileCacheForProjection(projection);\n if (tileCache) {\n tileCache.expireCache(usedTiles);\n }\n };\n /**\n * @param {import(\"../proj/Projection.js\").default} projection Projection.\n * @param {number} z Zoom level.\n * @param {import(\"../TileRange.js\").default} tileRange Tile range.\n * @param {function(import(\"../Tile.js\").default):(boolean|void)} callback Called with each\n * loaded tile. If the callback returns `false`, the tile will not be\n * considered loaded.\n * @return {boolean} The tile range is fully covered with loaded tiles.\n */\n TileSource.prototype.forEachLoadedTile = function (projection, z, tileRange, callback) {\n var tileCache = this.getTileCacheForProjection(projection);\n if (!tileCache) {\n return false;\n }\n var covered = true;\n var tile, tileCoordKey, loaded;\n for (var x = tileRange.minX; x <= tileRange.maxX; ++x) {\n for (var y = tileRange.minY; y <= tileRange.maxY; ++y) {\n tileCoordKey = getKeyZXY(z, x, y);\n loaded = false;\n if (tileCache.containsKey(tileCoordKey)) {\n tile = /** @type {!import(\"../Tile.js\").default} */ (tileCache.get(tileCoordKey));\n loaded = tile.getState() === TileState.LOADED;\n if (loaded) {\n loaded = callback(tile) !== false;\n }\n }\n if (!loaded) {\n covered = false;\n }\n }\n }\n return covered;\n };\n /**\n * @param {import(\"../proj/Projection.js\").default} projection Projection.\n * @return {number} Gutter.\n */\n TileSource.prototype.getGutterForProjection = function (projection) {\n return 0;\n };\n /**\n * Return the key to be used for all tiles in the source.\n * @return {string} The key for all tiles.\n * @protected\n */\n TileSource.prototype.getKey = function () {\n return this.key_;\n };\n /**\n * Set the value to be used as the key for all tiles in the source.\n * @param {string} key The key for tiles.\n * @protected\n */\n TileSource.prototype.setKey = function (key) {\n if (this.key_ !== key) {\n this.key_ = key;\n this.changed();\n }\n };\n /**\n * @param {import(\"../proj/Projection.js\").default} projection Projection.\n * @return {boolean} Opaque.\n */\n TileSource.prototype.getOpaque = function (projection) {\n return this.opaque_;\n };\n /**\n * @return {Array<number>} Resolutions.\n */\n TileSource.prototype.getResolutions = function () {\n return this.tileGrid.getResolutions();\n };\n /**\n * @abstract\n * @param {number} z Tile coordinate z.\n * @param {number} x Tile coordinate x.\n * @param {number} y Tile coordinate y.\n * @param {number} pixelRatio Pixel ratio.\n * @param {import(\"../proj/Projection.js\").default} projection Projection.\n * @return {!import(\"../Tile.js\").default} Tile.\n */\n TileSource.prototype.getTile = function (z, x, y, pixelRatio, projection) {\n return abstract();\n };\n /**\n * Return the tile grid of the tile source.\n * @return {import(\"../tilegrid/TileGrid.js\").default} Tile grid.\n * @api\n */\n TileSource.prototype.getTileGrid = function () {\n return this.tileGrid;\n };\n /**\n * @param {import(\"../proj/Projection.js\").default} projection Projection.\n * @return {!import(\"../tilegrid/TileGrid.js\").default} Tile grid.\n */\n TileSource.prototype.getTileGridForProjection = function (projection) {\n if (!this.tileGrid) {\n return getTileGridForProjection(projection);\n }\n else {\n return this.tileGrid;\n }\n };\n /**\n * @param {import(\"../proj/Projection.js\").default} projection Projection.\n * @return {import(\"../TileCache.js\").default} Tile cache.\n * @protected\n */\n TileSource.prototype.getTileCacheForProjection = function (projection) {\n assert(equivalent(this.getProjection(), projection), 68 // A VectorTile source can only be rendered if it has a projection compatible with the view projection.\n );\n return this.tileCache;\n };\n /**\n * Get the tile pixel ratio for this source. Subclasses may override this\n * method, which is meant to return a supported pixel ratio that matches the\n * provided `pixelRatio` as close as possible.\n * @param {number} pixelRatio Pixel ratio.\n * @return {number} Tile pixel ratio.\n */\n TileSource.prototype.getTilePixelRatio = function (pixelRatio) {\n return this.tilePixelRatio_;\n };\n /**\n * @param {number} z Z.\n * @param {number} pixelRatio Pixel ratio.\n * @param {import(\"../proj/Projection.js\").default} projection Projection.\n * @return {import(\"../size.js\").Size} Tile size.\n */\n TileSource.prototype.getTilePixelSize = function (z, pixelRatio, projection) {\n var tileGrid = this.getTileGridForProjection(projection);\n var tilePixelRatio = this.getTilePixelRatio(pixelRatio);\n var tileSize = toSize(tileGrid.getTileSize(z), this.tmpSize);\n if (tilePixelRatio == 1) {\n return tileSize;\n }\n else {\n return scaleSize(tileSize, tilePixelRatio, this.tmpSize);\n }\n };\n /**\n * Returns a tile coordinate wrapped around the x-axis. When the tile coordinate\n * is outside the resolution and extent range of the tile grid, `null` will be\n * returned.\n * @param {import(\"../tilecoord.js\").TileCoord} tileCoord Tile coordinate.\n * @param {import(\"../proj/Projection.js\").default} [opt_projection] Projection.\n * @return {import(\"../tilecoord.js\").TileCoord} Tile coordinate to be passed to the tileUrlFunction or\n * null if no tile URL should be created for the passed `tileCoord`.\n */\n TileSource.prototype.getTileCoordForTileUrlFunction = function (tileCoord, opt_projection) {\n var projection = opt_projection !== undefined ? opt_projection : this.getProjection();\n var tileGrid = this.getTileGridForProjection(projection);\n if (this.getWrapX() && projection.isGlobal()) {\n tileCoord = wrapX(tileGrid, tileCoord, projection);\n }\n return withinExtentAndZ(tileCoord, tileGrid) ? tileCoord : null;\n };\n /**\n * Remove all cached tiles from the source. The next render cycle will fetch new tiles.\n * @api\n */\n TileSource.prototype.clear = function () {\n this.tileCache.clear();\n };\n TileSource.prototype.refresh = function () {\n this.clear();\n _super.prototype.refresh.call(this);\n };\n /**\n * Increases the cache size if needed\n * @param {number} tileCount Minimum number of tiles needed.\n * @param {import(\"../proj/Projection.js\").default} projection Projection.\n */\n TileSource.prototype.updateCacheSize = function (tileCount, projection) {\n var tileCache = this.getTileCacheForProjection(projection);\n if (tileCount > tileCache.highWaterMark) {\n tileCache.highWaterMark = tileCount;\n }\n };\n /**\n * Marks a tile coord as being used, without triggering a load.\n * @abstract\n * @param {number} z Tile coordinate z.\n * @param {number} x Tile coordinate x.\n * @param {number} y Tile coordinate y.\n * @param {import(\"../proj/Projection.js\").default} projection Projection.\n */\n TileSource.prototype.useTile = function (z, x, y, projection) { };\n return TileSource;\n}(Source));\n/**\n * @classdesc\n * Events emitted by {@link module:ol/source/Tile~TileSource} instances are instances of this\n * type.\n */\nvar TileSourceEvent = /** @class */ (function (_super) {\n __extends(TileSourceEvent, _super);\n /**\n * @param {string} type Type.\n * @param {import(\"../Tile.js\").default} tile The tile.\n */\n function TileSourceEvent(type, tile) {\n var _this = _super.call(this, type) || this;\n /**\n * The tile related to the event.\n * @type {import(\"../Tile.js\").default}\n * @api\n */\n _this.tile = tile;\n return _this;\n }\n return TileSourceEvent;\n}(Event));\nexport { TileSourceEvent };\nexport default TileSource;\n//# sourceMappingURL=Tile.js.map","/**\n * @module ol/tileurlfunction\n */\nimport { assert } from './asserts.js';\nimport { modulo } from './math.js';\nimport { hash as tileCoordHash } from './tilecoord.js';\n/**\n * @param {string} template Template.\n * @param {import(\"./tilegrid/TileGrid.js\").default} tileGrid Tile grid.\n * @return {import(\"./Tile.js\").UrlFunction} Tile URL function.\n */\nexport function createFromTemplate(template, tileGrid) {\n var zRegEx = /\\{z\\}/g;\n var xRegEx = /\\{x\\}/g;\n var yRegEx = /\\{y\\}/g;\n var dashYRegEx = /\\{-y\\}/g;\n return (\n /**\n * @param {import(\"./tilecoord.js\").TileCoord} tileCoord Tile Coordinate.\n * @param {number} pixelRatio Pixel ratio.\n * @param {import(\"./proj/Projection.js\").default} projection Projection.\n * @return {string|undefined} Tile URL.\n */\n function (tileCoord, pixelRatio, projection) {\n if (!tileCoord) {\n return undefined;\n }\n else {\n return template\n .replace(zRegEx, tileCoord[0].toString())\n .replace(xRegEx, tileCoord[1].toString())\n .replace(yRegEx, tileCoord[2].toString())\n .replace(dashYRegEx, function () {\n var z = tileCoord[0];\n var range = tileGrid.getFullTileRange(z);\n assert(range, 55); // The {-y} placeholder requires a tile grid with extent\n var y = range.getHeight() - tileCoord[2] - 1;\n return y.toString();\n });\n }\n });\n}\n/**\n * @param {Array<string>} templates Templates.\n * @param {import(\"./tilegrid/TileGrid.js\").default} tileGrid Tile grid.\n * @return {import(\"./Tile.js\").UrlFunction} Tile URL function.\n */\nexport function createFromTemplates(templates, tileGrid) {\n var len = templates.length;\n var tileUrlFunctions = new Array(len);\n for (var i = 0; i < len; ++i) {\n tileUrlFunctions[i] = createFromTemplate(templates[i], tileGrid);\n }\n return createFromTileUrlFunctions(tileUrlFunctions);\n}\n/**\n * @param {Array<import(\"./Tile.js\").UrlFunction>} tileUrlFunctions Tile URL Functions.\n * @return {import(\"./Tile.js\").UrlFunction} Tile URL function.\n */\nexport function createFromTileUrlFunctions(tileUrlFunctions) {\n if (tileUrlFunctions.length === 1) {\n return tileUrlFunctions[0];\n }\n return (\n /**\n * @param {import(\"./tilecoord.js\").TileCoord} tileCoord Tile Coordinate.\n * @param {number} pixelRatio Pixel ratio.\n * @param {import(\"./proj/Projection.js\").default} projection Projection.\n * @return {string|undefined} Tile URL.\n */\n function (tileCoord, pixelRatio, projection) {\n if (!tileCoord) {\n return undefined;\n }\n else {\n var h = tileCoordHash(tileCoord);\n var index = modulo(h, tileUrlFunctions.length);\n return tileUrlFunctions[index](tileCoord, pixelRatio, projection);\n }\n });\n}\n/**\n * @param {import(\"./tilecoord.js\").TileCoord} tileCoord Tile coordinate.\n * @param {number} pixelRatio Pixel ratio.\n * @param {import(\"./proj/Projection.js\").default} projection Projection.\n * @return {string|undefined} Tile URL.\n */\nexport function nullTileUrlFunction(tileCoord, pixelRatio, projection) {\n return undefined;\n}\n/**\n * @param {string} url URL.\n * @return {Array<string>} Array of urls.\n */\nexport function expandUrl(url) {\n var urls = [];\n var match = /\\{([a-z])-([a-z])\\}/.exec(url);\n if (match) {\n // char range\n var startCharCode = match[1].charCodeAt(0);\n var stopCharCode = match[2].charCodeAt(0);\n var charCode = void 0;\n for (charCode = startCharCode; charCode <= stopCharCode; ++charCode) {\n urls.push(url.replace(match[0], String.fromCharCode(charCode)));\n }\n return urls;\n }\n match = /\\{(\\d+)-(\\d+)\\}/.exec(url);\n if (match) {\n // number range\n var stop_1 = parseInt(match[2], 10);\n for (var i = parseInt(match[1], 10); i <= stop_1; i++) {\n urls.push(url.replace(match[0], i.toString()));\n }\n return urls;\n }\n urls.push(url);\n return urls;\n}\n//# sourceMappingURL=tileurlfunction.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/source/UrlTile\n */\nimport TileEventType from './TileEventType.js';\nimport TileSource, { TileSourceEvent } from './Tile.js';\nimport TileState from '../TileState.js';\nimport { createFromTemplates, expandUrl } from '../tileurlfunction.js';\nimport { getKeyZXY } from '../tilecoord.js';\nimport { getUid } from '../util.js';\n/**\n * @typedef {Object} Options\n * @property {import(\"./Source.js\").AttributionLike} [attributions] Attributions.\n * @property {boolean} [attributionsCollapsible=true] Attributions are collapsible.\n * @property {number} [cacheSize] Cache size.\n * @property {boolean} [opaque=false] Whether the layer is opaque.\n * @property {import(\"../proj.js\").ProjectionLike} [projection] Projection.\n * @property {import(\"./State.js\").default} [state] State.\n * @property {import(\"../tilegrid/TileGrid.js\").default} [tileGrid] TileGrid.\n * @property {import(\"../Tile.js\").LoadFunction} tileLoadFunction TileLoadFunction.\n * @property {number} [tilePixelRatio] TilePixelRatio.\n * @property {import(\"../Tile.js\").UrlFunction} [tileUrlFunction] TileUrlFunction.\n * @property {string} [url] Url.\n * @property {Array<string>} [urls] Urls.\n * @property {boolean} [wrapX=true] WrapX.\n * @property {number} [transition] Transition.\n * @property {string} [key] Key.\n * @property {number|import(\"../array.js\").NearestDirectionFunction} [zDirection=0] ZDirection.\n */\n/**\n * @classdesc\n * Base class for sources providing tiles divided into a tile grid over http.\n *\n * @fires import(\"./Tile.js\").TileSourceEvent\n */\nvar UrlTile = /** @class */ (function (_super) {\n __extends(UrlTile, _super);\n /**\n * @param {Options} options Image tile options.\n */\n function UrlTile(options) {\n var _this = _super.call(this, {\n attributions: options.attributions,\n cacheSize: options.cacheSize,\n opaque: options.opaque,\n projection: options.projection,\n state: options.state,\n tileGrid: options.tileGrid,\n tilePixelRatio: options.tilePixelRatio,\n wrapX: options.wrapX,\n transition: options.transition,\n key: options.key,\n attributionsCollapsible: options.attributionsCollapsible,\n zDirection: options.zDirection,\n }) || this;\n /**\n * @private\n * @type {boolean}\n */\n _this.generateTileUrlFunction_ =\n _this.tileUrlFunction === UrlTile.prototype.tileUrlFunction;\n /**\n * @protected\n * @type {import(\"../Tile.js\").LoadFunction}\n */\n _this.tileLoadFunction = options.tileLoadFunction;\n if (options.tileUrlFunction) {\n _this.tileUrlFunction = options.tileUrlFunction;\n }\n /**\n * @protected\n * @type {!Array<string>|null}\n */\n _this.urls = null;\n if (options.urls) {\n _this.setUrls(options.urls);\n }\n else if (options.url) {\n _this.setUrl(options.url);\n }\n /**\n * @private\n * @type {!Object<string, boolean>}\n */\n _this.tileLoadingKeys_ = {};\n return _this;\n }\n /**\n * Return the tile load function of the source.\n * @return {import(\"../Tile.js\").LoadFunction} TileLoadFunction\n * @api\n */\n UrlTile.prototype.getTileLoadFunction = function () {\n return this.tileLoadFunction;\n };\n /**\n * Return the tile URL function of the source.\n * @return {import(\"../Tile.js\").UrlFunction} TileUrlFunction\n * @api\n */\n UrlTile.prototype.getTileUrlFunction = function () {\n return Object.getPrototypeOf(this).tileUrlFunction === this.tileUrlFunction\n ? this.tileUrlFunction.bind(this)\n : this.tileUrlFunction;\n };\n /**\n * Return the URLs used for this source.\n * When a tileUrlFunction is used instead of url or urls,\n * null will be returned.\n * @return {!Array<string>|null} URLs.\n * @api\n */\n UrlTile.prototype.getUrls = function () {\n return this.urls;\n };\n /**\n * Handle tile change events.\n * @param {import(\"../events/Event.js\").default} event Event.\n * @protected\n */\n UrlTile.prototype.handleTileChange = function (event) {\n var tile = /** @type {import(\"../Tile.js\").default} */ (event.target);\n var uid = getUid(tile);\n var tileState = tile.getState();\n var type;\n if (tileState == TileState.LOADING) {\n this.tileLoadingKeys_[uid] = true;\n type = TileEventType.TILELOADSTART;\n }\n else if (uid in this.tileLoadingKeys_) {\n delete this.tileLoadingKeys_[uid];\n type =\n tileState == TileState.ERROR\n ? TileEventType.TILELOADERROR\n : tileState == TileState.LOADED\n ? TileEventType.TILELOADEND\n : undefined;\n }\n if (type != undefined) {\n this.dispatchEvent(new TileSourceEvent(type, tile));\n }\n };\n /**\n * Set the tile load function of the source.\n * @param {import(\"../Tile.js\").LoadFunction} tileLoadFunction Tile load function.\n * @api\n */\n UrlTile.prototype.setTileLoadFunction = function (tileLoadFunction) {\n this.tileCache.clear();\n this.tileLoadFunction = tileLoadFunction;\n this.changed();\n };\n /**\n * Set the tile URL function of the source.\n * @param {import(\"../Tile.js\").UrlFunction} tileUrlFunction Tile URL function.\n * @param {string} [key] Optional new tile key for the source.\n * @api\n */\n UrlTile.prototype.setTileUrlFunction = function (tileUrlFunction, key) {\n this.tileUrlFunction = tileUrlFunction;\n this.tileCache.pruneExceptNewestZ();\n if (typeof key !== 'undefined') {\n this.setKey(key);\n }\n else {\n this.changed();\n }\n };\n /**\n * Set the URL to use for requests.\n * @param {string} url URL.\n * @api\n */\n UrlTile.prototype.setUrl = function (url) {\n var urls = expandUrl(url);\n this.urls = urls;\n this.setUrls(urls);\n };\n /**\n * Set the URLs to use for requests.\n * @param {Array<string>} urls URLs.\n * @api\n */\n UrlTile.prototype.setUrls = function (urls) {\n this.urls = urls;\n var key = urls.join('\\n');\n if (this.generateTileUrlFunction_) {\n this.setTileUrlFunction(createFromTemplates(urls, this.tileGrid), key);\n }\n else {\n this.setKey(key);\n }\n };\n /**\n * @param {import(\"../tilecoord.js\").TileCoord} tileCoord Tile coordinate.\n * @param {number} pixelRatio Pixel ratio.\n * @param {import(\"../proj/Projection.js\").default} projection Projection.\n * @return {string|undefined} Tile URL.\n */\n UrlTile.prototype.tileUrlFunction = function (tileCoord, pixelRatio, projection) {\n return undefined;\n };\n /**\n * Marks a tile coord as being used, without triggering a load.\n * @param {number} z Tile coordinate z.\n * @param {number} x Tile coordinate x.\n * @param {number} y Tile coordinate y.\n */\n UrlTile.prototype.useTile = function (z, x, y) {\n var tileCoordKey = getKeyZXY(z, x, y);\n if (this.tileCache.containsKey(tileCoordKey)) {\n this.tileCache.get(tileCoordKey);\n }\n };\n return UrlTile;\n}(TileSource));\nexport default UrlTile;\n//# sourceMappingURL=UrlTile.js.map","/**\n * @module ol/source/TileEventType\n */\n/**\n * @enum {string}\n */\nexport default {\n /**\n * Triggered when a tile starts loading.\n * @event module:ol/source/Tile.TileSourceEvent#tileloadstart\n * @api\n */\n TILELOADSTART: 'tileloadstart',\n /**\n * Triggered when a tile finishes loading, either when its data is loaded,\n * or when loading was aborted because the tile is no longer needed.\n * @event module:ol/source/Tile.TileSourceEvent#tileloadend\n * @api\n */\n TILELOADEND: 'tileloadend',\n /**\n * Triggered if tile loading results in an error.\n * @event module:ol/source/Tile.TileSourceEvent#tileloaderror\n * @api\n */\n TILELOADERROR: 'tileloaderror',\n};\n/**\n * @typedef {'tileloadstart'|'tileloadend'|'tileloaderror'} TileSourceEventTypes\n */\n//# sourceMappingURL=TileEventType.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/source/TileImage\n */\nimport EventType from '../events/EventType.js';\nimport ImageTile from '../ImageTile.js';\nimport ReprojTile from '../reproj/Tile.js';\nimport TileCache from '../TileCache.js';\nimport TileState from '../TileState.js';\nimport UrlTile from './UrlTile.js';\nimport { ENABLE_RASTER_REPROJECTION } from '../reproj/common.js';\nimport { IMAGE_SMOOTHING_DISABLED } from './common.js';\nimport { equivalent, get as getProjection } from '../proj.js';\nimport { getKey, getKeyZXY } from '../tilecoord.js';\nimport { getForProjection as getTileGridForProjection } from '../tilegrid.js';\nimport { getUid } from '../util.js';\n/**\n * @typedef {Object} Options\n * @property {import(\"./Source.js\").AttributionLike} [attributions] Attributions.\n * @property {boolean} [attributionsCollapsible=true] Attributions are collapsible.\n * @property {number} [cacheSize] Initial tile cache size. Will auto-grow to hold at least the number of tiles in the viewport.\n * @property {null|string} [crossOrigin] The `crossOrigin` attribute for loaded images. Note that\n * you must provide a `crossOrigin` value if you want to access pixel data with the Canvas renderer.\n * See https://developer.mozilla.org/en-US/docs/Web/HTML/CORS_enabled_image for more detail.\n * @property {boolean} [imageSmoothing=true] Enable image smoothing.\n * @property {boolean} [opaque=false] Whether the layer is opaque.\n * @property {import(\"../proj.js\").ProjectionLike} [projection] Projection. Default is the view projection.\n * @property {number} [reprojectionErrorThreshold=0.5] Maximum allowed reprojection error (in pixels).\n * Higher values can increase reprojection performance, but decrease precision.\n * @property {import(\"./State.js\").default} [state] Source state.\n * @property {typeof import(\"../ImageTile.js\").default} [tileClass] Class used to instantiate image tiles.\n * Default is {@link module:ol/ImageTile~ImageTile}.\n * @property {import(\"../tilegrid/TileGrid.js\").default} [tileGrid] Tile grid.\n * @property {import(\"../Tile.js\").LoadFunction} [tileLoadFunction] Optional function to load a tile given a URL. The default is\n * ```js\n * function(imageTile, src) {\n * imageTile.getImage().src = src;\n * };\n * ```\n * @property {number} [tilePixelRatio=1] The pixel ratio used by the tile service. For example, if the tile\n * service advertizes 256px by 256px tiles but actually sends 512px\n * by 512px images (for retina/hidpi devices) then `tilePixelRatio`\n * should be set to `2`.\n * @property {import(\"../Tile.js\").UrlFunction} [tileUrlFunction] Optional function to get tile URL given a tile coordinate and the projection.\n * @property {string} [url] URL template. Must include `{x}`, `{y}` or `{-y}`, and `{z}` placeholders.\n * A `{?-?}` template pattern, for example `subdomain{a-f}.domain.com`, may be\n * used instead of defining each one separately in the `urls` option.\n * @property {Array<string>} [urls] An array of URL templates.\n * @property {boolean} [wrapX] Whether to wrap the world horizontally. The default, is to\n * request out-of-bounds tiles from the server. When set to `false`, only one\n * world will be rendered. When set to `true`, tiles will be requested for one\n * world only, but they will be wrapped horizontally to render multiple worlds.\n * @property {number} [transition] Duration of the opacity transition for rendering.\n * To disable the opacity transition, pass `transition: 0`.\n * @property {string} [key] Optional tile key for proper cache fetching\n * @property {number|import(\"../array.js\").NearestDirectionFunction} [zDirection=0]\n * Choose whether to use tiles with a higher or lower zoom level when between integer\n * zoom levels. See {@link module:ol/tilegrid/TileGrid~TileGrid#getZForResolution}.\n */\n/**\n * @classdesc\n * Base class for sources providing images divided into a tile grid.\n *\n * @fires import(\"./Tile.js\").TileSourceEvent\n * @api\n */\nvar TileImage = /** @class */ (function (_super) {\n __extends(TileImage, _super);\n /**\n * @param {!Options} options Image tile options.\n */\n function TileImage(options) {\n var _this = _super.call(this, {\n attributions: options.attributions,\n cacheSize: options.cacheSize,\n opaque: options.opaque,\n projection: options.projection,\n state: options.state,\n tileGrid: options.tileGrid,\n tileLoadFunction: options.tileLoadFunction\n ? options.tileLoadFunction\n : defaultTileLoadFunction,\n tilePixelRatio: options.tilePixelRatio,\n tileUrlFunction: options.tileUrlFunction,\n url: options.url,\n urls: options.urls,\n wrapX: options.wrapX,\n transition: options.transition,\n key: options.key,\n attributionsCollapsible: options.attributionsCollapsible,\n zDirection: options.zDirection,\n }) || this;\n /**\n * @protected\n * @type {?string}\n */\n _this.crossOrigin =\n options.crossOrigin !== undefined ? options.crossOrigin : null;\n /**\n * @protected\n * @type {typeof ImageTile}\n */\n _this.tileClass =\n options.tileClass !== undefined ? options.tileClass : ImageTile;\n /**\n * @protected\n * @type {!Object<string, TileCache>}\n */\n _this.tileCacheForProjection = {};\n /**\n * @protected\n * @type {!Object<string, import(\"../tilegrid/TileGrid.js\").default>}\n */\n _this.tileGridForProjection = {};\n /**\n * @private\n * @type {number|undefined}\n */\n _this.reprojectionErrorThreshold_ = options.reprojectionErrorThreshold;\n /**\n * @private\n * @type {object|undefined}\n */\n _this.contextOptions_ =\n options.imageSmoothing === false ? IMAGE_SMOOTHING_DISABLED : undefined;\n /**\n * @private\n * @type {boolean}\n */\n _this.renderReprojectionEdges_ = false;\n return _this;\n }\n /**\n * @return {boolean} Can expire cache.\n */\n TileImage.prototype.canExpireCache = function () {\n if (!ENABLE_RASTER_REPROJECTION) {\n return _super.prototype.canExpireCache.call(this);\n }\n if (this.tileCache.canExpireCache()) {\n return true;\n }\n else {\n for (var key in this.tileCacheForProjection) {\n if (this.tileCacheForProjection[key].canExpireCache()) {\n return true;\n }\n }\n }\n return false;\n };\n /**\n * @param {import(\"../proj/Projection.js\").default} projection Projection.\n * @param {!Object<string, boolean>} usedTiles Used tiles.\n */\n TileImage.prototype.expireCache = function (projection, usedTiles) {\n if (!ENABLE_RASTER_REPROJECTION) {\n _super.prototype.expireCache.call(this, projection, usedTiles);\n return;\n }\n var usedTileCache = this.getTileCacheForProjection(projection);\n this.tileCache.expireCache(this.tileCache == usedTileCache ? usedTiles : {});\n for (var id in this.tileCacheForProjection) {\n var tileCache = this.tileCacheForProjection[id];\n tileCache.expireCache(tileCache == usedTileCache ? usedTiles : {});\n }\n };\n /**\n * @return {Object|undefined} Context options.\n */\n TileImage.prototype.getContextOptions = function () {\n return this.contextOptions_;\n };\n /**\n * @param {import(\"../proj/Projection.js\").default} projection Projection.\n * @return {number} Gutter.\n */\n TileImage.prototype.getGutterForProjection = function (projection) {\n if (ENABLE_RASTER_REPROJECTION &&\n this.getProjection() &&\n projection &&\n !equivalent(this.getProjection(), projection)) {\n return 0;\n }\n else {\n return this.getGutter();\n }\n };\n /**\n * @return {number} Gutter.\n */\n TileImage.prototype.getGutter = function () {\n return 0;\n };\n /**\n * Return the key to be used for all tiles in the source.\n * @return {string} The key for all tiles.\n * @protected\n */\n TileImage.prototype.getKey = function () {\n return (_super.prototype.getKey.call(this) +\n (this.contextOptions_ ? '\\n' + JSON.stringify(this.contextOptions_) : ''));\n };\n /**\n * @param {import(\"../proj/Projection.js\").default} projection Projection.\n * @return {boolean} Opaque.\n */\n TileImage.prototype.getOpaque = function (projection) {\n if (ENABLE_RASTER_REPROJECTION &&\n this.getProjection() &&\n projection &&\n !equivalent(this.getProjection(), projection)) {\n return false;\n }\n else {\n return _super.prototype.getOpaque.call(this, projection);\n }\n };\n /**\n * @param {import(\"../proj/Projection.js\").default} projection Projection.\n * @return {!import(\"../tilegrid/TileGrid.js\").default} Tile grid.\n */\n TileImage.prototype.getTileGridForProjection = function (projection) {\n if (!ENABLE_RASTER_REPROJECTION) {\n return _super.prototype.getTileGridForProjection.call(this, projection);\n }\n var thisProj = this.getProjection();\n if (this.tileGrid && (!thisProj || equivalent(thisProj, projection))) {\n return this.tileGrid;\n }\n else {\n var projKey = getUid(projection);\n if (!(projKey in this.tileGridForProjection)) {\n this.tileGridForProjection[projKey] =\n getTileGridForProjection(projection);\n }\n return this.tileGridForProjection[projKey];\n }\n };\n /**\n * @param {import(\"../proj/Projection.js\").default} projection Projection.\n * @return {import(\"../TileCache.js\").default} Tile cache.\n */\n TileImage.prototype.getTileCacheForProjection = function (projection) {\n if (!ENABLE_RASTER_REPROJECTION) {\n return _super.prototype.getTileCacheForProjection.call(this, projection);\n }\n var thisProj = this.getProjection();\n if (!thisProj || equivalent(thisProj, projection)) {\n return this.tileCache;\n }\n else {\n var projKey = getUid(projection);\n if (!(projKey in this.tileCacheForProjection)) {\n this.tileCacheForProjection[projKey] = new TileCache(this.tileCache.highWaterMark);\n }\n return this.tileCacheForProjection[projKey];\n }\n };\n /**\n * @param {number} z Tile coordinate z.\n * @param {number} x Tile coordinate x.\n * @param {number} y Tile coordinate y.\n * @param {number} pixelRatio Pixel ratio.\n * @param {import(\"../proj/Projection.js\").default} projection Projection.\n * @param {string} key The key set on the tile.\n * @return {!import(\"../Tile.js\").default} Tile.\n * @private\n */\n TileImage.prototype.createTile_ = function (z, x, y, pixelRatio, projection, key) {\n var tileCoord = [z, x, y];\n var urlTileCoord = this.getTileCoordForTileUrlFunction(tileCoord, projection);\n var tileUrl = urlTileCoord\n ? this.tileUrlFunction(urlTileCoord, pixelRatio, projection)\n : undefined;\n var tile = new this.tileClass(tileCoord, tileUrl !== undefined ? TileState.IDLE : TileState.EMPTY, tileUrl !== undefined ? tileUrl : '', this.crossOrigin, this.tileLoadFunction, this.tileOptions);\n tile.key = key;\n tile.addEventListener(EventType.CHANGE, this.handleTileChange.bind(this));\n return tile;\n };\n /**\n * @param {number} z Tile coordinate z.\n * @param {number} x Tile coordinate x.\n * @param {number} y Tile coordinate y.\n * @param {number} pixelRatio Pixel ratio.\n * @param {import(\"../proj/Projection.js\").default} projection Projection.\n * @return {!import(\"../Tile.js\").default} Tile.\n */\n TileImage.prototype.getTile = function (z, x, y, pixelRatio, projection) {\n var sourceProjection = this.getProjection();\n if (!ENABLE_RASTER_REPROJECTION ||\n !sourceProjection ||\n !projection ||\n equivalent(sourceProjection, projection)) {\n return this.getTileInternal(z, x, y, pixelRatio, sourceProjection || projection);\n }\n else {\n var cache = this.getTileCacheForProjection(projection);\n var tileCoord = [z, x, y];\n var tile = void 0;\n var tileCoordKey = getKey(tileCoord);\n if (cache.containsKey(tileCoordKey)) {\n tile = cache.get(tileCoordKey);\n }\n var key = this.getKey();\n if (tile && tile.key == key) {\n return tile;\n }\n else {\n var sourceTileGrid = this.getTileGridForProjection(sourceProjection);\n var targetTileGrid = this.getTileGridForProjection(projection);\n var wrappedTileCoord = this.getTileCoordForTileUrlFunction(tileCoord, projection);\n var newTile = new ReprojTile(sourceProjection, sourceTileGrid, projection, targetTileGrid, tileCoord, wrappedTileCoord, this.getTilePixelRatio(pixelRatio), this.getGutter(), function (z, x, y, pixelRatio) {\n return this.getTileInternal(z, x, y, pixelRatio, sourceProjection);\n }.bind(this), this.reprojectionErrorThreshold_, this.renderReprojectionEdges_, this.contextOptions_);\n newTile.key = key;\n if (tile) {\n newTile.interimTile = tile;\n newTile.refreshInterimChain();\n cache.replace(tileCoordKey, newTile);\n }\n else {\n cache.set(tileCoordKey, newTile);\n }\n return newTile;\n }\n }\n };\n /**\n * @param {number} z Tile coordinate z.\n * @param {number} x Tile coordinate x.\n * @param {number} y Tile coordinate y.\n * @param {number} pixelRatio Pixel ratio.\n * @param {!import(\"../proj/Projection.js\").default} projection Projection.\n * @return {!import(\"../Tile.js\").default} Tile.\n * @protected\n */\n TileImage.prototype.getTileInternal = function (z, x, y, pixelRatio, projection) {\n var tile = null;\n var tileCoordKey = getKeyZXY(z, x, y);\n var key = this.getKey();\n if (!this.tileCache.containsKey(tileCoordKey)) {\n tile = this.createTile_(z, x, y, pixelRatio, projection, key);\n this.tileCache.set(tileCoordKey, tile);\n }\n else {\n tile = this.tileCache.get(tileCoordKey);\n if (tile.key != key) {\n // The source's params changed. If the tile has an interim tile and if we\n // can use it then we use it. Otherwise we create a new tile. In both\n // cases we attempt to assign an interim tile to the new tile.\n var interimTile = tile;\n tile = this.createTile_(z, x, y, pixelRatio, projection, key);\n //make the new tile the head of the list,\n if (interimTile.getState() == TileState.IDLE) {\n //the old tile hasn't begun loading yet, and is now outdated, so we can simply discard it\n tile.interimTile = interimTile.interimTile;\n }\n else {\n tile.interimTile = interimTile;\n }\n tile.refreshInterimChain();\n this.tileCache.replace(tileCoordKey, tile);\n }\n }\n return tile;\n };\n /**\n * Sets whether to render reprojection edges or not (usually for debugging).\n * @param {boolean} render Render the edges.\n * @api\n */\n TileImage.prototype.setRenderReprojectionEdges = function (render) {\n if (!ENABLE_RASTER_REPROJECTION ||\n this.renderReprojectionEdges_ == render) {\n return;\n }\n this.renderReprojectionEdges_ = render;\n for (var id in this.tileCacheForProjection) {\n this.tileCacheForProjection[id].clear();\n }\n this.changed();\n };\n /**\n * Sets the tile grid to use when reprojecting the tiles to the given\n * projection instead of the default tile grid for the projection.\n *\n * This can be useful when the default tile grid cannot be created\n * (e.g. projection has no extent defined) or\n * for optimization reasons (custom tile size, resolutions, ...).\n *\n * @param {import(\"../proj.js\").ProjectionLike} projection Projection.\n * @param {import(\"../tilegrid/TileGrid.js\").default} tilegrid Tile grid to use for the projection.\n * @api\n */\n TileImage.prototype.setTileGridForProjection = function (projection, tilegrid) {\n if (ENABLE_RASTER_REPROJECTION) {\n var proj = getProjection(projection);\n if (proj) {\n var projKey = getUid(proj);\n if (!(projKey in this.tileGridForProjection)) {\n this.tileGridForProjection[projKey] = tilegrid;\n }\n }\n }\n };\n return TileImage;\n}(UrlTile));\n/**\n * @param {ImageTile} imageTile Image tile.\n * @param {string} src Source.\n */\nfunction defaultTileLoadFunction(imageTile, src) {\n /** @type {HTMLImageElement|HTMLVideoElement} */ (imageTile.getImage()).src =\n src;\n}\nexport default TileImage;\n//# sourceMappingURL=TileImage.js.map","/**\n * @module ol/source/XYZ\n */\nvar __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\nimport TileImage from './TileImage.js';\nimport { createXYZ, extentFromProjection } from '../tilegrid.js';\n/**\n * @typedef {Object} Options\n * @property {import(\"./Source.js\").AttributionLike} [attributions] Attributions.\n * @property {boolean} [attributionsCollapsible=true] Attributions are collapsible.\n * @property {number} [cacheSize] Initial tile cache size. Will auto-grow to hold at least the number of tiles in the viewport.\n * @property {null|string} [crossOrigin] The `crossOrigin` attribute for loaded images. Note that\n * you must provide a `crossOrigin` value if you want to access pixel data with the Canvas renderer.\n * See https://developer.mozilla.org/en-US/docs/Web/HTML/CORS_enabled_image for more detail.\n * @property {boolean} [imageSmoothing=true] Enable image smoothing.\n * @property {boolean} [opaque=false] Whether the layer is opaque.\n * @property {import(\"../proj.js\").ProjectionLike} [projection='EPSG:3857'] Projection.\n * @property {number} [reprojectionErrorThreshold=0.5] Maximum allowed reprojection error (in pixels).\n * Higher values can increase reprojection performance, but decrease precision.\n * @property {number} [maxZoom=42] Optional max zoom level. Not used if `tileGrid` is provided.\n * @property {number} [minZoom=0] Optional min zoom level. Not used if `tileGrid` is provided.\n * @property {number} [maxResolution] Optional tile grid resolution at level zero. Not used if `tileGrid` is provided.\n * @property {import(\"../tilegrid/TileGrid.js\").default} [tileGrid] Tile grid.\n * @property {import(\"../Tile.js\").LoadFunction} [tileLoadFunction] Optional function to load a tile given a URL. The default is\n * ```js\n * function(imageTile, src) {\n * imageTile.getImage().src = src;\n * };\n * ```\n * @property {number} [tilePixelRatio=1] The pixel ratio used by the tile service.\n * For example, if the tile service advertizes 256px by 256px tiles but actually sends 512px\n * by 512px images (for retina/hidpi devices) then `tilePixelRatio`\n * should be set to `2`.\n * @property {number|import(\"../size.js\").Size} [tileSize=[256, 256]] The tile size used by the tile service.\n * Not used if `tileGrid` is provided.\n * @property {import(\"../Tile.js\").UrlFunction} [tileUrlFunction] Optional function to get\n * tile URL given a tile coordinate and the projection.\n * Required if `url` or `urls` are not provided.\n * @property {string} [url] URL template. Must include `{x}`, `{y}` or `{-y}`,\n * and `{z}` placeholders. A `{?-?}` template pattern, for example `subdomain{a-f}.domain.com`,\n * may be used instead of defining each one separately in the `urls` option.\n * @property {Array<string>} [urls] An array of URL templates.\n * @property {boolean} [wrapX=true] Whether to wrap the world horizontally.\n * @property {number} [transition=250] Duration of the opacity transition for rendering.\n * To disable the opacity transition, pass `transition: 0`.\n * @property {number|import(\"../array.js\").NearestDirectionFunction} [zDirection=0]\n * Choose whether to use tiles with a higher or lower zoom level when between integer\n * zoom levels. See {@link module:ol/tilegrid/TileGrid~TileGrid#getZForResolution}.\n */\n/**\n * @classdesc\n * Layer source for tile data with URLs in a set XYZ format that are\n * defined in a URL template. By default, this follows the widely-used\n * Google grid where `x` 0 and `y` 0 are in the top left. Grids like\n * TMS where `x` 0 and `y` 0 are in the bottom left can be used by\n * using the `{-y}` placeholder in the URL template, so long as the\n * source does not have a custom tile grid. In this case\n * a `tileUrlFunction` can be used, such as:\n * ```js\n * tileUrlFunction: function(coordinate) {\n * return 'http://mapserver.com/' + coordinate[0] + '/' +\n * coordinate[1] + '/' + (-coordinate[2] - 1) + '.png';\n * }\n * ```\n * @api\n */\nvar XYZ = /** @class */ (function (_super) {\n __extends(XYZ, _super);\n /**\n * @param {Options} [opt_options] XYZ options.\n */\n function XYZ(opt_options) {\n var _this = this;\n var options = opt_options || {};\n var projection = options.projection !== undefined ? options.projection : 'EPSG:3857';\n var tileGrid = options.tileGrid !== undefined\n ? options.tileGrid\n : createXYZ({\n extent: extentFromProjection(projection),\n maxResolution: options.maxResolution,\n maxZoom: options.maxZoom,\n minZoom: options.minZoom,\n tileSize: options.tileSize,\n });\n _this = _super.call(this, {\n attributions: options.attributions,\n cacheSize: options.cacheSize,\n crossOrigin: options.crossOrigin,\n imageSmoothing: options.imageSmoothing,\n opaque: options.opaque,\n projection: projection,\n reprojectionErrorThreshold: options.reprojectionErrorThreshold,\n tileGrid: tileGrid,\n tileLoadFunction: options.tileLoadFunction,\n tilePixelRatio: options.tilePixelRatio,\n tileUrlFunction: options.tileUrlFunction,\n url: options.url,\n urls: options.urls,\n wrapX: options.wrapX !== undefined ? options.wrapX : true,\n transition: options.transition,\n attributionsCollapsible: options.attributionsCollapsible,\n zDirection: options.zDirection,\n }) || this;\n return _this;\n }\n return XYZ;\n}(TileImage));\nexport default XYZ;\n//# sourceMappingURL=XYZ.js.map","/**\n * @module ol/source/OSM\n */\nvar __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\nimport XYZ from './XYZ.js';\n/**\n * The attribution containing a link to the OpenStreetMap Copyright and License\n * page.\n * @const\n * @type {string}\n * @api\n */\nexport var ATTRIBUTION = '&#169; ' +\n '<a href=\"https://www.openstreetmap.org/copyright\" target=\"_blank\">OpenStreetMap</a> ' +\n 'contributors.';\n/**\n * @typedef {Object} Options\n * @property {import(\"./Source.js\").AttributionLike} [attributions] Attributions.\n * @property {number} [cacheSize] Initial tile cache size. Will auto-grow to hold at least the number of tiles in the viewport.\n * @property {null|string} [crossOrigin='anonymous'] The `crossOrigin` attribute for loaded images. Note that\n * you must provide a `crossOrigin` value if you want to access pixel data with the Canvas renderer.\n * See https://developer.mozilla.org/en-US/docs/Web/HTML/CORS_enabled_image for more detail.\n * @property {boolean} [imageSmoothing=true] Enable image smoothing.\n * @property {number} [maxZoom=19] Max zoom.\n * @property {boolean} [opaque=true] Whether the layer is opaque.\n * @property {number} [reprojectionErrorThreshold=0.5] Maximum allowed reprojection error (in pixels).\n * Higher values can increase reprojection performance, but decrease precision.\n * @property {import(\"../Tile.js\").LoadFunction} [tileLoadFunction] Optional function to load a tile given a URL. The default is\n * ```js\n * function(imageTile, src) {\n * imageTile.getImage().src = src;\n * };\n * ```\n * @property {number} [transition=250] Duration of the opacity transition for rendering.\n * To disable the opacity transition, pass `transition: 0`.\n * @property {string} [url='https://{a-c}.tile.openstreetmap.org/{z}/{x}/{y}.png'] URL template.\n * Must include `{x}`, `{y}` or `{-y}`, and `{z}` placeholders.\n * @property {boolean} [wrapX=true] Whether to wrap the world horizontally.\n * @property {number|import(\"../array.js\").NearestDirectionFunction} [zDirection=0]\n * Choose whether to use tiles with a higher or lower zoom level when between integer\n * zoom levels. See {@link module:ol/tilegrid/TileGrid~TileGrid#getZForResolution}.\n */\n/**\n * @classdesc\n * Layer source for the OpenStreetMap tile server.\n * @api\n */\nvar OSM = /** @class */ (function (_super) {\n __extends(OSM, _super);\n /**\n * @param {Options} [opt_options] Open Street Map options.\n */\n function OSM(opt_options) {\n var _this = this;\n var options = opt_options || {};\n var attributions;\n if (options.attributions !== undefined) {\n attributions = options.attributions;\n }\n else {\n attributions = [ATTRIBUTION];\n }\n var crossOrigin = options.crossOrigin !== undefined ? options.crossOrigin : 'anonymous';\n var url = options.url !== undefined\n ? options.url\n : 'https://{a-c}.tile.openstreetmap.org/{z}/{x}/{y}.png';\n _this = _super.call(this, {\n attributions: attributions,\n attributionsCollapsible: false,\n cacheSize: options.cacheSize,\n crossOrigin: crossOrigin,\n imageSmoothing: options.imageSmoothing,\n maxZoom: options.maxZoom !== undefined ? options.maxZoom : 19,\n opaque: options.opaque !== undefined ? options.opaque : true,\n reprojectionErrorThreshold: options.reprojectionErrorThreshold,\n tileLoadFunction: options.tileLoadFunction,\n transition: options.transition,\n url: url,\n wrapX: options.wrapX,\n zDirection: options.zDirection,\n }) || this;\n return _this;\n }\n return OSM;\n}(XYZ));\nexport default OSM;\n//# sourceMappingURL=OSM.js.map","/**\n * @module ol/CollectionEventType\n */\n/**\n * @enum {string}\n */\nexport default {\n /**\n * Triggered when an item is added to the collection.\n * @event module:ol/Collection.CollectionEvent#add\n * @api\n */\n ADD: 'add',\n /**\n * Triggered when an item is removed from the collection.\n * @event module:ol/Collection.CollectionEvent#remove\n * @api\n */\n REMOVE: 'remove',\n};\n//# sourceMappingURL=CollectionEventType.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/Collection\n */\nimport AssertionError from './AssertionError.js';\nimport BaseObject from './Object.js';\nimport CollectionEventType from './CollectionEventType.js';\nimport Event from './events/Event.js';\n/**\n * @enum {string}\n * @private\n */\nvar Property = {\n LENGTH: 'length',\n};\n/**\n * @classdesc\n * Events emitted by {@link module:ol/Collection~Collection} instances are instances of this\n * type.\n */\nvar CollectionEvent = /** @class */ (function (_super) {\n __extends(CollectionEvent, _super);\n /**\n * @param {import(\"./CollectionEventType.js\").default} type Type.\n * @param {*} [opt_element] Element.\n * @param {number} [opt_index] The index of the added or removed element.\n */\n function CollectionEvent(type, opt_element, opt_index) {\n var _this = _super.call(this, type) || this;\n /**\n * The element that is added to or removed from the collection.\n * @type {*}\n * @api\n */\n _this.element = opt_element;\n /**\n * The index of the added or removed element.\n * @type {number}\n * @api\n */\n _this.index = opt_index;\n return _this;\n }\n return CollectionEvent;\n}(Event));\nexport { CollectionEvent };\n/***\n * @template Return\n * @typedef {import(\"./Observable\").OnSignature<import(\"./Observable\").EventTypes, import(\"./events/Event.js\").default, Return> &\n * import(\"./Observable\").OnSignature<import(\"./ObjectEventType\").Types|'change:length', import(\"./Object\").ObjectEvent, Return> &\n * import(\"./Observable\").OnSignature<'add'|'remove', CollectionEvent, Return> &\n * import(\"./Observable\").CombinedOnSignature<import(\"./Observable\").EventTypes|import(\"./ObjectEventType\").Types|\n * 'change:length'|'add'|'remove',Return>} CollectionOnSignature\n */\n/**\n * @typedef {Object} Options\n * @property {boolean} [unique=false] Disallow the same item from being added to\n * the collection twice.\n */\n/**\n * @classdesc\n * An expanded version of standard JS Array, adding convenience methods for\n * manipulation. Add and remove changes to the Collection trigger a Collection\n * event. Note that this does not cover changes to the objects _within_ the\n * Collection; they trigger events on the appropriate object, not on the\n * Collection as a whole.\n *\n * @fires CollectionEvent\n *\n * @template T\n * @api\n */\nvar Collection = /** @class */ (function (_super) {\n __extends(Collection, _super);\n /**\n * @param {Array<T>} [opt_array] Array.\n * @param {Options} [opt_options] Collection options.\n */\n function Collection(opt_array, opt_options) {\n var _this = _super.call(this) || this;\n /***\n * @type {CollectionOnSignature<import(\"./events\").EventsKey>}\n */\n _this.on;\n /***\n * @type {CollectionOnSignature<import(\"./events\").EventsKey>}\n */\n _this.once;\n /***\n * @type {CollectionOnSignature<void>}\n */\n _this.un;\n var options = opt_options || {};\n /**\n * @private\n * @type {boolean}\n */\n _this.unique_ = !!options.unique;\n /**\n * @private\n * @type {!Array<T>}\n */\n _this.array_ = opt_array ? opt_array : [];\n if (_this.unique_) {\n for (var i = 0, ii = _this.array_.length; i < ii; ++i) {\n _this.assertUnique_(_this.array_[i], i);\n }\n }\n _this.updateLength_();\n return _this;\n }\n /**\n * Remove all elements from the collection.\n * @api\n */\n Collection.prototype.clear = function () {\n while (this.getLength() > 0) {\n this.pop();\n }\n };\n /**\n * Add elements to the collection. This pushes each item in the provided array\n * to the end of the collection.\n * @param {!Array<T>} arr Array.\n * @return {Collection<T>} This collection.\n * @api\n */\n Collection.prototype.extend = function (arr) {\n for (var i = 0, ii = arr.length; i < ii; ++i) {\n this.push(arr[i]);\n }\n return this;\n };\n /**\n * Iterate over each element, calling the provided callback.\n * @param {function(T, number, Array<T>): *} f The function to call\n * for every element. This function takes 3 arguments (the element, the\n * index and the array). The return value is ignored.\n * @api\n */\n Collection.prototype.forEach = function (f) {\n var array = this.array_;\n for (var i = 0, ii = array.length; i < ii; ++i) {\n f(array[i], i, array);\n }\n };\n /**\n * Get a reference to the underlying Array object. Warning: if the array\n * is mutated, no events will be dispatched by the collection, and the\n * collection's \"length\" property won't be in sync with the actual length\n * of the array.\n * @return {!Array<T>} Array.\n * @api\n */\n Collection.prototype.getArray = function () {\n return this.array_;\n };\n /**\n * Get the element at the provided index.\n * @param {number} index Index.\n * @return {T} Element.\n * @api\n */\n Collection.prototype.item = function (index) {\n return this.array_[index];\n };\n /**\n * Get the length of this collection.\n * @return {number} The length of the array.\n * @observable\n * @api\n */\n Collection.prototype.getLength = function () {\n return this.get(Property.LENGTH);\n };\n /**\n * Insert an element at the provided index.\n * @param {number} index Index.\n * @param {T} elem Element.\n * @api\n */\n Collection.prototype.insertAt = function (index, elem) {\n if (this.unique_) {\n this.assertUnique_(elem);\n }\n this.array_.splice(index, 0, elem);\n this.updateLength_();\n this.dispatchEvent(new CollectionEvent(CollectionEventType.ADD, elem, index));\n };\n /**\n * Remove the last element of the collection and return it.\n * Return `undefined` if the collection is empty.\n * @return {T|undefined} Element.\n * @api\n */\n Collection.prototype.pop = function () {\n return this.removeAt(this.getLength() - 1);\n };\n /**\n * Insert the provided element at the end of the collection.\n * @param {T} elem Element.\n * @return {number} New length of the collection.\n * @api\n */\n Collection.prototype.push = function (elem) {\n if (this.unique_) {\n this.assertUnique_(elem);\n }\n var n = this.getLength();\n this.insertAt(n, elem);\n return this.getLength();\n };\n /**\n * Remove the first occurrence of an element from the collection.\n * @param {T} elem Element.\n * @return {T|undefined} The removed element or undefined if none found.\n * @api\n */\n Collection.prototype.remove = function (elem) {\n var arr = this.array_;\n for (var i = 0, ii = arr.length; i < ii; ++i) {\n if (arr[i] === elem) {\n return this.removeAt(i);\n }\n }\n return undefined;\n };\n /**\n * Remove the element at the provided index and return it.\n * Return `undefined` if the collection does not contain this index.\n * @param {number} index Index.\n * @return {T|undefined} Value.\n * @api\n */\n Collection.prototype.removeAt = function (index) {\n var prev = this.array_[index];\n this.array_.splice(index, 1);\n this.updateLength_();\n this.dispatchEvent(new CollectionEvent(CollectionEventType.REMOVE, prev, index));\n return prev;\n };\n /**\n * Set the element at the provided index.\n * @param {number} index Index.\n * @param {T} elem Element.\n * @api\n */\n Collection.prototype.setAt = function (index, elem) {\n var n = this.getLength();\n if (index < n) {\n if (this.unique_) {\n this.assertUnique_(elem, index);\n }\n var prev = this.array_[index];\n this.array_[index] = elem;\n this.dispatchEvent(new CollectionEvent(CollectionEventType.REMOVE, prev, index));\n this.dispatchEvent(new CollectionEvent(CollectionEventType.ADD, elem, index));\n }\n else {\n for (var j = n; j < index; ++j) {\n this.insertAt(j, undefined);\n }\n this.insertAt(index, elem);\n }\n };\n /**\n * @private\n */\n Collection.prototype.updateLength_ = function () {\n this.set(Property.LENGTH, this.array_.length);\n };\n /**\n * @private\n * @param {T} elem Element.\n * @param {number} [opt_except] Optional index to ignore.\n */\n Collection.prototype.assertUnique_ = function (elem, opt_except) {\n for (var i = 0, ii = this.array_.length; i < ii; ++i) {\n if (this.array_[i] === elem && i !== opt_except) {\n throw new AssertionError(58);\n }\n }\n };\n return Collection;\n}(BaseObject));\nexport default Collection;\n//# sourceMappingURL=Collection.js.map","/**\n * @module ol/structs/RBush\n */\nimport RBush_ from 'rbush';\nimport { createOrUpdate, equals } from '../extent.js';\nimport { getUid } from '../util.js';\nimport { isEmpty } from '../obj.js';\n/**\n * @typedef {Object} Entry\n * @property {number} minX MinX.\n * @property {number} minY MinY.\n * @property {number} maxX MaxX.\n * @property {number} maxY MaxY.\n * @property {Object} [value] Value.\n */\n/**\n * @classdesc\n * Wrapper around the RBush by Vladimir Agafonkin.\n * See https://github.com/mourner/rbush.\n *\n * @template T\n */\nvar RBush = /** @class */ (function () {\n /**\n * @param {number} [opt_maxEntries] Max entries.\n */\n function RBush(opt_maxEntries) {\n /**\n * @private\n */\n this.rbush_ = new RBush_(opt_maxEntries);\n /**\n * A mapping between the objects added to this rbush wrapper\n * and the objects that are actually added to the internal rbush.\n * @private\n * @type {Object<string, Entry>}\n */\n this.items_ = {};\n }\n /**\n * Insert a value into the RBush.\n * @param {import(\"../extent.js\").Extent} extent Extent.\n * @param {T} value Value.\n */\n RBush.prototype.insert = function (extent, value) {\n /** @type {Entry} */\n var item = {\n minX: extent[0],\n minY: extent[1],\n maxX: extent[2],\n maxY: extent[3],\n value: value,\n };\n this.rbush_.insert(item);\n this.items_[getUid(value)] = item;\n };\n /**\n * Bulk-insert values into the RBush.\n * @param {Array<import(\"../extent.js\").Extent>} extents Extents.\n * @param {Array<T>} values Values.\n */\n RBush.prototype.load = function (extents, values) {\n var items = new Array(values.length);\n for (var i = 0, l = values.length; i < l; i++) {\n var extent = extents[i];\n var value = values[i];\n /** @type {Entry} */\n var item = {\n minX: extent[0],\n minY: extent[1],\n maxX: extent[2],\n maxY: extent[3],\n value: value,\n };\n items[i] = item;\n this.items_[getUid(value)] = item;\n }\n this.rbush_.load(items);\n };\n /**\n * Remove a value from the RBush.\n * @param {T} value Value.\n * @return {boolean} Removed.\n */\n RBush.prototype.remove = function (value) {\n var uid = getUid(value);\n // get the object in which the value was wrapped when adding to the\n // internal rbush. then use that object to do the removal.\n var item = this.items_[uid];\n delete this.items_[uid];\n return this.rbush_.remove(item) !== null;\n };\n /**\n * Update the extent of a value in the RBush.\n * @param {import(\"../extent.js\").Extent} extent Extent.\n * @param {T} value Value.\n */\n RBush.prototype.update = function (extent, value) {\n var item = this.items_[getUid(value)];\n var bbox = [item.minX, item.minY, item.maxX, item.maxY];\n if (!equals(bbox, extent)) {\n this.remove(value);\n this.insert(extent, value);\n }\n };\n /**\n * Return all values in the RBush.\n * @return {Array<T>} All.\n */\n RBush.prototype.getAll = function () {\n var items = this.rbush_.all();\n return items.map(function (item) {\n return item.value;\n });\n };\n /**\n * Return all values in the given extent.\n * @param {import(\"../extent.js\").Extent} extent Extent.\n * @return {Array<T>} All in extent.\n */\n RBush.prototype.getInExtent = function (extent) {\n /** @type {Entry} */\n var bbox = {\n minX: extent[0],\n minY: extent[1],\n maxX: extent[2],\n maxY: extent[3],\n };\n var items = this.rbush_.search(bbox);\n return items.map(function (item) {\n return item.value;\n });\n };\n /**\n * Calls a callback function with each value in the tree.\n * If the callback returns a truthy value, this value is returned without\n * checking the rest of the tree.\n * @param {function(T): *} callback Callback.\n * @return {*} Callback return value.\n */\n RBush.prototype.forEach = function (callback) {\n return this.forEach_(this.getAll(), callback);\n };\n /**\n * Calls a callback function with each value in the provided extent.\n * @param {import(\"../extent.js\").Extent} extent Extent.\n * @param {function(T): *} callback Callback.\n * @return {*} Callback return value.\n */\n RBush.prototype.forEachInExtent = function (extent, callback) {\n return this.forEach_(this.getInExtent(extent), callback);\n };\n /**\n * @param {Array<T>} values Values.\n * @param {function(T): *} callback Callback.\n * @private\n * @return {*} Callback return value.\n */\n RBush.prototype.forEach_ = function (values, callback) {\n var result;\n for (var i = 0, l = values.length; i < l; i++) {\n result = callback(values[i]);\n if (result) {\n return result;\n }\n }\n return result;\n };\n /**\n * @return {boolean} Is empty.\n */\n RBush.prototype.isEmpty = function () {\n return isEmpty(this.items_);\n };\n /**\n * Remove all values from the RBush.\n */\n RBush.prototype.clear = function () {\n this.rbush_.clear();\n this.items_ = {};\n };\n /**\n * @param {import(\"../extent.js\").Extent} [opt_extent] Extent.\n * @return {import(\"../extent.js\").Extent} Extent.\n */\n RBush.prototype.getExtent = function (opt_extent) {\n var data = this.rbush_.toJSON();\n return createOrUpdate(data.minX, data.minY, data.maxX, data.maxY, opt_extent);\n };\n /**\n * @param {RBush} rbush R-Tree.\n */\n RBush.prototype.concat = function (rbush) {\n this.rbush_.load(rbush.rbush_.all());\n for (var i in rbush.items_) {\n this.items_[i] = rbush.items_[i];\n }\n };\n return RBush;\n}());\nexport default RBush;\n//# sourceMappingURL=RBush.js.map","/**\n * @module ol/source/VectorEventType\n */\n/**\n * @enum {string}\n */\nexport default {\n /**\n * Triggered when a feature is added to the source.\n * @event module:ol/source/Vector.VectorSourceEvent#addfeature\n * @api\n */\n ADDFEATURE: 'addfeature',\n /**\n * Triggered when a feature is updated.\n * @event module:ol/source/Vector.VectorSourceEvent#changefeature\n * @api\n */\n CHANGEFEATURE: 'changefeature',\n /**\n * Triggered when the clear method is called on the source.\n * @event module:ol/source/Vector.VectorSourceEvent#clear\n * @api\n */\n CLEAR: 'clear',\n /**\n * Triggered when a feature is removed from the source.\n * See {@link module:ol/source/Vector~VectorSource#clear source.clear()} for exceptions.\n * @event module:ol/source/Vector.VectorSourceEvent#removefeature\n * @api\n */\n REMOVEFEATURE: 'removefeature',\n /**\n * Triggered when features starts loading.\n * @event module:ol/source/Vector.VectorSourceEvent#featuresloadstart\n * @api\n */\n FEATURESLOADSTART: 'featuresloadstart',\n /**\n * Triggered when features finishes loading.\n * @event module:ol/source/Vector.VectorSourceEvent#featuresloadend\n * @api\n */\n FEATURESLOADEND: 'featuresloadend',\n /**\n * Triggered if feature loading results in an error.\n * @event module:ol/source/Vector.VectorSourceEvent#featuresloaderror\n * @api\n */\n FEATURESLOADERROR: 'featuresloaderror',\n};\n/**\n * @typedef {'addfeature'|'changefeature'|'clear'|'removefeature'|'featuresloadstart'|'featuresloadend'|'featuresloaderror'} VectorSourceEventTypes\n */\n//# sourceMappingURL=VectorEventType.js.map","/**\n * @module ol/loadingstrategy\n */\nimport { fromUserExtent, fromUserResolution, toUserExtent } from './proj.js';\n/**\n * Strategy function for loading all features with a single request.\n * @param {import(\"./extent.js\").Extent} extent Extent.\n * @param {number} resolution Resolution.\n * @return {Array<import(\"./extent.js\").Extent>} Extents.\n * @api\n */\nexport function all(extent, resolution) {\n return [[-Infinity, -Infinity, Infinity, Infinity]];\n}\n/**\n * Strategy function for loading features based on the view's extent and\n * resolution.\n * @param {import(\"./extent.js\").Extent} extent Extent.\n * @param {number} resolution Resolution.\n * @return {Array<import(\"./extent.js\").Extent>} Extents.\n * @api\n */\nexport function bbox(extent, resolution) {\n return [extent];\n}\n/**\n * Creates a strategy function for loading features based on a tile grid.\n * @param {import(\"./tilegrid/TileGrid.js\").default} tileGrid Tile grid.\n * @return {function(import(\"./extent.js\").Extent, number, import(\"./proj.js\").Projection): Array<import(\"./extent.js\").Extent>} Loading strategy.\n * @api\n */\nexport function tile(tileGrid) {\n return (\n /**\n * @param {import(\"./extent.js\").Extent} extent Extent.\n * @param {number} resolution Resolution.\n * @param {import(\"./proj.js\").Projection} projection Projection.\n * @return {Array<import(\"./extent.js\").Extent>} Extents.\n */\n function (extent, resolution, projection) {\n var z = tileGrid.getZForResolution(fromUserResolution(resolution, projection));\n var tileRange = tileGrid.getTileRangeForExtentAndZ(fromUserExtent(extent, projection), z);\n /** @type {Array<import(\"./extent.js\").Extent>} */\n var extents = [];\n /** @type {import(\"./tilecoord.js\").TileCoord} */\n var tileCoord = [z, 0, 0];\n for (tileCoord[1] = tileRange.minX; tileCoord[1] <= tileRange.maxX; ++tileCoord[1]) {\n for (tileCoord[2] = tileRange.minY; tileCoord[2] <= tileRange.maxY; ++tileCoord[2]) {\n extents.push(toUserExtent(tileGrid.getTileCoordExtent(tileCoord), projection));\n }\n }\n return extents;\n });\n}\n//# sourceMappingURL=loadingstrategy.js.map","/**\n * @module ol/format/FormatType\n */\n/**\n * @enum {string}\n */\nexport default {\n ARRAY_BUFFER: 'arraybuffer',\n JSON: 'json',\n TEXT: 'text',\n XML: 'xml',\n};\n//# sourceMappingURL=FormatType.js.map","/**\n * @module ol/featureloader\n */\nimport FormatType from './format/FormatType.js';\nimport { VOID } from './functions.js';\n/**\n *\n * @type {boolean}\n * @private\n */\nvar withCredentials = false;\n/**\n * {@link module:ol/source/Vector} sources use a function of this type to\n * load features.\n *\n * This function takes up to 5 arguments. These are an {@link module:ol/extent~Extent} representing\n * the area to be loaded, a `{number}` representing the resolution (map units per pixel), an\n * {@link module:ol/proj/Projection} for the projection, an optional success callback that should get\n * the loaded features passed as an argument and an optional failure callback with no arguments. If\n * the callbacks are not used, the corresponding vector source will not fire `'featuresloadend'` and\n * `'featuresloaderror'` events. `this` within the function is bound to the\n * {@link module:ol/source/Vector} it's called from.\n *\n * The function is responsible for loading the features and adding them to the\n * source.\n * @typedef {function(this:(import(\"./source/Vector\").default|import(\"./VectorTile.js\").default),\n * import(\"./extent.js\").Extent,\n * number,\n * import(\"./proj/Projection.js\").default,\n * function(Array<import(\"./Feature.js\").default>): void=,\n * function(): void=): void} FeatureLoader\n * @api\n */\n/**\n * {@link module:ol/source/Vector} sources use a function of this type to\n * get the url to load features from.\n *\n * This function takes an {@link module:ol/extent~Extent} representing the area\n * to be loaded, a `{number}` representing the resolution (map units per pixel)\n * and an {@link module:ol/proj/Projection} for the projection as\n * arguments and returns a `{string}` representing the URL.\n * @typedef {function(import(\"./extent.js\").Extent, number, import(\"./proj/Projection.js\").default): string} FeatureUrlFunction\n * @api\n */\n/**\n * @param {string|FeatureUrlFunction} url Feature URL service.\n * @param {import(\"./format/Feature.js\").default} format Feature format.\n * @param {import(\"./extent.js\").Extent} extent Extent.\n * @param {number} resolution Resolution.\n * @param {import(\"./proj/Projection.js\").default} projection Projection.\n * @param {function(Array<import(\"./Feature.js\").default>, import(\"./proj/Projection.js\").default): void} success Success\n * Function called with the loaded features and optionally with the data projection.\n * @param {function(): void} failure Failure\n * Function called when loading failed.\n */\nexport function loadFeaturesXhr(url, format, extent, resolution, projection, success, failure) {\n var xhr = new XMLHttpRequest();\n xhr.open('GET', typeof url === 'function' ? url(extent, resolution, projection) : url, true);\n if (format.getType() == FormatType.ARRAY_BUFFER) {\n xhr.responseType = 'arraybuffer';\n }\n xhr.withCredentials = withCredentials;\n /**\n * @param {Event} event Event.\n * @private\n */\n xhr.onload = function (event) {\n // status will be 0 for file:// urls\n if (!xhr.status || (xhr.status >= 200 && xhr.status < 300)) {\n var type = format.getType();\n /** @type {Document|Node|Object|string|undefined} */\n var source = void 0;\n if (type == FormatType.JSON || type == FormatType.TEXT) {\n source = xhr.responseText;\n }\n else if (type == FormatType.XML) {\n source = xhr.responseXML;\n if (!source) {\n source = new DOMParser().parseFromString(xhr.responseText, 'application/xml');\n }\n }\n else if (type == FormatType.ARRAY_BUFFER) {\n source = /** @type {ArrayBuffer} */ (xhr.response);\n }\n if (source) {\n success(\n /** @type {Array<import(\"./Feature.js\").default>} */\n (format.readFeatures(source, {\n extent: extent,\n featureProjection: projection,\n })), format.readProjection(source));\n }\n else {\n failure();\n }\n }\n else {\n failure();\n }\n };\n /**\n * @private\n */\n xhr.onerror = failure;\n xhr.send();\n}\n/**\n * Create an XHR feature loader for a `url` and `format`. The feature loader\n * loads features (with XHR), parses the features, and adds them to the\n * vector source.\n * @param {string|FeatureUrlFunction} url Feature URL service.\n * @param {import(\"./format/Feature.js\").default} format Feature format.\n * @return {FeatureLoader} The feature loader.\n * @api\n */\nexport function xhr(url, format) {\n /**\n * @param {import(\"./extent.js\").Extent} extent Extent.\n * @param {number} resolution Resolution.\n * @param {import(\"./proj/Projection.js\").default} projection Projection.\n * @param {function(Array<import(\"./Feature.js\").default>): void} [success] Success\n * Function called when loading succeeded.\n * @param {function(): void} [failure] Failure\n * Function called when loading failed.\n * @this {import(\"./source/Vector\").default}\n */\n return function (extent, resolution, projection, success, failure) {\n var source = /** @type {import(\"./source/Vector\").default} */ (this);\n loadFeaturesXhr(url, format, extent, resolution, projection, \n /**\n * @param {Array<import(\"./Feature.js\").default>} features The loaded features.\n * @param {import(\"./proj/Projection.js\").default} dataProjection Data\n * projection.\n */\n function (features, dataProjection) {\n source.addFeatures(features);\n if (success !== undefined) {\n success(features);\n }\n }, \n /* FIXME handle error */ failure ? failure : VOID);\n };\n}\n/**\n * Setter for the withCredentials configuration for the XHR.\n *\n * @param {boolean} xhrWithCredentials The value of withCredentials to set.\n * Compare https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest/\n * @api\n */\nexport function setWithCredentials(xhrWithCredentials) {\n withCredentials = xhrWithCredentials;\n}\n//# sourceMappingURL=featureloader.js.map","/**\n * @module ol/source/Vector\n */\nvar __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\nimport Collection from '../Collection.js';\nimport CollectionEventType from '../CollectionEventType.js';\nimport Event from '../events/Event.js';\nimport EventType from '../events/EventType.js';\nimport ObjectEventType from '../ObjectEventType.js';\nimport RBush from '../structs/RBush.js';\nimport Source from './Source.js';\nimport SourceState from './State.js';\nimport VectorEventType from './VectorEventType.js';\nimport { TRUE, VOID } from '../functions.js';\nimport { all as allStrategy } from '../loadingstrategy.js';\nimport { assert } from '../asserts.js';\nimport { containsExtent, equals } from '../extent.js';\nimport { extend } from '../array.js';\nimport { getUid } from '../util.js';\nimport { getValues, isEmpty } from '../obj.js';\nimport { listen, unlistenByKey } from '../events.js';\nimport { xhr } from '../featureloader.js';\n/**\n * A function that takes an {@link module:ol/extent~Extent} and a resolution as arguments, and\n * returns an array of {@link module:ol/extent~Extent} with the extents to load. Usually this\n * is one of the standard {@link module:ol/loadingstrategy} strategies.\n *\n * @typedef {function(import(\"../extent.js\").Extent, number, import(\"../proj/Projection.js\").default): Array<import(\"../extent.js\").Extent>} LoadingStrategy\n * @api\n */\n/**\n * @classdesc\n * Events emitted by {@link module:ol/source/Vector} instances are instances of this\n * type.\n * @template {import(\"../geom/Geometry.js\").default} Geometry\n */\nvar VectorSourceEvent = /** @class */ (function (_super) {\n __extends(VectorSourceEvent, _super);\n /**\n * @param {string} type Type.\n * @param {import(\"../Feature.js\").default<Geometry>} [opt_feature] Feature.\n * @param {Array<import(\"../Feature.js\").default<Geometry>>} [opt_features] Features.\n */\n function VectorSourceEvent(type, opt_feature, opt_features) {\n var _this = _super.call(this, type) || this;\n /**\n * The added or removed feature for the `ADDFEATURE` and `REMOVEFEATURE` events, `undefined` otherwise.\n * @type {import(\"../Feature.js\").default<Geometry>|undefined}\n * @api\n */\n _this.feature = opt_feature;\n /**\n * The loaded features for the `FEATURESLOADED` event, `undefined` otherwise.\n * @type {Array<import(\"../Feature.js\").default<Geometry>>|undefined}\n * @api\n */\n _this.features = opt_features;\n return _this;\n }\n return VectorSourceEvent;\n}(Event));\nexport { VectorSourceEvent };\n/***\n * @template Return\n * @typedef {import(\"../Observable\").OnSignature<import(\"../Observable\").EventTypes, import(\"../events/Event.js\").default, Return> &\n * import(\"../Observable\").OnSignature<import(\"../ObjectEventType\").Types, import(\"../Object\").ObjectEvent, Return> &\n * import(\"../Observable\").OnSignature<import(\"./VectorEventType\").VectorSourceEventTypes, VectorSourceEvent, Return> &\n * import(\"../Observable\").CombinedOnSignature<import(\"../Observable\").EventTypes|import(\"../ObjectEventType\").Types|\n * import(\"./VectorEventType\").VectorSourceEventTypes, Return>} VectorSourceOnSignature\n */\n/**\n * @typedef {Object} Options\n * @property {import(\"./Source.js\").AttributionLike} [attributions] Attributions.\n * @property {Array<import(\"../Feature.js\").default>|Collection<import(\"../Feature.js\").default>} [features]\n * Features. If provided as {@link module:ol/Collection}, the features in the source\n * and the collection will stay in sync.\n * @property {import(\"../format/Feature.js\").default} [format] The feature format used by the XHR\n * feature loader when `url` is set. Required if `url` is set, otherwise ignored.\n * @property {import(\"../featureloader.js\").FeatureLoader} [loader]\n * The loader function used to load features, from a remote source for example.\n * If this is not set and `url` is set, the source will create and use an XHR\n * feature loader. The `'featuresloadend'` and `'featuresloaderror'` events\n * will only fire if the `success` and `failure` callbacks are used.\n *\n * Example:\n *\n * ```js\n * import {Vector} from 'ol/source';\n * import {GeoJSON} from 'ol/format';\n * import {bbox} from 'ol/loadingstrategy';\n *\n * var vectorSource = new Vector({\n * format: new GeoJSON(),\n * loader: function(extent, resolution, projection, success, failure) {\n * var proj = projection.getCode();\n * var url = 'https://ahocevar.com/geoserver/wfs?service=WFS&' +\n * 'version=1.1.0&request=GetFeature&typename=osm:water_areas&' +\n * 'outputFormat=application/json&srsname=' + proj + '&' +\n * 'bbox=' + extent.join(',') + ',' + proj;\n * var xhr = new XMLHttpRequest();\n * xhr.open('GET', url);\n * var onError = function() {\n * vectorSource.removeLoadedExtent(extent);\n * failure();\n * }\n * xhr.onerror = onError;\n * xhr.onload = function() {\n * if (xhr.status == 200) {\n * var features = vectorSource.getFormat().readFeatures(xhr.responseText);\n * vectorSource.addFeatures(features);\n * success(features);\n * } else {\n * onError();\n * }\n * }\n * xhr.send();\n * },\n * strategy: bbox\n * });\n * ```\n * @property {boolean} [overlaps=true] This source may have overlapping geometries.\n * Setting this to `false` (e.g. for sources with polygons that represent administrative\n * boundaries or TopoJSON sources) allows the renderer to optimise fill and\n * stroke operations.\n * @property {LoadingStrategy} [strategy] The loading strategy to use.\n * By default an {@link module:ol/loadingstrategy.all}\n * strategy is used, a one-off strategy which loads all features at once.\n * @property {string|import(\"../featureloader.js\").FeatureUrlFunction} [url]\n * Setting this option instructs the source to load features using an XHR loader\n * (see {@link module:ol/featureloader.xhr}). Use a `string` and an\n * {@link module:ol/loadingstrategy.all} for a one-off download of all features from\n * the given URL. Use a {@link module:ol/featureloader~FeatureUrlFunction} to generate the url with\n * other loading strategies.\n * Requires `format` to be set as well.\n * When default XHR feature loader is provided, the features will\n * be transformed from the data projection to the view projection\n * during parsing. If your remote data source does not advertise its projection\n * properly, this transformation will be incorrect. For some formats, the\n * default projection (usually EPSG:4326) can be overridden by setting the\n * dataProjection constructor option on the format.\n * Note that if a source contains non-feature data, such as a GeoJSON geometry\n * or a KML NetworkLink, these will be ignored. Use a custom loader to load these.\n * @property {boolean} [useSpatialIndex=true]\n * By default, an RTree is used as spatial index. When features are removed and\n * added frequently, and the total number of features is low, setting this to\n * `false` may improve performance.\n *\n * Note that\n * {@link module:ol/source/Vector~VectorSource#getFeaturesInExtent},\n * {@link module:ol/source/Vector~VectorSource#getClosestFeatureToCoordinate} and\n * {@link module:ol/source/Vector~VectorSource#getExtent} cannot be used when `useSpatialIndex` is\n * set to `false`, and {@link module:ol/source/Vector~VectorSource#forEachFeatureInExtent} will loop\n * through all features.\n *\n * When set to `false`, the features will be maintained in an\n * {@link module:ol/Collection}, which can be retrieved through\n * {@link module:ol/source/Vector~VectorSource#getFeaturesCollection}.\n * @property {boolean} [wrapX=true] Wrap the world horizontally. For vector editing across the\n * -180° and 180° meridians to work properly, this should be set to `false`. The\n * resulting geometry coordinates will then exceed the world bounds.\n */\n/**\n * @classdesc\n * Provides a source of features for vector layers. Vector features provided\n * by this source are suitable for editing. See {@link module:ol/source/VectorTile~VectorTile} for\n * vector data that is optimized for rendering.\n *\n * @fires VectorSourceEvent\n * @api\n * @template {import(\"../geom/Geometry.js\").default} Geometry\n */\nvar VectorSource = /** @class */ (function (_super) {\n __extends(VectorSource, _super);\n /**\n * @param {Options} [opt_options] Vector source options.\n */\n function VectorSource(opt_options) {\n var _this = this;\n var options = opt_options || {};\n _this = _super.call(this, {\n attributions: options.attributions,\n projection: undefined,\n state: SourceState.READY,\n wrapX: options.wrapX !== undefined ? options.wrapX : true,\n }) || this;\n /***\n * @type {VectorSourceOnSignature<import(\"../events\").EventsKey>}\n */\n _this.on;\n /***\n * @type {VectorSourceOnSignature<import(\"../events\").EventsKey>}\n */\n _this.once;\n /***\n * @type {VectorSourceOnSignature<void>}\n */\n _this.un;\n /**\n * @private\n * @type {import(\"../featureloader.js\").FeatureLoader}\n */\n _this.loader_ = VOID;\n /**\n * @private\n * @type {import(\"../format/Feature.js\").default|undefined}\n */\n _this.format_ = options.format;\n /**\n * @private\n * @type {boolean}\n */\n _this.overlaps_ = options.overlaps === undefined ? true : options.overlaps;\n /**\n * @private\n * @type {string|import(\"../featureloader.js\").FeatureUrlFunction|undefined}\n */\n _this.url_ = options.url;\n if (options.loader !== undefined) {\n _this.loader_ = options.loader;\n }\n else if (_this.url_ !== undefined) {\n assert(_this.format_, 7); // `format` must be set when `url` is set\n // create a XHR feature loader for \"url\" and \"format\"\n _this.loader_ = xhr(_this.url_, \n /** @type {import(\"../format/Feature.js\").default} */ (_this.format_));\n }\n /**\n * @private\n * @type {LoadingStrategy}\n */\n _this.strategy_ =\n options.strategy !== undefined ? options.strategy : allStrategy;\n var useSpatialIndex = options.useSpatialIndex !== undefined ? options.useSpatialIndex : true;\n /**\n * @private\n * @type {RBush<import(\"../Feature.js\").default<Geometry>>}\n */\n _this.featuresRtree_ = useSpatialIndex ? new RBush() : null;\n /**\n * @private\n * @type {RBush<{extent: import(\"../extent.js\").Extent}>}\n */\n _this.loadedExtentsRtree_ = new RBush();\n /**\n * @type {number}\n * @private\n */\n _this.loadingExtentsCount_ = 0;\n /**\n * @private\n * @type {!Object<string, import(\"../Feature.js\").default<Geometry>>}\n */\n _this.nullGeometryFeatures_ = {};\n /**\n * A lookup of features by id (the return from feature.getId()).\n * @private\n * @type {!Object<string, import(\"../Feature.js\").default<Geometry>>}\n */\n _this.idIndex_ = {};\n /**\n * A lookup of features by uid (using getUid(feature)).\n * @private\n * @type {!Object<string, import(\"../Feature.js\").default<Geometry>>}\n */\n _this.uidIndex_ = {};\n /**\n * @private\n * @type {Object<string, Array<import(\"../events.js\").EventsKey>>}\n */\n _this.featureChangeKeys_ = {};\n /**\n * @private\n * @type {Collection<import(\"../Feature.js\").default<Geometry>>}\n */\n _this.featuresCollection_ = null;\n var collection, features;\n if (Array.isArray(options.features)) {\n features = options.features;\n }\n else if (options.features) {\n collection = options.features;\n features = collection.getArray();\n }\n if (!useSpatialIndex && collection === undefined) {\n collection = new Collection(features);\n }\n if (features !== undefined) {\n _this.addFeaturesInternal(features);\n }\n if (collection !== undefined) {\n _this.bindFeaturesCollection_(collection);\n }\n return _this;\n }\n /**\n * Add a single feature to the source. If you want to add a batch of features\n * at once, call {@link module:ol/source/Vector~VectorSource#addFeatures #addFeatures()}\n * instead. A feature will not be added to the source if feature with\n * the same id is already there. The reason for this behavior is to avoid\n * feature duplication when using bbox or tile loading strategies.\n * Note: this also applies if an {@link module:ol/Collection} is used for features,\n * meaning that if a feature with a duplicate id is added in the collection, it will\n * be removed from it right away.\n * @param {import(\"../Feature.js\").default<Geometry>} feature Feature to add.\n * @api\n */\n VectorSource.prototype.addFeature = function (feature) {\n this.addFeatureInternal(feature);\n this.changed();\n };\n /**\n * Add a feature without firing a `change` event.\n * @param {import(\"../Feature.js\").default<Geometry>} feature Feature.\n * @protected\n */\n VectorSource.prototype.addFeatureInternal = function (feature) {\n var featureKey = getUid(feature);\n if (!this.addToIndex_(featureKey, feature)) {\n if (this.featuresCollection_) {\n this.featuresCollection_.remove(feature);\n }\n return;\n }\n this.setupChangeEvents_(featureKey, feature);\n var geometry = feature.getGeometry();\n if (geometry) {\n var extent = geometry.getExtent();\n if (this.featuresRtree_) {\n this.featuresRtree_.insert(extent, feature);\n }\n }\n else {\n this.nullGeometryFeatures_[featureKey] = feature;\n }\n this.dispatchEvent(new VectorSourceEvent(VectorEventType.ADDFEATURE, feature));\n };\n /**\n * @param {string} featureKey Unique identifier for the feature.\n * @param {import(\"../Feature.js\").default<Geometry>} feature The feature.\n * @private\n */\n VectorSource.prototype.setupChangeEvents_ = function (featureKey, feature) {\n this.featureChangeKeys_[featureKey] = [\n listen(feature, EventType.CHANGE, this.handleFeatureChange_, this),\n listen(feature, ObjectEventType.PROPERTYCHANGE, this.handleFeatureChange_, this),\n ];\n };\n /**\n * @param {string} featureKey Unique identifier for the feature.\n * @param {import(\"../Feature.js\").default<Geometry>} feature The feature.\n * @return {boolean} The feature is \"valid\", in the sense that it is also a\n * candidate for insertion into the Rtree.\n * @private\n */\n VectorSource.prototype.addToIndex_ = function (featureKey, feature) {\n var valid = true;\n var id = feature.getId();\n if (id !== undefined) {\n if (!(id.toString() in this.idIndex_)) {\n this.idIndex_[id.toString()] = feature;\n }\n else {\n valid = false;\n }\n }\n if (valid) {\n assert(!(featureKey in this.uidIndex_), 30); // The passed `feature` was already added to the source\n this.uidIndex_[featureKey] = feature;\n }\n return valid;\n };\n /**\n * Add a batch of features to the source.\n * @param {Array<import(\"../Feature.js\").default<Geometry>>} features Features to add.\n * @api\n */\n VectorSource.prototype.addFeatures = function (features) {\n this.addFeaturesInternal(features);\n this.changed();\n };\n /**\n * Add features without firing a `change` event.\n * @param {Array<import(\"../Feature.js\").default<Geometry>>} features Features.\n * @protected\n */\n VectorSource.prototype.addFeaturesInternal = function (features) {\n var extents = [];\n var newFeatures = [];\n var geometryFeatures = [];\n for (var i = 0, length_1 = features.length; i < length_1; i++) {\n var feature = features[i];\n var featureKey = getUid(feature);\n if (this.addToIndex_(featureKey, feature)) {\n newFeatures.push(feature);\n }\n }\n for (var i = 0, length_2 = newFeatures.length; i < length_2; i++) {\n var feature = newFeatures[i];\n var featureKey = getUid(feature);\n this.setupChangeEvents_(featureKey, feature);\n var geometry = feature.getGeometry();\n if (geometry) {\n var extent = geometry.getExtent();\n extents.push(extent);\n geometryFeatures.push(feature);\n }\n else {\n this.nullGeometryFeatures_[featureKey] = feature;\n }\n }\n if (this.featuresRtree_) {\n this.featuresRtree_.load(extents, geometryFeatures);\n }\n for (var i = 0, length_3 = newFeatures.length; i < length_3; i++) {\n this.dispatchEvent(new VectorSourceEvent(VectorEventType.ADDFEATURE, newFeatures[i]));\n }\n };\n /**\n * @param {!Collection<import(\"../Feature.js\").default<Geometry>>} collection Collection.\n * @private\n */\n VectorSource.prototype.bindFeaturesCollection_ = function (collection) {\n var modifyingCollection = false;\n this.addEventListener(VectorEventType.ADDFEATURE, \n /**\n * @param {VectorSourceEvent<Geometry>} evt The vector source event\n */\n function (evt) {\n if (!modifyingCollection) {\n modifyingCollection = true;\n collection.push(evt.feature);\n modifyingCollection = false;\n }\n });\n this.addEventListener(VectorEventType.REMOVEFEATURE, \n /**\n * @param {VectorSourceEvent<Geometry>} evt The vector source event\n */\n function (evt) {\n if (!modifyingCollection) {\n modifyingCollection = true;\n collection.remove(evt.feature);\n modifyingCollection = false;\n }\n });\n collection.addEventListener(CollectionEventType.ADD, \n /**\n * @param {import(\"../Collection.js\").CollectionEvent} evt The collection event\n */\n function (evt) {\n if (!modifyingCollection) {\n modifyingCollection = true;\n this.addFeature(\n /** @type {import(\"../Feature.js\").default<Geometry>} */ (evt.element));\n modifyingCollection = false;\n }\n }.bind(this));\n collection.addEventListener(CollectionEventType.REMOVE, \n /**\n * @param {import(\"../Collection.js\").CollectionEvent} evt The collection event\n */\n function (evt) {\n if (!modifyingCollection) {\n modifyingCollection = true;\n this.removeFeature(\n /** @type {import(\"../Feature.js\").default<Geometry>} */ (evt.element));\n modifyingCollection = false;\n }\n }.bind(this));\n this.featuresCollection_ = collection;\n };\n /**\n * Remove all features from the source.\n * @param {boolean} [opt_fast] Skip dispatching of {@link module:ol/source/Vector.VectorSourceEvent#event:removefeature removefeature} events.\n * @api\n */\n VectorSource.prototype.clear = function (opt_fast) {\n if (opt_fast) {\n for (var featureId in this.featureChangeKeys_) {\n var keys = this.featureChangeKeys_[featureId];\n keys.forEach(unlistenByKey);\n }\n if (!this.featuresCollection_) {\n this.featureChangeKeys_ = {};\n this.idIndex_ = {};\n this.uidIndex_ = {};\n }\n }\n else {\n if (this.featuresRtree_) {\n this.featuresRtree_.forEach(this.removeFeatureInternal.bind(this));\n for (var id in this.nullGeometryFeatures_) {\n this.removeFeatureInternal(this.nullGeometryFeatures_[id]);\n }\n }\n }\n if (this.featuresCollection_) {\n this.featuresCollection_.clear();\n }\n if (this.featuresRtree_) {\n this.featuresRtree_.clear();\n }\n this.nullGeometryFeatures_ = {};\n var clearEvent = new VectorSourceEvent(VectorEventType.CLEAR);\n this.dispatchEvent(clearEvent);\n this.changed();\n };\n /**\n * Iterate through all features on the source, calling the provided callback\n * with each one. If the callback returns any \"truthy\" value, iteration will\n * stop and the function will return the same value.\n * Note: this function only iterate through the feature that have a defined geometry.\n *\n * @param {function(import(\"../Feature.js\").default<Geometry>): T} callback Called with each feature\n * on the source. Return a truthy value to stop iteration.\n * @return {T|undefined} The return value from the last call to the callback.\n * @template T\n * @api\n */\n VectorSource.prototype.forEachFeature = function (callback) {\n if (this.featuresRtree_) {\n return this.featuresRtree_.forEach(callback);\n }\n else if (this.featuresCollection_) {\n this.featuresCollection_.forEach(callback);\n }\n };\n /**\n * Iterate through all features whose geometries contain the provided\n * coordinate, calling the callback with each feature. If the callback returns\n * a \"truthy\" value, iteration will stop and the function will return the same\n * value.\n *\n * @param {import(\"../coordinate.js\").Coordinate} coordinate Coordinate.\n * @param {function(import(\"../Feature.js\").default<Geometry>): T} callback Called with each feature\n * whose goemetry contains the provided coordinate.\n * @return {T|undefined} The return value from the last call to the callback.\n * @template T\n */\n VectorSource.prototype.forEachFeatureAtCoordinateDirect = function (coordinate, callback) {\n var extent = [coordinate[0], coordinate[1], coordinate[0], coordinate[1]];\n return this.forEachFeatureInExtent(extent, function (feature) {\n var geometry = feature.getGeometry();\n if (geometry.intersectsCoordinate(coordinate)) {\n return callback(feature);\n }\n else {\n return undefined;\n }\n });\n };\n /**\n * Iterate through all features whose bounding box intersects the provided\n * extent (note that the feature's geometry may not intersect the extent),\n * calling the callback with each feature. If the callback returns a \"truthy\"\n * value, iteration will stop and the function will return the same value.\n *\n * If you are interested in features whose geometry intersects an extent, call\n * the {@link module:ol/source/Vector~VectorSource#forEachFeatureIntersectingExtent #forEachFeatureIntersectingExtent()} method instead.\n *\n * When `useSpatialIndex` is set to false, this method will loop through all\n * features, equivalent to {@link module:ol/source/Vector~VectorSource#forEachFeature #forEachFeature()}.\n *\n * @param {import(\"../extent.js\").Extent} extent Extent.\n * @param {function(import(\"../Feature.js\").default<Geometry>): T} callback Called with each feature\n * whose bounding box intersects the provided extent.\n * @return {T|undefined} The return value from the last call to the callback.\n * @template T\n * @api\n */\n VectorSource.prototype.forEachFeatureInExtent = function (extent, callback) {\n if (this.featuresRtree_) {\n return this.featuresRtree_.forEachInExtent(extent, callback);\n }\n else if (this.featuresCollection_) {\n this.featuresCollection_.forEach(callback);\n }\n };\n /**\n * Iterate through all features whose geometry intersects the provided extent,\n * calling the callback with each feature. If the callback returns a \"truthy\"\n * value, iteration will stop and the function will return the same value.\n *\n * If you only want to test for bounding box intersection, call the\n * {@link module:ol/source/Vector~VectorSource#forEachFeatureInExtent #forEachFeatureInExtent()} method instead.\n *\n * @param {import(\"../extent.js\").Extent} extent Extent.\n * @param {function(import(\"../Feature.js\").default<Geometry>): T} callback Called with each feature\n * whose geometry intersects the provided extent.\n * @return {T|undefined} The return value from the last call to the callback.\n * @template T\n * @api\n */\n VectorSource.prototype.forEachFeatureIntersectingExtent = function (extent, callback) {\n return this.forEachFeatureInExtent(extent, \n /**\n * @param {import(\"../Feature.js\").default<Geometry>} feature Feature.\n * @return {T|undefined} The return value from the last call to the callback.\n */\n function (feature) {\n var geometry = feature.getGeometry();\n if (geometry.intersectsExtent(extent)) {\n var result = callback(feature);\n if (result) {\n return result;\n }\n }\n });\n };\n /**\n * Get the features collection associated with this source. Will be `null`\n * unless the source was configured with `useSpatialIndex` set to `false`, or\n * with an {@link module:ol/Collection} as `features`.\n * @return {Collection<import(\"../Feature.js\").default<Geometry>>} The collection of features.\n * @api\n */\n VectorSource.prototype.getFeaturesCollection = function () {\n return this.featuresCollection_;\n };\n /**\n * Get a snapshot of the features currently on the source in random order. The returned array\n * is a copy, the features are references to the features in the source.\n * @return {Array<import(\"../Feature.js\").default<Geometry>>} Features.\n * @api\n */\n VectorSource.prototype.getFeatures = function () {\n var features;\n if (this.featuresCollection_) {\n features = this.featuresCollection_.getArray().slice(0);\n }\n else if (this.featuresRtree_) {\n features = this.featuresRtree_.getAll();\n if (!isEmpty(this.nullGeometryFeatures_)) {\n extend(features, getValues(this.nullGeometryFeatures_));\n }\n }\n return /** @type {Array<import(\"../Feature.js\").default<Geometry>>} */ (features);\n };\n /**\n * Get all features whose geometry intersects the provided coordinate.\n * @param {import(\"../coordinate.js\").Coordinate} coordinate Coordinate.\n * @return {Array<import(\"../Feature.js\").default<Geometry>>} Features.\n * @api\n */\n VectorSource.prototype.getFeaturesAtCoordinate = function (coordinate) {\n var features = [];\n this.forEachFeatureAtCoordinateDirect(coordinate, function (feature) {\n features.push(feature);\n });\n return features;\n };\n /**\n * Get all features whose bounding box intersects the provided extent. Note that this returns an array of\n * all features intersecting the given extent in random order (so it may include\n * features whose geometries do not intersect the extent).\n *\n * When `useSpatialIndex` is set to false, this method will return all\n * features.\n *\n * @param {import(\"../extent.js\").Extent} extent Extent.\n * @return {Array<import(\"../Feature.js\").default<Geometry>>} Features.\n * @api\n */\n VectorSource.prototype.getFeaturesInExtent = function (extent) {\n if (this.featuresRtree_) {\n return this.featuresRtree_.getInExtent(extent);\n }\n else if (this.featuresCollection_) {\n return this.featuresCollection_.getArray().slice(0);\n }\n else {\n return [];\n }\n };\n /**\n * Get the closest feature to the provided coordinate.\n *\n * This method is not available when the source is configured with\n * `useSpatialIndex` set to `false`.\n * @param {import(\"../coordinate.js\").Coordinate} coordinate Coordinate.\n * @param {function(import(\"../Feature.js\").default<Geometry>):boolean} [opt_filter] Feature filter function.\n * The filter function will receive one argument, the {@link module:ol/Feature feature}\n * and it should return a boolean value. By default, no filtering is made.\n * @return {import(\"../Feature.js\").default<Geometry>} Closest feature.\n * @api\n */\n VectorSource.prototype.getClosestFeatureToCoordinate = function (coordinate, opt_filter) {\n // Find the closest feature using branch and bound. We start searching an\n // infinite extent, and find the distance from the first feature found. This\n // becomes the closest feature. We then compute a smaller extent which any\n // closer feature must intersect. We continue searching with this smaller\n // extent, trying to find a closer feature. Every time we find a closer\n // feature, we update the extent being searched so that any even closer\n // feature must intersect it. We continue until we run out of features.\n var x = coordinate[0];\n var y = coordinate[1];\n var closestFeature = null;\n var closestPoint = [NaN, NaN];\n var minSquaredDistance = Infinity;\n var extent = [-Infinity, -Infinity, Infinity, Infinity];\n var filter = opt_filter ? opt_filter : TRUE;\n this.featuresRtree_.forEachInExtent(extent, \n /**\n * @param {import(\"../Feature.js\").default<Geometry>} feature Feature.\n */\n function (feature) {\n if (filter(feature)) {\n var geometry = feature.getGeometry();\n var previousMinSquaredDistance = minSquaredDistance;\n minSquaredDistance = geometry.closestPointXY(x, y, closestPoint, minSquaredDistance);\n if (minSquaredDistance < previousMinSquaredDistance) {\n closestFeature = feature;\n // This is sneaky. Reduce the extent that it is currently being\n // searched while the R-Tree traversal using this same extent object\n // is still in progress. This is safe because the new extent is\n // strictly contained by the old extent.\n var minDistance = Math.sqrt(minSquaredDistance);\n extent[0] = x - minDistance;\n extent[1] = y - minDistance;\n extent[2] = x + minDistance;\n extent[3] = y + minDistance;\n }\n }\n });\n return closestFeature;\n };\n /**\n * Get the extent of the features currently in the source.\n *\n * This method is not available when the source is configured with\n * `useSpatialIndex` set to `false`.\n * @param {import(\"../extent.js\").Extent} [opt_extent] Destination extent. If provided, no new extent\n * will be created. Instead, that extent's coordinates will be overwritten.\n * @return {import(\"../extent.js\").Extent} Extent.\n * @api\n */\n VectorSource.prototype.getExtent = function (opt_extent) {\n return this.featuresRtree_.getExtent(opt_extent);\n };\n /**\n * Get a feature by its identifier (the value returned by feature.getId()).\n * Note that the index treats string and numeric identifiers as the same. So\n * `source.getFeatureById(2)` will return a feature with id `'2'` or `2`.\n *\n * @param {string|number} id Feature identifier.\n * @return {import(\"../Feature.js\").default<Geometry>} The feature (or `null` if not found).\n * @api\n */\n VectorSource.prototype.getFeatureById = function (id) {\n var feature = this.idIndex_[id.toString()];\n return feature !== undefined ? feature : null;\n };\n /**\n * Get a feature by its internal unique identifier (using `getUid`).\n *\n * @param {string} uid Feature identifier.\n * @return {import(\"../Feature.js\").default<Geometry>} The feature (or `null` if not found).\n */\n VectorSource.prototype.getFeatureByUid = function (uid) {\n var feature = this.uidIndex_[uid];\n return feature !== undefined ? feature : null;\n };\n /**\n * Get the format associated with this source.\n *\n * @return {import(\"../format/Feature.js\").default|undefined} The feature format.\n * @api\n */\n VectorSource.prototype.getFormat = function () {\n return this.format_;\n };\n /**\n * @return {boolean} The source can have overlapping geometries.\n */\n VectorSource.prototype.getOverlaps = function () {\n return this.overlaps_;\n };\n /**\n * Get the url associated with this source.\n *\n * @return {string|import(\"../featureloader.js\").FeatureUrlFunction|undefined} The url.\n * @api\n */\n VectorSource.prototype.getUrl = function () {\n return this.url_;\n };\n /**\n * @param {Event} event Event.\n * @private\n */\n VectorSource.prototype.handleFeatureChange_ = function (event) {\n var feature = /** @type {import(\"../Feature.js\").default<Geometry>} */ (event.target);\n var featureKey = getUid(feature);\n var geometry = feature.getGeometry();\n if (!geometry) {\n if (!(featureKey in this.nullGeometryFeatures_)) {\n if (this.featuresRtree_) {\n this.featuresRtree_.remove(feature);\n }\n this.nullGeometryFeatures_[featureKey] = feature;\n }\n }\n else {\n var extent = geometry.getExtent();\n if (featureKey in this.nullGeometryFeatures_) {\n delete this.nullGeometryFeatures_[featureKey];\n if (this.featuresRtree_) {\n this.featuresRtree_.insert(extent, feature);\n }\n }\n else {\n if (this.featuresRtree_) {\n this.featuresRtree_.update(extent, feature);\n }\n }\n }\n var id = feature.getId();\n if (id !== undefined) {\n var sid = id.toString();\n if (this.idIndex_[sid] !== feature) {\n this.removeFromIdIndex_(feature);\n this.idIndex_[sid] = feature;\n }\n }\n else {\n this.removeFromIdIndex_(feature);\n this.uidIndex_[featureKey] = feature;\n }\n this.changed();\n this.dispatchEvent(new VectorSourceEvent(VectorEventType.CHANGEFEATURE, feature));\n };\n /**\n * Returns true if the feature is contained within the source.\n * @param {import(\"../Feature.js\").default<Geometry>} feature Feature.\n * @return {boolean} Has feature.\n * @api\n */\n VectorSource.prototype.hasFeature = function (feature) {\n var id = feature.getId();\n if (id !== undefined) {\n return id in this.idIndex_;\n }\n else {\n return getUid(feature) in this.uidIndex_;\n }\n };\n /**\n * @return {boolean} Is empty.\n */\n VectorSource.prototype.isEmpty = function () {\n return this.featuresRtree_.isEmpty() && isEmpty(this.nullGeometryFeatures_);\n };\n /**\n * @param {import(\"../extent.js\").Extent} extent Extent.\n * @param {number} resolution Resolution.\n * @param {import(\"../proj/Projection.js\").default} projection Projection.\n */\n VectorSource.prototype.loadFeatures = function (extent, resolution, projection) {\n var loadedExtentsRtree = this.loadedExtentsRtree_;\n var extentsToLoad = this.strategy_(extent, resolution, projection);\n var _loop_1 = function (i, ii) {\n var extentToLoad = extentsToLoad[i];\n var alreadyLoaded = loadedExtentsRtree.forEachInExtent(extentToLoad, \n /**\n * @param {{extent: import(\"../extent.js\").Extent}} object Object.\n * @return {boolean} Contains.\n */\n function (object) {\n return containsExtent(object.extent, extentToLoad);\n });\n if (!alreadyLoaded) {\n ++this_1.loadingExtentsCount_;\n this_1.dispatchEvent(new VectorSourceEvent(VectorEventType.FEATURESLOADSTART));\n this_1.loader_.call(this_1, extentToLoad, resolution, projection, function (features) {\n --this.loadingExtentsCount_;\n this.dispatchEvent(new VectorSourceEvent(VectorEventType.FEATURESLOADEND, undefined, features));\n }.bind(this_1), function () {\n --this.loadingExtentsCount_;\n this.dispatchEvent(new VectorSourceEvent(VectorEventType.FEATURESLOADERROR));\n }.bind(this_1));\n loadedExtentsRtree.insert(extentToLoad, { extent: extentToLoad.slice() });\n }\n };\n var this_1 = this;\n for (var i = 0, ii = extentsToLoad.length; i < ii; ++i) {\n _loop_1(i, ii);\n }\n this.loading =\n this.loader_.length < 4 ? false : this.loadingExtentsCount_ > 0;\n };\n VectorSource.prototype.refresh = function () {\n this.clear(true);\n this.loadedExtentsRtree_.clear();\n _super.prototype.refresh.call(this);\n };\n /**\n * Remove an extent from the list of loaded extents.\n * @param {import(\"../extent.js\").Extent} extent Extent.\n * @api\n */\n VectorSource.prototype.removeLoadedExtent = function (extent) {\n var loadedExtentsRtree = this.loadedExtentsRtree_;\n var obj;\n loadedExtentsRtree.forEachInExtent(extent, function (object) {\n if (equals(object.extent, extent)) {\n obj = object;\n return true;\n }\n });\n if (obj) {\n loadedExtentsRtree.remove(obj);\n }\n };\n /**\n * Remove a single feature from the source. If you want to remove all features\n * at once, use the {@link module:ol/source/Vector~VectorSource#clear #clear()} method\n * instead.\n * @param {import(\"../Feature.js\").default<Geometry>} feature Feature to remove.\n * @api\n */\n VectorSource.prototype.removeFeature = function (feature) {\n var featureKey = getUid(feature);\n if (featureKey in this.nullGeometryFeatures_) {\n delete this.nullGeometryFeatures_[featureKey];\n }\n else {\n if (this.featuresRtree_) {\n this.featuresRtree_.remove(feature);\n }\n }\n this.removeFeatureInternal(feature);\n this.changed();\n };\n /**\n * Remove feature without firing a `change` event.\n * @param {import(\"../Feature.js\").default<Geometry>} feature Feature.\n * @protected\n */\n VectorSource.prototype.removeFeatureInternal = function (feature) {\n var featureKey = getUid(feature);\n this.featureChangeKeys_[featureKey].forEach(unlistenByKey);\n delete this.featureChangeKeys_[featureKey];\n var id = feature.getId();\n if (id !== undefined) {\n delete this.idIndex_[id.toString()];\n }\n delete this.uidIndex_[featureKey];\n this.dispatchEvent(new VectorSourceEvent(VectorEventType.REMOVEFEATURE, feature));\n };\n /**\n * Remove a feature from the id index. Called internally when the feature id\n * may have changed.\n * @param {import(\"../Feature.js\").default<Geometry>} feature The feature.\n * @return {boolean} Removed the feature from the index.\n * @private\n */\n VectorSource.prototype.removeFromIdIndex_ = function (feature) {\n var removed = false;\n for (var id in this.idIndex_) {\n if (this.idIndex_[id] === feature) {\n delete this.idIndex_[id];\n removed = true;\n break;\n }\n }\n return removed;\n };\n /**\n * Set the new loader of the source. The next render cycle will use the\n * new loader.\n * @param {import(\"../featureloader.js\").FeatureLoader} loader The loader to set.\n * @api\n */\n VectorSource.prototype.setLoader = function (loader) {\n this.loader_ = loader;\n };\n /**\n * Points the source to a new url. The next render cycle will use the new url.\n * @param {string|import(\"../featureloader.js\").FeatureUrlFunction} url Url.\n * @api\n */\n VectorSource.prototype.setUrl = function (url) {\n assert(this.format_, 7); // `format` must be set when `url` is set\n this.url_ = url;\n this.setLoader(xhr(url, this.format_));\n };\n return VectorSource;\n}(Source));\nexport default VectorSource;\n//# sourceMappingURL=Vector.js.map","/**\n * @module ol/style/Text\n */\nimport Fill from './Fill.js';\nimport TextPlacement from './TextPlacement.js';\nimport { toSize } from '../size.js';\n/**\n * The default fill color to use if no fill was set at construction time; a\n * blackish `#333`.\n *\n * @const {string}\n */\nvar DEFAULT_FILL_COLOR = '#333';\n/**\n * @typedef {Object} Options\n * @property {string} [font] Font style as CSS 'font' value, see:\n * https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D/font. Default is '10px sans-serif'\n * @property {number} [maxAngle=Math.PI/4] When `placement` is set to `'line'`, allow a maximum angle between adjacent characters.\n * The expected value is in radians, and the default is 45° (`Math.PI / 4`).\n * @property {number} [offsetX=0] Horizontal text offset in pixels. A positive will shift the text right.\n * @property {number} [offsetY=0] Vertical text offset in pixels. A positive will shift the text down.\n * @property {boolean} [overflow=false] For polygon labels or when `placement` is set to `'line'`, allow text to exceed\n * the width of the polygon at the label position or the length of the path that it follows.\n * @property {import(\"./TextPlacement.js\").default|string} [placement='point'] Text placement.\n * @property {number|import(\"../size.js\").Size} [scale] Scale.\n * @property {boolean} [rotateWithView=false] Whether to rotate the text with the view.\n * @property {number} [rotation=0] Rotation in radians (positive rotation clockwise).\n * @property {string} [text] Text content.\n * @property {string} [textAlign] Text alignment. Possible values: 'left', 'right', 'center', 'end' or 'start'.\n * Default is 'center' for `placement: 'point'`. For `placement: 'line'`, the default is to let the renderer choose a\n * placement where `maxAngle` is not exceeded.\n * @property {string} [textBaseline='middle'] Text base line. Possible values: 'bottom', 'top', 'middle', 'alphabetic',\n * 'hanging', 'ideographic'.\n * @property {import(\"./Fill.js\").default} [fill] Fill style. If none is provided, we'll use a dark fill-style (#333).\n * @property {import(\"./Stroke.js\").default} [stroke] Stroke style.\n * @property {import(\"./Fill.js\").default} [backgroundFill] Fill style for the text background when `placement` is\n * `'point'`. Default is no fill.\n * @property {import(\"./Stroke.js\").default} [backgroundStroke] Stroke style for the text background when `placement`\n * is `'point'`. Default is no stroke.\n * @property {Array<number>} [padding=[0, 0, 0, 0]] Padding in pixels around the text for decluttering and background. The order of\n * values in the array is `[top, right, bottom, left]`.\n */\n/**\n * @classdesc\n * Set text style for vector features.\n * @api\n */\nvar Text = /** @class */ (function () {\n /**\n * @param {Options} [opt_options] Options.\n */\n function Text(opt_options) {\n var options = opt_options || {};\n /**\n * @private\n * @type {string|undefined}\n */\n this.font_ = options.font;\n /**\n * @private\n * @type {number|undefined}\n */\n this.rotation_ = options.rotation;\n /**\n * @private\n * @type {boolean|undefined}\n */\n this.rotateWithView_ = options.rotateWithView;\n /**\n * @private\n * @type {number|import(\"../size.js\").Size|undefined}\n */\n this.scale_ = options.scale;\n /**\n * @private\n * @type {import(\"../size.js\").Size}\n */\n this.scaleArray_ = toSize(options.scale !== undefined ? options.scale : 1);\n /**\n * @private\n * @type {string|undefined}\n */\n this.text_ = options.text;\n /**\n * @private\n * @type {string|undefined}\n */\n this.textAlign_ = options.textAlign;\n /**\n * @private\n * @type {string|undefined}\n */\n this.textBaseline_ = options.textBaseline;\n /**\n * @private\n * @type {import(\"./Fill.js\").default}\n */\n this.fill_ =\n options.fill !== undefined\n ? options.fill\n : new Fill({ color: DEFAULT_FILL_COLOR });\n /**\n * @private\n * @type {number}\n */\n this.maxAngle_ =\n options.maxAngle !== undefined ? options.maxAngle : Math.PI / 4;\n /**\n * @private\n * @type {import(\"./TextPlacement.js\").default|string}\n */\n this.placement_ =\n options.placement !== undefined ? options.placement : TextPlacement.POINT;\n /**\n * @private\n * @type {boolean}\n */\n this.overflow_ = !!options.overflow;\n /**\n * @private\n * @type {import(\"./Stroke.js\").default}\n */\n this.stroke_ = options.stroke !== undefined ? options.stroke : null;\n /**\n * @private\n * @type {number}\n */\n this.offsetX_ = options.offsetX !== undefined ? options.offsetX : 0;\n /**\n * @private\n * @type {number}\n */\n this.offsetY_ = options.offsetY !== undefined ? options.offsetY : 0;\n /**\n * @private\n * @type {import(\"./Fill.js\").default}\n */\n this.backgroundFill_ = options.backgroundFill\n ? options.backgroundFill\n : null;\n /**\n * @private\n * @type {import(\"./Stroke.js\").default}\n */\n this.backgroundStroke_ = options.backgroundStroke\n ? options.backgroundStroke\n : null;\n /**\n * @private\n * @type {Array<number>}\n */\n this.padding_ = options.padding === undefined ? null : options.padding;\n }\n /**\n * Clones the style.\n * @return {Text} The cloned style.\n * @api\n */\n Text.prototype.clone = function () {\n var scale = this.getScale();\n return new Text({\n font: this.getFont(),\n placement: this.getPlacement(),\n maxAngle: this.getMaxAngle(),\n overflow: this.getOverflow(),\n rotation: this.getRotation(),\n rotateWithView: this.getRotateWithView(),\n scale: Array.isArray(scale) ? scale.slice() : scale,\n text: this.getText(),\n textAlign: this.getTextAlign(),\n textBaseline: this.getTextBaseline(),\n fill: this.getFill() ? this.getFill().clone() : undefined,\n stroke: this.getStroke() ? this.getStroke().clone() : undefined,\n offsetX: this.getOffsetX(),\n offsetY: this.getOffsetY(),\n backgroundFill: this.getBackgroundFill()\n ? this.getBackgroundFill().clone()\n : undefined,\n backgroundStroke: this.getBackgroundStroke()\n ? this.getBackgroundStroke().clone()\n : undefined,\n padding: this.getPadding(),\n });\n };\n /**\n * Get the `overflow` configuration.\n * @return {boolean} Let text overflow the length of the path they follow.\n * @api\n */\n Text.prototype.getOverflow = function () {\n return this.overflow_;\n };\n /**\n * Get the font name.\n * @return {string|undefined} Font.\n * @api\n */\n Text.prototype.getFont = function () {\n return this.font_;\n };\n /**\n * Get the maximum angle between adjacent characters.\n * @return {number} Angle in radians.\n * @api\n */\n Text.prototype.getMaxAngle = function () {\n return this.maxAngle_;\n };\n /**\n * Get the label placement.\n * @return {import(\"./TextPlacement.js\").default|string} Text placement.\n * @api\n */\n Text.prototype.getPlacement = function () {\n return this.placement_;\n };\n /**\n * Get the x-offset for the text.\n * @return {number} Horizontal text offset.\n * @api\n */\n Text.prototype.getOffsetX = function () {\n return this.offsetX_;\n };\n /**\n * Get the y-offset for the text.\n * @return {number} Vertical text offset.\n * @api\n */\n Text.prototype.getOffsetY = function () {\n return this.offsetY_;\n };\n /**\n * Get the fill style for the text.\n * @return {import(\"./Fill.js\").default} Fill style.\n * @api\n */\n Text.prototype.getFill = function () {\n return this.fill_;\n };\n /**\n * Determine whether the text rotates with the map.\n * @return {boolean|undefined} Rotate with map.\n * @api\n */\n Text.prototype.getRotateWithView = function () {\n return this.rotateWithView_;\n };\n /**\n * Get the text rotation.\n * @return {number|undefined} Rotation.\n * @api\n */\n Text.prototype.getRotation = function () {\n return this.rotation_;\n };\n /**\n * Get the text scale.\n * @return {number|import(\"../size.js\").Size|undefined} Scale.\n * @api\n */\n Text.prototype.getScale = function () {\n return this.scale_;\n };\n /**\n * Get the symbolizer scale array.\n * @return {import(\"../size.js\").Size} Scale array.\n */\n Text.prototype.getScaleArray = function () {\n return this.scaleArray_;\n };\n /**\n * Get the stroke style for the text.\n * @return {import(\"./Stroke.js\").default} Stroke style.\n * @api\n */\n Text.prototype.getStroke = function () {\n return this.stroke_;\n };\n /**\n * Get the text to be rendered.\n * @return {string|undefined} Text.\n * @api\n */\n Text.prototype.getText = function () {\n return this.text_;\n };\n /**\n * Get the text alignment.\n * @return {string|undefined} Text align.\n * @api\n */\n Text.prototype.getTextAlign = function () {\n return this.textAlign_;\n };\n /**\n * Get the text baseline.\n * @return {string|undefined} Text baseline.\n * @api\n */\n Text.prototype.getTextBaseline = function () {\n return this.textBaseline_;\n };\n /**\n * Get the background fill style for the text.\n * @return {import(\"./Fill.js\").default} Fill style.\n * @api\n */\n Text.prototype.getBackgroundFill = function () {\n return this.backgroundFill_;\n };\n /**\n * Get the background stroke style for the text.\n * @return {import(\"./Stroke.js\").default} Stroke style.\n * @api\n */\n Text.prototype.getBackgroundStroke = function () {\n return this.backgroundStroke_;\n };\n /**\n * Get the padding for the text.\n * @return {Array<number>} Padding.\n * @api\n */\n Text.prototype.getPadding = function () {\n return this.padding_;\n };\n /**\n * Set the `overflow` property.\n *\n * @param {boolean} overflow Let text overflow the path that it follows.\n * @api\n */\n Text.prototype.setOverflow = function (overflow) {\n this.overflow_ = overflow;\n };\n /**\n * Set the font.\n *\n * @param {string|undefined} font Font.\n * @api\n */\n Text.prototype.setFont = function (font) {\n this.font_ = font;\n };\n /**\n * Set the maximum angle between adjacent characters.\n *\n * @param {number} maxAngle Angle in radians.\n * @api\n */\n Text.prototype.setMaxAngle = function (maxAngle) {\n this.maxAngle_ = maxAngle;\n };\n /**\n * Set the x offset.\n *\n * @param {number} offsetX Horizontal text offset.\n * @api\n */\n Text.prototype.setOffsetX = function (offsetX) {\n this.offsetX_ = offsetX;\n };\n /**\n * Set the y offset.\n *\n * @param {number} offsetY Vertical text offset.\n * @api\n */\n Text.prototype.setOffsetY = function (offsetY) {\n this.offsetY_ = offsetY;\n };\n /**\n * Set the text placement.\n *\n * @param {import(\"./TextPlacement.js\").default|string} placement Placement.\n * @api\n */\n Text.prototype.setPlacement = function (placement) {\n this.placement_ = placement;\n };\n /**\n * Set whether to rotate the text with the view.\n *\n * @param {boolean} rotateWithView Rotate with map.\n * @api\n */\n Text.prototype.setRotateWithView = function (rotateWithView) {\n this.rotateWithView_ = rotateWithView;\n };\n /**\n * Set the fill.\n *\n * @param {import(\"./Fill.js\").default} fill Fill style.\n * @api\n */\n Text.prototype.setFill = function (fill) {\n this.fill_ = fill;\n };\n /**\n * Set the rotation.\n *\n * @param {number|undefined} rotation Rotation.\n * @api\n */\n Text.prototype.setRotation = function (rotation) {\n this.rotation_ = rotation;\n };\n /**\n * Set the scale.\n *\n * @param {number|import(\"../size.js\").Size|undefined} scale Scale.\n * @api\n */\n Text.prototype.setScale = function (scale) {\n this.scale_ = scale;\n this.scaleArray_ = toSize(scale !== undefined ? scale : 1);\n };\n /**\n * Set the stroke.\n *\n * @param {import(\"./Stroke.js\").default} stroke Stroke style.\n * @api\n */\n Text.prototype.setStroke = function (stroke) {\n this.stroke_ = stroke;\n };\n /**\n * Set the text.\n *\n * @param {string|undefined} text Text.\n * @api\n */\n Text.prototype.setText = function (text) {\n this.text_ = text;\n };\n /**\n * Set the text alignment.\n *\n * @param {string|undefined} textAlign Text align.\n * @api\n */\n Text.prototype.setTextAlign = function (textAlign) {\n this.textAlign_ = textAlign;\n };\n /**\n * Set the text baseline.\n *\n * @param {string|undefined} textBaseline Text baseline.\n * @api\n */\n Text.prototype.setTextBaseline = function (textBaseline) {\n this.textBaseline_ = textBaseline;\n };\n /**\n * Set the background fill.\n *\n * @param {import(\"./Fill.js\").default} fill Fill style.\n * @api\n */\n Text.prototype.setBackgroundFill = function (fill) {\n this.backgroundFill_ = fill;\n };\n /**\n * Set the background stroke.\n *\n * @param {import(\"./Stroke.js\").default} stroke Stroke style.\n * @api\n */\n Text.prototype.setBackgroundStroke = function (stroke) {\n this.backgroundStroke_ = stroke;\n };\n /**\n * Set the padding (`[top, right, bottom, left]`).\n *\n * @param {!Array<number>} padding Padding.\n * @api\n */\n Text.prototype.setPadding = function (padding) {\n this.padding_ = padding;\n };\n return Text;\n}());\nexport default Text;\n//# sourceMappingURL=Text.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/Feature\n */\nimport BaseObject from './Object.js';\nimport EventType from './events/EventType.js';\nimport { assert } from './asserts.js';\nimport { listen, unlistenByKey } from './events.js';\n/**\n * @typedef {typeof Feature|typeof import(\"./render/Feature.js\").default} FeatureClass\n */\n/**\n * @typedef {Feature<import(\"./geom/Geometry.js\").default>|import(\"./render/Feature.js\").default} FeatureLike\n */\n/***\n * @template Return\n * @typedef {import(\"./Observable\").OnSignature<import(\"./Observable\").EventTypes, import(\"./events/Event.js\").default, Return> &\n * import(\"./Observable\").OnSignature<import(\"./ObjectEventType\").Types|'change:geometry', import(\"./Object\").ObjectEvent, Return> &\n * import(\"./Observable\").CombinedOnSignature<import(\"./Observable\").EventTypes|import(\"./ObjectEventType\").Types\n * |'change:geometry', Return>} FeatureOnSignature\n */\n/***\n * @template Geometry\n * @typedef {Object<string, *> & { geometry?: Geometry }} ObjectWithGeometry\n */\n/**\n * @classdesc\n * A vector object for geographic features with a geometry and other\n * attribute properties, similar to the features in vector file formats like\n * GeoJSON.\n *\n * Features can be styled individually with `setStyle`; otherwise they use the\n * style of their vector layer.\n *\n * Note that attribute properties are set as {@link module:ol/Object} properties on\n * the feature object, so they are observable, and have get/set accessors.\n *\n * Typically, a feature has a single geometry property. You can set the\n * geometry using the `setGeometry` method and get it with `getGeometry`.\n * It is possible to store more than one geometry on a feature using attribute\n * properties. By default, the geometry used for rendering is identified by\n * the property name `geometry`. If you want to use another geometry property\n * for rendering, use the `setGeometryName` method to change the attribute\n * property associated with the geometry for the feature. For example:\n *\n * ```js\n *\n * import Feature from 'ol/Feature';\n * import Polygon from 'ol/geom/Polygon';\n * import Point from 'ol/geom/Point';\n *\n * var feature = new Feature({\n * geometry: new Polygon(polyCoords),\n * labelPoint: new Point(labelCoords),\n * name: 'My Polygon'\n * });\n *\n * // get the polygon geometry\n * var poly = feature.getGeometry();\n *\n * // Render the feature as a point using the coordinates from labelPoint\n * feature.setGeometryName('labelPoint');\n *\n * // get the point geometry\n * var point = feature.getGeometry();\n * ```\n *\n * @api\n * @template {import(\"./geom/Geometry.js\").default} Geometry\n */\nvar Feature = /** @class */ (function (_super) {\n __extends(Feature, _super);\n /**\n * @param {Geometry|ObjectWithGeometry<Geometry>} [opt_geometryOrProperties]\n * You may pass a Geometry object directly, or an object literal containing\n * properties. If you pass an object literal, you may include a Geometry\n * associated with a `geometry` key.\n */\n function Feature(opt_geometryOrProperties) {\n var _this = _super.call(this) || this;\n /***\n * @type {FeatureOnSignature<import(\"./events\").EventsKey>}\n */\n _this.on;\n /***\n * @type {FeatureOnSignature<import(\"./events\").EventsKey>}\n */\n _this.once;\n /***\n * @type {FeatureOnSignature<void>}\n */\n _this.un;\n /**\n * @private\n * @type {number|string|undefined}\n */\n _this.id_ = undefined;\n /**\n * @type {string}\n * @private\n */\n _this.geometryName_ = 'geometry';\n /**\n * User provided style.\n * @private\n * @type {import(\"./style/Style.js\").StyleLike}\n */\n _this.style_ = null;\n /**\n * @private\n * @type {import(\"./style/Style.js\").StyleFunction|undefined}\n */\n _this.styleFunction_ = undefined;\n /**\n * @private\n * @type {?import(\"./events.js\").EventsKey}\n */\n _this.geometryChangeKey_ = null;\n _this.addChangeListener(_this.geometryName_, _this.handleGeometryChanged_);\n if (opt_geometryOrProperties) {\n if (typeof (\n /** @type {?} */ (opt_geometryOrProperties).getSimplifiedGeometry) === 'function') {\n var geometry = /** @type {Geometry} */ (opt_geometryOrProperties);\n _this.setGeometry(geometry);\n }\n else {\n /** @type {Object<string, *>} */\n var properties = opt_geometryOrProperties;\n _this.setProperties(properties);\n }\n }\n return _this;\n }\n /**\n * Clone this feature. If the original feature has a geometry it\n * is also cloned. The feature id is not set in the clone.\n * @return {Feature<Geometry>} The clone.\n * @api\n */\n Feature.prototype.clone = function () {\n var clone = /** @type {Feature<Geometry>} */ (new Feature(this.hasProperties() ? this.getProperties() : null));\n clone.setGeometryName(this.getGeometryName());\n var geometry = this.getGeometry();\n if (geometry) {\n clone.setGeometry(/** @type {Geometry} */ (geometry.clone()));\n }\n var style = this.getStyle();\n if (style) {\n clone.setStyle(style);\n }\n return clone;\n };\n /**\n * Get the feature's default geometry. A feature may have any number of named\n * geometries. The \"default\" geometry (the one that is rendered by default) is\n * set when calling {@link module:ol/Feature~Feature#setGeometry}.\n * @return {Geometry|undefined} The default geometry for the feature.\n * @api\n * @observable\n */\n Feature.prototype.getGeometry = function () {\n return /** @type {Geometry|undefined} */ (this.get(this.geometryName_));\n };\n /**\n * Get the feature identifier. This is a stable identifier for the feature and\n * is either set when reading data from a remote source or set explicitly by\n * calling {@link module:ol/Feature~Feature#setId}.\n * @return {number|string|undefined} Id.\n * @api\n */\n Feature.prototype.getId = function () {\n return this.id_;\n };\n /**\n * Get the name of the feature's default geometry. By default, the default\n * geometry is named `geometry`.\n * @return {string} Get the property name associated with the default geometry\n * for this feature.\n * @api\n */\n Feature.prototype.getGeometryName = function () {\n return this.geometryName_;\n };\n /**\n * Get the feature's style. Will return what was provided to the\n * {@link module:ol/Feature~Feature#setStyle} method.\n * @return {import(\"./style/Style.js\").StyleLike|undefined} The feature style.\n * @api\n */\n Feature.prototype.getStyle = function () {\n return this.style_;\n };\n /**\n * Get the feature's style function.\n * @return {import(\"./style/Style.js\").StyleFunction|undefined} Return a function\n * representing the current style of this feature.\n * @api\n */\n Feature.prototype.getStyleFunction = function () {\n return this.styleFunction_;\n };\n /**\n * @private\n */\n Feature.prototype.handleGeometryChange_ = function () {\n this.changed();\n };\n /**\n * @private\n */\n Feature.prototype.handleGeometryChanged_ = function () {\n if (this.geometryChangeKey_) {\n unlistenByKey(this.geometryChangeKey_);\n this.geometryChangeKey_ = null;\n }\n var geometry = this.getGeometry();\n if (geometry) {\n this.geometryChangeKey_ = listen(geometry, EventType.CHANGE, this.handleGeometryChange_, this);\n }\n this.changed();\n };\n /**\n * Set the default geometry for the feature. This will update the property\n * with the name returned by {@link module:ol/Feature~Feature#getGeometryName}.\n * @param {Geometry|undefined} geometry The new geometry.\n * @api\n * @observable\n */\n Feature.prototype.setGeometry = function (geometry) {\n this.set(this.geometryName_, geometry);\n };\n /**\n * Set the style for the feature to override the layer style. This can be a\n * single style object, an array of styles, or a function that takes a\n * resolution and returns an array of styles. To unset the feature style, call\n * `setStyle()` without arguments or a falsey value.\n * @param {import(\"./style/Style.js\").StyleLike} [opt_style] Style for this feature.\n * @api\n * @fires module:ol/events/Event~BaseEvent#event:change\n */\n Feature.prototype.setStyle = function (opt_style) {\n this.style_ = opt_style;\n this.styleFunction_ = !opt_style\n ? undefined\n : createStyleFunction(opt_style);\n this.changed();\n };\n /**\n * Set the feature id. The feature id is considered stable and may be used when\n * requesting features or comparing identifiers returned from a remote source.\n * The feature id can be used with the\n * {@link module:ol/source/Vector~VectorSource#getFeatureById} method.\n * @param {number|string|undefined} id The feature id.\n * @api\n * @fires module:ol/events/Event~BaseEvent#event:change\n */\n Feature.prototype.setId = function (id) {\n this.id_ = id;\n this.changed();\n };\n /**\n * Set the property name to be used when getting the feature's default geometry.\n * When calling {@link module:ol/Feature~Feature#getGeometry}, the value of the property with\n * this name will be returned.\n * @param {string} name The property name of the default geometry.\n * @api\n */\n Feature.prototype.setGeometryName = function (name) {\n this.removeChangeListener(this.geometryName_, this.handleGeometryChanged_);\n this.geometryName_ = name;\n this.addChangeListener(this.geometryName_, this.handleGeometryChanged_);\n this.handleGeometryChanged_();\n };\n return Feature;\n}(BaseObject));\n/**\n * Convert the provided object into a feature style function. Functions passed\n * through unchanged. Arrays of Style or single style objects wrapped\n * in a new feature style function.\n * @param {!import(\"./style/Style.js\").StyleFunction|!Array<import(\"./style/Style.js\").default>|!import(\"./style/Style.js\").default} obj\n * A feature style function, a single style, or an array of styles.\n * @return {import(\"./style/Style.js\").StyleFunction} A style function.\n */\nexport function createStyleFunction(obj) {\n if (typeof obj === 'function') {\n return obj;\n }\n else {\n /**\n * @type {Array<import(\"./style/Style.js\").default>}\n */\n var styles_1;\n if (Array.isArray(obj)) {\n styles_1 = obj;\n }\n else {\n assert(typeof ( /** @type {?} */(obj).getZIndex) === 'function', 41); // Expected an `import(\"./style/Style.js\").Style` or an array of `import(\"./style/Style.js\").Style`\n var style = /** @type {import(\"./style/Style.js\").default} */ (obj);\n styles_1 = [style];\n }\n return function () {\n return styles_1;\n };\n }\n}\nexport default Feature;\n//# sourceMappingURL=Feature.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/renderer/Map\n */\nimport Disposable from '../Disposable.js';\nimport { TRUE } from '../functions.js';\nimport { abstract } from '../util.js';\nimport { compose as composeTransform, makeInverse } from '../transform.js';\nimport { getWidth } from '../extent.js';\nimport { shared as iconImageCache } from '../style/IconImageCache.js';\nimport { inView } from '../layer/Layer.js';\nimport { wrapX } from '../coordinate.js';\n/**\n * @typedef HitMatch\n * @property {import(\"../Feature.js\").FeatureLike} feature Feature.\n * @property {import(\"../layer/Layer.js\").default} layer Layer.\n * @property {import(\"../geom/SimpleGeometry.js\").default} geometry Geometry.\n * @property {number} distanceSq Squared distance.\n * @property {import(\"./vector.js\").FeatureCallback<T>} callback Callback.\n * @template T\n */\n/**\n * @abstract\n */\nvar MapRenderer = /** @class */ (function (_super) {\n __extends(MapRenderer, _super);\n /**\n * @param {import(\"../PluggableMap.js\").default} map Map.\n */\n function MapRenderer(map) {\n var _this = _super.call(this) || this;\n /**\n * @private\n * @type {import(\"../PluggableMap.js\").default}\n */\n _this.map_ = map;\n return _this;\n }\n /**\n * @abstract\n * @param {import(\"../render/EventType.js\").default} type Event type.\n * @param {import(\"../PluggableMap.js\").FrameState} frameState Frame state.\n */\n MapRenderer.prototype.dispatchRenderEvent = function (type, frameState) {\n abstract();\n };\n /**\n * @param {import(\"../PluggableMap.js\").FrameState} frameState FrameState.\n * @protected\n */\n MapRenderer.prototype.calculateMatrices2D = function (frameState) {\n var viewState = frameState.viewState;\n var coordinateToPixelTransform = frameState.coordinateToPixelTransform;\n var pixelToCoordinateTransform = frameState.pixelToCoordinateTransform;\n composeTransform(coordinateToPixelTransform, frameState.size[0] / 2, frameState.size[1] / 2, 1 / viewState.resolution, -1 / viewState.resolution, -viewState.rotation, -viewState.center[0], -viewState.center[1]);\n makeInverse(pixelToCoordinateTransform, coordinateToPixelTransform);\n };\n /**\n * @param {import(\"../coordinate.js\").Coordinate} coordinate Coordinate.\n * @param {import(\"../PluggableMap.js\").FrameState} frameState FrameState.\n * @param {number} hitTolerance Hit tolerance in pixels.\n * @param {boolean} checkWrapped Check for wrapped geometries.\n * @param {import(\"./vector.js\").FeatureCallback<T>} callback Feature callback.\n * @param {S} thisArg Value to use as `this` when executing `callback`.\n * @param {function(this: U, import(\"../layer/Layer.js\").default): boolean} layerFilter Layer filter\n * function, only layers which are visible and for which this function\n * returns `true` will be tested for features. By default, all visible\n * layers will be tested.\n * @param {U} thisArg2 Value to use as `this` when executing `layerFilter`.\n * @return {T|undefined} Callback result.\n * @template S,T,U\n */\n MapRenderer.prototype.forEachFeatureAtCoordinate = function (coordinate, frameState, hitTolerance, checkWrapped, callback, thisArg, layerFilter, thisArg2) {\n var result;\n var viewState = frameState.viewState;\n /**\n * @param {boolean} managed Managed layer.\n * @param {import(\"../Feature.js\").FeatureLike} feature Feature.\n * @param {import(\"../layer/Layer.js\").default} layer Layer.\n * @param {import(\"../geom/Geometry.js\").default} geometry Geometry.\n * @return {T|undefined} Callback result.\n */\n function forEachFeatureAtCoordinate(managed, feature, layer, geometry) {\n return callback.call(thisArg, feature, managed ? layer : null, geometry);\n }\n var projection = viewState.projection;\n var translatedCoordinate = wrapX(coordinate.slice(), projection);\n var offsets = [[0, 0]];\n if (projection.canWrapX() && checkWrapped) {\n var projectionExtent = projection.getExtent();\n var worldWidth = getWidth(projectionExtent);\n offsets.push([-worldWidth, 0], [worldWidth, 0]);\n }\n var layerStates = frameState.layerStatesArray;\n var numLayers = layerStates.length;\n var matches = /** @type {Array<HitMatch<T>>} */ ([]);\n var tmpCoord = [];\n for (var i = 0; i < offsets.length; i++) {\n for (var j = numLayers - 1; j >= 0; --j) {\n var layerState = layerStates[j];\n var layer = layerState.layer;\n if (layer.hasRenderer() &&\n inView(layerState, viewState) &&\n layerFilter.call(thisArg2, layer)) {\n var layerRenderer = layer.getRenderer();\n var source = layer.getSource();\n if (layerRenderer && source) {\n var coordinates = source.getWrapX()\n ? translatedCoordinate\n : coordinate;\n var callback_1 = forEachFeatureAtCoordinate.bind(null, layerState.managed);\n tmpCoord[0] = coordinates[0] + offsets[i][0];\n tmpCoord[1] = coordinates[1] + offsets[i][1];\n result = layerRenderer.forEachFeatureAtCoordinate(tmpCoord, frameState, hitTolerance, callback_1, matches);\n }\n if (result) {\n return result;\n }\n }\n }\n }\n if (matches.length === 0) {\n return undefined;\n }\n var order = 1 / matches.length;\n matches.forEach(function (m, i) { return (m.distanceSq += i * order); });\n matches.sort(function (a, b) { return a.distanceSq - b.distanceSq; });\n matches.some(function (m) {\n return (result = m.callback(m.feature, m.layer, m.geometry));\n });\n return result;\n };\n /**\n * @abstract\n * @param {import(\"../pixel.js\").Pixel} pixel Pixel.\n * @param {import(\"../PluggableMap.js\").FrameState} frameState FrameState.\n * @param {number} hitTolerance Hit tolerance in pixels.\n * @param {function(import(\"../layer/Layer.js\").default<import(\"../source/Source\").default>, (Uint8ClampedArray|Uint8Array)): T} callback Layer\n * callback.\n * @param {function(import(\"../layer/Layer.js\").default<import(\"../source/Source\").default>): boolean} layerFilter Layer filter\n * function, only layers which are visible and for which this function\n * returns `true` will be tested for features. By default, all visible\n * layers will be tested.\n * @return {T|undefined} Callback result.\n * @template T\n */\n MapRenderer.prototype.forEachLayerAtPixel = function (pixel, frameState, hitTolerance, callback, layerFilter) {\n return abstract();\n };\n /**\n * @param {import(\"../coordinate.js\").Coordinate} coordinate Coordinate.\n * @param {import(\"../PluggableMap.js\").FrameState} frameState FrameState.\n * @param {number} hitTolerance Hit tolerance in pixels.\n * @param {boolean} checkWrapped Check for wrapped geometries.\n * @param {function(this: U, import(\"../layer/Layer.js\").default): boolean} layerFilter Layer filter\n * function, only layers which are visible and for which this function\n * returns `true` will be tested for features. By default, all visible\n * layers will be tested.\n * @param {U} thisArg Value to use as `this` when executing `layerFilter`.\n * @return {boolean} Is there a feature at the given coordinate?\n * @template U\n */\n MapRenderer.prototype.hasFeatureAtCoordinate = function (coordinate, frameState, hitTolerance, checkWrapped, layerFilter, thisArg) {\n var hasFeature = this.forEachFeatureAtCoordinate(coordinate, frameState, hitTolerance, checkWrapped, TRUE, this, layerFilter, thisArg);\n return hasFeature !== undefined;\n };\n /**\n * @return {import(\"../PluggableMap.js\").default} Map.\n */\n MapRenderer.prototype.getMap = function () {\n return this.map_;\n };\n /**\n * Render.\n * @abstract\n * @param {?import(\"../PluggableMap.js\").FrameState} frameState Frame state.\n */\n MapRenderer.prototype.renderFrame = function (frameState) {\n abstract();\n };\n /**\n * @param {import(\"../PluggableMap.js\").FrameState} frameState Frame state.\n * @protected\n */\n MapRenderer.prototype.scheduleExpireIconCache = function (frameState) {\n if (iconImageCache.canExpireCache()) {\n frameState.postRenderFunctions.push(expireIconCache);\n }\n };\n return MapRenderer;\n}(Disposable));\n/**\n * @param {import(\"../PluggableMap.js\").default} map Map.\n * @param {import(\"../PluggableMap.js\").FrameState} frameState Frame state.\n */\nfunction expireIconCache(map, frameState) {\n iconImageCache.expire();\n}\nexport default MapRenderer;\n//# sourceMappingURL=Map.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/renderer/Composite\n */\nimport MapRenderer from './Map.js';\nimport ObjectEventType from '../ObjectEventType.js';\nimport RenderEvent from '../render/Event.js';\nimport RenderEventType from '../render/EventType.js';\nimport SourceState from '../source/State.js';\nimport { CLASS_UNSELECTABLE } from '../css.js';\nimport { checkedFonts } from '../render/canvas.js';\nimport { inView } from '../layer/Layer.js';\nimport { listen, unlistenByKey } from '../events.js';\nimport { replaceChildren } from '../dom.js';\n/**\n * @classdesc\n * Canvas map renderer.\n * @api\n */\nvar CompositeMapRenderer = /** @class */ (function (_super) {\n __extends(CompositeMapRenderer, _super);\n /**\n * @param {import(\"../PluggableMap.js\").default} map Map.\n */\n function CompositeMapRenderer(map) {\n var _this = _super.call(this, map) || this;\n /**\n * @type {import(\"../events.js\").EventsKey}\n */\n _this.fontChangeListenerKey_ = listen(checkedFonts, ObjectEventType.PROPERTYCHANGE, map.redrawText.bind(map));\n /**\n * @private\n * @type {HTMLDivElement}\n */\n _this.element_ = document.createElement('div');\n var style = _this.element_.style;\n style.position = 'absolute';\n style.width = '100%';\n style.height = '100%';\n style.zIndex = '0';\n _this.element_.className = CLASS_UNSELECTABLE + ' ol-layers';\n var container = map.getViewport();\n container.insertBefore(_this.element_, container.firstChild || null);\n /**\n * @private\n * @type {Array<HTMLElement>}\n */\n _this.children_ = [];\n /**\n * @private\n * @type {boolean}\n */\n _this.renderedVisible_ = true;\n return _this;\n }\n /**\n * @param {import(\"../render/EventType.js\").default} type Event type.\n * @param {import(\"../PluggableMap.js\").FrameState} frameState Frame state.\n */\n CompositeMapRenderer.prototype.dispatchRenderEvent = function (type, frameState) {\n var map = this.getMap();\n if (map.hasListener(type)) {\n var event_1 = new RenderEvent(type, undefined, frameState);\n map.dispatchEvent(event_1);\n }\n };\n CompositeMapRenderer.prototype.disposeInternal = function () {\n unlistenByKey(this.fontChangeListenerKey_);\n this.element_.parentNode.removeChild(this.element_);\n _super.prototype.disposeInternal.call(this);\n };\n /**\n * Render.\n * @param {?import(\"../PluggableMap.js\").FrameState} frameState Frame state.\n */\n CompositeMapRenderer.prototype.renderFrame = function (frameState) {\n if (!frameState) {\n if (this.renderedVisible_) {\n this.element_.style.display = 'none';\n this.renderedVisible_ = false;\n }\n return;\n }\n this.calculateMatrices2D(frameState);\n this.dispatchRenderEvent(RenderEventType.PRECOMPOSE, frameState);\n var layerStatesArray = frameState.layerStatesArray.sort(function (a, b) {\n return a.zIndex - b.zIndex;\n });\n var viewState = frameState.viewState;\n this.children_.length = 0;\n /**\n * @type {Array<import(\"../layer/BaseVector.js\").default>}\n */\n var declutterLayers = [];\n var previousElement = null;\n for (var i = 0, ii = layerStatesArray.length; i < ii; ++i) {\n var layerState = layerStatesArray[i];\n frameState.layerIndex = i;\n if (!inView(layerState, viewState) ||\n (layerState.sourceState != SourceState.READY &&\n layerState.sourceState != SourceState.UNDEFINED)) {\n continue;\n }\n var layer = layerState.layer;\n var element = layer.render(frameState, previousElement);\n if (!element) {\n continue;\n }\n if (element !== previousElement) {\n this.children_.push(element);\n previousElement = element;\n }\n if ('getDeclutter' in layer) {\n declutterLayers.push(\n /** @type {import(\"../layer/BaseVector.js\").default} */ (layer));\n }\n }\n for (var i = declutterLayers.length - 1; i >= 0; --i) {\n declutterLayers[i].renderDeclutter(frameState);\n }\n replaceChildren(this.element_, this.children_);\n this.dispatchRenderEvent(RenderEventType.POSTCOMPOSE, frameState);\n if (!this.renderedVisible_) {\n this.element_.style.display = '';\n this.renderedVisible_ = true;\n }\n this.scheduleExpireIconCache(frameState);\n };\n /**\n * @param {import(\"../pixel.js\").Pixel} pixel Pixel.\n * @param {import(\"../PluggableMap.js\").FrameState} frameState FrameState.\n * @param {number} hitTolerance Hit tolerance in pixels.\n * @param {function(import(\"../layer/Layer.js\").default<import(\"../source/Source\").default>, (Uint8ClampedArray|Uint8Array)): T} callback Layer\n * callback.\n * @param {function(import(\"../layer/Layer.js\").default<import(\"../source/Source\").default>): boolean} layerFilter Layer filter\n * function, only layers which are visible and for which this function\n * returns `true` will be tested for features. By default, all visible\n * layers will be tested.\n * @return {T|undefined} Callback result.\n * @template T\n */\n CompositeMapRenderer.prototype.forEachLayerAtPixel = function (pixel, frameState, hitTolerance, callback, layerFilter) {\n var viewState = frameState.viewState;\n var layerStates = frameState.layerStatesArray;\n var numLayers = layerStates.length;\n for (var i = numLayers - 1; i >= 0; --i) {\n var layerState = layerStates[i];\n var layer = layerState.layer;\n if (layer.hasRenderer() &&\n inView(layerState, viewState) &&\n layerFilter(layer)) {\n var layerRenderer = layer.getRenderer();\n var data = layerRenderer.getDataAtPixel(pixel, frameState, hitTolerance);\n if (data) {\n var result = callback(layer, data);\n if (result) {\n return result;\n }\n }\n }\n }\n return undefined;\n };\n return CompositeMapRenderer;\n}(MapRenderer));\nexport default CompositeMapRenderer;\n//# sourceMappingURL=Composite.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/layer/Group\n */\nimport BaseLayer from './Base.js';\nimport Collection from '../Collection.js';\nimport CollectionEventType from '../CollectionEventType.js';\nimport EventType from '../events/EventType.js';\nimport ObjectEventType from '../ObjectEventType.js';\nimport SourceState from '../source/State.js';\nimport { assert } from '../asserts.js';\nimport { assign, clear } from '../obj.js';\nimport { getIntersection } from '../extent.js';\nimport { getUid } from '../util.js';\nimport { listen, unlistenByKey } from '../events.js';\n/***\n * @template Return\n * @typedef {import(\"../Observable\").OnSignature<import(\"../Observable\").EventTypes, import(\"../events/Event.js\").default, Return> &\n * import(\"../Observable\").OnSignature<import(\"./Base\").BaseLayerObjectEventTypes|\n * 'change:layers', import(\"../Object\").ObjectEvent, Return> &\n * import(\"../Observable\").CombinedOnSignature<import(\"../Observable\").EventTypes|import(\"./Base\").BaseLayerObjectEventTypes|'change:layers', Return>} GroupOnSignature\n */\n/**\n * @typedef {Object} Options\n * @property {number} [opacity=1] Opacity (0, 1).\n * @property {boolean} [visible=true] Visibility.\n * @property {import(\"../extent.js\").Extent} [extent] The bounding extent for layer rendering. The layer will not be\n * rendered outside of this extent.\n * @property {number} [zIndex] The z-index for layer rendering. At rendering time, the layers\n * will be ordered, first by Z-index and then by position. When `undefined`, a `zIndex` of 0 is assumed\n * for layers that are added to the map's `layers` collection, or `Infinity` when the layer's `setMap()`\n * method was used.\n * @property {number} [minResolution] The minimum resolution (inclusive) at which this layer will be\n * visible.\n * @property {number} [maxResolution] The maximum resolution (exclusive) below which this layer will\n * be visible.\n * @property {number} [minZoom] The minimum view zoom level (exclusive) above which this layer will be\n * visible.\n * @property {number} [maxZoom] The maximum view zoom level (inclusive) at which this layer will\n * be visible.\n * @property {Array<import(\"./Base.js\").default>|import(\"../Collection.js\").default<import(\"./Base.js\").default>} [layers] Child layers.\n * @property {Object<string, *>} [properties] Arbitrary observable properties. Can be accessed with `#get()` and `#set()`.\n */\n/**\n * @enum {string}\n * @private\n */\nvar Property = {\n LAYERS: 'layers',\n};\n/**\n * @classdesc\n * A {@link module:ol/Collection~Collection} of layers that are handled together.\n *\n * A generic `change` event is triggered when the group/Collection changes.\n *\n * @api\n */\nvar LayerGroup = /** @class */ (function (_super) {\n __extends(LayerGroup, _super);\n /**\n * @param {Options} [opt_options] Layer options.\n */\n function LayerGroup(opt_options) {\n var _this = this;\n var options = opt_options || {};\n var baseOptions = /** @type {Options} */ (assign({}, options));\n delete baseOptions.layers;\n var layers = options.layers;\n _this = _super.call(this, baseOptions) || this;\n /***\n * @type {GroupOnSignature<import(\"../events\").EventsKey>}\n */\n _this.on;\n /***\n * @type {GroupOnSignature<import(\"../events\").EventsKey>}\n */\n _this.once;\n /***\n * @type {GroupOnSignature<void>}\n */\n _this.un;\n /**\n * @private\n * @type {Array<import(\"../events.js\").EventsKey>}\n */\n _this.layersListenerKeys_ = [];\n /**\n * @private\n * @type {Object<string, Array<import(\"../events.js\").EventsKey>>}\n */\n _this.listenerKeys_ = {};\n _this.addChangeListener(Property.LAYERS, _this.handleLayersChanged_);\n if (layers) {\n if (Array.isArray(layers)) {\n layers = new Collection(layers.slice(), { unique: true });\n }\n else {\n assert(typeof ( /** @type {?} */(layers).getArray) === 'function', 43); // Expected `layers` to be an array or a `Collection`\n }\n }\n else {\n layers = new Collection(undefined, { unique: true });\n }\n _this.setLayers(layers);\n return _this;\n }\n /**\n * @private\n */\n LayerGroup.prototype.handleLayerChange_ = function () {\n this.changed();\n };\n /**\n * @private\n */\n LayerGroup.prototype.handleLayersChanged_ = function () {\n this.layersListenerKeys_.forEach(unlistenByKey);\n this.layersListenerKeys_.length = 0;\n var layers = this.getLayers();\n this.layersListenerKeys_.push(listen(layers, CollectionEventType.ADD, this.handleLayersAdd_, this), listen(layers, CollectionEventType.REMOVE, this.handleLayersRemove_, this));\n for (var id in this.listenerKeys_) {\n this.listenerKeys_[id].forEach(unlistenByKey);\n }\n clear(this.listenerKeys_);\n var layersArray = layers.getArray();\n for (var i = 0, ii = layersArray.length; i < ii; i++) {\n var layer = layersArray[i];\n this.listenerKeys_[getUid(layer)] = [\n listen(layer, ObjectEventType.PROPERTYCHANGE, this.handleLayerChange_, this),\n listen(layer, EventType.CHANGE, this.handleLayerChange_, this),\n ];\n }\n this.changed();\n };\n /**\n * @param {import(\"../Collection.js\").CollectionEvent} collectionEvent CollectionEvent.\n * @private\n */\n LayerGroup.prototype.handleLayersAdd_ = function (collectionEvent) {\n var layer = /** @type {import(\"./Base.js\").default} */ (collectionEvent.element);\n this.listenerKeys_[getUid(layer)] = [\n listen(layer, ObjectEventType.PROPERTYCHANGE, this.handleLayerChange_, this),\n listen(layer, EventType.CHANGE, this.handleLayerChange_, this),\n ];\n this.changed();\n };\n /**\n * @param {import(\"../Collection.js\").CollectionEvent} collectionEvent CollectionEvent.\n * @private\n */\n LayerGroup.prototype.handleLayersRemove_ = function (collectionEvent) {\n var layer = /** @type {import(\"./Base.js\").default} */ (collectionEvent.element);\n var key = getUid(layer);\n this.listenerKeys_[key].forEach(unlistenByKey);\n delete this.listenerKeys_[key];\n this.changed();\n };\n /**\n * Returns the {@link module:ol/Collection collection} of {@link module:ol/layer/Layer~Layer layers}\n * in this group.\n * @return {!import(\"../Collection.js\").default<import(\"./Base.js\").default>} Collection of\n * {@link module:ol/layer/Base layers} that are part of this group.\n * @observable\n * @api\n */\n LayerGroup.prototype.getLayers = function () {\n return /** @type {!import(\"../Collection.js\").default<import(\"./Base.js\").default>} */ (this.get(Property.LAYERS));\n };\n /**\n * Set the {@link module:ol/Collection collection} of {@link module:ol/layer/Layer~Layer layers}\n * in this group.\n * @param {!import(\"../Collection.js\").default<import(\"./Base.js\").default>} layers Collection of\n * {@link module:ol/layer/Base layers} that are part of this group.\n * @observable\n * @api\n */\n LayerGroup.prototype.setLayers = function (layers) {\n this.set(Property.LAYERS, layers);\n };\n /**\n * @param {Array<import(\"./Layer.js\").default>} [opt_array] Array of layers (to be modified in place).\n * @return {Array<import(\"./Layer.js\").default>} Array of layers.\n */\n LayerGroup.prototype.getLayersArray = function (opt_array) {\n var array = opt_array !== undefined ? opt_array : [];\n this.getLayers().forEach(function (layer) {\n layer.getLayersArray(array);\n });\n return array;\n };\n /**\n * Get the layer states list and use this groups z-index as the default\n * for all layers in this and nested groups, if it is unset at this point.\n * If opt_states is not provided and this group's z-index is undefined\n * 0 is used a the default z-index.\n * @param {Array<import(\"./Layer.js\").State>} [opt_states] Optional list\n * of layer states (to be modified in place).\n * @return {Array<import(\"./Layer.js\").State>} List of layer states.\n */\n LayerGroup.prototype.getLayerStatesArray = function (opt_states) {\n var states = opt_states !== undefined ? opt_states : [];\n var pos = states.length;\n this.getLayers().forEach(function (layer) {\n layer.getLayerStatesArray(states);\n });\n var ownLayerState = this.getLayerState();\n var defaultZIndex = ownLayerState.zIndex;\n if (!opt_states && ownLayerState.zIndex === undefined) {\n defaultZIndex = 0;\n }\n for (var i = pos, ii = states.length; i < ii; i++) {\n var layerState = states[i];\n layerState.opacity *= ownLayerState.opacity;\n layerState.visible = layerState.visible && ownLayerState.visible;\n layerState.maxResolution = Math.min(layerState.maxResolution, ownLayerState.maxResolution);\n layerState.minResolution = Math.max(layerState.minResolution, ownLayerState.minResolution);\n layerState.minZoom = Math.max(layerState.minZoom, ownLayerState.minZoom);\n layerState.maxZoom = Math.min(layerState.maxZoom, ownLayerState.maxZoom);\n if (ownLayerState.extent !== undefined) {\n if (layerState.extent !== undefined) {\n layerState.extent = getIntersection(layerState.extent, ownLayerState.extent);\n }\n else {\n layerState.extent = ownLayerState.extent;\n }\n }\n if (layerState.zIndex === undefined) {\n layerState.zIndex = defaultZIndex;\n }\n }\n return states;\n };\n /**\n * @return {import(\"../source/State.js\").default} Source state.\n */\n LayerGroup.prototype.getSourceState = function () {\n return SourceState.READY;\n };\n return LayerGroup;\n}(BaseLayer));\nexport default LayerGroup;\n//# sourceMappingURL=Group.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/MapEvent\n */\nimport Event from './events/Event.js';\n/**\n * @classdesc\n * Events emitted as map events are instances of this type.\n * See {@link module:ol/PluggableMap~PluggableMap} for which events trigger a map event.\n */\nvar MapEvent = /** @class */ (function (_super) {\n __extends(MapEvent, _super);\n /**\n * @param {string} type Event type.\n * @param {import(\"./PluggableMap.js\").default} map Map.\n * @param {?import(\"./PluggableMap.js\").FrameState} [opt_frameState] Frame state.\n */\n function MapEvent(type, map, opt_frameState) {\n var _this = _super.call(this, type) || this;\n /**\n * The map where the event occurred.\n * @type {import(\"./PluggableMap.js\").default}\n * @api\n */\n _this.map = map;\n /**\n * The frame state at the time of the event.\n * @type {?import(\"./PluggableMap.js\").FrameState}\n * @api\n */\n _this.frameState = opt_frameState !== undefined ? opt_frameState : null;\n return _this;\n }\n return MapEvent;\n}(Event));\nexport default MapEvent;\n//# sourceMappingURL=MapEvent.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/MapBrowserEvent\n */\nimport MapEvent from './MapEvent.js';\n/**\n * @classdesc\n * Events emitted as map browser events are instances of this type.\n * See {@link module:ol/PluggableMap~PluggableMap} for which events trigger a map browser event.\n * @template {UIEvent} EVENT\n */\nvar MapBrowserEvent = /** @class */ (function (_super) {\n __extends(MapBrowserEvent, _super);\n /**\n * @param {string} type Event type.\n * @param {import(\"./PluggableMap.js\").default} map Map.\n * @param {EVENT} originalEvent Original event.\n * @param {boolean} [opt_dragging] Is the map currently being dragged?\n * @param {?import(\"./PluggableMap.js\").FrameState} [opt_frameState] Frame state.\n */\n function MapBrowserEvent(type, map, originalEvent, opt_dragging, opt_frameState) {\n var _this = _super.call(this, type, map, opt_frameState) || this;\n /**\n * The original browser event.\n * @const\n * @type {EVENT}\n * @api\n */\n _this.originalEvent = originalEvent;\n /**\n * The map pixel relative to the viewport corresponding to the original browser event.\n * @type {?import(\"./pixel.js\").Pixel}\n */\n _this.pixel_ = null;\n /**\n * The coordinate in the user projection corresponding to the original browser event.\n * @type {?import(\"./coordinate.js\").Coordinate}\n */\n _this.coordinate_ = null;\n /**\n * Indicates if the map is currently being dragged. Only set for\n * `POINTERDRAG` and `POINTERMOVE` events. Default is `false`.\n *\n * @type {boolean}\n * @api\n */\n _this.dragging = opt_dragging !== undefined ? opt_dragging : false;\n return _this;\n }\n Object.defineProperty(MapBrowserEvent.prototype, \"pixel\", {\n /**\n * The map pixel relative to the viewport corresponding to the original event.\n * @type {import(\"./pixel.js\").Pixel}\n * @api\n */\n get: function () {\n if (!this.pixel_) {\n this.pixel_ = this.map.getEventPixel(this.originalEvent);\n }\n return this.pixel_;\n },\n set: function (pixel) {\n this.pixel_ = pixel;\n },\n enumerable: false,\n configurable: true\n });\n Object.defineProperty(MapBrowserEvent.prototype, \"coordinate\", {\n /**\n * The coordinate corresponding to the original browser event. This will be in the user\n * projection if one is set. Otherwise it will be in the view projection.\n * @type {import(\"./coordinate.js\").Coordinate}\n * @api\n */\n get: function () {\n if (!this.coordinate_) {\n this.coordinate_ = this.map.getCoordinateFromPixel(this.pixel);\n }\n return this.coordinate_;\n },\n set: function (coordinate) {\n this.coordinate_ = coordinate;\n },\n enumerable: false,\n configurable: true\n });\n /**\n * Prevents the default browser action.\n * See https://developer.mozilla.org/en-US/docs/Web/API/event.preventDefault.\n * @api\n */\n MapBrowserEvent.prototype.preventDefault = function () {\n _super.prototype.preventDefault.call(this);\n if ('preventDefault' in this.originalEvent) {\n /** @type {UIEvent} */ (this.originalEvent).preventDefault();\n }\n };\n /**\n * Prevents further propagation of the current event.\n * See https://developer.mozilla.org/en-US/docs/Web/API/event.stopPropagation.\n * @api\n */\n MapBrowserEvent.prototype.stopPropagation = function () {\n _super.prototype.stopPropagation.call(this);\n if ('stopPropagation' in this.originalEvent) {\n /** @type {UIEvent} */ (this.originalEvent).stopPropagation();\n }\n };\n return MapBrowserEvent;\n}(MapEvent));\nexport default MapBrowserEvent;\n//# sourceMappingURL=MapBrowserEvent.js.map","/**\n * @module ol/MapBrowserEventType\n */\nimport EventType from './events/EventType.js';\n/**\n * Constants for event names.\n * @enum {string}\n */\nexport default {\n /**\n * A true single click with no dragging and no double click. Note that this\n * event is delayed by 250 ms to ensure that it is not a double click.\n * @event module:ol/MapBrowserEvent~MapBrowserEvent#singleclick\n * @api\n */\n SINGLECLICK: 'singleclick',\n /**\n * A click with no dragging. A double click will fire two of this.\n * @event module:ol/MapBrowserEvent~MapBrowserEvent#click\n * @api\n */\n CLICK: EventType.CLICK,\n /**\n * A true double click, with no dragging.\n * @event module:ol/MapBrowserEvent~MapBrowserEvent#dblclick\n * @api\n */\n DBLCLICK: EventType.DBLCLICK,\n /**\n * Triggered when a pointer is dragged.\n * @event module:ol/MapBrowserEvent~MapBrowserEvent#pointerdrag\n * @api\n */\n POINTERDRAG: 'pointerdrag',\n /**\n * Triggered when a pointer is moved. Note that on touch devices this is\n * triggered when the map is panned, so is not the same as mousemove.\n * @event module:ol/MapBrowserEvent~MapBrowserEvent#pointermove\n * @api\n */\n POINTERMOVE: 'pointermove',\n POINTERDOWN: 'pointerdown',\n POINTERUP: 'pointerup',\n POINTEROVER: 'pointerover',\n POINTEROUT: 'pointerout',\n POINTERENTER: 'pointerenter',\n POINTERLEAVE: 'pointerleave',\n POINTERCANCEL: 'pointercancel',\n};\n/***\n * @typedef {'singleclick'|'click'|'dblclick'|'pointerdrag'|'pointermove'} Types\n */\n//# sourceMappingURL=MapBrowserEventType.js.map","/**\n * @module ol/MapBrowserEventHandler\n */\nvar __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\nimport EventType from './events/EventType.js';\nimport MapBrowserEvent from './MapBrowserEvent.js';\nimport MapBrowserEventType from './MapBrowserEventType.js';\nimport PointerEventType from './pointer/EventType.js';\nimport Target from './events/Target.js';\nimport { PASSIVE_EVENT_LISTENERS } from './has.js';\nimport { VOID } from './functions.js';\nimport { listen, unlistenByKey } from './events.js';\nvar MapBrowserEventHandler = /** @class */ (function (_super) {\n __extends(MapBrowserEventHandler, _super);\n /**\n * @param {import(\"./PluggableMap.js\").default} map The map with the viewport to listen to events on.\n * @param {number} [moveTolerance] The minimal distance the pointer must travel to trigger a move.\n */\n function MapBrowserEventHandler(map, moveTolerance) {\n var _this = _super.call(this, map) || this;\n /**\n * This is the element that we will listen to the real events on.\n * @type {import(\"./PluggableMap.js\").default}\n * @private\n */\n _this.map_ = map;\n /**\n * @type {any}\n * @private\n */\n _this.clickTimeoutId_;\n /**\n * Emulate dblclick and singleclick. Will be true when only one pointer is active.\n * @type {boolean}\n */\n _this.emulateClicks_ = false;\n /**\n * @type {boolean}\n * @private\n */\n _this.dragging_ = false;\n /**\n * @type {!Array<import(\"./events.js\").EventsKey>}\n * @private\n */\n _this.dragListenerKeys_ = [];\n /**\n * @type {number}\n * @private\n */\n _this.moveTolerance_ = moveTolerance === undefined ? 1 : moveTolerance;\n /**\n * The most recent \"down\" type event (or null if none have occurred).\n * Set on pointerdown.\n * @type {PointerEvent}\n * @private\n */\n _this.down_ = null;\n var element = _this.map_.getViewport();\n /**\n * @type {number}\n * @private\n */\n _this.activePointers_ = 0;\n /**\n * @type {!Object<number, boolean>}\n * @private\n */\n _this.trackedTouches_ = {};\n _this.element_ = element;\n /**\n * @type {?import(\"./events.js\").EventsKey}\n * @private\n */\n _this.pointerdownListenerKey_ = listen(element, PointerEventType.POINTERDOWN, _this.handlePointerDown_, _this);\n /**\n * @type {PointerEvent}\n * @private\n */\n _this.originalPointerMoveEvent_;\n /**\n * @type {?import(\"./events.js\").EventsKey}\n * @private\n */\n _this.relayedListenerKey_ = listen(element, PointerEventType.POINTERMOVE, _this.relayEvent_, _this);\n /**\n * @private\n */\n _this.boundHandleTouchMove_ = _this.handleTouchMove_.bind(_this);\n _this.element_.addEventListener(EventType.TOUCHMOVE, _this.boundHandleTouchMove_, PASSIVE_EVENT_LISTENERS ? { passive: false } : false);\n return _this;\n }\n /**\n * @param {PointerEvent} pointerEvent Pointer\n * event.\n * @private\n */\n MapBrowserEventHandler.prototype.emulateClick_ = function (pointerEvent) {\n var newEvent = new MapBrowserEvent(MapBrowserEventType.CLICK, this.map_, pointerEvent);\n this.dispatchEvent(newEvent);\n if (this.clickTimeoutId_ !== undefined) {\n // double-click\n clearTimeout(this.clickTimeoutId_);\n this.clickTimeoutId_ = undefined;\n newEvent = new MapBrowserEvent(MapBrowserEventType.DBLCLICK, this.map_, pointerEvent);\n this.dispatchEvent(newEvent);\n }\n else {\n // click\n this.clickTimeoutId_ = setTimeout(\n /** @this {MapBrowserEventHandler} */\n function () {\n this.clickTimeoutId_ = undefined;\n var newEvent = new MapBrowserEvent(MapBrowserEventType.SINGLECLICK, this.map_, pointerEvent);\n this.dispatchEvent(newEvent);\n }.bind(this), 250);\n }\n };\n /**\n * Keeps track on how many pointers are currently active.\n *\n * @param {PointerEvent} pointerEvent Pointer\n * event.\n * @private\n */\n MapBrowserEventHandler.prototype.updateActivePointers_ = function (pointerEvent) {\n var event = pointerEvent;\n if (event.type == MapBrowserEventType.POINTERUP ||\n event.type == MapBrowserEventType.POINTERCANCEL) {\n delete this.trackedTouches_[event.pointerId];\n }\n else if (event.type == MapBrowserEventType.POINTERDOWN) {\n this.trackedTouches_[event.pointerId] = true;\n }\n this.activePointers_ = Object.keys(this.trackedTouches_).length;\n };\n /**\n * @param {PointerEvent} pointerEvent Pointer\n * event.\n * @private\n */\n MapBrowserEventHandler.prototype.handlePointerUp_ = function (pointerEvent) {\n this.updateActivePointers_(pointerEvent);\n var newEvent = new MapBrowserEvent(MapBrowserEventType.POINTERUP, this.map_, pointerEvent);\n this.dispatchEvent(newEvent);\n // We emulate click events on left mouse button click, touch contact, and pen\n // contact. isMouseActionButton returns true in these cases (evt.button is set\n // to 0).\n // See http://www.w3.org/TR/pointerevents/#button-states\n // We only fire click, singleclick, and doubleclick if nobody has called\n // event.preventDefault().\n if (this.emulateClicks_ &&\n !newEvent.defaultPrevented &&\n !this.dragging_ &&\n this.isMouseActionButton_(pointerEvent)) {\n this.emulateClick_(this.down_);\n }\n if (this.activePointers_ === 0) {\n this.dragListenerKeys_.forEach(unlistenByKey);\n this.dragListenerKeys_.length = 0;\n this.dragging_ = false;\n this.down_ = null;\n }\n };\n /**\n * @param {PointerEvent} pointerEvent Pointer\n * event.\n * @return {boolean} If the left mouse button was pressed.\n * @private\n */\n MapBrowserEventHandler.prototype.isMouseActionButton_ = function (pointerEvent) {\n return pointerEvent.button === 0;\n };\n /**\n * @param {PointerEvent} pointerEvent Pointer\n * event.\n * @private\n */\n MapBrowserEventHandler.prototype.handlePointerDown_ = function (pointerEvent) {\n this.emulateClicks_ = this.activePointers_ === 0;\n this.updateActivePointers_(pointerEvent);\n var newEvent = new MapBrowserEvent(MapBrowserEventType.POINTERDOWN, this.map_, pointerEvent);\n this.dispatchEvent(newEvent);\n // Store a copy of the down event\n this.down_ = /** @type {PointerEvent} */ ({});\n for (var property in pointerEvent) {\n var value = pointerEvent[property];\n this.down_[property] = typeof value === 'function' ? VOID : value;\n }\n if (this.dragListenerKeys_.length === 0) {\n var doc = this.map_.getOwnerDocument();\n this.dragListenerKeys_.push(listen(doc, MapBrowserEventType.POINTERMOVE, this.handlePointerMove_, this), listen(doc, MapBrowserEventType.POINTERUP, this.handlePointerUp_, this), \n /* Note that the listener for `pointercancel is set up on\n * `pointerEventHandler_` and not `documentPointerEventHandler_` like\n * the `pointerup` and `pointermove` listeners.\n *\n * The reason for this is the following: `TouchSource.vacuumTouches_()`\n * issues `pointercancel` events, when there was no `touchend` for a\n * `touchstart`. Now, let's say a first `touchstart` is registered on\n * `pointerEventHandler_`. The `documentPointerEventHandler_` is set up.\n * But `documentPointerEventHandler_` doesn't know about the first\n * `touchstart`. If there is no `touchend` for the `touchstart`, we can\n * only receive a `touchcancel` from `pointerEventHandler_`, because it is\n * only registered there.\n */\n listen(this.element_, MapBrowserEventType.POINTERCANCEL, this.handlePointerUp_, this));\n if (this.element_.getRootNode && this.element_.getRootNode() !== doc) {\n this.dragListenerKeys_.push(listen(this.element_.getRootNode(), MapBrowserEventType.POINTERUP, this.handlePointerUp_, this));\n }\n }\n };\n /**\n * @param {PointerEvent} pointerEvent Pointer\n * event.\n * @private\n */\n MapBrowserEventHandler.prototype.handlePointerMove_ = function (pointerEvent) {\n // Between pointerdown and pointerup, pointermove events are triggered.\n // To avoid a 'false' touchmove event to be dispatched, we test if the pointer\n // moved a significant distance.\n if (this.isMoving_(pointerEvent)) {\n this.dragging_ = true;\n var newEvent = new MapBrowserEvent(MapBrowserEventType.POINTERDRAG, this.map_, pointerEvent, this.dragging_);\n this.dispatchEvent(newEvent);\n }\n };\n /**\n * Wrap and relay a pointer event. Note that this requires that the type\n * string for the MapBrowserEvent matches the PointerEvent type.\n * @param {PointerEvent} pointerEvent Pointer\n * event.\n * @private\n */\n MapBrowserEventHandler.prototype.relayEvent_ = function (pointerEvent) {\n this.originalPointerMoveEvent_ = pointerEvent;\n var dragging = !!(this.down_ && this.isMoving_(pointerEvent));\n this.dispatchEvent(new MapBrowserEvent(pointerEvent.type, this.map_, pointerEvent, dragging));\n };\n /**\n * Flexible handling of a `touch-action: none` css equivalent: because calling\n * `preventDefault()` on a `pointermove` event does not stop native page scrolling\n * and zooming, we also listen for `touchmove` and call `preventDefault()` on it\n * when an interaction (currently `DragPan` handles the event.\n * @param {TouchEvent} event Event.\n * @private\n */\n MapBrowserEventHandler.prototype.handleTouchMove_ = function (event) {\n // Due to https://github.com/mpizenberg/elm-pep/issues/2, `this.originalPointerMoveEvent_`\n // may not be initialized yet when we get here on a platform without native pointer events.\n var originalEvent = this.originalPointerMoveEvent_;\n if ((!originalEvent || originalEvent.defaultPrevented) &&\n (typeof event.cancelable !== 'boolean' || event.cancelable === true)) {\n event.preventDefault();\n }\n };\n /**\n * @param {PointerEvent} pointerEvent Pointer\n * event.\n * @return {boolean} Is moving.\n * @private\n */\n MapBrowserEventHandler.prototype.isMoving_ = function (pointerEvent) {\n return (this.dragging_ ||\n Math.abs(pointerEvent.clientX - this.down_.clientX) >\n this.moveTolerance_ ||\n Math.abs(pointerEvent.clientY - this.down_.clientY) > this.moveTolerance_);\n };\n /**\n * Clean up.\n */\n MapBrowserEventHandler.prototype.disposeInternal = function () {\n if (this.relayedListenerKey_) {\n unlistenByKey(this.relayedListenerKey_);\n this.relayedListenerKey_ = null;\n }\n this.element_.removeEventListener(EventType.TOUCHMOVE, this.boundHandleTouchMove_);\n if (this.pointerdownListenerKey_) {\n unlistenByKey(this.pointerdownListenerKey_);\n this.pointerdownListenerKey_ = null;\n }\n this.dragListenerKeys_.forEach(unlistenByKey);\n this.dragListenerKeys_.length = 0;\n this.element_ = null;\n _super.prototype.disposeInternal.call(this);\n };\n return MapBrowserEventHandler;\n}(Target));\nexport default MapBrowserEventHandler;\n//# sourceMappingURL=MapBrowserEventHandler.js.map","/**\n * @module ol/MapProperty\n */\n/**\n * @enum {string}\n */\nexport default {\n LAYERGROUP: 'layergroup',\n SIZE: 'size',\n TARGET: 'target',\n VIEW: 'view',\n};\n//# sourceMappingURL=MapProperty.js.map","/**\n * @module ol/structs/PriorityQueue\n */\nimport { assert } from '../asserts.js';\nimport { clear } from '../obj.js';\n/**\n * @type {number}\n */\nexport var DROP = Infinity;\n/**\n * @classdesc\n * Priority queue.\n *\n * The implementation is inspired from the Closure Library's Heap class and\n * Python's heapq module.\n *\n * See https://github.com/google/closure-library/blob/master/closure/goog/structs/heap.js\n * and https://hg.python.org/cpython/file/2.7/Lib/heapq.py.\n *\n * @template T\n */\nvar PriorityQueue = /** @class */ (function () {\n /**\n * @param {function(T): number} priorityFunction Priority function.\n * @param {function(T): string} keyFunction Key function.\n */\n function PriorityQueue(priorityFunction, keyFunction) {\n /**\n * @type {function(T): number}\n * @private\n */\n this.priorityFunction_ = priorityFunction;\n /**\n * @type {function(T): string}\n * @private\n */\n this.keyFunction_ = keyFunction;\n /**\n * @type {Array<T>}\n * @private\n */\n this.elements_ = [];\n /**\n * @type {Array<number>}\n * @private\n */\n this.priorities_ = [];\n /**\n * @type {!Object<string, boolean>}\n * @private\n */\n this.queuedElements_ = {};\n }\n /**\n * FIXME empty description for jsdoc\n */\n PriorityQueue.prototype.clear = function () {\n this.elements_.length = 0;\n this.priorities_.length = 0;\n clear(this.queuedElements_);\n };\n /**\n * Remove and return the highest-priority element. O(log N).\n * @return {T} Element.\n */\n PriorityQueue.prototype.dequeue = function () {\n var elements = this.elements_;\n var priorities = this.priorities_;\n var element = elements[0];\n if (elements.length == 1) {\n elements.length = 0;\n priorities.length = 0;\n }\n else {\n elements[0] = elements.pop();\n priorities[0] = priorities.pop();\n this.siftUp_(0);\n }\n var elementKey = this.keyFunction_(element);\n delete this.queuedElements_[elementKey];\n return element;\n };\n /**\n * Enqueue an element. O(log N).\n * @param {T} element Element.\n * @return {boolean} The element was added to the queue.\n */\n PriorityQueue.prototype.enqueue = function (element) {\n assert(!(this.keyFunction_(element) in this.queuedElements_), 31); // Tried to enqueue an `element` that was already added to the queue\n var priority = this.priorityFunction_(element);\n if (priority != DROP) {\n this.elements_.push(element);\n this.priorities_.push(priority);\n this.queuedElements_[this.keyFunction_(element)] = true;\n this.siftDown_(0, this.elements_.length - 1);\n return true;\n }\n return false;\n };\n /**\n * @return {number} Count.\n */\n PriorityQueue.prototype.getCount = function () {\n return this.elements_.length;\n };\n /**\n * Gets the index of the left child of the node at the given index.\n * @param {number} index The index of the node to get the left child for.\n * @return {number} The index of the left child.\n * @private\n */\n PriorityQueue.prototype.getLeftChildIndex_ = function (index) {\n return index * 2 + 1;\n };\n /**\n * Gets the index of the right child of the node at the given index.\n * @param {number} index The index of the node to get the right child for.\n * @return {number} The index of the right child.\n * @private\n */\n PriorityQueue.prototype.getRightChildIndex_ = function (index) {\n return index * 2 + 2;\n };\n /**\n * Gets the index of the parent of the node at the given index.\n * @param {number} index The index of the node to get the parent for.\n * @return {number} The index of the parent.\n * @private\n */\n PriorityQueue.prototype.getParentIndex_ = function (index) {\n return (index - 1) >> 1;\n };\n /**\n * Make this a heap. O(N).\n * @private\n */\n PriorityQueue.prototype.heapify_ = function () {\n var i;\n for (i = (this.elements_.length >> 1) - 1; i >= 0; i--) {\n this.siftUp_(i);\n }\n };\n /**\n * @return {boolean} Is empty.\n */\n PriorityQueue.prototype.isEmpty = function () {\n return this.elements_.length === 0;\n };\n /**\n * @param {string} key Key.\n * @return {boolean} Is key queued.\n */\n PriorityQueue.prototype.isKeyQueued = function (key) {\n return key in this.queuedElements_;\n };\n /**\n * @param {T} element Element.\n * @return {boolean} Is queued.\n */\n PriorityQueue.prototype.isQueued = function (element) {\n return this.isKeyQueued(this.keyFunction_(element));\n };\n /**\n * @param {number} index The index of the node to move down.\n * @private\n */\n PriorityQueue.prototype.siftUp_ = function (index) {\n var elements = this.elements_;\n var priorities = this.priorities_;\n var count = elements.length;\n var element = elements[index];\n var priority = priorities[index];\n var startIndex = index;\n while (index < count >> 1) {\n var lIndex = this.getLeftChildIndex_(index);\n var rIndex = this.getRightChildIndex_(index);\n var smallerChildIndex = rIndex < count && priorities[rIndex] < priorities[lIndex]\n ? rIndex\n : lIndex;\n elements[index] = elements[smallerChildIndex];\n priorities[index] = priorities[smallerChildIndex];\n index = smallerChildIndex;\n }\n elements[index] = element;\n priorities[index] = priority;\n this.siftDown_(startIndex, index);\n };\n /**\n * @param {number} startIndex The index of the root.\n * @param {number} index The index of the node to move up.\n * @private\n */\n PriorityQueue.prototype.siftDown_ = function (startIndex, index) {\n var elements = this.elements_;\n var priorities = this.priorities_;\n var element = elements[index];\n var priority = priorities[index];\n while (index > startIndex) {\n var parentIndex = this.getParentIndex_(index);\n if (priorities[parentIndex] > priority) {\n elements[index] = elements[parentIndex];\n priorities[index] = priorities[parentIndex];\n index = parentIndex;\n }\n else {\n break;\n }\n }\n elements[index] = element;\n priorities[index] = priority;\n };\n /**\n * FIXME empty description for jsdoc\n */\n PriorityQueue.prototype.reprioritize = function () {\n var priorityFunction = this.priorityFunction_;\n var elements = this.elements_;\n var priorities = this.priorities_;\n var index = 0;\n var n = elements.length;\n var element, i, priority;\n for (i = 0; i < n; ++i) {\n element = elements[i];\n priority = priorityFunction(element);\n if (priority == DROP) {\n delete this.queuedElements_[this.keyFunction_(element)];\n }\n else {\n priorities[index] = priority;\n elements[index++] = element;\n }\n }\n elements.length = index;\n priorities.length = index;\n this.heapify_();\n };\n return PriorityQueue;\n}());\nexport default PriorityQueue;\n//# sourceMappingURL=PriorityQueue.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/TileQueue\n */\nimport EventType from './events/EventType.js';\nimport PriorityQueue, { DROP } from './structs/PriorityQueue.js';\nimport TileState from './TileState.js';\n/**\n * @typedef {function(import(\"./Tile.js\").default, string, import(\"./coordinate.js\").Coordinate, number): number} PriorityFunction\n */\nvar TileQueue = /** @class */ (function (_super) {\n __extends(TileQueue, _super);\n /**\n * @param {PriorityFunction} tilePriorityFunction Tile priority function.\n * @param {function(): ?} tileChangeCallback Function called on each tile change event.\n */\n function TileQueue(tilePriorityFunction, tileChangeCallback) {\n var _this = _super.call(this, \n /**\n * @param {Array} element Element.\n * @return {number} Priority.\n */\n function (element) {\n return tilePriorityFunction.apply(null, element);\n }, \n /**\n * @param {Array} element Element.\n * @return {string} Key.\n */\n function (element) {\n return /** @type {import(\"./Tile.js\").default} */ (element[0]).getKey();\n }) || this;\n /** @private */\n _this.boundHandleTileChange_ = _this.handleTileChange.bind(_this);\n /**\n * @private\n * @type {function(): ?}\n */\n _this.tileChangeCallback_ = tileChangeCallback;\n /**\n * @private\n * @type {number}\n */\n _this.tilesLoading_ = 0;\n /**\n * @private\n * @type {!Object<string,boolean>}\n */\n _this.tilesLoadingKeys_ = {};\n return _this;\n }\n /**\n * @param {Array} element Element.\n * @return {boolean} The element was added to the queue.\n */\n TileQueue.prototype.enqueue = function (element) {\n var added = _super.prototype.enqueue.call(this, element);\n if (added) {\n var tile = element[0];\n tile.addEventListener(EventType.CHANGE, this.boundHandleTileChange_);\n }\n return added;\n };\n /**\n * @return {number} Number of tiles loading.\n */\n TileQueue.prototype.getTilesLoading = function () {\n return this.tilesLoading_;\n };\n /**\n * @param {import(\"./events/Event.js\").default} event Event.\n * @protected\n */\n TileQueue.prototype.handleTileChange = function (event) {\n var tile = /** @type {import(\"./Tile.js\").default} */ (event.target);\n var state = tile.getState();\n if (state === TileState.LOADED ||\n state === TileState.ERROR ||\n state === TileState.EMPTY) {\n tile.removeEventListener(EventType.CHANGE, this.boundHandleTileChange_);\n var tileKey = tile.getKey();\n if (tileKey in this.tilesLoadingKeys_) {\n delete this.tilesLoadingKeys_[tileKey];\n --this.tilesLoading_;\n }\n this.tileChangeCallback_();\n }\n };\n /**\n * @param {number} maxTotalLoading Maximum number tiles to load simultaneously.\n * @param {number} maxNewLoads Maximum number of new tiles to load.\n */\n TileQueue.prototype.loadMoreTiles = function (maxTotalLoading, maxNewLoads) {\n var newLoads = 0;\n var state, tile, tileKey;\n while (this.tilesLoading_ < maxTotalLoading &&\n newLoads < maxNewLoads &&\n this.getCount() > 0) {\n tile = /** @type {import(\"./Tile.js\").default} */ (this.dequeue()[0]);\n tileKey = tile.getKey();\n state = tile.getState();\n if (state === TileState.IDLE && !(tileKey in this.tilesLoadingKeys_)) {\n this.tilesLoadingKeys_[tileKey] = true;\n ++this.tilesLoading_;\n ++newLoads;\n tile.load();\n }\n }\n };\n return TileQueue;\n}(PriorityQueue));\nexport default TileQueue;\n/**\n * @param {import('./PluggableMap.js').FrameState} frameState Frame state.\n * @param {import(\"./Tile.js\").default} tile Tile.\n * @param {string} tileSourceKey Tile source key.\n * @param {import(\"./coordinate.js\").Coordinate} tileCenter Tile center.\n * @param {number} tileResolution Tile resolution.\n * @return {number} Tile priority.\n */\nexport function getTilePriority(frameState, tile, tileSourceKey, tileCenter, tileResolution) {\n // Filter out tiles at higher zoom levels than the current zoom level, or that\n // are outside the visible extent.\n if (!frameState || !(tileSourceKey in frameState.wantedTiles)) {\n return DROP;\n }\n if (!frameState.wantedTiles[tileSourceKey][tile.getKey()]) {\n return DROP;\n }\n // Prioritize the highest zoom level tiles closest to the focus.\n // Tiles at higher zoom levels are prioritized using Math.log(tileResolution).\n // Within a zoom level, tiles are prioritized by the distance in pixels between\n // the center of the tile and the center of the viewport. The factor of 65536\n // means that the prioritization should behave as desired for tiles up to\n // 65536 * Math.log(2) = 45426 pixels from the focus.\n var center = frameState.viewState.center;\n var deltaX = tileCenter[0] - center[0];\n var deltaY = tileCenter[1] - center[1];\n return (65536 * Math.log(tileResolution) +\n Math.sqrt(deltaX * deltaX + deltaY * deltaY) / tileResolution);\n}\n//# sourceMappingURL=TileQueue.js.map","/**\n * @module ol/ViewProperty\n */\n/**\n * @enum {string}\n */\nexport default {\n CENTER: 'center',\n RESOLUTION: 'resolution',\n ROTATION: 'rotation',\n};\n//# sourceMappingURL=ViewProperty.js.map","/**\n * @module ol/centerconstraint\n */\nimport { clamp } from './math.js';\n/**\n * @typedef {function((import(\"./coordinate.js\").Coordinate|undefined), number, import(\"./size.js\").Size, boolean=, Array<number>=): (import(\"./coordinate.js\").Coordinate|undefined)} Type\n */\n/**\n * @param {import(\"./extent.js\").Extent} extent Extent.\n * @param {boolean} onlyCenter If true, the constraint will only apply to the view center.\n * @param {boolean} smooth If true, the view will be able to go slightly out of the given extent\n * (only during interaction and animation).\n * @return {Type} The constraint.\n */\nexport function createExtent(extent, onlyCenter, smooth) {\n return (\n /**\n * @param {import(\"./coordinate.js\").Coordinate|undefined} center Center.\n * @param {number} resolution Resolution.\n * @param {import(\"./size.js\").Size} size Viewport size; unused if `onlyCenter` was specified.\n * @param {boolean} [opt_isMoving] True if an interaction or animation is in progress.\n * @param {Array<number>} [opt_centerShift] Shift between map center and viewport center.\n * @return {import(\"./coordinate.js\").Coordinate|undefined} Center.\n */\n function (center, resolution, size, opt_isMoving, opt_centerShift) {\n if (center) {\n var viewWidth = onlyCenter ? 0 : size[0] * resolution;\n var viewHeight = onlyCenter ? 0 : size[1] * resolution;\n var shiftX = opt_centerShift ? opt_centerShift[0] : 0;\n var shiftY = opt_centerShift ? opt_centerShift[1] : 0;\n var minX = extent[0] + viewWidth / 2 + shiftX;\n var maxX = extent[2] - viewWidth / 2 + shiftX;\n var minY = extent[1] + viewHeight / 2 + shiftY;\n var maxY = extent[3] - viewHeight / 2 + shiftY;\n // note: when zooming out of bounds, min and max values for x and y may\n // end up inverted (min > max); this has to be accounted for\n if (minX > maxX) {\n minX = (maxX + minX) / 2;\n maxX = minX;\n }\n if (minY > maxY) {\n minY = (maxY + minY) / 2;\n maxY = minY;\n }\n var x = clamp(center[0], minX, maxX);\n var y = clamp(center[1], minY, maxY);\n var ratio = 30 * resolution;\n // during an interaction, allow some overscroll\n if (opt_isMoving && smooth) {\n x +=\n -ratio * Math.log(1 + Math.max(0, minX - center[0]) / ratio) +\n ratio * Math.log(1 + Math.max(0, center[0] - maxX) / ratio);\n y +=\n -ratio * Math.log(1 + Math.max(0, minY - center[1]) / ratio) +\n ratio * Math.log(1 + Math.max(0, center[1] - maxY) / ratio);\n }\n return [x, y];\n }\n else {\n return undefined;\n }\n });\n}\n/**\n * @param {import(\"./coordinate.js\").Coordinate} [center] Center.\n * @return {import(\"./coordinate.js\").Coordinate|undefined} Center.\n */\nexport function none(center) {\n return center;\n}\n//# sourceMappingURL=centerconstraint.js.map","/**\n * @module ol/resolutionconstraint\n */\nimport { clamp } from './math.js';\nimport { getHeight, getWidth } from './extent.js';\nimport { linearFindNearest } from './array.js';\n/**\n * @typedef {function((number|undefined), number, import(\"./size.js\").Size, boolean=): (number|undefined)} Type\n */\n/**\n * Returns a modified resolution taking into account the viewport size and maximum\n * allowed extent.\n * @param {number} resolution Resolution\n * @param {import(\"./extent.js\").Extent} maxExtent Maximum allowed extent.\n * @param {import(\"./size.js\").Size} viewportSize Viewport size.\n * @param {boolean} showFullExtent Whether to show the full extent.\n * @return {number} Capped resolution.\n */\nfunction getViewportClampedResolution(resolution, maxExtent, viewportSize, showFullExtent) {\n var xResolution = getWidth(maxExtent) / viewportSize[0];\n var yResolution = getHeight(maxExtent) / viewportSize[1];\n if (showFullExtent) {\n return Math.min(resolution, Math.max(xResolution, yResolution));\n }\n return Math.min(resolution, Math.min(xResolution, yResolution));\n}\n/**\n * Returns a modified resolution to be between maxResolution and minResolution while\n * still allowing the value to be slightly out of bounds.\n * Note: the computation is based on the logarithm function (ln):\n * - at 1, ln(x) is 0\n * - above 1, ln(x) keeps increasing but at a much slower pace than x\n * The final result is clamped to prevent getting too far away from bounds.\n * @param {number} resolution Resolution.\n * @param {number} maxResolution Max resolution.\n * @param {number} minResolution Min resolution.\n * @return {number} Smoothed resolution.\n */\nfunction getSmoothClampedResolution(resolution, maxResolution, minResolution) {\n var result = Math.min(resolution, maxResolution);\n var ratio = 50;\n result *=\n Math.log(1 + ratio * Math.max(0, resolution / maxResolution - 1)) / ratio +\n 1;\n if (minResolution) {\n result = Math.max(result, minResolution);\n result /=\n Math.log(1 + ratio * Math.max(0, minResolution / resolution - 1)) /\n ratio +\n 1;\n }\n return clamp(result, minResolution / 2, maxResolution * 2);\n}\n/**\n * @param {Array<number>} resolutions Resolutions.\n * @param {boolean} [opt_smooth] If true, the view will be able to slightly exceed resolution limits. Default: true.\n * @param {import(\"./extent.js\").Extent} [opt_maxExtent] Maximum allowed extent.\n * @param {boolean} [opt_showFullExtent] If true, allows us to show the full extent. Default: false.\n * @return {Type} Zoom function.\n */\nexport function createSnapToResolutions(resolutions, opt_smooth, opt_maxExtent, opt_showFullExtent) {\n return (\n /**\n * @param {number|undefined} resolution Resolution.\n * @param {number} direction Direction.\n * @param {import(\"./size.js\").Size} size Viewport size.\n * @param {boolean} [opt_isMoving] True if an interaction or animation is in progress.\n * @return {number|undefined} Resolution.\n */\n function (resolution, direction, size, opt_isMoving) {\n if (resolution !== undefined) {\n var maxResolution = resolutions[0];\n var minResolution = resolutions[resolutions.length - 1];\n var cappedMaxRes = opt_maxExtent\n ? getViewportClampedResolution(maxResolution, opt_maxExtent, size, opt_showFullExtent)\n : maxResolution;\n // during interacting or animating, allow intermediary values\n if (opt_isMoving) {\n var smooth = opt_smooth !== undefined ? opt_smooth : true;\n if (!smooth) {\n return clamp(resolution, minResolution, cappedMaxRes);\n }\n return getSmoothClampedResolution(resolution, cappedMaxRes, minResolution);\n }\n var capped = Math.min(cappedMaxRes, resolution);\n var z = Math.floor(linearFindNearest(resolutions, capped, direction));\n if (resolutions[z] > cappedMaxRes && z < resolutions.length - 1) {\n return resolutions[z + 1];\n }\n return resolutions[z];\n }\n else {\n return undefined;\n }\n });\n}\n/**\n * @param {number} power Power.\n * @param {number} maxResolution Maximum resolution.\n * @param {number} [opt_minResolution] Minimum resolution.\n * @param {boolean} [opt_smooth] If true, the view will be able to slightly exceed resolution limits. Default: true.\n * @param {import(\"./extent.js\").Extent} [opt_maxExtent] Maximum allowed extent.\n * @param {boolean} [opt_showFullExtent] If true, allows us to show the full extent. Default: false.\n * @return {Type} Zoom function.\n */\nexport function createSnapToPower(power, maxResolution, opt_minResolution, opt_smooth, opt_maxExtent, opt_showFullExtent) {\n return (\n /**\n * @param {number|undefined} resolution Resolution.\n * @param {number} direction Direction.\n * @param {import(\"./size.js\").Size} size Viewport size.\n * @param {boolean} [opt_isMoving] True if an interaction or animation is in progress.\n * @return {number|undefined} Resolution.\n */\n function (resolution, direction, size, opt_isMoving) {\n if (resolution !== undefined) {\n var cappedMaxRes = opt_maxExtent\n ? getViewportClampedResolution(maxResolution, opt_maxExtent, size, opt_showFullExtent)\n : maxResolution;\n var minResolution = opt_minResolution !== undefined ? opt_minResolution : 0;\n // during interacting or animating, allow intermediary values\n if (opt_isMoving) {\n var smooth = opt_smooth !== undefined ? opt_smooth : true;\n if (!smooth) {\n return clamp(resolution, minResolution, cappedMaxRes);\n }\n return getSmoothClampedResolution(resolution, cappedMaxRes, minResolution);\n }\n var tolerance = 1e-9;\n var minZoomLevel = Math.ceil(Math.log(maxResolution / cappedMaxRes) / Math.log(power) - tolerance);\n var offset = -direction * (0.5 - tolerance) + 0.5;\n var capped = Math.min(cappedMaxRes, resolution);\n var cappedZoomLevel = Math.floor(Math.log(maxResolution / capped) / Math.log(power) + offset);\n var zoomLevel = Math.max(minZoomLevel, cappedZoomLevel);\n var newResolution = maxResolution / Math.pow(power, zoomLevel);\n return clamp(newResolution, minResolution, cappedMaxRes);\n }\n else {\n return undefined;\n }\n });\n}\n/**\n * @param {number} maxResolution Max resolution.\n * @param {number} minResolution Min resolution.\n * @param {boolean} [opt_smooth] If true, the view will be able to slightly exceed resolution limits. Default: true.\n * @param {import(\"./extent.js\").Extent} [opt_maxExtent] Maximum allowed extent.\n * @param {boolean} [opt_showFullExtent] If true, allows us to show the full extent. Default: false.\n * @return {Type} Zoom function.\n */\nexport function createMinMaxResolution(maxResolution, minResolution, opt_smooth, opt_maxExtent, opt_showFullExtent) {\n return (\n /**\n * @param {number|undefined} resolution Resolution.\n * @param {number} direction Direction.\n * @param {import(\"./size.js\").Size} size Viewport size.\n * @param {boolean} [opt_isMoving] True if an interaction or animation is in progress.\n * @return {number|undefined} Resolution.\n */\n function (resolution, direction, size, opt_isMoving) {\n if (resolution !== undefined) {\n var cappedMaxRes = opt_maxExtent\n ? getViewportClampedResolution(maxResolution, opt_maxExtent, size, opt_showFullExtent)\n : maxResolution;\n var smooth = opt_smooth !== undefined ? opt_smooth : true;\n if (!smooth || !opt_isMoving) {\n return clamp(resolution, minResolution, cappedMaxRes);\n }\n return getSmoothClampedResolution(resolution, cappedMaxRes, minResolution);\n }\n else {\n return undefined;\n }\n });\n}\n//# sourceMappingURL=resolutionconstraint.js.map","/**\n * @module ol/rotationconstraint\n */\nimport { toRadians } from './math.js';\n/**\n * @typedef {function((number|undefined), boolean=): (number|undefined)} Type\n */\n/**\n * @param {number|undefined} rotation Rotation.\n * @return {number|undefined} Rotation.\n */\nexport function disable(rotation) {\n if (rotation !== undefined) {\n return 0;\n }\n else {\n return undefined;\n }\n}\n/**\n * @param {number|undefined} rotation Rotation.\n * @return {number|undefined} Rotation.\n */\nexport function none(rotation) {\n if (rotation !== undefined) {\n return rotation;\n }\n else {\n return undefined;\n }\n}\n/**\n * @param {number} n N.\n * @return {Type} Rotation constraint.\n */\nexport function createSnapToN(n) {\n var theta = (2 * Math.PI) / n;\n return (\n /**\n * @param {number|undefined} rotation Rotation.\n * @param {boolean} [opt_isMoving] True if an interaction or animation is in progress.\n * @return {number|undefined} Rotation.\n */\n function (rotation, opt_isMoving) {\n if (opt_isMoving) {\n return rotation;\n }\n if (rotation !== undefined) {\n rotation = Math.floor(rotation / theta + 0.5) * theta;\n return rotation;\n }\n else {\n return undefined;\n }\n });\n}\n/**\n * @param {number} [opt_tolerance] Tolerance.\n * @return {Type} Rotation constraint.\n */\nexport function createSnapToZero(opt_tolerance) {\n var tolerance = opt_tolerance || toRadians(5);\n return (\n /**\n * @param {number|undefined} rotation Rotation.\n * @param {boolean} [opt_isMoving] True if an interaction or animation is in progress.\n * @return {number|undefined} Rotation.\n */\n function (rotation, opt_isMoving) {\n if (opt_isMoving) {\n return rotation;\n }\n if (rotation !== undefined) {\n if (Math.abs(rotation) <= tolerance) {\n return 0;\n }\n else {\n return rotation;\n }\n }\n else {\n return undefined;\n }\n });\n}\n//# sourceMappingURL=rotationconstraint.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/View\n */\nimport BaseObject from './Object.js';\nimport GeometryType from './geom/GeometryType.js';\nimport Units from './proj/Units.js';\nimport ViewHint from './ViewHint.js';\nimport ViewProperty from './ViewProperty.js';\nimport { DEFAULT_TILE_SIZE } from './tilegrid/common.js';\nimport { METERS_PER_UNIT, createProjection, fromUserCoordinate, fromUserExtent, getUserProjection, toUserCoordinate, toUserExtent, } from './proj.js';\nimport { VOID } from './functions.js';\nimport { add as addCoordinate, equals as coordinatesEqual, rotate as rotateCoordinate, } from './coordinate.js';\nimport { assert } from './asserts.js';\nimport { assign } from './obj.js';\nimport { none as centerNone, createExtent } from './centerconstraint.js';\nimport { clamp, modulo } from './math.js';\nimport { createMinMaxResolution } from './resolutionconstraint.js';\nimport { createSnapToN, createSnapToZero, disable, none as rotationNone, } from './rotationconstraint.js';\nimport { createSnapToPower, createSnapToResolutions, } from './resolutionconstraint.js';\nimport { easeOut } from './easing.js';\nimport { equals } from './coordinate.js';\nimport { getCenter, getForViewAndSize, getHeight, getWidth, isEmpty, } from './extent.js';\nimport { inAndOut } from './easing.js';\nimport { linearFindNearest } from './array.js';\nimport { fromExtent as polygonFromExtent } from './geom/Polygon.js';\n/**\n * An animation configuration\n *\n * @typedef {Object} Animation\n * @property {import(\"./coordinate.js\").Coordinate} [sourceCenter] Source center.\n * @property {import(\"./coordinate.js\").Coordinate} [targetCenter] Target center.\n * @property {number} [sourceResolution] Source resolution.\n * @property {number} [targetResolution] Target resolution.\n * @property {number} [sourceRotation] Source rotation.\n * @property {number} [targetRotation] Target rotation.\n * @property {import(\"./coordinate.js\").Coordinate} [anchor] Anchor.\n * @property {number} start Start.\n * @property {number} duration Duration.\n * @property {boolean} complete Complete.\n * @property {function(number):number} easing Easing.\n * @property {function(boolean):void} callback Callback.\n */\n/**\n * @typedef {Object} Constraints\n * @property {import(\"./centerconstraint.js\").Type} center Center.\n * @property {import(\"./resolutionconstraint.js\").Type} resolution Resolution.\n * @property {import(\"./rotationconstraint.js\").Type} rotation Rotation.\n */\n/**\n * @typedef {Object} FitOptions\n * @property {import(\"./size.js\").Size} [size] The size in pixels of the box to fit\n * the extent into. Default is the current size of the first map in the DOM that\n * uses this view, or `[100, 100]` if no such map is found.\n * @property {!Array<number>} [padding=[0, 0, 0, 0]] Padding (in pixels) to be\n * cleared inside the view. Values in the array are top, right, bottom and left\n * padding.\n * @property {boolean} [nearest=false] If the view `constrainResolution` option is `true`,\n * get the nearest extent instead of the closest that actually fits the view.\n * @property {number} [minResolution=0] Minimum resolution that we zoom to.\n * @property {number} [maxZoom] Maximum zoom level that we zoom to. If\n * `minResolution` is given, this property is ignored.\n * @property {number} [duration] The duration of the animation in milliseconds.\n * By default, there is no animation to the target extent.\n * @property {function(number):number} [easing] The easing function used during\n * the animation (defaults to {@link module:ol/easing.inAndOut}).\n * The function will be called for each frame with a number representing a\n * fraction of the animation's duration. The function should return a number\n * between 0 and 1 representing the progress toward the destination state.\n * @property {function(boolean):void} [callback] Function called when the view is in\n * its final position. The callback will be called with `true` if the animation\n * series completed on its own or `false` if it was cancelled.\n */\n/**\n * @typedef {Object} ViewOptions\n * @property {import(\"./coordinate.js\").Coordinate} [center] The initial center for\n * the view. If a user projection is not set, the coordinate system for the center is\n * specified with the `projection` option. Layer sources will not be fetched if this\n * is not set, but the center can be set later with {@link #setCenter}.\n * @property {boolean|number} [constrainRotation=true] Rotation constraint.\n * `false` means no constraint. `true` means no constraint, but snap to zero\n * near zero. A number constrains the rotation to that number of values. For\n * example, `4` will constrain the rotation to 0, 90, 180, and 270 degrees.\n * @property {boolean} [enableRotation=true] Enable rotation.\n * If `false`, a rotation constraint that always sets the rotation to zero is\n * used. The `constrainRotation` option has no effect if `enableRotation` is\n * `false`.\n * @property {import(\"./extent.js\").Extent} [extent] The extent that constrains the\n * view, in other words, nothing outside of this extent can be visible on the map.\n * @property {boolean} [constrainOnlyCenter=false] If true, the extent\n * constraint will only apply to the view center and not the whole extent.\n * @property {boolean} [smoothExtentConstraint=true] If true, the extent\n * constraint will be applied smoothly, i.e. allow the view to go slightly outside\n * of the given `extent`.\n * @property {number} [maxResolution] The maximum resolution used to determine\n * the resolution constraint. It is used together with `minResolution` (or\n * `maxZoom`) and `zoomFactor`. If unspecified it is calculated in such a way\n * that the projection's validity extent fits in a 256x256 px tile. If the\n * projection is Spherical Mercator (the default) then `maxResolution` defaults\n * to `40075016.68557849 / 256 = 156543.03392804097`.\n * @property {number} [minResolution] The minimum resolution used to determine\n * the resolution constraint. It is used together with `maxResolution` (or\n * `minZoom`) and `zoomFactor`. If unspecified it is calculated assuming 29\n * zoom levels (with a factor of 2). If the projection is Spherical Mercator\n * (the default) then `minResolution` defaults to\n * `40075016.68557849 / 256 / Math.pow(2, 28) = 0.0005831682455839253`.\n * @property {number} [maxZoom=28] The maximum zoom level used to determine the\n * resolution constraint. It is used together with `minZoom` (or\n * `maxResolution`) and `zoomFactor`. Note that if `minResolution` is also\n * provided, it is given precedence over `maxZoom`.\n * @property {number} [minZoom=0] The minimum zoom level used to determine the\n * resolution constraint. It is used together with `maxZoom` (or\n * `minResolution`) and `zoomFactor`. Note that if `maxResolution` is also\n * provided, it is given precedence over `minZoom`.\n * @property {boolean} [multiWorld=false] If `false` the view is constrained so\n * only one world is visible, and you cannot pan off the edge. If `true` the map\n * may show multiple worlds at low zoom levels. Only used if the `projection` is\n * global. Note that if `extent` is also provided it is given precedence.\n * @property {boolean} [constrainResolution=false] If true, the view will always\n * animate to the closest zoom level after an interaction; false means\n * intermediary zoom levels are allowed.\n * @property {boolean} [smoothResolutionConstraint=true] If true, the resolution\n * min/max values will be applied smoothly, i. e. allow the view to exceed slightly\n * the given resolution or zoom bounds.\n * @property {boolean} [showFullExtent=false] Allow the view to be zoomed out to\n * show the full configured extent. By default, when a view is configured with an\n * extent, users will not be able to zoom out so the viewport exceeds the extent in\n * either dimension. This means the full extent may not be visible if the viewport\n * is taller or wider than the aspect ratio of the configured extent. If\n * showFullExtent is true, the user will be able to zoom out so that the viewport\n * exceeds the height or width of the configured extent, but not both, allowing the\n * full extent to be shown.\n * @property {import(\"./proj.js\").ProjectionLike} [projection='EPSG:3857'] The\n * projection. The default is Spherical Mercator.\n * @property {number} [resolution] The initial resolution for the view. The\n * units are `projection` units per pixel (e.g. meters per pixel). An\n * alternative to setting this is to set `zoom`. Layer sources will not be\n * fetched if neither this nor `zoom` are defined, but they can be set later\n * with {@link #setZoom} or {@link #setResolution}.\n * @property {Array<number>} [resolutions] Resolutions that determine the\n * zoom levels if specified. The index in the array corresponds to the zoom level,\n * therefore the resolution values have to be in descending order. It also constrains\n * the resolution by the minimum and maximum value. If set the `maxResolution`,\n * `minResolution`, `minZoom`, `maxZoom`, and `zoomFactor` options are ignored.\n * @property {number} [rotation=0] The initial rotation for the view in radians\n * (positive rotation clockwise, 0 means North).\n * @property {number} [zoom] Only used if `resolution` is not defined. Zoom\n * level used to calculate the initial resolution for the view.\n * @property {number} [zoomFactor=2] The zoom factor used to compute the\n * corresponding resolution.\n * @property {!Array<number>} [padding=[0, 0, 0, 0]] Padding (in css pixels).\n * If the map viewport is partially covered with other content (overlays) along\n * its edges, this setting allows to shift the center of the viewport away from\n * that content. The order of the values is top, right, bottom, left.\n */\n/**\n * @typedef {Object} AnimationOptions\n * @property {import(\"./coordinate.js\").Coordinate} [center] The center of the view at the end of\n * the animation.\n * @property {number} [zoom] The zoom level of the view at the end of the\n * animation. This takes precedence over `resolution`.\n * @property {number} [resolution] The resolution of the view at the end\n * of the animation. If `zoom` is also provided, this option will be ignored.\n * @property {number} [rotation] The rotation of the view at the end of\n * the animation.\n * @property {import(\"./coordinate.js\").Coordinate} [anchor] Optional anchor to remain fixed\n * during a rotation or resolution animation.\n * @property {number} [duration=1000] The duration of the animation in milliseconds.\n * @property {function(number):number} [easing] The easing function used\n * during the animation (defaults to {@link module:ol/easing.inAndOut}).\n * The function will be called for each frame with a number representing a\n * fraction of the animation's duration. The function should return a number\n * between 0 and 1 representing the progress toward the destination state.\n */\n/**\n * @typedef {Object} State\n * @property {import(\"./coordinate.js\").Coordinate} center Center.\n * @property {import(\"./proj/Projection.js\").default} projection Projection.\n * @property {number} resolution Resolution.\n * @property {import(\"./coordinate.js\").Coordinate} [nextCenter] The next center during an animation series.\n * @property {number} [nextResolution] The next resolution during an animation series.\n * @property {number} [nextRotation] The next rotation during an animation series.\n * @property {number} rotation Rotation.\n * @property {number} zoom Zoom.\n */\n/**\n * Default min zoom level for the map view.\n * @type {number}\n */\nvar DEFAULT_MIN_ZOOM = 0;\n/**\n * @typedef {import(\"./ObjectEventType\").Types|'change:center'|'change:resolution'|'change:rotation'} ViewObjectEventTypes\n */\n/***\n * @template Return\n * @typedef {import(\"./Observable\").OnSignature<import(\"./Observable\").EventTypes, import(\"./events/Event.js\").default, Return> &\n * import(\"./Observable\").OnSignature<ViewObjectEventTypes, import(\"./Object\").ObjectEvent, Return> &\n * import(\"./Observable\").CombinedOnSignature<import(\"./Observable\").EventTypes|ViewObjectEventTypes, Return>} ViewOnSignature\n */\n/**\n * @classdesc\n * A View object represents a simple 2D view of the map.\n *\n * This is the object to act upon to change the center, resolution,\n * and rotation of the map.\n *\n * A View has a `projection`. The projection determines the\n * coordinate system of the center, and its units determine the units of the\n * resolution (projection units per pixel). The default projection is\n * Spherical Mercator (EPSG:3857).\n *\n * ### The view states\n *\n * A View is determined by three states: `center`, `resolution`,\n * and `rotation`. Each state has a corresponding getter and setter, e.g.\n * `getCenter` and `setCenter` for the `center` state.\n *\n * The `zoom` state is actually not saved on the view: all computations\n * internally use the `resolution` state. Still, the `setZoom` and `getZoom`\n * methods are available, as well as `getResolutionForZoom` and\n * `getZoomForResolution` to switch from one system to the other.\n *\n * ### The constraints\n *\n * `setCenter`, `setResolution` and `setRotation` can be used to change the\n * states of the view, but any constraint defined in the constructor will\n * be applied along the way.\n *\n * A View object can have a *resolution constraint*, a *rotation constraint*\n * and a *center constraint*.\n *\n * The *resolution constraint* typically restricts min/max values and\n * snaps to specific resolutions. It is determined by the following\n * options: `resolutions`, `maxResolution`, `maxZoom` and `zoomFactor`.\n * If `resolutions` is set, the other three options are ignored. See\n * documentation for each option for more information. By default, the view\n * only has a min/max restriction and allow intermediary zoom levels when\n * pinch-zooming for example.\n *\n * The *rotation constraint* snaps to specific angles. It is determined\n * by the following options: `enableRotation` and `constrainRotation`.\n * By default rotation is allowed and its value is snapped to zero when approaching the\n * horizontal.\n *\n * The *center constraint* is determined by the `extent` option. By\n * default the view center is not constrained at all.\n *\n * ### Changing the view state\n *\n * It is important to note that `setZoom`, `setResolution`, `setCenter` and\n * `setRotation` are subject to the above mentioned constraints. As such, it\n * may sometimes not be possible to know in advance the resulting state of the\n * View. For example, calling `setResolution(10)` does not guarantee that\n * `getResolution()` will return `10`.\n *\n * A consequence of this is that, when applying a delta on the view state, one\n * should use `adjustCenter`, `adjustRotation`, `adjustZoom` and `adjustResolution`\n * rather than the corresponding setters. This will let view do its internal\n * computations. Besides, the `adjust*` methods also take an `opt_anchor`\n * argument which allows specifying an origin for the transformation.\n *\n * ### Interacting with the view\n *\n * View constraints are usually only applied when the view is *at rest*, meaning that\n * no interaction or animation is ongoing. As such, if the user puts the view in a\n * state that is not equivalent to a constrained one (e.g. rotating the view when\n * the snap angle is 0), an animation will be triggered at the interaction end to\n * put back the view to a stable state;\n *\n * @api\n */\nvar View = /** @class */ (function (_super) {\n __extends(View, _super);\n /**\n * @param {ViewOptions} [opt_options] View options.\n */\n function View(opt_options) {\n var _this = _super.call(this) || this;\n /***\n * @type {ViewOnSignature<import(\"./events\").EventsKey>}\n */\n _this.on;\n /***\n * @type {ViewOnSignature<import(\"./events\").EventsKey>}\n */\n _this.once;\n /***\n * @type {ViewOnSignature<void>}\n */\n _this.un;\n var options = assign({}, opt_options);\n /**\n * @private\n * @type {Array<number>}\n */\n _this.hints_ = [0, 0];\n /**\n * @private\n * @type {Array<Array<Animation>>}\n */\n _this.animations_ = [];\n /**\n * @private\n * @type {number|undefined}\n */\n _this.updateAnimationKey_;\n /**\n * @private\n * @const\n * @type {import(\"./proj/Projection.js\").default}\n */\n _this.projection_ = createProjection(options.projection, 'EPSG:3857');\n /**\n * @private\n * @type {import(\"./size.js\").Size}\n */\n _this.viewportSize_ = [100, 100];\n /**\n * @private\n * @type {import(\"./coordinate.js\").Coordinate|undefined}\n */\n _this.targetCenter_ = null;\n /**\n * @private\n * @type {number|undefined}\n */\n _this.targetResolution_;\n /**\n * @private\n * @type {number|undefined}\n */\n _this.targetRotation_;\n /**\n * @private\n * @type {import(\"./coordinate.js\").Coordinate}\n */\n _this.nextCenter_ = null;\n /**\n * @private\n * @type {number}\n */\n _this.nextResolution_;\n /**\n * @private\n * @type {number}\n */\n _this.nextRotation_;\n /**\n * @private\n * @type {import(\"./coordinate.js\").Coordinate|undefined}\n */\n _this.cancelAnchor_ = undefined;\n if (options.center) {\n options.center = fromUserCoordinate(options.center, _this.projection_);\n }\n if (options.extent) {\n options.extent = fromUserExtent(options.extent, _this.projection_);\n }\n _this.applyOptions_(options);\n return _this;\n }\n /**\n * Set up the view with the given options.\n * @param {ViewOptions} options View options.\n */\n View.prototype.applyOptions_ = function (options) {\n /**\n * @type {Object<string, *>}\n */\n var properties = {};\n var resolutionConstraintInfo = createResolutionConstraint(options);\n /**\n * @private\n * @type {number}\n */\n this.maxResolution_ = resolutionConstraintInfo.maxResolution;\n /**\n * @private\n * @type {number}\n */\n this.minResolution_ = resolutionConstraintInfo.minResolution;\n /**\n * @private\n * @type {number}\n */\n this.zoomFactor_ = resolutionConstraintInfo.zoomFactor;\n /**\n * @private\n * @type {Array<number>|undefined}\n */\n this.resolutions_ = options.resolutions;\n /**\n * @type {Array<number>|undefined}\n * @private\n */\n this.padding_ = options.padding;\n /**\n * @private\n * @type {number}\n */\n this.minZoom_ = resolutionConstraintInfo.minZoom;\n var centerConstraint = createCenterConstraint(options);\n var resolutionConstraint = resolutionConstraintInfo.constraint;\n var rotationConstraint = createRotationConstraint(options);\n /**\n * @private\n * @type {Constraints}\n */\n this.constraints_ = {\n center: centerConstraint,\n resolution: resolutionConstraint,\n rotation: rotationConstraint,\n };\n this.setRotation(options.rotation !== undefined ? options.rotation : 0);\n this.setCenterInternal(options.center !== undefined ? options.center : null);\n if (options.resolution !== undefined) {\n this.setResolution(options.resolution);\n }\n else if (options.zoom !== undefined) {\n this.setZoom(options.zoom);\n }\n this.setProperties(properties);\n /**\n * @private\n * @type {ViewOptions}\n */\n this.options_ = options;\n };\n Object.defineProperty(View.prototype, \"padding\", {\n /**\n * Padding (in css pixels).\n * If the map viewport is partially covered with other content (overlays) along\n * its edges, this setting allows to shift the center of the viewport away from that\n * content. The order of the values in the array is top, right, bottom, left.\n * The default is no padding, which is equivalent to `[0, 0, 0, 0]`.\n * @type {Array<number>|undefined}\n * @api\n */\n get: function () {\n return this.padding_;\n },\n set: function (padding) {\n var oldPadding = this.padding_;\n this.padding_ = padding;\n var center = this.getCenter();\n if (center) {\n var newPadding = padding || [0, 0, 0, 0];\n oldPadding = oldPadding || [0, 0, 0, 0];\n var resolution = this.getResolution();\n var offsetX = (resolution / 2) *\n (newPadding[3] - oldPadding[3] + oldPadding[1] - newPadding[1]);\n var offsetY = (resolution / 2) *\n (newPadding[0] - oldPadding[0] + oldPadding[2] - newPadding[2]);\n this.setCenterInternal([center[0] + offsetX, center[1] - offsetY]);\n }\n },\n enumerable: false,\n configurable: true\n });\n /**\n * Get an updated version of the view options used to construct the view. The\n * current resolution (or zoom), center, and rotation are applied to any stored\n * options. The provided options can be used to apply new min/max zoom or\n * resolution limits.\n * @param {ViewOptions} newOptions New options to be applied.\n * @return {ViewOptions} New options updated with the current view state.\n */\n View.prototype.getUpdatedOptions_ = function (newOptions) {\n var options = assign({}, this.options_);\n // preserve resolution (or zoom)\n if (options.resolution !== undefined) {\n options.resolution = this.getResolution();\n }\n else {\n options.zoom = this.getZoom();\n }\n // preserve center\n options.center = this.getCenterInternal();\n // preserve rotation\n options.rotation = this.getRotation();\n return assign({}, options, newOptions);\n };\n /**\n * Animate the view. The view's center, zoom (or resolution), and rotation\n * can be animated for smooth transitions between view states. For example,\n * to animate the view to a new zoom level:\n *\n * view.animate({zoom: view.getZoom() + 1});\n *\n * By default, the animation lasts one second and uses in-and-out easing. You\n * can customize this behavior by including `duration` (in milliseconds) and\n * `easing` options (see {@link module:ol/easing}).\n *\n * To chain together multiple animations, call the method with multiple\n * animation objects. For example, to first zoom and then pan:\n *\n * view.animate({zoom: 10}, {center: [0, 0]});\n *\n * If you provide a function as the last argument to the animate method, it\n * will get called at the end of an animation series. The callback will be\n * called with `true` if the animation series completed on its own or `false`\n * if it was cancelled.\n *\n * Animations are cancelled by user interactions (e.g. dragging the map) or by\n * calling `view.setCenter()`, `view.setResolution()`, or `view.setRotation()`\n * (or another method that calls one of these).\n *\n * @param {...(AnimationOptions|function(boolean): void)} var_args Animation\n * options. Multiple animations can be run in series by passing multiple\n * options objects. To run multiple animations in parallel, call the method\n * multiple times. An optional callback can be provided as a final\n * argument. The callback will be called with a boolean indicating whether\n * the animation completed without being cancelled.\n * @api\n */\n View.prototype.animate = function (var_args) {\n if (this.isDef() && !this.getAnimating()) {\n this.resolveConstraints(0);\n }\n var args = new Array(arguments.length);\n for (var i = 0; i < args.length; ++i) {\n var options = arguments[i];\n if (options.center) {\n options = assign({}, options);\n options.center = fromUserCoordinate(options.center, this.getProjection());\n }\n if (options.anchor) {\n options = assign({}, options);\n options.anchor = fromUserCoordinate(options.anchor, this.getProjection());\n }\n args[i] = options;\n }\n this.animateInternal.apply(this, args);\n };\n /**\n * @param {...(AnimationOptions|function(boolean): void)} var_args Animation options.\n */\n View.prototype.animateInternal = function (var_args) {\n var animationCount = arguments.length;\n var callback;\n if (animationCount > 1 &&\n typeof arguments[animationCount - 1] === 'function') {\n callback = arguments[animationCount - 1];\n --animationCount;\n }\n var i = 0;\n for (; i < animationCount && !this.isDef(); ++i) {\n // if view properties are not yet set, shortcut to the final state\n var state = arguments[i];\n if (state.center) {\n this.setCenterInternal(state.center);\n }\n if (state.zoom !== undefined) {\n this.setZoom(state.zoom);\n }\n else if (state.resolution) {\n this.setResolution(state.resolution);\n }\n if (state.rotation !== undefined) {\n this.setRotation(state.rotation);\n }\n }\n if (i === animationCount) {\n if (callback) {\n animationCallback(callback, true);\n }\n return;\n }\n var start = Date.now();\n var center = this.targetCenter_.slice();\n var resolution = this.targetResolution_;\n var rotation = this.targetRotation_;\n var series = [];\n for (; i < animationCount; ++i) {\n var options = /** @type {AnimationOptions} */ (arguments[i]);\n var animation = {\n start: start,\n complete: false,\n anchor: options.anchor,\n duration: options.duration !== undefined ? options.duration : 1000,\n easing: options.easing || inAndOut,\n callback: callback,\n };\n if (options.center) {\n animation.sourceCenter = center;\n animation.targetCenter = options.center.slice();\n center = animation.targetCenter;\n }\n if (options.zoom !== undefined) {\n animation.sourceResolution = resolution;\n animation.targetResolution = this.getResolutionForZoom(options.zoom);\n resolution = animation.targetResolution;\n }\n else if (options.resolution) {\n animation.sourceResolution = resolution;\n animation.targetResolution = options.resolution;\n resolution = animation.targetResolution;\n }\n if (options.rotation !== undefined) {\n animation.sourceRotation = rotation;\n var delta = modulo(options.rotation - rotation + Math.PI, 2 * Math.PI) - Math.PI;\n animation.targetRotation = rotation + delta;\n rotation = animation.targetRotation;\n }\n // check if animation is a no-op\n if (isNoopAnimation(animation)) {\n animation.complete = true;\n // we still push it onto the series for callback handling\n }\n else {\n start += animation.duration;\n }\n series.push(animation);\n }\n this.animations_.push(series);\n this.setHint(ViewHint.ANIMATING, 1);\n this.updateAnimations_();\n };\n /**\n * Determine if the view is being animated.\n * @return {boolean} The view is being animated.\n * @api\n */\n View.prototype.getAnimating = function () {\n return this.hints_[ViewHint.ANIMATING] > 0;\n };\n /**\n * Determine if the user is interacting with the view, such as panning or zooming.\n * @return {boolean} The view is being interacted with.\n * @api\n */\n View.prototype.getInteracting = function () {\n return this.hints_[ViewHint.INTERACTING] > 0;\n };\n /**\n * Cancel any ongoing animations.\n * @api\n */\n View.prototype.cancelAnimations = function () {\n this.setHint(ViewHint.ANIMATING, -this.hints_[ViewHint.ANIMATING]);\n var anchor;\n for (var i = 0, ii = this.animations_.length; i < ii; ++i) {\n var series = this.animations_[i];\n if (series[0].callback) {\n animationCallback(series[0].callback, false);\n }\n if (!anchor) {\n for (var j = 0, jj = series.length; j < jj; ++j) {\n var animation = series[j];\n if (!animation.complete) {\n anchor = animation.anchor;\n break;\n }\n }\n }\n }\n this.animations_.length = 0;\n this.cancelAnchor_ = anchor;\n this.nextCenter_ = null;\n this.nextResolution_ = NaN;\n this.nextRotation_ = NaN;\n };\n /**\n * Update all animations.\n */\n View.prototype.updateAnimations_ = function () {\n if (this.updateAnimationKey_ !== undefined) {\n cancelAnimationFrame(this.updateAnimationKey_);\n this.updateAnimationKey_ = undefined;\n }\n if (!this.getAnimating()) {\n return;\n }\n var now = Date.now();\n var more = false;\n for (var i = this.animations_.length - 1; i >= 0; --i) {\n var series = this.animations_[i];\n var seriesComplete = true;\n for (var j = 0, jj = series.length; j < jj; ++j) {\n var animation = series[j];\n if (animation.complete) {\n continue;\n }\n var elapsed = now - animation.start;\n var fraction = animation.duration > 0 ? elapsed / animation.duration : 1;\n if (fraction >= 1) {\n animation.complete = true;\n fraction = 1;\n }\n else {\n seriesComplete = false;\n }\n var progress = animation.easing(fraction);\n if (animation.sourceCenter) {\n var x0 = animation.sourceCenter[0];\n var y0 = animation.sourceCenter[1];\n var x1 = animation.targetCenter[0];\n var y1 = animation.targetCenter[1];\n this.nextCenter_ = animation.targetCenter;\n var x = x0 + progress * (x1 - x0);\n var y = y0 + progress * (y1 - y0);\n this.targetCenter_ = [x, y];\n }\n if (animation.sourceResolution && animation.targetResolution) {\n var resolution = progress === 1\n ? animation.targetResolution\n : animation.sourceResolution +\n progress *\n (animation.targetResolution - animation.sourceResolution);\n if (animation.anchor) {\n var size = this.getViewportSize_(this.getRotation());\n var constrainedResolution = this.constraints_.resolution(resolution, 0, size, true);\n this.targetCenter_ = this.calculateCenterZoom(constrainedResolution, animation.anchor);\n }\n this.nextResolution_ = animation.targetResolution;\n this.targetResolution_ = resolution;\n this.applyTargetState_(true);\n }\n if (animation.sourceRotation !== undefined &&\n animation.targetRotation !== undefined) {\n var rotation = progress === 1\n ? modulo(animation.targetRotation + Math.PI, 2 * Math.PI) -\n Math.PI\n : animation.sourceRotation +\n progress *\n (animation.targetRotation - animation.sourceRotation);\n if (animation.anchor) {\n var constrainedRotation = this.constraints_.rotation(rotation, true);\n this.targetCenter_ = this.calculateCenterRotate(constrainedRotation, animation.anchor);\n }\n this.nextRotation_ = animation.targetRotation;\n this.targetRotation_ = rotation;\n }\n this.applyTargetState_(true);\n more = true;\n if (!animation.complete) {\n break;\n }\n }\n if (seriesComplete) {\n this.animations_[i] = null;\n this.setHint(ViewHint.ANIMATING, -1);\n this.nextCenter_ = null;\n this.nextResolution_ = NaN;\n this.nextRotation_ = NaN;\n var callback = series[0].callback;\n if (callback) {\n animationCallback(callback, true);\n }\n }\n }\n // prune completed series\n this.animations_ = this.animations_.filter(Boolean);\n if (more && this.updateAnimationKey_ === undefined) {\n this.updateAnimationKey_ = requestAnimationFrame(this.updateAnimations_.bind(this));\n }\n };\n /**\n * @param {number} rotation Target rotation.\n * @param {import(\"./coordinate.js\").Coordinate} anchor Rotation anchor.\n * @return {import(\"./coordinate.js\").Coordinate|undefined} Center for rotation and anchor.\n */\n View.prototype.calculateCenterRotate = function (rotation, anchor) {\n var center;\n var currentCenter = this.getCenterInternal();\n if (currentCenter !== undefined) {\n center = [currentCenter[0] - anchor[0], currentCenter[1] - anchor[1]];\n rotateCoordinate(center, rotation - this.getRotation());\n addCoordinate(center, anchor);\n }\n return center;\n };\n /**\n * @param {number} resolution Target resolution.\n * @param {import(\"./coordinate.js\").Coordinate} anchor Zoom anchor.\n * @return {import(\"./coordinate.js\").Coordinate|undefined} Center for resolution and anchor.\n */\n View.prototype.calculateCenterZoom = function (resolution, anchor) {\n var center;\n var currentCenter = this.getCenterInternal();\n var currentResolution = this.getResolution();\n if (currentCenter !== undefined && currentResolution !== undefined) {\n var x = anchor[0] -\n (resolution * (anchor[0] - currentCenter[0])) / currentResolution;\n var y = anchor[1] -\n (resolution * (anchor[1] - currentCenter[1])) / currentResolution;\n center = [x, y];\n }\n return center;\n };\n /**\n * Returns the current viewport size.\n * @private\n * @param {number} [opt_rotation] Take into account the rotation of the viewport when giving the size\n * @return {import(\"./size.js\").Size} Viewport size or `[100, 100]` when no viewport is found.\n */\n View.prototype.getViewportSize_ = function (opt_rotation) {\n var size = this.viewportSize_;\n if (opt_rotation) {\n var w = size[0];\n var h = size[1];\n return [\n Math.abs(w * Math.cos(opt_rotation)) +\n Math.abs(h * Math.sin(opt_rotation)),\n Math.abs(w * Math.sin(opt_rotation)) +\n Math.abs(h * Math.cos(opt_rotation)),\n ];\n }\n else {\n return size;\n }\n };\n /**\n * Stores the viewport size on the view. The viewport size is not read every time from the DOM\n * to avoid performance hit and layout reflow.\n * This should be done on map size change.\n * Note: the constraints are not resolved during an animation to avoid stopping it\n * @param {import(\"./size.js\").Size} [opt_size] Viewport size; if undefined, [100, 100] is assumed\n */\n View.prototype.setViewportSize = function (opt_size) {\n this.viewportSize_ = Array.isArray(opt_size)\n ? opt_size.slice()\n : [100, 100];\n if (!this.getAnimating()) {\n this.resolveConstraints(0);\n }\n };\n /**\n * Get the view center.\n * @return {import(\"./coordinate.js\").Coordinate|undefined} The center of the view.\n * @observable\n * @api\n */\n View.prototype.getCenter = function () {\n var center = this.getCenterInternal();\n if (!center) {\n return center;\n }\n return toUserCoordinate(center, this.getProjection());\n };\n /**\n * Get the view center without transforming to user projection.\n * @return {import(\"./coordinate.js\").Coordinate|undefined} The center of the view.\n */\n View.prototype.getCenterInternal = function () {\n return /** @type {import(\"./coordinate.js\").Coordinate|undefined} */ (this.get(ViewProperty.CENTER));\n };\n /**\n * @return {Constraints} Constraints.\n */\n View.prototype.getConstraints = function () {\n return this.constraints_;\n };\n /**\n * @return {boolean} Resolution constraint is set\n */\n View.prototype.getConstrainResolution = function () {\n return this.options_.constrainResolution;\n };\n /**\n * @param {Array<number>} [opt_hints] Destination array.\n * @return {Array<number>} Hint.\n */\n View.prototype.getHints = function (opt_hints) {\n if (opt_hints !== undefined) {\n opt_hints[0] = this.hints_[0];\n opt_hints[1] = this.hints_[1];\n return opt_hints;\n }\n else {\n return this.hints_.slice();\n }\n };\n /**\n * Calculate the extent for the current view state and the passed size.\n * The size is the pixel dimensions of the box into which the calculated extent\n * should fit. In most cases you want to get the extent of the entire map,\n * that is `map.getSize()`.\n * @param {import(\"./size.js\").Size} [opt_size] Box pixel size. If not provided, the size\n * of the map that uses this view will be used.\n * @return {import(\"./extent.js\").Extent} Extent.\n * @api\n */\n View.prototype.calculateExtent = function (opt_size) {\n var extent = this.calculateExtentInternal(opt_size);\n return toUserExtent(extent, this.getProjection());\n };\n /**\n * @param {import(\"./size.js\").Size} [opt_size] Box pixel size. If not provided,\n * the map's last known viewport size will be used.\n * @return {import(\"./extent.js\").Extent} Extent.\n */\n View.prototype.calculateExtentInternal = function (opt_size) {\n var size = opt_size || this.getViewportSizeMinusPadding_();\n var center = /** @type {!import(\"./coordinate.js\").Coordinate} */ (this.getCenterInternal());\n assert(center, 1); // The view center is not defined\n var resolution = /** @type {!number} */ (this.getResolution());\n assert(resolution !== undefined, 2); // The view resolution is not defined\n var rotation = /** @type {!number} */ (this.getRotation());\n assert(rotation !== undefined, 3); // The view rotation is not defined\n return getForViewAndSize(center, resolution, rotation, size);\n };\n /**\n * Get the maximum resolution of the view.\n * @return {number} The maximum resolution of the view.\n * @api\n */\n View.prototype.getMaxResolution = function () {\n return this.maxResolution_;\n };\n /**\n * Get the minimum resolution of the view.\n * @return {number} The minimum resolution of the view.\n * @api\n */\n View.prototype.getMinResolution = function () {\n return this.minResolution_;\n };\n /**\n * Get the maximum zoom level for the view.\n * @return {number} The maximum zoom level.\n * @api\n */\n View.prototype.getMaxZoom = function () {\n return /** @type {number} */ (this.getZoomForResolution(this.minResolution_));\n };\n /**\n * Set a new maximum zoom level for the view.\n * @param {number} zoom The maximum zoom level.\n * @api\n */\n View.prototype.setMaxZoom = function (zoom) {\n this.applyOptions_(this.getUpdatedOptions_({ maxZoom: zoom }));\n };\n /**\n * Get the minimum zoom level for the view.\n * @return {number} The minimum zoom level.\n * @api\n */\n View.prototype.getMinZoom = function () {\n return /** @type {number} */ (this.getZoomForResolution(this.maxResolution_));\n };\n /**\n * Set a new minimum zoom level for the view.\n * @param {number} zoom The minimum zoom level.\n * @api\n */\n View.prototype.setMinZoom = function (zoom) {\n this.applyOptions_(this.getUpdatedOptions_({ minZoom: zoom }));\n };\n /**\n * Set whether the view should allow intermediary zoom levels.\n * @param {boolean} enabled Whether the resolution is constrained.\n * @api\n */\n View.prototype.setConstrainResolution = function (enabled) {\n this.applyOptions_(this.getUpdatedOptions_({ constrainResolution: enabled }));\n };\n /**\n * Get the view projection.\n * @return {import(\"./proj/Projection.js\").default} The projection of the view.\n * @api\n */\n View.prototype.getProjection = function () {\n return this.projection_;\n };\n /**\n * Get the view resolution.\n * @return {number|undefined} The resolution of the view.\n * @observable\n * @api\n */\n View.prototype.getResolution = function () {\n return /** @type {number|undefined} */ (this.get(ViewProperty.RESOLUTION));\n };\n /**\n * Get the resolutions for the view. This returns the array of resolutions\n * passed to the constructor of the View, or undefined if none were given.\n * @return {Array<number>|undefined} The resolutions of the view.\n * @api\n */\n View.prototype.getResolutions = function () {\n return this.resolutions_;\n };\n /**\n * Get the resolution for a provided extent (in map units) and size (in pixels).\n * @param {import(\"./extent.js\").Extent} extent Extent.\n * @param {import(\"./size.js\").Size} [opt_size] Box pixel size.\n * @return {number} The resolution at which the provided extent will render at\n * the given size.\n * @api\n */\n View.prototype.getResolutionForExtent = function (extent, opt_size) {\n return this.getResolutionForExtentInternal(fromUserExtent(extent, this.getProjection()), opt_size);\n };\n /**\n * Get the resolution for a provided extent (in map units) and size (in pixels).\n * @param {import(\"./extent.js\").Extent} extent Extent.\n * @param {import(\"./size.js\").Size} [opt_size] Box pixel size.\n * @return {number} The resolution at which the provided extent will render at\n * the given size.\n */\n View.prototype.getResolutionForExtentInternal = function (extent, opt_size) {\n var size = opt_size || this.getViewportSizeMinusPadding_();\n var xResolution = getWidth(extent) / size[0];\n var yResolution = getHeight(extent) / size[1];\n return Math.max(xResolution, yResolution);\n };\n /**\n * Return a function that returns a value between 0 and 1 for a\n * resolution. Exponential scaling is assumed.\n * @param {number} [opt_power] Power.\n * @return {function(number): number} Resolution for value function.\n */\n View.prototype.getResolutionForValueFunction = function (opt_power) {\n var power = opt_power || 2;\n var maxResolution = this.getConstrainedResolution(this.maxResolution_);\n var minResolution = this.minResolution_;\n var max = Math.log(maxResolution / minResolution) / Math.log(power);\n return (\n /**\n * @param {number} value Value.\n * @return {number} Resolution.\n */\n function (value) {\n var resolution = maxResolution / Math.pow(power, value * max);\n return resolution;\n });\n };\n /**\n * Get the view rotation.\n * @return {number} The rotation of the view in radians.\n * @observable\n * @api\n */\n View.prototype.getRotation = function () {\n return /** @type {number} */ (this.get(ViewProperty.ROTATION));\n };\n /**\n * Return a function that returns a resolution for a value between\n * 0 and 1. Exponential scaling is assumed.\n * @param {number} [opt_power] Power.\n * @return {function(number): number} Value for resolution function.\n */\n View.prototype.getValueForResolutionFunction = function (opt_power) {\n var logPower = Math.log(opt_power || 2);\n var maxResolution = this.getConstrainedResolution(this.maxResolution_);\n var minResolution = this.minResolution_;\n var max = Math.log(maxResolution / minResolution) / logPower;\n return (\n /**\n * @param {number} resolution Resolution.\n * @return {number} Value.\n */\n function (resolution) {\n var value = Math.log(maxResolution / resolution) / logPower / max;\n return value;\n });\n };\n /**\n * Returns the size of the viewport minus padding.\n * @private\n * @param {number} [opt_rotation] Take into account the rotation of the viewport when giving the size\n * @return {import(\"./size.js\").Size} Viewport size reduced by the padding.\n */\n View.prototype.getViewportSizeMinusPadding_ = function (opt_rotation) {\n var size = this.getViewportSize_(opt_rotation);\n var padding = this.padding_;\n if (padding) {\n size = [\n size[0] - padding[1] - padding[3],\n size[1] - padding[0] - padding[2],\n ];\n }\n return size;\n };\n /**\n * @return {State} View state.\n */\n View.prototype.getState = function () {\n var projection = this.getProjection();\n var resolution = this.getResolution();\n var rotation = this.getRotation();\n var center = /** @type {import(\"./coordinate.js\").Coordinate} */ (this.getCenterInternal());\n var padding = this.padding_;\n if (padding) {\n var reducedSize = this.getViewportSizeMinusPadding_();\n center = calculateCenterOn(center, this.getViewportSize_(), [reducedSize[0] / 2 + padding[3], reducedSize[1] / 2 + padding[0]], resolution, rotation);\n }\n return {\n center: center.slice(0),\n projection: projection !== undefined ? projection : null,\n resolution: resolution,\n nextCenter: this.nextCenter_,\n nextResolution: this.nextResolution_,\n nextRotation: this.nextRotation_,\n rotation: rotation,\n zoom: this.getZoom(),\n };\n };\n /**\n * Get the current zoom level. This method may return non-integer zoom levels\n * if the view does not constrain the resolution, or if an interaction or\n * animation is underway.\n * @return {number|undefined} Zoom.\n * @api\n */\n View.prototype.getZoom = function () {\n var zoom;\n var resolution = this.getResolution();\n if (resolution !== undefined) {\n zoom = this.getZoomForResolution(resolution);\n }\n return zoom;\n };\n /**\n * Get the zoom level for a resolution.\n * @param {number} resolution The resolution.\n * @return {number|undefined} The zoom level for the provided resolution.\n * @api\n */\n View.prototype.getZoomForResolution = function (resolution) {\n var offset = this.minZoom_ || 0;\n var max, zoomFactor;\n if (this.resolutions_) {\n var nearest = linearFindNearest(this.resolutions_, resolution, 1);\n offset = nearest;\n max = this.resolutions_[nearest];\n if (nearest == this.resolutions_.length - 1) {\n zoomFactor = 2;\n }\n else {\n zoomFactor = max / this.resolutions_[nearest + 1];\n }\n }\n else {\n max = this.maxResolution_;\n zoomFactor = this.zoomFactor_;\n }\n return offset + Math.log(max / resolution) / Math.log(zoomFactor);\n };\n /**\n * Get the resolution for a zoom level.\n * @param {number} zoom Zoom level.\n * @return {number} The view resolution for the provided zoom level.\n * @api\n */\n View.prototype.getResolutionForZoom = function (zoom) {\n if (this.resolutions_) {\n if (this.resolutions_.length <= 1) {\n return 0;\n }\n var baseLevel = clamp(Math.floor(zoom), 0, this.resolutions_.length - 2);\n var zoomFactor = this.resolutions_[baseLevel] / this.resolutions_[baseLevel + 1];\n return (this.resolutions_[baseLevel] /\n Math.pow(zoomFactor, clamp(zoom - baseLevel, 0, 1)));\n }\n else {\n return (this.maxResolution_ / Math.pow(this.zoomFactor_, zoom - this.minZoom_));\n }\n };\n /**\n * Fit the given geometry or extent based on the given map size and border.\n * The size is pixel dimensions of the box to fit the extent into.\n * In most cases you will want to use the map size, that is `map.getSize()`.\n * Takes care of the map angle.\n * @param {import(\"./geom/SimpleGeometry.js\").default|import(\"./extent.js\").Extent} geometryOrExtent The geometry or\n * extent to fit the view to.\n * @param {FitOptions} [opt_options] Options.\n * @api\n */\n View.prototype.fit = function (geometryOrExtent, opt_options) {\n /** @type {import(\"./geom/SimpleGeometry.js\").default} */\n var geometry;\n assert(Array.isArray(geometryOrExtent) ||\n typeof ( /** @type {?} */(geometryOrExtent).getSimplifiedGeometry) ===\n 'function', 24); // Invalid extent or geometry provided as `geometry`\n if (Array.isArray(geometryOrExtent)) {\n assert(!isEmpty(geometryOrExtent), 25); // Cannot fit empty extent provided as `geometry`\n var extent = fromUserExtent(geometryOrExtent, this.getProjection());\n geometry = polygonFromExtent(extent);\n }\n else if (geometryOrExtent.getType() === GeometryType.CIRCLE) {\n var extent = fromUserExtent(geometryOrExtent.getExtent(), this.getProjection());\n geometry = polygonFromExtent(extent);\n geometry.rotate(this.getRotation(), getCenter(extent));\n }\n else {\n var userProjection = getUserProjection();\n if (userProjection) {\n geometry = /** @type {import(\"./geom/SimpleGeometry.js\").default} */ (geometryOrExtent\n .clone()\n .transform(userProjection, this.getProjection()));\n }\n else {\n geometry = geometryOrExtent;\n }\n }\n this.fitInternal(geometry, opt_options);\n };\n /**\n * Calculate rotated extent\n * @param {import(\"./geom/SimpleGeometry.js\").default} geometry The geometry.\n * @return {import(\"./extent\").Extent} The rotated extent for the geometry.\n */\n View.prototype.rotatedExtentForGeometry = function (geometry) {\n var rotation = this.getRotation();\n var cosAngle = Math.cos(rotation);\n var sinAngle = Math.sin(-rotation);\n var coords = geometry.getFlatCoordinates();\n var stride = geometry.getStride();\n var minRotX = +Infinity;\n var minRotY = +Infinity;\n var maxRotX = -Infinity;\n var maxRotY = -Infinity;\n for (var i = 0, ii = coords.length; i < ii; i += stride) {\n var rotX = coords[i] * cosAngle - coords[i + 1] * sinAngle;\n var rotY = coords[i] * sinAngle + coords[i + 1] * cosAngle;\n minRotX = Math.min(minRotX, rotX);\n minRotY = Math.min(minRotY, rotY);\n maxRotX = Math.max(maxRotX, rotX);\n maxRotY = Math.max(maxRotY, rotY);\n }\n return [minRotX, minRotY, maxRotX, maxRotY];\n };\n /**\n * @param {import(\"./geom/SimpleGeometry.js\").default} geometry The geometry.\n * @param {FitOptions} [opt_options] Options.\n */\n View.prototype.fitInternal = function (geometry, opt_options) {\n var options = opt_options || {};\n var size = options.size;\n if (!size) {\n size = this.getViewportSizeMinusPadding_();\n }\n var padding = options.padding !== undefined ? options.padding : [0, 0, 0, 0];\n var nearest = options.nearest !== undefined ? options.nearest : false;\n var minResolution;\n if (options.minResolution !== undefined) {\n minResolution = options.minResolution;\n }\n else if (options.maxZoom !== undefined) {\n minResolution = this.getResolutionForZoom(options.maxZoom);\n }\n else {\n minResolution = 0;\n }\n var rotatedExtent = this.rotatedExtentForGeometry(geometry);\n // calculate resolution\n var resolution = this.getResolutionForExtentInternal(rotatedExtent, [\n size[0] - padding[1] - padding[3],\n size[1] - padding[0] - padding[2],\n ]);\n resolution = isNaN(resolution)\n ? minResolution\n : Math.max(resolution, minResolution);\n resolution = this.getConstrainedResolution(resolution, nearest ? 0 : 1);\n // calculate center\n var rotation = this.getRotation();\n var sinAngle = Math.sin(rotation);\n var cosAngle = Math.cos(rotation);\n var centerRot = getCenter(rotatedExtent);\n centerRot[0] += ((padding[1] - padding[3]) / 2) * resolution;\n centerRot[1] += ((padding[0] - padding[2]) / 2) * resolution;\n var centerX = centerRot[0] * cosAngle - centerRot[1] * sinAngle;\n var centerY = centerRot[1] * cosAngle + centerRot[0] * sinAngle;\n var center = this.getConstrainedCenter([centerX, centerY], resolution);\n var callback = options.callback ? options.callback : VOID;\n if (options.duration !== undefined) {\n this.animateInternal({\n resolution: resolution,\n center: center,\n duration: options.duration,\n easing: options.easing,\n }, callback);\n }\n else {\n this.targetResolution_ = resolution;\n this.targetCenter_ = center;\n this.applyTargetState_(false, true);\n animationCallback(callback, true);\n }\n };\n /**\n * Center on coordinate and view position.\n * @param {import(\"./coordinate.js\").Coordinate} coordinate Coordinate.\n * @param {import(\"./size.js\").Size} size Box pixel size.\n * @param {import(\"./pixel.js\").Pixel} position Position on the view to center on.\n * @api\n */\n View.prototype.centerOn = function (coordinate, size, position) {\n this.centerOnInternal(fromUserCoordinate(coordinate, this.getProjection()), size, position);\n };\n /**\n * @param {import(\"./coordinate.js\").Coordinate} coordinate Coordinate.\n * @param {import(\"./size.js\").Size} size Box pixel size.\n * @param {import(\"./pixel.js\").Pixel} position Position on the view to center on.\n */\n View.prototype.centerOnInternal = function (coordinate, size, position) {\n this.setCenterInternal(calculateCenterOn(coordinate, size, position, this.getResolution(), this.getRotation()));\n };\n /**\n * Calculates the shift between map and viewport center.\n * @param {import(\"./coordinate.js\").Coordinate} center Center.\n * @param {number} resolution Resolution.\n * @param {number} rotation Rotation.\n * @param {import(\"./size.js\").Size} size Size.\n * @return {Array<number>|undefined} Center shift.\n */\n View.prototype.calculateCenterShift = function (center, resolution, rotation, size) {\n var centerShift;\n var padding = this.padding_;\n if (padding && center) {\n var reducedSize = this.getViewportSizeMinusPadding_(-rotation);\n var shiftedCenter = calculateCenterOn(center, size, [reducedSize[0] / 2 + padding[3], reducedSize[1] / 2 + padding[0]], resolution, rotation);\n centerShift = [\n center[0] - shiftedCenter[0],\n center[1] - shiftedCenter[1],\n ];\n }\n return centerShift;\n };\n /**\n * @return {boolean} Is defined.\n */\n View.prototype.isDef = function () {\n return !!this.getCenterInternal() && this.getResolution() !== undefined;\n };\n /**\n * Adds relative coordinates to the center of the view. Any extent constraint will apply.\n * @param {import(\"./coordinate.js\").Coordinate} deltaCoordinates Relative value to add.\n * @api\n */\n View.prototype.adjustCenter = function (deltaCoordinates) {\n var center = toUserCoordinate(this.targetCenter_, this.getProjection());\n this.setCenter([\n center[0] + deltaCoordinates[0],\n center[1] + deltaCoordinates[1],\n ]);\n };\n /**\n * Adds relative coordinates to the center of the view. Any extent constraint will apply.\n * @param {import(\"./coordinate.js\").Coordinate} deltaCoordinates Relative value to add.\n */\n View.prototype.adjustCenterInternal = function (deltaCoordinates) {\n var center = this.targetCenter_;\n this.setCenterInternal([\n center[0] + deltaCoordinates[0],\n center[1] + deltaCoordinates[1],\n ]);\n };\n /**\n * Multiply the view resolution by a ratio, optionally using an anchor. Any resolution\n * constraint will apply.\n * @param {number} ratio The ratio to apply on the view resolution.\n * @param {import(\"./coordinate.js\").Coordinate} [opt_anchor] The origin of the transformation.\n * @api\n */\n View.prototype.adjustResolution = function (ratio, opt_anchor) {\n var anchor = opt_anchor && fromUserCoordinate(opt_anchor, this.getProjection());\n this.adjustResolutionInternal(ratio, anchor);\n };\n /**\n * Multiply the view resolution by a ratio, optionally using an anchor. Any resolution\n * constraint will apply.\n * @param {number} ratio The ratio to apply on the view resolution.\n * @param {import(\"./coordinate.js\").Coordinate} [opt_anchor] The origin of the transformation.\n */\n View.prototype.adjustResolutionInternal = function (ratio, opt_anchor) {\n var isMoving = this.getAnimating() || this.getInteracting();\n var size = this.getViewportSize_(this.getRotation());\n var newResolution = this.constraints_.resolution(this.targetResolution_ * ratio, 0, size, isMoving);\n if (opt_anchor) {\n this.targetCenter_ = this.calculateCenterZoom(newResolution, opt_anchor);\n }\n this.targetResolution_ *= ratio;\n this.applyTargetState_();\n };\n /**\n * Adds a value to the view zoom level, optionally using an anchor. Any resolution\n * constraint will apply.\n * @param {number} delta Relative value to add to the zoom level.\n * @param {import(\"./coordinate.js\").Coordinate} [opt_anchor] The origin of the transformation.\n * @api\n */\n View.prototype.adjustZoom = function (delta, opt_anchor) {\n this.adjustResolution(Math.pow(this.zoomFactor_, -delta), opt_anchor);\n };\n /**\n * Adds a value to the view rotation, optionally using an anchor. Any rotation\n * constraint will apply.\n * @param {number} delta Relative value to add to the zoom rotation, in radians.\n * @param {import(\"./coordinate.js\").Coordinate} [opt_anchor] The rotation center.\n * @api\n */\n View.prototype.adjustRotation = function (delta, opt_anchor) {\n if (opt_anchor) {\n opt_anchor = fromUserCoordinate(opt_anchor, this.getProjection());\n }\n this.adjustRotationInternal(delta, opt_anchor);\n };\n /**\n * @param {number} delta Relative value to add to the zoom rotation, in radians.\n * @param {import(\"./coordinate.js\").Coordinate} [opt_anchor] The rotation center.\n */\n View.prototype.adjustRotationInternal = function (delta, opt_anchor) {\n var isMoving = this.getAnimating() || this.getInteracting();\n var newRotation = this.constraints_.rotation(this.targetRotation_ + delta, isMoving);\n if (opt_anchor) {\n this.targetCenter_ = this.calculateCenterRotate(newRotation, opt_anchor);\n }\n this.targetRotation_ += delta;\n this.applyTargetState_();\n };\n /**\n * Set the center of the current view. Any extent constraint will apply.\n * @param {import(\"./coordinate.js\").Coordinate|undefined} center The center of the view.\n * @observable\n * @api\n */\n View.prototype.setCenter = function (center) {\n this.setCenterInternal(fromUserCoordinate(center, this.getProjection()));\n };\n /**\n * Set the center using the view projection (not the user projection).\n * @param {import(\"./coordinate.js\").Coordinate|undefined} center The center of the view.\n */\n View.prototype.setCenterInternal = function (center) {\n this.targetCenter_ = center;\n this.applyTargetState_();\n };\n /**\n * @param {import(\"./ViewHint.js\").default} hint Hint.\n * @param {number} delta Delta.\n * @return {number} New value.\n */\n View.prototype.setHint = function (hint, delta) {\n this.hints_[hint] += delta;\n this.changed();\n return this.hints_[hint];\n };\n /**\n * Set the resolution for this view. Any resolution constraint will apply.\n * @param {number|undefined} resolution The resolution of the view.\n * @observable\n * @api\n */\n View.prototype.setResolution = function (resolution) {\n this.targetResolution_ = resolution;\n this.applyTargetState_();\n };\n /**\n * Set the rotation for this view. Any rotation constraint will apply.\n * @param {number} rotation The rotation of the view in radians.\n * @observable\n * @api\n */\n View.prototype.setRotation = function (rotation) {\n this.targetRotation_ = rotation;\n this.applyTargetState_();\n };\n /**\n * Zoom to a specific zoom level. Any resolution constrain will apply.\n * @param {number} zoom Zoom level.\n * @api\n */\n View.prototype.setZoom = function (zoom) {\n this.setResolution(this.getResolutionForZoom(zoom));\n };\n /**\n * Recompute rotation/resolution/center based on target values.\n * Note: we have to compute rotation first, then resolution and center considering that\n * parameters can influence one another in case a view extent constraint is present.\n * @param {boolean} [opt_doNotCancelAnims] Do not cancel animations.\n * @param {boolean} [opt_forceMoving] Apply constraints as if the view is moving.\n * @private\n */\n View.prototype.applyTargetState_ = function (opt_doNotCancelAnims, opt_forceMoving) {\n var isMoving = this.getAnimating() || this.getInteracting() || opt_forceMoving;\n // compute rotation\n var newRotation = this.constraints_.rotation(this.targetRotation_, isMoving);\n var size = this.getViewportSize_(newRotation);\n var newResolution = this.constraints_.resolution(this.targetResolution_, 0, size, isMoving);\n var newCenter = this.constraints_.center(this.targetCenter_, newResolution, size, isMoving, this.calculateCenterShift(this.targetCenter_, newResolution, newRotation, size));\n if (this.get(ViewProperty.ROTATION) !== newRotation) {\n this.set(ViewProperty.ROTATION, newRotation);\n }\n if (this.get(ViewProperty.RESOLUTION) !== newResolution) {\n this.set(ViewProperty.RESOLUTION, newResolution);\n }\n if (!this.get(ViewProperty.CENTER) ||\n !equals(this.get(ViewProperty.CENTER), newCenter)) {\n this.set(ViewProperty.CENTER, newCenter);\n }\n if (this.getAnimating() && !opt_doNotCancelAnims) {\n this.cancelAnimations();\n }\n this.cancelAnchor_ = undefined;\n };\n /**\n * If any constraints need to be applied, an animation will be triggered.\n * This is typically done on interaction end.\n * Note: calling this with a duration of 0 will apply the constrained values straight away,\n * without animation.\n * @param {number} [opt_duration] The animation duration in ms.\n * @param {number} [opt_resolutionDirection] Which direction to zoom.\n * @param {import(\"./coordinate.js\").Coordinate} [opt_anchor] The origin of the transformation.\n */\n View.prototype.resolveConstraints = function (opt_duration, opt_resolutionDirection, opt_anchor) {\n var duration = opt_duration !== undefined ? opt_duration : 200;\n var direction = opt_resolutionDirection || 0;\n var newRotation = this.constraints_.rotation(this.targetRotation_);\n var size = this.getViewportSize_(newRotation);\n var newResolution = this.constraints_.resolution(this.targetResolution_, direction, size);\n var newCenter = this.constraints_.center(this.targetCenter_, newResolution, size, false, this.calculateCenterShift(this.targetCenter_, newResolution, newRotation, size));\n if (duration === 0 && !this.cancelAnchor_) {\n this.targetResolution_ = newResolution;\n this.targetRotation_ = newRotation;\n this.targetCenter_ = newCenter;\n this.applyTargetState_();\n return;\n }\n var anchor = opt_anchor || (duration === 0 ? this.cancelAnchor_ : undefined);\n this.cancelAnchor_ = undefined;\n if (this.getResolution() !== newResolution ||\n this.getRotation() !== newRotation ||\n !this.getCenterInternal() ||\n !equals(this.getCenterInternal(), newCenter)) {\n if (this.getAnimating()) {\n this.cancelAnimations();\n }\n this.animateInternal({\n rotation: newRotation,\n center: newCenter,\n resolution: newResolution,\n duration: duration,\n easing: easeOut,\n anchor: anchor,\n });\n }\n };\n /**\n * Notify the View that an interaction has started.\n * The view state will be resolved to a stable one if needed\n * (depending on its constraints).\n * @api\n */\n View.prototype.beginInteraction = function () {\n this.resolveConstraints(0);\n this.setHint(ViewHint.INTERACTING, 1);\n };\n /**\n * Notify the View that an interaction has ended. The view state will be resolved\n * to a stable one if needed (depending on its constraints).\n * @param {number} [opt_duration] Animation duration in ms.\n * @param {number} [opt_resolutionDirection] Which direction to zoom.\n * @param {import(\"./coordinate.js\").Coordinate} [opt_anchor] The origin of the transformation.\n * @api\n */\n View.prototype.endInteraction = function (opt_duration, opt_resolutionDirection, opt_anchor) {\n var anchor = opt_anchor && fromUserCoordinate(opt_anchor, this.getProjection());\n this.endInteractionInternal(opt_duration, opt_resolutionDirection, anchor);\n };\n /**\n * Notify the View that an interaction has ended. The view state will be resolved\n * to a stable one if needed (depending on its constraints).\n * @param {number} [opt_duration] Animation duration in ms.\n * @param {number} [opt_resolutionDirection] Which direction to zoom.\n * @param {import(\"./coordinate.js\").Coordinate} [opt_anchor] The origin of the transformation.\n */\n View.prototype.endInteractionInternal = function (opt_duration, opt_resolutionDirection, opt_anchor) {\n this.setHint(ViewHint.INTERACTING, -1);\n this.resolveConstraints(opt_duration, opt_resolutionDirection, opt_anchor);\n };\n /**\n * Get a valid position for the view center according to the current constraints.\n * @param {import(\"./coordinate.js\").Coordinate|undefined} targetCenter Target center position.\n * @param {number} [opt_targetResolution] Target resolution. If not supplied, the current one will be used.\n * This is useful to guess a valid center position at a different zoom level.\n * @return {import(\"./coordinate.js\").Coordinate|undefined} Valid center position.\n */\n View.prototype.getConstrainedCenter = function (targetCenter, opt_targetResolution) {\n var size = this.getViewportSize_(this.getRotation());\n return this.constraints_.center(targetCenter, opt_targetResolution || this.getResolution(), size);\n };\n /**\n * Get a valid zoom level according to the current view constraints.\n * @param {number|undefined} targetZoom Target zoom.\n * @param {number} [opt_direction=0] Indicate which resolution should be used\n * by a renderer if the view resolution does not match any resolution of the tile source.\n * If 0, the nearest resolution will be used. If 1, the nearest lower resolution\n * will be used. If -1, the nearest higher resolution will be used.\n * @return {number|undefined} Valid zoom level.\n */\n View.prototype.getConstrainedZoom = function (targetZoom, opt_direction) {\n var targetRes = this.getResolutionForZoom(targetZoom);\n return this.getZoomForResolution(this.getConstrainedResolution(targetRes, opt_direction));\n };\n /**\n * Get a valid resolution according to the current view constraints.\n * @param {number|undefined} targetResolution Target resolution.\n * @param {number} [opt_direction=0] Indicate which resolution should be used\n * by a renderer if the view resolution does not match any resolution of the tile source.\n * If 0, the nearest resolution will be used. If 1, the nearest lower resolution\n * will be used. If -1, the nearest higher resolution will be used.\n * @return {number|undefined} Valid resolution.\n */\n View.prototype.getConstrainedResolution = function (targetResolution, opt_direction) {\n var direction = opt_direction || 0;\n var size = this.getViewportSize_(this.getRotation());\n return this.constraints_.resolution(targetResolution, direction, size);\n };\n return View;\n}(BaseObject));\n/**\n * @param {Function} callback Callback.\n * @param {*} returnValue Return value.\n */\nfunction animationCallback(callback, returnValue) {\n setTimeout(function () {\n callback(returnValue);\n }, 0);\n}\n/**\n * @param {ViewOptions} options View options.\n * @return {import(\"./centerconstraint.js\").Type} The constraint.\n */\nexport function createCenterConstraint(options) {\n if (options.extent !== undefined) {\n var smooth = options.smoothExtentConstraint !== undefined\n ? options.smoothExtentConstraint\n : true;\n return createExtent(options.extent, options.constrainOnlyCenter, smooth);\n }\n var projection = createProjection(options.projection, 'EPSG:3857');\n if (options.multiWorld !== true && projection.isGlobal()) {\n var extent = projection.getExtent().slice();\n extent[0] = -Infinity;\n extent[2] = Infinity;\n return createExtent(extent, false, false);\n }\n return centerNone;\n}\n/**\n * @param {ViewOptions} options View options.\n * @return {{constraint: import(\"./resolutionconstraint.js\").Type, maxResolution: number,\n * minResolution: number, minZoom: number, zoomFactor: number}} The constraint.\n */\nexport function createResolutionConstraint(options) {\n var resolutionConstraint;\n var maxResolution;\n var minResolution;\n // TODO: move these to be ol constants\n // see https://github.com/openlayers/openlayers/issues/2076\n var defaultMaxZoom = 28;\n var defaultZoomFactor = 2;\n var minZoom = options.minZoom !== undefined ? options.minZoom : DEFAULT_MIN_ZOOM;\n var maxZoom = options.maxZoom !== undefined ? options.maxZoom : defaultMaxZoom;\n var zoomFactor = options.zoomFactor !== undefined ? options.zoomFactor : defaultZoomFactor;\n var multiWorld = options.multiWorld !== undefined ? options.multiWorld : false;\n var smooth = options.smoothResolutionConstraint !== undefined\n ? options.smoothResolutionConstraint\n : true;\n var showFullExtent = options.showFullExtent !== undefined ? options.showFullExtent : false;\n var projection = createProjection(options.projection, 'EPSG:3857');\n var projExtent = projection.getExtent();\n var constrainOnlyCenter = options.constrainOnlyCenter;\n var extent = options.extent;\n if (!multiWorld && !extent && projection.isGlobal()) {\n constrainOnlyCenter = false;\n extent = projExtent;\n }\n if (options.resolutions !== undefined) {\n var resolutions = options.resolutions;\n maxResolution = resolutions[minZoom];\n minResolution =\n resolutions[maxZoom] !== undefined\n ? resolutions[maxZoom]\n : resolutions[resolutions.length - 1];\n if (options.constrainResolution) {\n resolutionConstraint = createSnapToResolutions(resolutions, smooth, !constrainOnlyCenter && extent, showFullExtent);\n }\n else {\n resolutionConstraint = createMinMaxResolution(maxResolution, minResolution, smooth, !constrainOnlyCenter && extent, showFullExtent);\n }\n }\n else {\n // calculate the default min and max resolution\n var size = !projExtent\n ? // use an extent that can fit the whole world if need be\n (360 * METERS_PER_UNIT[Units.DEGREES]) / projection.getMetersPerUnit()\n : Math.max(getWidth(projExtent), getHeight(projExtent));\n var defaultMaxResolution = size / DEFAULT_TILE_SIZE / Math.pow(defaultZoomFactor, DEFAULT_MIN_ZOOM);\n var defaultMinResolution = defaultMaxResolution /\n Math.pow(defaultZoomFactor, defaultMaxZoom - DEFAULT_MIN_ZOOM);\n // user provided maxResolution takes precedence\n maxResolution = options.maxResolution;\n if (maxResolution !== undefined) {\n minZoom = 0;\n }\n else {\n maxResolution = defaultMaxResolution / Math.pow(zoomFactor, minZoom);\n }\n // user provided minResolution takes precedence\n minResolution = options.minResolution;\n if (minResolution === undefined) {\n if (options.maxZoom !== undefined) {\n if (options.maxResolution !== undefined) {\n minResolution = maxResolution / Math.pow(zoomFactor, maxZoom);\n }\n else {\n minResolution = defaultMaxResolution / Math.pow(zoomFactor, maxZoom);\n }\n }\n else {\n minResolution = defaultMinResolution;\n }\n }\n // given discrete zoom levels, minResolution may be different than provided\n maxZoom =\n minZoom +\n Math.floor(Math.log(maxResolution / minResolution) / Math.log(zoomFactor));\n minResolution = maxResolution / Math.pow(zoomFactor, maxZoom - minZoom);\n if (options.constrainResolution) {\n resolutionConstraint = createSnapToPower(zoomFactor, maxResolution, minResolution, smooth, !constrainOnlyCenter && extent, showFullExtent);\n }\n else {\n resolutionConstraint = createMinMaxResolution(maxResolution, minResolution, smooth, !constrainOnlyCenter && extent, showFullExtent);\n }\n }\n return {\n constraint: resolutionConstraint,\n maxResolution: maxResolution,\n minResolution: minResolution,\n minZoom: minZoom,\n zoomFactor: zoomFactor,\n };\n}\n/**\n * @param {ViewOptions} options View options.\n * @return {import(\"./rotationconstraint.js\").Type} Rotation constraint.\n */\nexport function createRotationConstraint(options) {\n var enableRotation = options.enableRotation !== undefined ? options.enableRotation : true;\n if (enableRotation) {\n var constrainRotation = options.constrainRotation;\n if (constrainRotation === undefined || constrainRotation === true) {\n return createSnapToZero();\n }\n else if (constrainRotation === false) {\n return rotationNone;\n }\n else if (typeof constrainRotation === 'number') {\n return createSnapToN(constrainRotation);\n }\n else {\n return rotationNone;\n }\n }\n else {\n return disable;\n }\n}\n/**\n * Determine if an animation involves no view change.\n * @param {Animation} animation The animation.\n * @return {boolean} The animation involves no view change.\n */\nexport function isNoopAnimation(animation) {\n if (animation.sourceCenter && animation.targetCenter) {\n if (!coordinatesEqual(animation.sourceCenter, animation.targetCenter)) {\n return false;\n }\n }\n if (animation.sourceResolution !== animation.targetResolution) {\n return false;\n }\n if (animation.sourceRotation !== animation.targetRotation) {\n return false;\n }\n return true;\n}\n/**\n * @param {import(\"./coordinate.js\").Coordinate} coordinate Coordinate.\n * @param {import(\"./size.js\").Size} size Box pixel size.\n * @param {import(\"./pixel.js\").Pixel} position Position on the view to center on.\n * @param {number} resolution Resolution.\n * @param {number} rotation Rotation.\n * @return {import(\"./coordinate.js\").Coordinate} Shifted center.\n */\nfunction calculateCenterOn(coordinate, size, position, resolution, rotation) {\n // calculate rotated position\n var cosAngle = Math.cos(-rotation);\n var sinAngle = Math.sin(-rotation);\n var rotX = coordinate[0] * cosAngle - coordinate[1] * sinAngle;\n var rotY = coordinate[1] * cosAngle + coordinate[0] * sinAngle;\n rotX += (size[0] / 2 - position[0]) * resolution;\n rotY += (position[1] - size[1] / 2) * resolution;\n // go back to original angle\n sinAngle = -sinAngle; // go back to original rotation\n var centerX = rotX * cosAngle - rotY * sinAngle;\n var centerY = rotY * cosAngle + rotX * sinAngle;\n return [centerX, centerY];\n}\nexport default View;\n//# sourceMappingURL=View.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/PluggableMap\n */\nimport BaseObject from './Object.js';\nimport Collection from './Collection.js';\nimport CollectionEventType from './CollectionEventType.js';\nimport EventType from './events/EventType.js';\nimport LayerGroup from './layer/Group.js';\nimport MapBrowserEvent from './MapBrowserEvent.js';\nimport MapBrowserEventHandler from './MapBrowserEventHandler.js';\nimport MapBrowserEventType from './MapBrowserEventType.js';\nimport MapEvent from './MapEvent.js';\nimport MapEventType from './MapEventType.js';\nimport MapProperty from './MapProperty.js';\nimport ObjectEventType from './ObjectEventType.js';\nimport PointerEventType from './pointer/EventType.js';\nimport RenderEventType from './render/EventType.js';\nimport TileQueue, { getTilePriority } from './TileQueue.js';\nimport View from './View.js';\nimport ViewHint from './ViewHint.js';\nimport { DEVICE_PIXEL_RATIO, PASSIVE_EVENT_LISTENERS } from './has.js';\nimport { TRUE } from './functions.js';\nimport { apply as applyTransform, create as createTransform, } from './transform.js';\nimport { assert } from './asserts.js';\nimport { clone, createOrUpdateEmpty, equals, getForViewAndSize, isEmpty, } from './extent.js';\nimport { fromUserCoordinate, toUserCoordinate } from './proj.js';\nimport { hasArea } from './size.js';\nimport { listen, unlistenByKey } from './events.js';\nimport { removeNode } from './dom.js';\n/**\n * State of the current frame. Only `pixelRatio`, `time` and `viewState` should\n * be used in applications.\n * @typedef {Object} FrameState\n * @property {number} pixelRatio The pixel ratio of the frame.\n * @property {number} time The time when rendering of the frame was requested.\n * @property {import(\"./View.js\").State} viewState The state of the current view.\n * @property {boolean} animate Animate.\n * @property {import(\"./transform.js\").Transform} coordinateToPixelTransform CoordinateToPixelTransform.\n * @property {import(\"rbush\").default} declutterTree DeclutterTree.\n * @property {null|import(\"./extent.js\").Extent} extent Extent.\n * @property {import(\"./extent.js\").Extent} [nextExtent] Next extent during an animation series.\n * @property {number} index Index.\n * @property {Array<import(\"./layer/Layer.js\").State>} layerStatesArray LayerStatesArray.\n * @property {number} layerIndex LayerIndex.\n * @property {import(\"./transform.js\").Transform} pixelToCoordinateTransform PixelToCoordinateTransform.\n * @property {Array<PostRenderFunction>} postRenderFunctions PostRenderFunctions.\n * @property {import(\"./size.js\").Size} size Size.\n * @property {TileQueue} tileQueue TileQueue.\n * @property {!Object<string, Object<string, boolean>>} usedTiles UsedTiles.\n * @property {Array<number>} viewHints ViewHints.\n * @property {!Object<string, Object<string, boolean>>} wantedTiles WantedTiles.\n */\n/**\n * @typedef {function(PluggableMap, ?FrameState): any} PostRenderFunction\n */\n/**\n * @typedef {Object} AtPixelOptions\n * @property {undefined|function(import(\"./layer/Layer.js\").default<import(\"./source/Source\").default>): boolean} [layerFilter] Layer filter\n * function. The filter function will receive one argument, the\n * {@link module:ol/layer/Layer layer-candidate} and it should return a boolean value.\n * Only layers which are visible and for which this function returns `true`\n * will be tested for features. By default, all visible layers will be tested.\n * @property {number} [hitTolerance=0] Hit-detection tolerance in css pixels. Pixels\n * inside the radius around the given position will be checked for features.\n * @property {boolean} [checkWrapped=true] Check-Wrapped Will check for for wrapped geometries inside the range of\n * +/- 1 world width. Works only if a projection is used that can be wrapped.\n */\n/**\n * @typedef {Object} MapOptionsInternal\n * @property {Collection<import(\"./control/Control.js\").default>} [controls] Controls.\n * @property {Collection<import(\"./interaction/Interaction.js\").default>} [interactions] Interactions.\n * @property {HTMLElement|Document} keyboardEventTarget KeyboardEventTarget.\n * @property {Collection<import(\"./Overlay.js\").default>} overlays Overlays.\n * @property {Object<string, *>} values Values.\n */\n/**\n * @typedef {import(\"./ObjectEventType\").Types|'change:layergroup'|'change:size'|'change:target'|'change:view'} MapObjectEventTypes\n */\n/***\n * @template Return\n * @typedef {import(\"./Observable\").OnSignature<import(\"./Observable\").EventTypes, import(\"./events/Event.js\").default, Return> &\n * import(\"./Observable\").OnSignature<MapObjectEventTypes, import(\"./Object\").ObjectEvent, Return> &\n * import(\"./Observable\").OnSignature<import(\"./MapBrowserEventType\").Types, import(\"./MapBrowserEvent\").default, Return> &\n * import(\"./Observable\").OnSignature<import(\"./MapEventType\").Types, import(\"./MapEvent\").default, Return> &\n * import(\"./Observable\").OnSignature<import(\"./render/EventType\").MapRenderEventTypes, import(\"./render/Event\").default, Return> &\n * import(\"./Observable\").CombinedOnSignature<import(\"./Observable\").EventTypes|MapObjectEventTypes|\n * import(\"./MapBrowserEventType\").Types|import(\"./MapEventType\").Types|\n * import(\"./render/EventType\").MapRenderEventTypes, Return>} PluggableMapOnSignature\n */\n/**\n * Object literal with config options for the map.\n * @typedef {Object} MapOptions\n * @property {Collection<import(\"./control/Control.js\").default>|Array<import(\"./control/Control.js\").default>} [controls]\n * Controls initially added to the map. If not specified,\n * {@link module:ol/control.defaults} is used.\n * @property {number} [pixelRatio=window.devicePixelRatio] The ratio between\n * physical pixels and device-independent pixels (dips) on the device.\n * @property {Collection<import(\"./interaction/Interaction.js\").default>|Array<import(\"./interaction/Interaction.js\").default>} [interactions]\n * Interactions that are initially added to the map. If not specified,\n * {@link module:ol/interaction.defaults} is used.\n * @property {HTMLElement|Document|string} [keyboardEventTarget] The element to\n * listen to keyboard events on. This determines when the `KeyboardPan` and\n * `KeyboardZoom` interactions trigger. For example, if this option is set to\n * `document` the keyboard interactions will always trigger. If this option is\n * not specified, the element the library listens to keyboard events on is the\n * map target (i.e. the user-provided div for the map). If this is not\n * `document`, the target element needs to be focused for key events to be\n * emitted, requiring that the target element has a `tabindex` attribute.\n * @property {Array<import(\"./layer/Base.js\").default>|Collection<import(\"./layer/Base.js\").default>|LayerGroup} [layers]\n * Layers. If this is not defined, a map with no layers will be rendered. Note\n * that layers are rendered in the order supplied, so if you want, for example,\n * a vector layer to appear on top of a tile layer, it must come after the tile\n * layer.\n * @property {number} [maxTilesLoading=16] Maximum number tiles to load\n * simultaneously.\n * @property {number} [moveTolerance=1] The minimum distance in pixels the\n * cursor must move to be detected as a map move event instead of a click.\n * Increasing this value can make it easier to click on the map.\n * @property {Collection<import(\"./Overlay.js\").default>|Array<import(\"./Overlay.js\").default>} [overlays]\n * Overlays initially added to the map. By default, no overlays are added.\n * @property {HTMLElement|string} [target] The container for the map, either the\n * element itself or the `id` of the element. If not specified at construction\n * time, {@link module:ol/Map~Map#setTarget} must be called for the map to be\n * rendered. If passed by element, the container can be in a secondary document.\n * @property {View|Promise<import(\"./View.js\").ViewOptions>} [view] The map's view. No layer sources will be\n * fetched unless this is specified at construction time or through\n * {@link module:ol/Map~Map#setView}.\n */\n/**\n * @fires import(\"./MapBrowserEvent.js\").MapBrowserEvent\n * @fires import(\"./MapEvent.js\").MapEvent\n * @fires import(\"./render/Event.js\").default#precompose\n * @fires import(\"./render/Event.js\").default#postcompose\n * @fires import(\"./render/Event.js\").default#rendercomplete\n * @api\n */\nvar PluggableMap = /** @class */ (function (_super) {\n __extends(PluggableMap, _super);\n /**\n * @param {MapOptions} options Map options.\n */\n function PluggableMap(options) {\n var _this = _super.call(this) || this;\n /***\n * @type {PluggableMapOnSignature<import(\"./events\").EventsKey>}\n */\n _this.on;\n /***\n * @type {PluggableMapOnSignature<import(\"./events\").EventsKey>}\n */\n _this.once;\n /***\n * @type {PluggableMapOnSignature<void>}\n */\n _this.un;\n var optionsInternal = createOptionsInternal(options);\n /** @private */\n _this.boundHandleBrowserEvent_ = _this.handleBrowserEvent.bind(_this);\n /**\n * @type {number}\n * @private\n */\n _this.maxTilesLoading_ =\n options.maxTilesLoading !== undefined ? options.maxTilesLoading : 16;\n /**\n * @private\n * @type {number}\n */\n _this.pixelRatio_ =\n options.pixelRatio !== undefined\n ? options.pixelRatio\n : DEVICE_PIXEL_RATIO;\n /**\n * @private\n * @type {*}\n */\n _this.postRenderTimeoutHandle_;\n /**\n * @private\n * @type {number|undefined}\n */\n _this.animationDelayKey_;\n /**\n * @private\n */\n _this.animationDelay_ = /** @this {PluggableMap} */ function () {\n this.animationDelayKey_ = undefined;\n this.renderFrame_(Date.now());\n }.bind(_this);\n /**\n * @private\n * @type {import(\"./transform.js\").Transform}\n */\n _this.coordinateToPixelTransform_ = createTransform();\n /**\n * @private\n * @type {import(\"./transform.js\").Transform}\n */\n _this.pixelToCoordinateTransform_ = createTransform();\n /**\n * @private\n * @type {number}\n */\n _this.frameIndex_ = 0;\n /**\n * @private\n * @type {?FrameState}\n */\n _this.frameState_ = null;\n /**\n * The extent at the previous 'moveend' event.\n * @private\n * @type {import(\"./extent.js\").Extent}\n */\n _this.previousExtent_ = null;\n /**\n * @private\n * @type {?import(\"./events.js\").EventsKey}\n */\n _this.viewPropertyListenerKey_ = null;\n /**\n * @private\n * @type {?import(\"./events.js\").EventsKey}\n */\n _this.viewChangeListenerKey_ = null;\n /**\n * @private\n * @type {?Array<import(\"./events.js\").EventsKey>}\n */\n _this.layerGroupPropertyListenerKeys_ = null;\n /**\n * @private\n * @type {!HTMLElement}\n */\n _this.viewport_ = document.createElement('div');\n _this.viewport_.className =\n 'ol-viewport' + ('ontouchstart' in window ? ' ol-touch' : '');\n _this.viewport_.style.position = 'relative';\n _this.viewport_.style.overflow = 'hidden';\n _this.viewport_.style.width = '100%';\n _this.viewport_.style.height = '100%';\n /**\n * @private\n * @type {!HTMLElement}\n */\n _this.overlayContainer_ = document.createElement('div');\n _this.overlayContainer_.style.position = 'absolute';\n _this.overlayContainer_.style.zIndex = '0';\n _this.overlayContainer_.style.width = '100%';\n _this.overlayContainer_.style.height = '100%';\n _this.overlayContainer_.style.pointerEvents = 'none';\n _this.overlayContainer_.className = 'ol-overlaycontainer';\n _this.viewport_.appendChild(_this.overlayContainer_);\n /**\n * @private\n * @type {!HTMLElement}\n */\n _this.overlayContainerStopEvent_ = document.createElement('div');\n _this.overlayContainerStopEvent_.style.position = 'absolute';\n _this.overlayContainerStopEvent_.style.zIndex = '0';\n _this.overlayContainerStopEvent_.style.width = '100%';\n _this.overlayContainerStopEvent_.style.height = '100%';\n _this.overlayContainerStopEvent_.style.pointerEvents = 'none';\n _this.overlayContainerStopEvent_.className = 'ol-overlaycontainer-stopevent';\n _this.viewport_.appendChild(_this.overlayContainerStopEvent_);\n /**\n * @private\n * @type {MapBrowserEventHandler}\n */\n _this.mapBrowserEventHandler_ = null;\n /**\n * @private\n * @type {number}\n */\n _this.moveTolerance_ = options.moveTolerance;\n /**\n * @private\n * @type {HTMLElement|Document}\n */\n _this.keyboardEventTarget_ = optionsInternal.keyboardEventTarget;\n /**\n * @private\n * @type {?Array<import(\"./events.js\").EventsKey>}\n */\n _this.keyHandlerKeys_ = null;\n /**\n * @type {Collection<import(\"./control/Control.js\").default>}\n * @protected\n */\n _this.controls = optionsInternal.controls || new Collection();\n /**\n * @type {Collection<import(\"./interaction/Interaction.js\").default>}\n * @protected\n */\n _this.interactions = optionsInternal.interactions || new Collection();\n /**\n * @type {Collection<import(\"./Overlay.js\").default>}\n * @private\n */\n _this.overlays_ = optionsInternal.overlays;\n /**\n * A lookup of overlays by id.\n * @private\n * @type {Object<string, import(\"./Overlay.js\").default>}\n */\n _this.overlayIdIndex_ = {};\n /**\n * @type {import(\"./renderer/Map.js\").default}\n * @private\n */\n _this.renderer_ = null;\n /**\n * @type {undefined|function(Event): void}\n * @private\n */\n _this.handleResize_;\n /**\n * @private\n * @type {!Array<PostRenderFunction>}\n */\n _this.postRenderFunctions_ = [];\n /**\n * @private\n * @type {TileQueue}\n */\n _this.tileQueue_ = new TileQueue(_this.getTilePriority.bind(_this), _this.handleTileChange_.bind(_this));\n _this.addChangeListener(MapProperty.LAYERGROUP, _this.handleLayerGroupChanged_);\n _this.addChangeListener(MapProperty.VIEW, _this.handleViewChanged_);\n _this.addChangeListener(MapProperty.SIZE, _this.handleSizeChanged_);\n _this.addChangeListener(MapProperty.TARGET, _this.handleTargetChanged_);\n // setProperties will trigger the rendering of the map if the map\n // is \"defined\" already.\n _this.setProperties(optionsInternal.values);\n var map = _this;\n if (options.view && !(options.view instanceof View)) {\n options.view.then(function (viewOptions) {\n map.setView(new View(viewOptions));\n });\n }\n _this.controls.addEventListener(CollectionEventType.ADD, \n /**\n * @param {import(\"./Collection.js\").CollectionEvent} event CollectionEvent.\n */\n function (event) {\n event.element.setMap(this);\n }.bind(_this));\n _this.controls.addEventListener(CollectionEventType.REMOVE, \n /**\n * @param {import(\"./Collection.js\").CollectionEvent} event CollectionEvent.\n */\n function (event) {\n event.element.setMap(null);\n }.bind(_this));\n _this.interactions.addEventListener(CollectionEventType.ADD, \n /**\n * @param {import(\"./Collection.js\").CollectionEvent} event CollectionEvent.\n */\n function (event) {\n event.element.setMap(this);\n }.bind(_this));\n _this.interactions.addEventListener(CollectionEventType.REMOVE, \n /**\n * @param {import(\"./Collection.js\").CollectionEvent} event CollectionEvent.\n */\n function (event) {\n event.element.setMap(null);\n }.bind(_this));\n _this.overlays_.addEventListener(CollectionEventType.ADD, \n /**\n * @param {import(\"./Collection.js\").CollectionEvent} event CollectionEvent.\n */\n function (event) {\n this.addOverlayInternal_(\n /** @type {import(\"./Overlay.js\").default} */ (event.element));\n }.bind(_this));\n _this.overlays_.addEventListener(CollectionEventType.REMOVE, \n /**\n * @param {import(\"./Collection.js\").CollectionEvent} event CollectionEvent.\n */\n function (event) {\n var overlay = /** @type {import(\"./Overlay.js\").default} */ (event.element);\n var id = overlay.getId();\n if (id !== undefined) {\n delete this.overlayIdIndex_[id.toString()];\n }\n event.element.setMap(null);\n }.bind(_this));\n _this.controls.forEach(\n /**\n * @param {import(\"./control/Control.js\").default} control Control.\n * @this {PluggableMap}\n */\n function (control) {\n control.setMap(this);\n }.bind(_this));\n _this.interactions.forEach(\n /**\n * @param {import(\"./interaction/Interaction.js\").default} interaction Interaction.\n * @this {PluggableMap}\n */\n function (interaction) {\n interaction.setMap(this);\n }.bind(_this));\n _this.overlays_.forEach(_this.addOverlayInternal_.bind(_this));\n return _this;\n }\n /**\n * @abstract\n * @return {import(\"./renderer/Map.js\").default} The map renderer\n */\n PluggableMap.prototype.createRenderer = function () {\n throw new Error('Use a map type that has a createRenderer method');\n };\n /**\n * Add the given control to the map.\n * @param {import(\"./control/Control.js\").default} control Control.\n * @api\n */\n PluggableMap.prototype.addControl = function (control) {\n this.getControls().push(control);\n };\n /**\n * Add the given interaction to the map. If you want to add an interaction\n * at another point of the collection use `getInteraction()` and the methods\n * available on {@link module:ol/Collection~Collection}. This can be used to\n * stop the event propagation from the handleEvent function. The interactions\n * get to handle the events in the reverse order of this collection.\n * @param {import(\"./interaction/Interaction.js\").default} interaction Interaction to add.\n * @api\n */\n PluggableMap.prototype.addInteraction = function (interaction) {\n this.getInteractions().push(interaction);\n };\n /**\n * Adds the given layer to the top of this map. If you want to add a layer\n * elsewhere in the stack, use `getLayers()` and the methods available on\n * {@link module:ol/Collection~Collection}.\n * @param {import(\"./layer/Base.js\").default} layer Layer.\n * @api\n */\n PluggableMap.prototype.addLayer = function (layer) {\n var layers = this.getLayerGroup().getLayers();\n layers.push(layer);\n };\n /**\n * Add the given overlay to the map.\n * @param {import(\"./Overlay.js\").default} overlay Overlay.\n * @api\n */\n PluggableMap.prototype.addOverlay = function (overlay) {\n this.getOverlays().push(overlay);\n };\n /**\n * This deals with map's overlay collection changes.\n * @param {import(\"./Overlay.js\").default} overlay Overlay.\n * @private\n */\n PluggableMap.prototype.addOverlayInternal_ = function (overlay) {\n var id = overlay.getId();\n if (id !== undefined) {\n this.overlayIdIndex_[id.toString()] = overlay;\n }\n overlay.setMap(this);\n };\n /**\n *\n * Clean up.\n */\n PluggableMap.prototype.disposeInternal = function () {\n this.setTarget(null);\n _super.prototype.disposeInternal.call(this);\n };\n /**\n * Detect features that intersect a pixel on the viewport, and execute a\n * callback with each intersecting feature. Layers included in the detection can\n * be configured through the `layerFilter` option in `opt_options`.\n * @param {import(\"./pixel.js\").Pixel} pixel Pixel.\n * @param {function(import(\"./Feature.js\").FeatureLike, import(\"./layer/Layer.js\").default<import(\"./source/Source\").default>, import(\"./geom/SimpleGeometry.js\").default): T} callback Feature callback. The callback will be\n * called with two arguments. The first argument is one\n * {@link module:ol/Feature feature} or\n * {@link module:ol/render/Feature render feature} at the pixel, the second is\n * the {@link module:ol/layer/Layer layer} of the feature and will be null for\n * unmanaged layers. To stop detection, callback functions can return a\n * truthy value.\n * @param {AtPixelOptions} [opt_options] Optional options.\n * @return {T|undefined} Callback result, i.e. the return value of last\n * callback execution, or the first truthy callback return value.\n * @template T\n * @api\n */\n PluggableMap.prototype.forEachFeatureAtPixel = function (pixel, callback, opt_options) {\n if (!this.frameState_) {\n return;\n }\n var coordinate = this.getCoordinateFromPixelInternal(pixel);\n opt_options = opt_options !== undefined ? opt_options : {};\n var hitTolerance = opt_options.hitTolerance !== undefined ? opt_options.hitTolerance : 0;\n var layerFilter = opt_options.layerFilter !== undefined ? opt_options.layerFilter : TRUE;\n var checkWrapped = opt_options.checkWrapped !== false;\n return this.renderer_.forEachFeatureAtCoordinate(coordinate, this.frameState_, hitTolerance, checkWrapped, callback, null, layerFilter, null);\n };\n /**\n * Get all features that intersect a pixel on the viewport.\n * @param {import(\"./pixel.js\").Pixel} pixel Pixel.\n * @param {AtPixelOptions} [opt_options] Optional options.\n * @return {Array<import(\"./Feature.js\").FeatureLike>} The detected features or\n * an empty array if none were found.\n * @api\n */\n PluggableMap.prototype.getFeaturesAtPixel = function (pixel, opt_options) {\n var features = [];\n this.forEachFeatureAtPixel(pixel, function (feature) {\n features.push(feature);\n }, opt_options);\n return features;\n };\n /**\n * Detect layers that have a color value at a pixel on the viewport, and\n * execute a callback with each matching layer. Layers included in the\n * detection can be configured through `opt_layerFilter`.\n *\n * Note: this may give false positives unless the map layers have had different `className`\n * properties assigned to them.\n *\n * @param {import(\"./pixel.js\").Pixel} pixel Pixel.\n * @param {function(this: S, import(\"./layer/Layer.js\").default, (Uint8ClampedArray|Uint8Array)): T} callback\n * Layer callback. This callback will receive two arguments: first is the\n * {@link module:ol/layer/Layer layer}, second argument is an array representing\n * [R, G, B, A] pixel values (0 - 255) and will be `null` for layer types\n * that do not currently support this argument. To stop detection, callback\n * functions can return a truthy value.\n * @param {AtPixelOptions} [opt_options] Configuration options.\n * @return {T|undefined} Callback result, i.e. the return value of last\n * callback execution, or the first truthy callback return value.\n * @template S,T\n * @api\n */\n PluggableMap.prototype.forEachLayerAtPixel = function (pixel, callback, opt_options) {\n if (!this.frameState_) {\n return;\n }\n var options = opt_options || {};\n var hitTolerance = options.hitTolerance !== undefined ? options.hitTolerance : 0;\n var layerFilter = options.layerFilter || TRUE;\n return this.renderer_.forEachLayerAtPixel(pixel, this.frameState_, hitTolerance, callback, layerFilter);\n };\n /**\n * Detect if features intersect a pixel on the viewport. Layers included in the\n * detection can be configured through `opt_layerFilter`.\n * @param {import(\"./pixel.js\").Pixel} pixel Pixel.\n * @param {AtPixelOptions} [opt_options] Optional options.\n * @return {boolean} Is there a feature at the given pixel?\n * @api\n */\n PluggableMap.prototype.hasFeatureAtPixel = function (pixel, opt_options) {\n if (!this.frameState_) {\n return false;\n }\n var coordinate = this.getCoordinateFromPixelInternal(pixel);\n opt_options = opt_options !== undefined ? opt_options : {};\n var layerFilter = opt_options.layerFilter !== undefined ? opt_options.layerFilter : TRUE;\n var hitTolerance = opt_options.hitTolerance !== undefined ? opt_options.hitTolerance : 0;\n var checkWrapped = opt_options.checkWrapped !== false;\n return this.renderer_.hasFeatureAtCoordinate(coordinate, this.frameState_, hitTolerance, checkWrapped, layerFilter, null);\n };\n /**\n * Returns the coordinate in user projection for a browser event.\n * @param {MouseEvent} event Event.\n * @return {import(\"./coordinate.js\").Coordinate} Coordinate.\n * @api\n */\n PluggableMap.prototype.getEventCoordinate = function (event) {\n return this.getCoordinateFromPixel(this.getEventPixel(event));\n };\n /**\n * Returns the coordinate in view projection for a browser event.\n * @param {MouseEvent} event Event.\n * @return {import(\"./coordinate.js\").Coordinate} Coordinate.\n */\n PluggableMap.prototype.getEventCoordinateInternal = function (event) {\n return this.getCoordinateFromPixelInternal(this.getEventPixel(event));\n };\n /**\n * Returns the map pixel position for a browser event relative to the viewport.\n * @param {UIEvent} event Event.\n * @return {import(\"./pixel.js\").Pixel} Pixel.\n * @api\n */\n PluggableMap.prototype.getEventPixel = function (event) {\n var viewportPosition = this.viewport_.getBoundingClientRect();\n var eventPosition = \n //FIXME Are we really calling this with a TouchEvent anywhere?\n 'changedTouches' in event\n ? /** @type {TouchEvent} */ (event).changedTouches[0]\n : /** @type {MouseEvent} */ (event);\n return [\n eventPosition.clientX - viewportPosition.left,\n eventPosition.clientY - viewportPosition.top,\n ];\n };\n /**\n * Get the target in which this map is rendered.\n * Note that this returns what is entered as an option or in setTarget:\n * if that was an element, it returns an element; if a string, it returns that.\n * @return {HTMLElement|string|undefined} The Element or id of the Element that the\n * map is rendered in.\n * @observable\n * @api\n */\n PluggableMap.prototype.getTarget = function () {\n return /** @type {HTMLElement|string|undefined} */ (this.get(MapProperty.TARGET));\n };\n /**\n * Get the DOM element into which this map is rendered. In contrast to\n * `getTarget` this method always return an `Element`, or `null` if the\n * map has no target.\n * @return {HTMLElement} The element that the map is rendered in.\n * @api\n */\n PluggableMap.prototype.getTargetElement = function () {\n var target = this.getTarget();\n if (target !== undefined) {\n return typeof target === 'string'\n ? document.getElementById(target)\n : target;\n }\n else {\n return null;\n }\n };\n /**\n * Get the coordinate for a given pixel. This returns a coordinate in the\n * user projection.\n * @param {import(\"./pixel.js\").Pixel} pixel Pixel position in the map viewport.\n * @return {import(\"./coordinate.js\").Coordinate} The coordinate for the pixel position.\n * @api\n */\n PluggableMap.prototype.getCoordinateFromPixel = function (pixel) {\n return toUserCoordinate(this.getCoordinateFromPixelInternal(pixel), this.getView().getProjection());\n };\n /**\n * Get the coordinate for a given pixel. This returns a coordinate in the\n * map view projection.\n * @param {import(\"./pixel.js\").Pixel} pixel Pixel position in the map viewport.\n * @return {import(\"./coordinate.js\").Coordinate} The coordinate for the pixel position.\n */\n PluggableMap.prototype.getCoordinateFromPixelInternal = function (pixel) {\n var frameState = this.frameState_;\n if (!frameState) {\n return null;\n }\n else {\n return applyTransform(frameState.pixelToCoordinateTransform, pixel.slice());\n }\n };\n /**\n * Get the map controls. Modifying this collection changes the controls\n * associated with the map.\n * @return {Collection<import(\"./control/Control.js\").default>} Controls.\n * @api\n */\n PluggableMap.prototype.getControls = function () {\n return this.controls;\n };\n /**\n * Get the map overlays. Modifying this collection changes the overlays\n * associated with the map.\n * @return {Collection<import(\"./Overlay.js\").default>} Overlays.\n * @api\n */\n PluggableMap.prototype.getOverlays = function () {\n return this.overlays_;\n };\n /**\n * Get an overlay by its identifier (the value returned by overlay.getId()).\n * Note that the index treats string and numeric identifiers as the same. So\n * `map.getOverlayById(2)` will return an overlay with id `'2'` or `2`.\n * @param {string|number} id Overlay identifier.\n * @return {import(\"./Overlay.js\").default} Overlay.\n * @api\n */\n PluggableMap.prototype.getOverlayById = function (id) {\n var overlay = this.overlayIdIndex_[id.toString()];\n return overlay !== undefined ? overlay : null;\n };\n /**\n * Get the map interactions. Modifying this collection changes the interactions\n * associated with the map.\n *\n * Interactions are used for e.g. pan, zoom and rotate.\n * @return {Collection<import(\"./interaction/Interaction.js\").default>} Interactions.\n * @api\n */\n PluggableMap.prototype.getInteractions = function () {\n return this.interactions;\n };\n /**\n * Get the layergroup associated with this map.\n * @return {LayerGroup} A layer group containing the layers in this map.\n * @observable\n * @api\n */\n PluggableMap.prototype.getLayerGroup = function () {\n return /** @type {LayerGroup} */ (this.get(MapProperty.LAYERGROUP));\n };\n /**\n * Clear any existing layers and add layers to the map.\n * @param {Array<import(\"./layer/Base.js\").default>|Collection<import(\"./layer/Base.js\").default>} layers The layers to be added to the map.\n * @api\n */\n PluggableMap.prototype.setLayers = function (layers) {\n var group = this.getLayerGroup();\n if (layers instanceof Collection) {\n group.setLayers(layers);\n return;\n }\n var collection = group.getLayers();\n collection.clear();\n collection.extend(layers);\n };\n /**\n * Get the collection of layers associated with this map.\n * @return {!Collection<import(\"./layer/Base.js\").default>} Layers.\n * @api\n */\n PluggableMap.prototype.getLayers = function () {\n var layers = this.getLayerGroup().getLayers();\n return layers;\n };\n /**\n * @return {boolean} Layers have sources that are still loading.\n */\n PluggableMap.prototype.getLoading = function () {\n var layerStatesArray = this.getLayerGroup().getLayerStatesArray();\n for (var i = 0, ii = layerStatesArray.length; i < ii; ++i) {\n var layer = layerStatesArray[i].layer;\n var source = /** @type {import(\"./layer/Layer.js\").default} */ (layer).getSource();\n if (source && source.loading) {\n return true;\n }\n }\n return false;\n };\n /**\n * Get the pixel for a coordinate. This takes a coordinate in the user\n * projection and returns the corresponding pixel.\n * @param {import(\"./coordinate.js\").Coordinate} coordinate A map coordinate.\n * @return {import(\"./pixel.js\").Pixel} A pixel position in the map viewport.\n * @api\n */\n PluggableMap.prototype.getPixelFromCoordinate = function (coordinate) {\n var viewCoordinate = fromUserCoordinate(coordinate, this.getView().getProjection());\n return this.getPixelFromCoordinateInternal(viewCoordinate);\n };\n /**\n * Get the pixel for a coordinate. This takes a coordinate in the map view\n * projection and returns the corresponding pixel.\n * @param {import(\"./coordinate.js\").Coordinate} coordinate A map coordinate.\n * @return {import(\"./pixel.js\").Pixel} A pixel position in the map viewport.\n */\n PluggableMap.prototype.getPixelFromCoordinateInternal = function (coordinate) {\n var frameState = this.frameState_;\n if (!frameState) {\n return null;\n }\n else {\n return applyTransform(frameState.coordinateToPixelTransform, coordinate.slice(0, 2));\n }\n };\n /**\n * Get the map renderer.\n * @return {import(\"./renderer/Map.js\").default} Renderer\n */\n PluggableMap.prototype.getRenderer = function () {\n return this.renderer_;\n };\n /**\n * Get the size of this map.\n * @return {import(\"./size.js\").Size|undefined} The size in pixels of the map in the DOM.\n * @observable\n * @api\n */\n PluggableMap.prototype.getSize = function () {\n return /** @type {import(\"./size.js\").Size|undefined} */ (this.get(MapProperty.SIZE));\n };\n /**\n * Get the view associated with this map. A view manages properties such as\n * center and resolution.\n * @return {View} The view that controls this map.\n * @observable\n * @api\n */\n PluggableMap.prototype.getView = function () {\n return /** @type {View} */ (this.get(MapProperty.VIEW));\n };\n /**\n * Get the element that serves as the map viewport.\n * @return {HTMLElement} Viewport.\n * @api\n */\n PluggableMap.prototype.getViewport = function () {\n return this.viewport_;\n };\n /**\n * Get the element that serves as the container for overlays. Elements added to\n * this container will let mousedown and touchstart events through to the map,\n * so clicks and gestures on an overlay will trigger {@link module:ol/MapBrowserEvent~MapBrowserEvent}\n * events.\n * @return {!HTMLElement} The map's overlay container.\n */\n PluggableMap.prototype.getOverlayContainer = function () {\n return this.overlayContainer_;\n };\n /**\n * Get the element that serves as a container for overlays that don't allow\n * event propagation. Elements added to this container won't let mousedown and\n * touchstart events through to the map, so clicks and gestures on an overlay\n * don't trigger any {@link module:ol/MapBrowserEvent~MapBrowserEvent}.\n * @return {!HTMLElement} The map's overlay container that stops events.\n */\n PluggableMap.prototype.getOverlayContainerStopEvent = function () {\n return this.overlayContainerStopEvent_;\n };\n /**\n * @return {!Document} The document where the map is displayed.\n */\n PluggableMap.prototype.getOwnerDocument = function () {\n var targetElement = this.getTargetElement();\n return targetElement ? targetElement.ownerDocument : document;\n };\n /**\n * @param {import(\"./Tile.js\").default} tile Tile.\n * @param {string} tileSourceKey Tile source key.\n * @param {import(\"./coordinate.js\").Coordinate} tileCenter Tile center.\n * @param {number} tileResolution Tile resolution.\n * @return {number} Tile priority.\n */\n PluggableMap.prototype.getTilePriority = function (tile, tileSourceKey, tileCenter, tileResolution) {\n return getTilePriority(this.frameState_, tile, tileSourceKey, tileCenter, tileResolution);\n };\n /**\n * @param {UIEvent} browserEvent Browser event.\n * @param {string} [opt_type] Type.\n */\n PluggableMap.prototype.handleBrowserEvent = function (browserEvent, opt_type) {\n var type = opt_type || browserEvent.type;\n var mapBrowserEvent = new MapBrowserEvent(type, this, browserEvent);\n this.handleMapBrowserEvent(mapBrowserEvent);\n };\n /**\n * @param {MapBrowserEvent} mapBrowserEvent The event to handle.\n */\n PluggableMap.prototype.handleMapBrowserEvent = function (mapBrowserEvent) {\n if (!this.frameState_) {\n // With no view defined, we cannot translate pixels into geographical\n // coordinates so interactions cannot be used.\n return;\n }\n var originalEvent = /** @type {PointerEvent} */ (mapBrowserEvent.originalEvent);\n var eventType = originalEvent.type;\n if (eventType === PointerEventType.POINTERDOWN ||\n eventType === EventType.WHEEL ||\n eventType === EventType.KEYDOWN) {\n var doc = this.getOwnerDocument();\n var rootNode = this.viewport_.getRootNode\n ? this.viewport_.getRootNode()\n : doc;\n var target = /** @type {Node} */ (originalEvent.target);\n if (\n // Abort if the target is a child of the container for elements whose events are not meant\n // to be handled by map interactions.\n this.overlayContainerStopEvent_.contains(target) ||\n // Abort if the event target is a child of the container that is no longer in the page.\n // It's possible for the target to no longer be in the page if it has been removed in an\n // event listener, this might happen in a Control that recreates it's content based on\n // user interaction either manually or via a render in something like https://reactjs.org/\n !(rootNode === doc ? doc.documentElement : rootNode).contains(target)) {\n return;\n }\n }\n mapBrowserEvent.frameState = this.frameState_;\n if (this.dispatchEvent(mapBrowserEvent) !== false) {\n var interactionsArray = this.getInteractions().getArray().slice();\n for (var i = interactionsArray.length - 1; i >= 0; i--) {\n var interaction = interactionsArray[i];\n if (interaction.getMap() !== this ||\n !interaction.getActive() ||\n !this.getTargetElement()) {\n continue;\n }\n var cont = interaction.handleEvent(mapBrowserEvent);\n if (!cont || mapBrowserEvent.propagationStopped) {\n break;\n }\n }\n }\n };\n /**\n * @protected\n */\n PluggableMap.prototype.handlePostRender = function () {\n var frameState = this.frameState_;\n // Manage the tile queue\n // Image loads are expensive and a limited resource, so try to use them\n // efficiently:\n // * When the view is static we allow a large number of parallel tile loads\n // to complete the frame as quickly as possible.\n // * When animating or interacting, image loads can cause janks, so we reduce\n // the maximum number of loads per frame and limit the number of parallel\n // tile loads to remain reactive to view changes and to reduce the chance of\n // loading tiles that will quickly disappear from view.\n var tileQueue = this.tileQueue_;\n if (!tileQueue.isEmpty()) {\n var maxTotalLoading = this.maxTilesLoading_;\n var maxNewLoads = maxTotalLoading;\n if (frameState) {\n var hints = frameState.viewHints;\n if (hints[ViewHint.ANIMATING] || hints[ViewHint.INTERACTING]) {\n var lowOnFrameBudget = Date.now() - frameState.time > 8;\n maxTotalLoading = lowOnFrameBudget ? 0 : 8;\n maxNewLoads = lowOnFrameBudget ? 0 : 2;\n }\n }\n if (tileQueue.getTilesLoading() < maxTotalLoading) {\n tileQueue.reprioritize(); // FIXME only call if view has changed\n tileQueue.loadMoreTiles(maxTotalLoading, maxNewLoads);\n }\n }\n if (frameState &&\n this.hasListener(RenderEventType.RENDERCOMPLETE) &&\n !frameState.animate &&\n !this.tileQueue_.getTilesLoading() &&\n !this.getLoading()) {\n this.renderer_.dispatchRenderEvent(RenderEventType.RENDERCOMPLETE, frameState);\n }\n var postRenderFunctions = this.postRenderFunctions_;\n for (var i = 0, ii = postRenderFunctions.length; i < ii; ++i) {\n postRenderFunctions[i](this, frameState);\n }\n postRenderFunctions.length = 0;\n };\n /**\n * @private\n */\n PluggableMap.prototype.handleSizeChanged_ = function () {\n if (this.getView() && !this.getView().getAnimating()) {\n this.getView().resolveConstraints(0);\n }\n this.render();\n };\n /**\n * @private\n */\n PluggableMap.prototype.handleTargetChanged_ = function () {\n // target may be undefined, null, a string or an Element.\n // If it's a string we convert it to an Element before proceeding.\n // If it's not now an Element we remove the viewport from the DOM.\n // If it's an Element we append the viewport element to it.\n var targetElement;\n if (this.getTarget()) {\n targetElement = this.getTargetElement();\n }\n if (this.mapBrowserEventHandler_) {\n for (var i = 0, ii = this.keyHandlerKeys_.length; i < ii; ++i) {\n unlistenByKey(this.keyHandlerKeys_[i]);\n }\n this.keyHandlerKeys_ = null;\n this.viewport_.removeEventListener(EventType.CONTEXTMENU, this.boundHandleBrowserEvent_);\n this.viewport_.removeEventListener(EventType.WHEEL, this.boundHandleBrowserEvent_);\n if (this.handleResize_ !== undefined) {\n removeEventListener(EventType.RESIZE, this.handleResize_, false);\n this.handleResize_ = undefined;\n }\n this.mapBrowserEventHandler_.dispose();\n this.mapBrowserEventHandler_ = null;\n removeNode(this.viewport_);\n }\n if (!targetElement) {\n if (this.renderer_) {\n clearTimeout(this.postRenderTimeoutHandle_);\n this.postRenderTimeoutHandle_ = undefined;\n this.postRenderFunctions_.length = 0;\n this.renderer_.dispose();\n this.renderer_ = null;\n }\n if (this.animationDelayKey_) {\n cancelAnimationFrame(this.animationDelayKey_);\n this.animationDelayKey_ = undefined;\n }\n }\n else {\n targetElement.appendChild(this.viewport_);\n if (!this.renderer_) {\n this.renderer_ = this.createRenderer();\n }\n this.mapBrowserEventHandler_ = new MapBrowserEventHandler(this, this.moveTolerance_);\n for (var key in MapBrowserEventType) {\n this.mapBrowserEventHandler_.addEventListener(MapBrowserEventType[key], this.handleMapBrowserEvent.bind(this));\n }\n this.viewport_.addEventListener(EventType.CONTEXTMENU, this.boundHandleBrowserEvent_, false);\n this.viewport_.addEventListener(EventType.WHEEL, this.boundHandleBrowserEvent_, PASSIVE_EVENT_LISTENERS ? { passive: false } : false);\n var keyboardEventTarget = !this.keyboardEventTarget_\n ? targetElement\n : this.keyboardEventTarget_;\n this.keyHandlerKeys_ = [\n listen(keyboardEventTarget, EventType.KEYDOWN, this.handleBrowserEvent, this),\n listen(keyboardEventTarget, EventType.KEYPRESS, this.handleBrowserEvent, this),\n ];\n if (!this.handleResize_) {\n this.handleResize_ = this.updateSize.bind(this);\n window.addEventListener(EventType.RESIZE, this.handleResize_, false);\n }\n }\n this.updateSize();\n // updateSize calls setSize, so no need to call this.render\n // ourselves here.\n };\n /**\n * @private\n */\n PluggableMap.prototype.handleTileChange_ = function () {\n this.render();\n };\n /**\n * @private\n */\n PluggableMap.prototype.handleViewPropertyChanged_ = function () {\n this.render();\n };\n /**\n * @private\n */\n PluggableMap.prototype.handleViewChanged_ = function () {\n if (this.viewPropertyListenerKey_) {\n unlistenByKey(this.viewPropertyListenerKey_);\n this.viewPropertyListenerKey_ = null;\n }\n if (this.viewChangeListenerKey_) {\n unlistenByKey(this.viewChangeListenerKey_);\n this.viewChangeListenerKey_ = null;\n }\n var view = this.getView();\n if (view) {\n this.updateViewportSize_();\n this.viewPropertyListenerKey_ = listen(view, ObjectEventType.PROPERTYCHANGE, this.handleViewPropertyChanged_, this);\n this.viewChangeListenerKey_ = listen(view, EventType.CHANGE, this.handleViewPropertyChanged_, this);\n view.resolveConstraints(0);\n }\n this.render();\n };\n /**\n * @private\n */\n PluggableMap.prototype.handleLayerGroupChanged_ = function () {\n if (this.layerGroupPropertyListenerKeys_) {\n this.layerGroupPropertyListenerKeys_.forEach(unlistenByKey);\n this.layerGroupPropertyListenerKeys_ = null;\n }\n var layerGroup = this.getLayerGroup();\n if (layerGroup) {\n this.layerGroupPropertyListenerKeys_ = [\n listen(layerGroup, ObjectEventType.PROPERTYCHANGE, this.render, this),\n listen(layerGroup, EventType.CHANGE, this.render, this),\n ];\n }\n this.render();\n };\n /**\n * @return {boolean} Is rendered.\n */\n PluggableMap.prototype.isRendered = function () {\n return !!this.frameState_;\n };\n /**\n * Requests an immediate render in a synchronous manner.\n * @api\n */\n PluggableMap.prototype.renderSync = function () {\n if (this.animationDelayKey_) {\n cancelAnimationFrame(this.animationDelayKey_);\n }\n this.animationDelay_();\n };\n /**\n * Redraws all text after new fonts have loaded\n */\n PluggableMap.prototype.redrawText = function () {\n var layerStates = this.getLayerGroup().getLayerStatesArray();\n for (var i = 0, ii = layerStates.length; i < ii; ++i) {\n var layer = layerStates[i].layer;\n if (layer.hasRenderer()) {\n layer.getRenderer().handleFontsChanged();\n }\n }\n };\n /**\n * Request a map rendering (at the next animation frame).\n * @api\n */\n PluggableMap.prototype.render = function () {\n if (this.renderer_ && this.animationDelayKey_ === undefined) {\n this.animationDelayKey_ = requestAnimationFrame(this.animationDelay_);\n }\n };\n /**\n * Remove the given control from the map.\n * @param {import(\"./control/Control.js\").default} control Control.\n * @return {import(\"./control/Control.js\").default|undefined} The removed control (or undefined\n * if the control was not found).\n * @api\n */\n PluggableMap.prototype.removeControl = function (control) {\n return this.getControls().remove(control);\n };\n /**\n * Remove the given interaction from the map.\n * @param {import(\"./interaction/Interaction.js\").default} interaction Interaction to remove.\n * @return {import(\"./interaction/Interaction.js\").default|undefined} The removed interaction (or\n * undefined if the interaction was not found).\n * @api\n */\n PluggableMap.prototype.removeInteraction = function (interaction) {\n return this.getInteractions().remove(interaction);\n };\n /**\n * Removes the given layer from the map.\n * @param {import(\"./layer/Base.js\").default} layer Layer.\n * @return {import(\"./layer/Base.js\").default|undefined} The removed layer (or undefined if the\n * layer was not found).\n * @api\n */\n PluggableMap.prototype.removeLayer = function (layer) {\n var layers = this.getLayerGroup().getLayers();\n return layers.remove(layer);\n };\n /**\n * Remove the given overlay from the map.\n * @param {import(\"./Overlay.js\").default} overlay Overlay.\n * @return {import(\"./Overlay.js\").default|undefined} The removed overlay (or undefined\n * if the overlay was not found).\n * @api\n */\n PluggableMap.prototype.removeOverlay = function (overlay) {\n return this.getOverlays().remove(overlay);\n };\n /**\n * @param {number} time Time.\n * @private\n */\n PluggableMap.prototype.renderFrame_ = function (time) {\n var _this = this;\n var size = this.getSize();\n var view = this.getView();\n var previousFrameState = this.frameState_;\n /** @type {?FrameState} */\n var frameState = null;\n if (size !== undefined && hasArea(size) && view && view.isDef()) {\n var viewHints = view.getHints(this.frameState_ ? this.frameState_.viewHints : undefined);\n var viewState = view.getState();\n frameState = {\n animate: false,\n coordinateToPixelTransform: this.coordinateToPixelTransform_,\n declutterTree: null,\n extent: getForViewAndSize(viewState.center, viewState.resolution, viewState.rotation, size),\n index: this.frameIndex_++,\n layerIndex: 0,\n layerStatesArray: this.getLayerGroup().getLayerStatesArray(),\n pixelRatio: this.pixelRatio_,\n pixelToCoordinateTransform: this.pixelToCoordinateTransform_,\n postRenderFunctions: [],\n size: size,\n tileQueue: this.tileQueue_,\n time: time,\n usedTiles: {},\n viewState: viewState,\n viewHints: viewHints,\n wantedTiles: {},\n };\n if (viewState.nextCenter && viewState.nextResolution) {\n var rotation = isNaN(viewState.nextRotation)\n ? viewState.rotation\n : viewState.nextRotation;\n frameState.nextExtent = getForViewAndSize(viewState.nextCenter, viewState.nextResolution, rotation, size);\n }\n }\n this.frameState_ = frameState;\n this.renderer_.renderFrame(frameState);\n if (frameState) {\n if (frameState.animate) {\n this.render();\n }\n Array.prototype.push.apply(this.postRenderFunctions_, frameState.postRenderFunctions);\n if (previousFrameState) {\n var moveStart = !this.previousExtent_ ||\n (!isEmpty(this.previousExtent_) &&\n !equals(frameState.extent, this.previousExtent_));\n if (moveStart) {\n this.dispatchEvent(new MapEvent(MapEventType.MOVESTART, this, previousFrameState));\n this.previousExtent_ = createOrUpdateEmpty(this.previousExtent_);\n }\n }\n var idle = this.previousExtent_ &&\n !frameState.viewHints[ViewHint.ANIMATING] &&\n !frameState.viewHints[ViewHint.INTERACTING] &&\n !equals(frameState.extent, this.previousExtent_);\n if (idle) {\n this.dispatchEvent(new MapEvent(MapEventType.MOVEEND, this, frameState));\n clone(frameState.extent, this.previousExtent_);\n }\n }\n this.dispatchEvent(new MapEvent(MapEventType.POSTRENDER, this, frameState));\n if (!this.postRenderTimeoutHandle_) {\n this.postRenderTimeoutHandle_ = setTimeout(function () {\n _this.postRenderTimeoutHandle_ = undefined;\n _this.handlePostRender();\n }, 0);\n }\n };\n /**\n * Sets the layergroup of this map.\n * @param {LayerGroup} layerGroup A layer group containing the layers in this map.\n * @observable\n * @api\n */\n PluggableMap.prototype.setLayerGroup = function (layerGroup) {\n this.set(MapProperty.LAYERGROUP, layerGroup);\n };\n /**\n * Set the size of this map.\n * @param {import(\"./size.js\").Size|undefined} size The size in pixels of the map in the DOM.\n * @observable\n * @api\n */\n PluggableMap.prototype.setSize = function (size) {\n this.set(MapProperty.SIZE, size);\n };\n /**\n * Set the target element to render this map into.\n * @param {HTMLElement|string} [target] The Element or id of the Element\n * that the map is rendered in.\n * @observable\n * @api\n */\n PluggableMap.prototype.setTarget = function (target) {\n this.set(MapProperty.TARGET, target);\n };\n /**\n * Set the view for this map.\n * @param {View|Promise<import(\"./View.js\").ViewOptions>} view The view that controls this map.\n * It is also possible to pass a promise that resolves to options for constructing a view. This\n * alternative allows view properties to be resolved by sources or other components that load\n * view-related metadata.\n * @observable\n * @api\n */\n PluggableMap.prototype.setView = function (view) {\n if (!view || view instanceof View) {\n this.set(MapProperty.VIEW, view);\n return;\n }\n this.set(MapProperty.VIEW, new View());\n var map = this;\n view.then(function (viewOptions) {\n map.setView(new View(viewOptions));\n });\n };\n /**\n * Force a recalculation of the map viewport size. This should be called when\n * third-party code changes the size of the map viewport.\n * @api\n */\n PluggableMap.prototype.updateSize = function () {\n var targetElement = this.getTargetElement();\n var size = undefined;\n if (targetElement) {\n var computedStyle = getComputedStyle(targetElement);\n var width = targetElement.offsetWidth -\n parseFloat(computedStyle['borderLeftWidth']) -\n parseFloat(computedStyle['paddingLeft']) -\n parseFloat(computedStyle['paddingRight']) -\n parseFloat(computedStyle['borderRightWidth']);\n var height = targetElement.offsetHeight -\n parseFloat(computedStyle['borderTopWidth']) -\n parseFloat(computedStyle['paddingTop']) -\n parseFloat(computedStyle['paddingBottom']) -\n parseFloat(computedStyle['borderBottomWidth']);\n if (!isNaN(width) && !isNaN(height)) {\n size = [width, height];\n if (!hasArea(size) &&\n !!(targetElement.offsetWidth ||\n targetElement.offsetHeight ||\n targetElement.getClientRects().length)) {\n // eslint-disable-next-line\n console.warn(\"No map visible because the map container's width or height are 0.\");\n }\n }\n }\n this.setSize(size);\n this.updateViewportSize_();\n };\n /**\n * Recomputes the viewport size and save it on the view object (if any)\n * @private\n */\n PluggableMap.prototype.updateViewportSize_ = function () {\n var view = this.getView();\n if (view) {\n var size = undefined;\n var computedStyle = getComputedStyle(this.viewport_);\n if (computedStyle.width && computedStyle.height) {\n size = [\n parseInt(computedStyle.width, 10),\n parseInt(computedStyle.height, 10),\n ];\n }\n view.setViewportSize(size);\n }\n };\n return PluggableMap;\n}(BaseObject));\n/**\n * @param {MapOptions} options Map options.\n * @return {MapOptionsInternal} Internal map options.\n */\nfunction createOptionsInternal(options) {\n /**\n * @type {HTMLElement|Document}\n */\n var keyboardEventTarget = null;\n if (options.keyboardEventTarget !== undefined) {\n keyboardEventTarget =\n typeof options.keyboardEventTarget === 'string'\n ? document.getElementById(options.keyboardEventTarget)\n : options.keyboardEventTarget;\n }\n /**\n * @type {Object<string, *>}\n */\n var values = {};\n var layerGroup = options.layers &&\n typeof ( /** @type {?} */(options.layers).getLayers) === 'function'\n ? /** @type {LayerGroup} */ (options.layers)\n : new LayerGroup({ layers: /** @type {Collection} */ (options.layers) });\n values[MapProperty.LAYERGROUP] = layerGroup;\n values[MapProperty.TARGET] = options.target;\n values[MapProperty.VIEW] =\n options.view instanceof View ? options.view : new View();\n var controls;\n if (options.controls !== undefined) {\n if (Array.isArray(options.controls)) {\n controls = new Collection(options.controls.slice());\n }\n else {\n assert(typeof ( /** @type {?} */(options.controls).getArray) === 'function', 47); // Expected `controls` to be an array or an `import(\"./Collection.js\").Collection`\n controls = /** @type {Collection} */ (options.controls);\n }\n }\n var interactions;\n if (options.interactions !== undefined) {\n if (Array.isArray(options.interactions)) {\n interactions = new Collection(options.interactions.slice());\n }\n else {\n assert(typeof ( /** @type {?} */(options.interactions).getArray) ===\n 'function', 48); // Expected `interactions` to be an array or an `import(\"./Collection.js\").Collection`\n interactions = /** @type {Collection} */ (options.interactions);\n }\n }\n var overlays;\n if (options.overlays !== undefined) {\n if (Array.isArray(options.overlays)) {\n overlays = new Collection(options.overlays.slice());\n }\n else {\n assert(typeof ( /** @type {?} */(options.overlays).getArray) === 'function', 49); // Expected `overlays` to be an array or an `import(\"./Collection.js\").Collection`\n overlays = options.overlays;\n }\n }\n else {\n overlays = new Collection();\n }\n return {\n controls: controls,\n interactions: interactions,\n keyboardEventTarget: keyboardEventTarget,\n overlays: overlays,\n values: values,\n };\n}\nexport default PluggableMap;\n//# sourceMappingURL=PluggableMap.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/control/Rotate\n */\nimport Control from './Control.js';\nimport EventType from '../events/EventType.js';\nimport { CLASS_CONTROL, CLASS_HIDDEN, CLASS_UNSELECTABLE } from '../css.js';\nimport { easeOut } from '../easing.js';\n/**\n * @typedef {Object} Options\n * @property {string} [className='ol-rotate'] CSS class name.\n * @property {string|HTMLElement} [label='⇧'] Text label to use for the rotate button.\n * Instead of text, also an element (e.g. a `span` element) can be used.\n * @property {string} [tipLabel='Reset rotation'] Text label to use for the rotate tip.\n * @property {string} [compassClassName='ol-compass'] CSS class name for the compass.\n * @property {number} [duration=250] Animation duration in milliseconds.\n * @property {boolean} [autoHide=true] Hide the control when rotation is 0.\n * @property {function(import(\"../MapEvent.js\").default):void} [render] Function called when the control should\n * be re-rendered. This is called in a `requestAnimationFrame` callback.\n * @property {function():void} [resetNorth] Function called when the control is clicked.\n * This will override the default `resetNorth`.\n * @property {HTMLElement|string} [target] Specify a target if you want the control to be\n * rendered outside of the map's viewport.\n */\n/**\n * @classdesc\n * A button control to reset rotation to 0.\n * To style this control use css selector `.ol-rotate`. A `.ol-hidden` css\n * selector is added to the button when the rotation is 0.\n *\n * @api\n */\nvar Rotate = /** @class */ (function (_super) {\n __extends(Rotate, _super);\n /**\n * @param {Options} [opt_options] Rotate options.\n */\n function Rotate(opt_options) {\n var _this = this;\n var options = opt_options ? opt_options : {};\n _this = _super.call(this, {\n element: document.createElement('div'),\n render: options.render,\n target: options.target,\n }) || this;\n var className = options.className !== undefined ? options.className : 'ol-rotate';\n var label = options.label !== undefined ? options.label : '\\u21E7';\n var compassClassName = options.compassClassName !== undefined\n ? options.compassClassName\n : 'ol-compass';\n /**\n * @type {HTMLElement}\n * @private\n */\n _this.label_ = null;\n if (typeof label === 'string') {\n _this.label_ = document.createElement('span');\n _this.label_.className = compassClassName;\n _this.label_.textContent = label;\n }\n else {\n _this.label_ = label;\n _this.label_.classList.add(compassClassName);\n }\n var tipLabel = options.tipLabel ? options.tipLabel : 'Reset rotation';\n var button = document.createElement('button');\n button.className = className + '-reset';\n button.setAttribute('type', 'button');\n button.title = tipLabel;\n button.appendChild(_this.label_);\n button.addEventListener(EventType.CLICK, _this.handleClick_.bind(_this), false);\n var cssClasses = className + ' ' + CLASS_UNSELECTABLE + ' ' + CLASS_CONTROL;\n var element = _this.element;\n element.className = cssClasses;\n element.appendChild(button);\n _this.callResetNorth_ = options.resetNorth ? options.resetNorth : undefined;\n /**\n * @type {number}\n * @private\n */\n _this.duration_ = options.duration !== undefined ? options.duration : 250;\n /**\n * @type {boolean}\n * @private\n */\n _this.autoHide_ = options.autoHide !== undefined ? options.autoHide : true;\n /**\n * @private\n * @type {number|undefined}\n */\n _this.rotation_ = undefined;\n if (_this.autoHide_) {\n _this.element.classList.add(CLASS_HIDDEN);\n }\n return _this;\n }\n /**\n * @param {MouseEvent} event The event to handle\n * @private\n */\n Rotate.prototype.handleClick_ = function (event) {\n event.preventDefault();\n if (this.callResetNorth_ !== undefined) {\n this.callResetNorth_();\n }\n else {\n this.resetNorth_();\n }\n };\n /**\n * @private\n */\n Rotate.prototype.resetNorth_ = function () {\n var map = this.getMap();\n var view = map.getView();\n if (!view) {\n // the map does not have a view, so we can't act\n // upon it\n return;\n }\n var rotation = view.getRotation();\n if (rotation !== undefined) {\n if (this.duration_ > 0 && rotation % (2 * Math.PI) !== 0) {\n view.animate({\n rotation: 0,\n duration: this.duration_,\n easing: easeOut,\n });\n }\n else {\n view.setRotation(0);\n }\n }\n };\n /**\n * Update the rotate control element.\n * @param {import(\"../MapEvent.js\").default} mapEvent Map event.\n * @override\n */\n Rotate.prototype.render = function (mapEvent) {\n var frameState = mapEvent.frameState;\n if (!frameState) {\n return;\n }\n var rotation = frameState.viewState.rotation;\n if (rotation != this.rotation_) {\n var transform = 'rotate(' + rotation + 'rad)';\n if (this.autoHide_) {\n var contains = this.element.classList.contains(CLASS_HIDDEN);\n if (!contains && rotation === 0) {\n this.element.classList.add(CLASS_HIDDEN);\n }\n else if (contains && rotation !== 0) {\n this.element.classList.remove(CLASS_HIDDEN);\n }\n }\n this.label_.style.transform = transform;\n }\n this.rotation_ = rotation;\n };\n return Rotate;\n}(Control));\nexport default Rotate;\n//# sourceMappingURL=Rotate.js.map","/**\n * @module ol/interaction/Property\n */\n/**\n * @enum {string}\n */\nexport default {\n ACTIVE: 'active',\n};\n//# sourceMappingURL=Property.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/interaction/Interaction\n */\nimport BaseObject from '../Object.js';\nimport InteractionProperty from './Property.js';\nimport { easeOut, linear } from '../easing.js';\n/***\n * @template Return\n * @typedef {import(\"../Observable\").OnSignature<import(\"../Observable\").EventTypes, import(\"../events/Event.js\").default, Return> &\n * import(\"../Observable\").OnSignature<import(\"../ObjectEventType\").Types|\n * 'change:active', import(\"../Object\").ObjectEvent, Return> &\n * import(\"../Observable\").CombinedOnSignature<import(\"../Observable\").EventTypes|import(\"../ObjectEventType\").Types|\n * 'change:active', Return>} InteractionOnSignature\n */\n/**\n * Object literal with config options for interactions.\n * @typedef {Object} InteractionOptions\n * @property {function(import(\"../MapBrowserEvent.js\").default):boolean} handleEvent\n * Method called by the map to notify the interaction that a browser event was\n * dispatched to the map. If the function returns a falsy value, propagation of\n * the event to other interactions in the map's interactions chain will be\n * prevented (this includes functions with no explicit return). The interactions\n * are traversed in reverse order of the interactions collection of the map.\n */\n/**\n * @classdesc\n * Abstract base class; normally only used for creating subclasses and not\n * instantiated in apps.\n * User actions that change the state of the map. Some are similar to controls,\n * but are not associated with a DOM element.\n * For example, {@link module:ol/interaction/KeyboardZoom~KeyboardZoom} is\n * functionally the same as {@link module:ol/control/Zoom~Zoom}, but triggered\n * by a keyboard event not a button element event.\n * Although interactions do not have a DOM element, some of them do render\n * vectors and so are visible on the screen.\n * @api\n */\nvar Interaction = /** @class */ (function (_super) {\n __extends(Interaction, _super);\n /**\n * @param {InteractionOptions} [opt_options] Options.\n */\n function Interaction(opt_options) {\n var _this = _super.call(this) || this;\n /***\n * @type {InteractionOnSignature<import(\"../events\").EventsKey>}\n */\n _this.on;\n /***\n * @type {InteractionOnSignature<import(\"../events\").EventsKey>}\n */\n _this.once;\n /***\n * @type {InteractionOnSignature<void>}\n */\n _this.un;\n if (opt_options && opt_options.handleEvent) {\n _this.handleEvent = opt_options.handleEvent;\n }\n /**\n * @private\n * @type {import(\"../PluggableMap.js\").default}\n */\n _this.map_ = null;\n _this.setActive(true);\n return _this;\n }\n /**\n * Return whether the interaction is currently active.\n * @return {boolean} `true` if the interaction is active, `false` otherwise.\n * @observable\n * @api\n */\n Interaction.prototype.getActive = function () {\n return /** @type {boolean} */ (this.get(InteractionProperty.ACTIVE));\n };\n /**\n * Get the map associated with this interaction.\n * @return {import(\"../PluggableMap.js\").default} Map.\n * @api\n */\n Interaction.prototype.getMap = function () {\n return this.map_;\n };\n /**\n * Handles the {@link module:ol/MapBrowserEvent map browser event}.\n * @param {import(\"../MapBrowserEvent.js\").default} mapBrowserEvent Map browser event.\n * @return {boolean} `false` to stop event propagation.\n * @api\n */\n Interaction.prototype.handleEvent = function (mapBrowserEvent) {\n return true;\n };\n /**\n * Activate or deactivate the interaction.\n * @param {boolean} active Active.\n * @observable\n * @api\n */\n Interaction.prototype.setActive = function (active) {\n this.set(InteractionProperty.ACTIVE, active);\n };\n /**\n * Remove the interaction from its current map and attach it to the new map.\n * Subclasses may set up event handlers to get notified about changes to\n * the map here.\n * @param {import(\"../PluggableMap.js\").default} map Map.\n */\n Interaction.prototype.setMap = function (map) {\n this.map_ = map;\n };\n return Interaction;\n}(BaseObject));\n/**\n * @param {import(\"../View.js\").default} view View.\n * @param {import(\"../coordinate.js\").Coordinate} delta Delta.\n * @param {number} [opt_duration] Duration.\n */\nexport function pan(view, delta, opt_duration) {\n var currentCenter = view.getCenterInternal();\n if (currentCenter) {\n var center = [currentCenter[0] + delta[0], currentCenter[1] + delta[1]];\n view.animateInternal({\n duration: opt_duration !== undefined ? opt_duration : 250,\n easing: linear,\n center: view.getConstrainedCenter(center),\n });\n }\n}\n/**\n * @param {import(\"../View.js\").default} view View.\n * @param {number} delta Delta from previous zoom level.\n * @param {import(\"../coordinate.js\").Coordinate} [opt_anchor] Anchor coordinate in the user projection.\n * @param {number} [opt_duration] Duration.\n */\nexport function zoomByDelta(view, delta, opt_anchor, opt_duration) {\n var currentZoom = view.getZoom();\n if (currentZoom === undefined) {\n return;\n }\n var newZoom = view.getConstrainedZoom(currentZoom + delta);\n var newResolution = view.getResolutionForZoom(newZoom);\n if (view.getAnimating()) {\n view.cancelAnimations();\n }\n view.animate({\n resolution: newResolution,\n anchor: opt_anchor,\n duration: opt_duration !== undefined ? opt_duration : 250,\n easing: easeOut,\n });\n}\nexport default Interaction;\n//# sourceMappingURL=Interaction.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/interaction/DoubleClickZoom\n */\nimport Interaction, { zoomByDelta } from './Interaction.js';\nimport MapBrowserEventType from '../MapBrowserEventType.js';\n/**\n * @typedef {Object} Options\n * @property {number} [duration=250] Animation duration in milliseconds.\n * @property {number} [delta=1] The zoom delta applied on each double click.\n */\n/**\n * @classdesc\n * Allows the user to zoom by double-clicking on the map.\n * @api\n */\nvar DoubleClickZoom = /** @class */ (function (_super) {\n __extends(DoubleClickZoom, _super);\n /**\n * @param {Options} [opt_options] Options.\n */\n function DoubleClickZoom(opt_options) {\n var _this = _super.call(this) || this;\n var options = opt_options ? opt_options : {};\n /**\n * @private\n * @type {number}\n */\n _this.delta_ = options.delta ? options.delta : 1;\n /**\n * @private\n * @type {number}\n */\n _this.duration_ = options.duration !== undefined ? options.duration : 250;\n return _this;\n }\n /**\n * Handles the {@link module:ol/MapBrowserEvent map browser event} (if it was a\n * doubleclick) and eventually zooms the map.\n * @param {import(\"../MapBrowserEvent.js\").default} mapBrowserEvent Map browser event.\n * @return {boolean} `false` to stop event propagation.\n */\n DoubleClickZoom.prototype.handleEvent = function (mapBrowserEvent) {\n var stopEvent = false;\n if (mapBrowserEvent.type == MapBrowserEventType.DBLCLICK) {\n var browserEvent = /** @type {MouseEvent} */ (mapBrowserEvent.originalEvent);\n var map = mapBrowserEvent.map;\n var anchor = mapBrowserEvent.coordinate;\n var delta = browserEvent.shiftKey ? -this.delta_ : this.delta_;\n var view = map.getView();\n zoomByDelta(view, delta, anchor, this.duration_);\n browserEvent.preventDefault();\n stopEvent = true;\n }\n return !stopEvent;\n };\n return DoubleClickZoom;\n}(Interaction));\nexport default DoubleClickZoom;\n//# sourceMappingURL=DoubleClickZoom.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/interaction/Pointer\n */\nimport Interaction from './Interaction.js';\nimport MapBrowserEventType from '../MapBrowserEventType.js';\nimport { getValues } from '../obj.js';\n/**\n * @typedef {Object} Options\n * @property {function(import(\"../MapBrowserEvent.js\").default):boolean} [handleDownEvent]\n * Function handling \"down\" events. If the function returns `true` then a drag\n * sequence is started.\n * @property {function(import(\"../MapBrowserEvent.js\").default):void} [handleDragEvent]\n * Function handling \"drag\" events. This function is called on \"move\" events\n * during a drag sequence.\n * @property {function(import(\"../MapBrowserEvent.js\").default):boolean} [handleEvent]\n * Method called by the map to notify the interaction that a browser event was\n * dispatched to the map. The function may return `false` to prevent the\n * propagation of the event to other interactions in the map's interactions\n * chain.\n * @property {function(import(\"../MapBrowserEvent.js\").default):void} [handleMoveEvent]\n * Function handling \"move\" events. This function is called on \"move\" events.\n * This functions is also called during a drag sequence, so during a drag\n * sequence both the `handleDragEvent` function and this function are called.\n * If `handleDownEvent` is defined and it returns true this function will not\n * be called during a drag sequence.\n * @property {function(import(\"../MapBrowserEvent.js\").default):boolean} [handleUpEvent]\n * Function handling \"up\" events. If the function returns `false` then the\n * current drag sequence is stopped.\n * @property {function(boolean):boolean} [stopDown]\n * Should the down event be propagated to other interactions, or should be\n * stopped?\n */\n/**\n * @classdesc\n * Base class that calls user-defined functions on `down`, `move` and `up`\n * events. This class also manages \"drag sequences\".\n *\n * When the `handleDownEvent` user function returns `true` a drag sequence is\n * started. During a drag sequence the `handleDragEvent` user function is\n * called on `move` events. The drag sequence ends when the `handleUpEvent`\n * user function is called and returns `false`.\n * @api\n */\nvar PointerInteraction = /** @class */ (function (_super) {\n __extends(PointerInteraction, _super);\n /**\n * @param {Options} [opt_options] Options.\n */\n function PointerInteraction(opt_options) {\n var _this = this;\n var options = opt_options ? opt_options : {};\n _this = _super.call(this, \n /** @type {import(\"./Interaction.js\").InteractionOptions} */ (options)) || this;\n if (options.handleDownEvent) {\n _this.handleDownEvent = options.handleDownEvent;\n }\n if (options.handleDragEvent) {\n _this.handleDragEvent = options.handleDragEvent;\n }\n if (options.handleMoveEvent) {\n _this.handleMoveEvent = options.handleMoveEvent;\n }\n if (options.handleUpEvent) {\n _this.handleUpEvent = options.handleUpEvent;\n }\n if (options.stopDown) {\n _this.stopDown = options.stopDown;\n }\n /**\n * @type {boolean}\n * @protected\n */\n _this.handlingDownUpSequence = false;\n /**\n * @type {!Object<string, PointerEvent>}\n * @private\n */\n _this.trackedPointers_ = {};\n /**\n * @type {Array<PointerEvent>}\n * @protected\n */\n _this.targetPointers = [];\n return _this;\n }\n /**\n * Returns the current number of pointers involved in the interaction,\n * e.g. `2` when two fingers are used.\n * @return {number} The number of pointers.\n * @api\n */\n PointerInteraction.prototype.getPointerCount = function () {\n return this.targetPointers.length;\n };\n /**\n * Handle pointer down events.\n * @param {import(\"../MapBrowserEvent.js\").default} mapBrowserEvent Event.\n * @return {boolean} If the event was consumed.\n * @protected\n */\n PointerInteraction.prototype.handleDownEvent = function (mapBrowserEvent) {\n return false;\n };\n /**\n * Handle pointer drag events.\n * @param {import(\"../MapBrowserEvent.js\").default} mapBrowserEvent Event.\n * @protected\n */\n PointerInteraction.prototype.handleDragEvent = function (mapBrowserEvent) { };\n /**\n * Handles the {@link module:ol/MapBrowserEvent map browser event} and may call into\n * other functions, if event sequences like e.g. 'drag' or 'down-up' etc. are\n * detected.\n * @param {import(\"../MapBrowserEvent.js\").default} mapBrowserEvent Map browser event.\n * @return {boolean} `false` to stop event propagation.\n * @api\n */\n PointerInteraction.prototype.handleEvent = function (mapBrowserEvent) {\n if (!mapBrowserEvent.originalEvent) {\n return true;\n }\n var stopEvent = false;\n this.updateTrackedPointers_(mapBrowserEvent);\n if (this.handlingDownUpSequence) {\n if (mapBrowserEvent.type == MapBrowserEventType.POINTERDRAG) {\n this.handleDragEvent(mapBrowserEvent);\n // prevent page scrolling during dragging\n mapBrowserEvent.originalEvent.preventDefault();\n }\n else if (mapBrowserEvent.type == MapBrowserEventType.POINTERUP) {\n var handledUp = this.handleUpEvent(mapBrowserEvent);\n this.handlingDownUpSequence =\n handledUp && this.targetPointers.length > 0;\n }\n }\n else {\n if (mapBrowserEvent.type == MapBrowserEventType.POINTERDOWN) {\n var handled = this.handleDownEvent(mapBrowserEvent);\n this.handlingDownUpSequence = handled;\n stopEvent = this.stopDown(handled);\n }\n else if (mapBrowserEvent.type == MapBrowserEventType.POINTERMOVE) {\n this.handleMoveEvent(mapBrowserEvent);\n }\n }\n return !stopEvent;\n };\n /**\n * Handle pointer move events.\n * @param {import(\"../MapBrowserEvent.js\").default} mapBrowserEvent Event.\n * @protected\n */\n PointerInteraction.prototype.handleMoveEvent = function (mapBrowserEvent) { };\n /**\n * Handle pointer up events.\n * @param {import(\"../MapBrowserEvent.js\").default} mapBrowserEvent Event.\n * @return {boolean} If the event was consumed.\n * @protected\n */\n PointerInteraction.prototype.handleUpEvent = function (mapBrowserEvent) {\n return false;\n };\n /**\n * This function is used to determine if \"down\" events should be propagated\n * to other interactions or should be stopped.\n * @param {boolean} handled Was the event handled by the interaction?\n * @return {boolean} Should the `down` event be stopped?\n */\n PointerInteraction.prototype.stopDown = function (handled) {\n return handled;\n };\n /**\n * @param {import(\"../MapBrowserEvent.js\").default} mapBrowserEvent Event.\n * @private\n */\n PointerInteraction.prototype.updateTrackedPointers_ = function (mapBrowserEvent) {\n if (isPointerDraggingEvent(mapBrowserEvent)) {\n var event_1 = mapBrowserEvent.originalEvent;\n var id = event_1.pointerId.toString();\n if (mapBrowserEvent.type == MapBrowserEventType.POINTERUP) {\n delete this.trackedPointers_[id];\n }\n else if (mapBrowserEvent.type == MapBrowserEventType.POINTERDOWN) {\n this.trackedPointers_[id] = event_1;\n }\n else if (id in this.trackedPointers_) {\n // update only when there was a pointerdown event for this pointer\n this.trackedPointers_[id] = event_1;\n }\n this.targetPointers = getValues(this.trackedPointers_);\n }\n };\n return PointerInteraction;\n}(Interaction));\n/**\n * @param {Array<PointerEvent>} pointerEvents List of events.\n * @return {import(\"../pixel.js\").Pixel} Centroid pixel.\n */\nexport function centroid(pointerEvents) {\n var length = pointerEvents.length;\n var clientX = 0;\n var clientY = 0;\n for (var i = 0; i < length; i++) {\n clientX += pointerEvents[i].clientX;\n clientY += pointerEvents[i].clientY;\n }\n return [clientX / length, clientY / length];\n}\n/**\n * @param {import(\"../MapBrowserEvent.js\").default} mapBrowserEvent Event.\n * @return {boolean} Whether the event is a pointerdown, pointerdrag\n * or pointerup event.\n */\nfunction isPointerDraggingEvent(mapBrowserEvent) {\n var type = mapBrowserEvent.type;\n return (type === MapBrowserEventType.POINTERDOWN ||\n type === MapBrowserEventType.POINTERDRAG ||\n type === MapBrowserEventType.POINTERUP);\n}\nexport default PointerInteraction;\n//# sourceMappingURL=Pointer.js.map","/**\n * @module ol/events/condition\n */\nimport MapBrowserEventType from '../MapBrowserEventType.js';\nimport { FALSE, TRUE } from '../functions.js';\nimport { MAC, WEBKIT } from '../has.js';\nimport { assert } from '../asserts.js';\n/**\n * A function that takes an {@link module:ol/MapBrowserEvent} and returns a\n * `{boolean}`. If the condition is met, true should be returned.\n *\n * @typedef {function(this: ?, import(\"../MapBrowserEvent.js\").default): boolean} Condition\n */\n/**\n * Creates a condition function that passes when all provided conditions pass.\n * @param {...Condition} var_args Conditions to check.\n * @return {Condition} Condition function.\n */\nexport function all(var_args) {\n var conditions = arguments;\n /**\n * @param {import(\"../MapBrowserEvent.js\").default} event Event.\n * @return {boolean} All conditions passed.\n */\n return function (event) {\n var pass = true;\n for (var i = 0, ii = conditions.length; i < ii; ++i) {\n pass = pass && conditions[i](event);\n if (!pass) {\n break;\n }\n }\n return pass;\n };\n}\n/**\n * Return `true` if only the alt-key is pressed, `false` otherwise (e.g. when\n * additionally the shift-key is pressed).\n *\n * @param {import(\"../MapBrowserEvent.js\").default} mapBrowserEvent Map browser event.\n * @return {boolean} True if only the alt key is pressed.\n * @api\n */\nexport var altKeyOnly = function (mapBrowserEvent) {\n var originalEvent = /** @type {KeyboardEvent|MouseEvent|TouchEvent} */ (mapBrowserEvent.originalEvent);\n return (originalEvent.altKey &&\n !(originalEvent.metaKey || originalEvent.ctrlKey) &&\n !originalEvent.shiftKey);\n};\n/**\n * Return `true` if only the alt-key and shift-key is pressed, `false` otherwise\n * (e.g. when additionally the platform-modifier-key is pressed).\n *\n * @param {import(\"../MapBrowserEvent.js\").default} mapBrowserEvent Map browser event.\n * @return {boolean} True if only the alt and shift keys are pressed.\n * @api\n */\nexport var altShiftKeysOnly = function (mapBrowserEvent) {\n var originalEvent = /** @type {KeyboardEvent|MouseEvent|TouchEvent} */ (mapBrowserEvent.originalEvent);\n return (originalEvent.altKey &&\n !(originalEvent.metaKey || originalEvent.ctrlKey) &&\n originalEvent.shiftKey);\n};\n/**\n * Return `true` if the map has the focus. This condition requires a map target\n * element with a `tabindex` attribute, e.g. `<div id=\"map\" tabindex=\"1\">`.\n *\n * @param {import(\"../MapBrowserEvent.js\").default} event Map browser event.\n * @return {boolean} The map has the focus.\n * @api\n */\nexport var focus = function (event) {\n return event.target.getTargetElement().contains(document.activeElement);\n};\n/**\n * Return `true` if the map has the focus or no 'tabindex' attribute set.\n *\n * @param {import(\"../MapBrowserEvent.js\").default} event Map browser event.\n * @return {boolean} The map container has the focus or no 'tabindex' attribute.\n */\nexport var focusWithTabindex = function (event) {\n return event.map.getTargetElement().hasAttribute('tabindex')\n ? focus(event)\n : true;\n};\n/**\n * Return always true.\n *\n * @param {import(\"../MapBrowserEvent.js\").default} mapBrowserEvent Map browser event.\n * @return {boolean} True.\n * @api\n */\nexport var always = TRUE;\n/**\n * Return `true` if the event is a `click` event, `false` otherwise.\n *\n * @param {import(\"../MapBrowserEvent.js\").default} mapBrowserEvent Map browser event.\n * @return {boolean} True if the event is a map `click` event.\n * @api\n */\nexport var click = function (mapBrowserEvent) {\n return mapBrowserEvent.type == MapBrowserEventType.CLICK;\n};\n/**\n * Return `true` if the event has an \"action\"-producing mouse button.\n *\n * By definition, this includes left-click on windows/linux, and left-click\n * without the ctrl key on Macs.\n *\n * @param {import(\"../MapBrowserEvent.js\").default} mapBrowserEvent Map browser event.\n * @return {boolean} The result.\n */\nexport var mouseActionButton = function (mapBrowserEvent) {\n var originalEvent = /** @type {MouseEvent} */ (mapBrowserEvent.originalEvent);\n return originalEvent.button == 0 && !(WEBKIT && MAC && originalEvent.ctrlKey);\n};\n/**\n * Return always false.\n *\n * @param {import(\"../MapBrowserEvent.js\").default} mapBrowserEvent Map browser event.\n * @return {boolean} False.\n * @api\n */\nexport var never = FALSE;\n/**\n * Return `true` if the browser event is a `pointermove` event, `false`\n * otherwise.\n *\n * @param {import(\"../MapBrowserEvent.js\").default} mapBrowserEvent Map browser event.\n * @return {boolean} True if the browser event is a `pointermove` event.\n * @api\n */\nexport var pointerMove = function (mapBrowserEvent) {\n return mapBrowserEvent.type == 'pointermove';\n};\n/**\n * Return `true` if the event is a map `singleclick` event, `false` otherwise.\n *\n * @param {import(\"../MapBrowserEvent.js\").default} mapBrowserEvent Map browser event.\n * @return {boolean} True if the event is a map `singleclick` event.\n * @api\n */\nexport var singleClick = function (mapBrowserEvent) {\n return mapBrowserEvent.type == MapBrowserEventType.SINGLECLICK;\n};\n/**\n * Return `true` if the event is a map `dblclick` event, `false` otherwise.\n *\n * @param {import(\"../MapBrowserEvent.js\").default} mapBrowserEvent Map browser event.\n * @return {boolean} True if the event is a map `dblclick` event.\n * @api\n */\nexport var doubleClick = function (mapBrowserEvent) {\n return mapBrowserEvent.type == MapBrowserEventType.DBLCLICK;\n};\n/**\n * Return `true` if no modifier key (alt-, shift- or platform-modifier-key) is\n * pressed.\n *\n * @param {import(\"../MapBrowserEvent.js\").default} mapBrowserEvent Map browser event.\n * @return {boolean} True only if there no modifier keys are pressed.\n * @api\n */\nexport var noModifierKeys = function (mapBrowserEvent) {\n var originalEvent = /** @type {KeyboardEvent|MouseEvent|TouchEvent} */ (mapBrowserEvent.originalEvent);\n return (!originalEvent.altKey &&\n !(originalEvent.metaKey || originalEvent.ctrlKey) &&\n !originalEvent.shiftKey);\n};\n/**\n * Return `true` if only the platform-modifier-key (the meta-key on Mac,\n * ctrl-key otherwise) is pressed, `false` otherwise (e.g. when additionally\n * the shift-key is pressed).\n *\n * @param {import(\"../MapBrowserEvent.js\").default} mapBrowserEvent Map browser event.\n * @return {boolean} True if only the platform modifier key is pressed.\n * @api\n */\nexport var platformModifierKeyOnly = function (mapBrowserEvent) {\n var originalEvent = /** @type {KeyboardEvent|MouseEvent|TouchEvent} */ (mapBrowserEvent.originalEvent);\n return (!originalEvent.altKey &&\n (MAC ? originalEvent.metaKey : originalEvent.ctrlKey) &&\n !originalEvent.shiftKey);\n};\n/**\n * Return `true` if only the shift-key is pressed, `false` otherwise (e.g. when\n * additionally the alt-key is pressed).\n *\n * @param {import(\"../MapBrowserEvent.js\").default} mapBrowserEvent Map browser event.\n * @return {boolean} True if only the shift key is pressed.\n * @api\n */\nexport var shiftKeyOnly = function (mapBrowserEvent) {\n var originalEvent = /** @type {KeyboardEvent|MouseEvent|TouchEvent} */ (mapBrowserEvent.originalEvent);\n return (!originalEvent.altKey &&\n !(originalEvent.metaKey || originalEvent.ctrlKey) &&\n originalEvent.shiftKey);\n};\n/**\n * Return `true` if the target element is not editable, i.e. not a `<input>`-,\n * `<select>`- or `<textarea>`-element, `false` otherwise.\n *\n * @param {import(\"../MapBrowserEvent.js\").default} mapBrowserEvent Map browser event.\n * @return {boolean} True only if the target element is not editable.\n * @api\n */\nexport var targetNotEditable = function (mapBrowserEvent) {\n var originalEvent = /** @type {KeyboardEvent|MouseEvent|TouchEvent} */ (mapBrowserEvent.originalEvent);\n var tagName = /** @type {Element} */ (originalEvent.target).tagName;\n return tagName !== 'INPUT' && tagName !== 'SELECT' && tagName !== 'TEXTAREA';\n};\n/**\n * Return `true` if the event originates from a mouse device.\n *\n * @param {import(\"../MapBrowserEvent.js\").default} mapBrowserEvent Map browser event.\n * @return {boolean} True if the event originates from a mouse device.\n * @api\n */\nexport var mouseOnly = function (mapBrowserEvent) {\n var pointerEvent = /** @type {import(\"../MapBrowserEvent\").default} */ (mapBrowserEvent).originalEvent;\n assert(pointerEvent !== undefined, 56); // mapBrowserEvent must originate from a pointer event\n // see https://www.w3.org/TR/pointerevents/#widl-PointerEvent-pointerType\n return pointerEvent.pointerType == 'mouse';\n};\n/**\n * Return `true` if the event originates from a touchable device.\n *\n * @param {import(\"../MapBrowserEvent.js\").default} mapBrowserEvent Map browser event.\n * @return {boolean} True if the event originates from a touchable device.\n * @api\n */\nexport var touchOnly = function (mapBrowserEvent) {\n var pointerEvt = /** @type {import(\"../MapBrowserEvent\").default} */ (mapBrowserEvent).originalEvent;\n assert(pointerEvt !== undefined, 56); // mapBrowserEvent must originate from a pointer event\n // see https://www.w3.org/TR/pointerevents/#widl-PointerEvent-pointerType\n return pointerEvt.pointerType === 'touch';\n};\n/**\n * Return `true` if the event originates from a digital pen.\n *\n * @param {import(\"../MapBrowserEvent.js\").default} mapBrowserEvent Map browser event.\n * @return {boolean} True if the event originates from a digital pen.\n * @api\n */\nexport var penOnly = function (mapBrowserEvent) {\n var pointerEvt = /** @type {import(\"../MapBrowserEvent\").default} */ (mapBrowserEvent).originalEvent;\n assert(pointerEvt !== undefined, 56); // mapBrowserEvent must originate from a pointer event\n // see https://www.w3.org/TR/pointerevents/#widl-PointerEvent-pointerType\n return pointerEvt.pointerType === 'pen';\n};\n/**\n * Return `true` if the event originates from a primary pointer in\n * contact with the surface or if the left mouse button is pressed.\n * See https://www.w3.org/TR/pointerevents/#button-states.\n *\n * @param {import(\"../MapBrowserEvent.js\").default} mapBrowserEvent Map browser event.\n * @return {boolean} True if the event originates from a primary pointer.\n * @api\n */\nexport var primaryAction = function (mapBrowserEvent) {\n var pointerEvent = /** @type {import(\"../MapBrowserEvent\").default} */ (mapBrowserEvent).originalEvent;\n assert(pointerEvent !== undefined, 56); // mapBrowserEvent must originate from a pointer event\n return pointerEvent.isPrimary && pointerEvent.button === 0;\n};\n//# sourceMappingURL=condition.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/interaction/DragPan\n */\nimport PointerInteraction, { centroid as centroidFromPointers, } from './Pointer.js';\nimport { FALSE } from '../functions.js';\nimport { all, focusWithTabindex, noModifierKeys, primaryAction, } from '../events/condition.js';\nimport { easeOut } from '../easing.js';\nimport { rotate as rotateCoordinate, scale as scaleCoordinate, } from '../coordinate.js';\n/**\n * @typedef {Object} Options\n * @property {import(\"../events/condition.js\").Condition} [condition] A function that takes an {@link module:ol/MapBrowserEvent~MapBrowserEvent} and returns a boolean\n * to indicate whether that event should be handled.\n * Default is {@link module:ol/events/condition.noModifierKeys} and {@link module:ol/events/condition.primaryAction}.\n * @property {boolean} [onFocusOnly=false] When the map's target has a `tabindex` attribute set,\n * the interaction will only handle events when the map has the focus.\n * @property {import(\"../Kinetic.js\").default} [kinetic] Kinetic inertia to apply to the pan.\n */\n/**\n * @classdesc\n * Allows the user to pan the map by dragging the map.\n * @api\n */\nvar DragPan = /** @class */ (function (_super) {\n __extends(DragPan, _super);\n /**\n * @param {Options} [opt_options] Options.\n */\n function DragPan(opt_options) {\n var _this = _super.call(this, {\n stopDown: FALSE,\n }) || this;\n var options = opt_options ? opt_options : {};\n /**\n * @private\n * @type {import(\"../Kinetic.js\").default|undefined}\n */\n _this.kinetic_ = options.kinetic;\n /**\n * @type {import(\"../pixel.js\").Pixel}\n */\n _this.lastCentroid = null;\n /**\n * @type {number}\n */\n _this.lastPointersCount_;\n /**\n * @type {boolean}\n */\n _this.panning_ = false;\n var condition = options.condition\n ? options.condition\n : all(noModifierKeys, primaryAction);\n /**\n * @private\n * @type {import(\"../events/condition.js\").Condition}\n */\n _this.condition_ = options.onFocusOnly\n ? all(focusWithTabindex, condition)\n : condition;\n /**\n * @private\n * @type {boolean}\n */\n _this.noKinetic_ = false;\n return _this;\n }\n /**\n * Handle pointer drag events.\n * @param {import(\"../MapBrowserEvent.js\").default} mapBrowserEvent Event.\n */\n DragPan.prototype.handleDragEvent = function (mapBrowserEvent) {\n if (!this.panning_) {\n this.panning_ = true;\n this.getMap().getView().beginInteraction();\n }\n var targetPointers = this.targetPointers;\n var centroid = centroidFromPointers(targetPointers);\n if (targetPointers.length == this.lastPointersCount_) {\n if (this.kinetic_) {\n this.kinetic_.update(centroid[0], centroid[1]);\n }\n if (this.lastCentroid) {\n var delta = [\n this.lastCentroid[0] - centroid[0],\n centroid[1] - this.lastCentroid[1],\n ];\n var map = mapBrowserEvent.map;\n var view = map.getView();\n scaleCoordinate(delta, view.getResolution());\n rotateCoordinate(delta, view.getRotation());\n view.adjustCenterInternal(delta);\n }\n }\n else if (this.kinetic_) {\n // reset so we don't overestimate the kinetic energy after\n // after one finger down, tiny drag, second finger down\n this.kinetic_.begin();\n }\n this.lastCentroid = centroid;\n this.lastPointersCount_ = targetPointers.length;\n mapBrowserEvent.originalEvent.preventDefault();\n };\n /**\n * Handle pointer up events.\n * @param {import(\"../MapBrowserEvent.js\").default} mapBrowserEvent Event.\n * @return {boolean} If the event was consumed.\n */\n DragPan.prototype.handleUpEvent = function (mapBrowserEvent) {\n var map = mapBrowserEvent.map;\n var view = map.getView();\n if (this.targetPointers.length === 0) {\n if (!this.noKinetic_ && this.kinetic_ && this.kinetic_.end()) {\n var distance = this.kinetic_.getDistance();\n var angle = this.kinetic_.getAngle();\n var center = view.getCenterInternal();\n var centerpx = map.getPixelFromCoordinateInternal(center);\n var dest = map.getCoordinateFromPixelInternal([\n centerpx[0] - distance * Math.cos(angle),\n centerpx[1] - distance * Math.sin(angle),\n ]);\n view.animateInternal({\n center: view.getConstrainedCenter(dest),\n duration: 500,\n easing: easeOut,\n });\n }\n if (this.panning_) {\n this.panning_ = false;\n view.endInteraction();\n }\n return false;\n }\n else {\n if (this.kinetic_) {\n // reset so we don't overestimate the kinetic energy after\n // after one finger up, tiny drag, second finger up\n this.kinetic_.begin();\n }\n this.lastCentroid = null;\n return true;\n }\n };\n /**\n * Handle pointer down events.\n * @param {import(\"../MapBrowserEvent.js\").default} mapBrowserEvent Event.\n * @return {boolean} If the event was consumed.\n */\n DragPan.prototype.handleDownEvent = function (mapBrowserEvent) {\n if (this.targetPointers.length > 0 && this.condition_(mapBrowserEvent)) {\n var map = mapBrowserEvent.map;\n var view = map.getView();\n this.lastCentroid = null;\n // stop any current animation\n if (view.getAnimating()) {\n view.cancelAnimations();\n }\n if (this.kinetic_) {\n this.kinetic_.begin();\n }\n // No kinetic as soon as more than one pointer on the screen is\n // detected. This is to prevent nasty pans after pinch.\n this.noKinetic_ = this.targetPointers.length > 1;\n return true;\n }\n else {\n return false;\n }\n };\n return DragPan;\n}(PointerInteraction));\nexport default DragPan;\n//# sourceMappingURL=DragPan.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/interaction/DragRotate\n */\nimport PointerInteraction from './Pointer.js';\nimport { FALSE } from '../functions.js';\nimport { altShiftKeysOnly, mouseActionButton, mouseOnly, } from '../events/condition.js';\nimport { disable } from '../rotationconstraint.js';\n/**\n * @typedef {Object} Options\n * @property {import(\"../events/condition.js\").Condition} [condition] A function that takes an\n * {@link module:ol/MapBrowserEvent~MapBrowserEvent} and returns a boolean\n * to indicate whether that event should be handled.\n * Default is {@link module:ol/events/condition.altShiftKeysOnly}.\n * @property {number} [duration=250] Animation duration in milliseconds.\n */\n/**\n * @classdesc\n * Allows the user to rotate the map by clicking and dragging on the map,\n * normally combined with an {@link module:ol/events/condition} that limits\n * it to when the alt and shift keys are held down.\n *\n * This interaction is only supported for mouse devices.\n * @api\n */\nvar DragRotate = /** @class */ (function (_super) {\n __extends(DragRotate, _super);\n /**\n * @param {Options} [opt_options] Options.\n */\n function DragRotate(opt_options) {\n var _this = this;\n var options = opt_options ? opt_options : {};\n _this = _super.call(this, {\n stopDown: FALSE,\n }) || this;\n /**\n * @private\n * @type {import(\"../events/condition.js\").Condition}\n */\n _this.condition_ = options.condition ? options.condition : altShiftKeysOnly;\n /**\n * @private\n * @type {number|undefined}\n */\n _this.lastAngle_ = undefined;\n /**\n * @private\n * @type {number}\n */\n _this.duration_ = options.duration !== undefined ? options.duration : 250;\n return _this;\n }\n /**\n * Handle pointer drag events.\n * @param {import(\"../MapBrowserEvent.js\").default} mapBrowserEvent Event.\n */\n DragRotate.prototype.handleDragEvent = function (mapBrowserEvent) {\n if (!mouseOnly(mapBrowserEvent)) {\n return;\n }\n var map = mapBrowserEvent.map;\n var view = map.getView();\n if (view.getConstraints().rotation === disable) {\n return;\n }\n var size = map.getSize();\n var offset = mapBrowserEvent.pixel;\n var theta = Math.atan2(size[1] / 2 - offset[1], offset[0] - size[0] / 2);\n if (this.lastAngle_ !== undefined) {\n var delta = theta - this.lastAngle_;\n view.adjustRotationInternal(-delta);\n }\n this.lastAngle_ = theta;\n };\n /**\n * Handle pointer up events.\n * @param {import(\"../MapBrowserEvent.js\").default} mapBrowserEvent Event.\n * @return {boolean} If the event was consumed.\n */\n DragRotate.prototype.handleUpEvent = function (mapBrowserEvent) {\n if (!mouseOnly(mapBrowserEvent)) {\n return true;\n }\n var map = mapBrowserEvent.map;\n var view = map.getView();\n view.endInteraction(this.duration_);\n return false;\n };\n /**\n * Handle pointer down events.\n * @param {import(\"../MapBrowserEvent.js\").default} mapBrowserEvent Event.\n * @return {boolean} If the event was consumed.\n */\n DragRotate.prototype.handleDownEvent = function (mapBrowserEvent) {\n if (!mouseOnly(mapBrowserEvent)) {\n return false;\n }\n if (mouseActionButton(mapBrowserEvent) &&\n this.condition_(mapBrowserEvent)) {\n var map = mapBrowserEvent.map;\n map.getView().beginInteraction();\n this.lastAngle_ = undefined;\n return true;\n }\n else {\n return false;\n }\n };\n return DragRotate;\n}(PointerInteraction));\nexport default DragRotate;\n//# sourceMappingURL=DragRotate.js.map","/**\n * @module ol/render/Box\n */\nvar __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\nimport Disposable from '../Disposable.js';\nimport Polygon from '../geom/Polygon.js';\nvar RenderBox = /** @class */ (function (_super) {\n __extends(RenderBox, _super);\n /**\n * @param {string} className CSS class name.\n */\n function RenderBox(className) {\n var _this = _super.call(this) || this;\n /**\n * @type {import(\"../geom/Polygon.js\").default}\n * @private\n */\n _this.geometry_ = null;\n /**\n * @type {HTMLDivElement}\n * @private\n */\n _this.element_ = document.createElement('div');\n _this.element_.style.position = 'absolute';\n _this.element_.style.pointerEvents = 'auto';\n _this.element_.className = 'ol-box ' + className;\n /**\n * @private\n * @type {import(\"../PluggableMap.js\").default}\n */\n _this.map_ = null;\n /**\n * @private\n * @type {import(\"../pixel.js\").Pixel}\n */\n _this.startPixel_ = null;\n /**\n * @private\n * @type {import(\"../pixel.js\").Pixel}\n */\n _this.endPixel_ = null;\n return _this;\n }\n /**\n * Clean up.\n */\n RenderBox.prototype.disposeInternal = function () {\n this.setMap(null);\n };\n /**\n * @private\n */\n RenderBox.prototype.render_ = function () {\n var startPixel = this.startPixel_;\n var endPixel = this.endPixel_;\n var px = 'px';\n var style = this.element_.style;\n style.left = Math.min(startPixel[0], endPixel[0]) + px;\n style.top = Math.min(startPixel[1], endPixel[1]) + px;\n style.width = Math.abs(endPixel[0] - startPixel[0]) + px;\n style.height = Math.abs(endPixel[1] - startPixel[1]) + px;\n };\n /**\n * @param {import(\"../PluggableMap.js\").default} map Map.\n */\n RenderBox.prototype.setMap = function (map) {\n if (this.map_) {\n this.map_.getOverlayContainer().removeChild(this.element_);\n var style = this.element_.style;\n style.left = 'inherit';\n style.top = 'inherit';\n style.width = 'inherit';\n style.height = 'inherit';\n }\n this.map_ = map;\n if (this.map_) {\n this.map_.getOverlayContainer().appendChild(this.element_);\n }\n };\n /**\n * @param {import(\"../pixel.js\").Pixel} startPixel Start pixel.\n * @param {import(\"../pixel.js\").Pixel} endPixel End pixel.\n */\n RenderBox.prototype.setPixels = function (startPixel, endPixel) {\n this.startPixel_ = startPixel;\n this.endPixel_ = endPixel;\n this.createOrUpdateGeometry();\n this.render_();\n };\n /**\n * Creates or updates the cached geometry.\n */\n RenderBox.prototype.createOrUpdateGeometry = function () {\n var startPixel = this.startPixel_;\n var endPixel = this.endPixel_;\n var pixels = [\n startPixel,\n [startPixel[0], endPixel[1]],\n endPixel,\n [endPixel[0], startPixel[1]],\n ];\n var coordinates = pixels.map(this.map_.getCoordinateFromPixelInternal, this.map_);\n // close the polygon\n coordinates[4] = coordinates[0].slice();\n if (!this.geometry_) {\n this.geometry_ = new Polygon([coordinates]);\n }\n else {\n this.geometry_.setCoordinates([coordinates]);\n }\n };\n /**\n * @return {import(\"../geom/Polygon.js\").default} Geometry.\n */\n RenderBox.prototype.getGeometry = function () {\n return this.geometry_;\n };\n return RenderBox;\n}(Disposable));\nexport default RenderBox;\n//# sourceMappingURL=Box.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/interaction/DragBox\n */\n// FIXME draw drag box\nimport Event from '../events/Event.js';\nimport PointerInteraction from './Pointer.js';\nimport RenderBox from '../render/Box.js';\nimport { mouseActionButton } from '../events/condition.js';\n/**\n * A function that takes a {@link module:ol/MapBrowserEvent} and two\n * {@link module:ol/pixel~Pixel}s and returns a `{boolean}`. If the condition is met,\n * true should be returned.\n * @typedef {function(this: ?, import(\"../MapBrowserEvent.js\").default, import(\"../pixel.js\").Pixel, import(\"../pixel.js\").Pixel):boolean} EndCondition\n */\n/**\n * @typedef {Object} Options\n * @property {string} [className='ol-dragbox'] CSS class name for styling the box.\n * @property {import(\"../events/condition.js\").Condition} [condition] A function that takes an {@link module:ol/MapBrowserEvent~MapBrowserEvent} and returns a boolean\n * to indicate whether that event should be handled.\n * Default is {@link ol/events/condition~mouseActionButton}.\n * @property {number} [minArea=64] The minimum area of the box in pixel, this value is used by the default\n * `boxEndCondition` function.\n * @property {EndCondition} [boxEndCondition] A function that takes a {@link module:ol/MapBrowserEvent~MapBrowserEvent} and two\n * {@link module:ol/pixel~Pixel}s to indicate whether a `boxend` event should be fired.\n * Default is `true` if the area of the box is bigger than the `minArea` option.\n * @property {function(this:DragBox, import(\"../MapBrowserEvent.js\").default):void} [onBoxEnd] Code to execute just\n * before `boxend` is fired.\n */\n/**\n * @enum {string}\n */\nvar DragBoxEventType = {\n /**\n * Triggered upon drag box start.\n * @event DragBoxEvent#boxstart\n * @api\n */\n BOXSTART: 'boxstart',\n /**\n * Triggered on drag when box is active.\n * @event DragBoxEvent#boxdrag\n * @api\n */\n BOXDRAG: 'boxdrag',\n /**\n * Triggered upon drag box end.\n * @event DragBoxEvent#boxend\n * @api\n */\n BOXEND: 'boxend',\n /**\n * Triggered upon drag box canceled.\n * @event DragBoxEvent#boxcancel\n * @api\n */\n BOXCANCEL: 'boxcancel',\n};\n/**\n * @classdesc\n * Events emitted by {@link module:ol/interaction/DragBox~DragBox} instances are instances of\n * this type.\n */\nvar DragBoxEvent = /** @class */ (function (_super) {\n __extends(DragBoxEvent, _super);\n /**\n * @param {string} type The event type.\n * @param {import(\"../coordinate.js\").Coordinate} coordinate The event coordinate.\n * @param {import(\"../MapBrowserEvent.js\").default} mapBrowserEvent Originating event.\n */\n function DragBoxEvent(type, coordinate, mapBrowserEvent) {\n var _this = _super.call(this, type) || this;\n /**\n * The coordinate of the drag event.\n * @const\n * @type {import(\"../coordinate.js\").Coordinate}\n * @api\n */\n _this.coordinate = coordinate;\n /**\n * @const\n * @type {import(\"../MapBrowserEvent.js\").default}\n * @api\n */\n _this.mapBrowserEvent = mapBrowserEvent;\n return _this;\n }\n return DragBoxEvent;\n}(Event));\nexport { DragBoxEvent };\n/***\n * @template Return\n * @typedef {import(\"../Observable\").OnSignature<import(\"../Observable\").EventTypes, import(\"../events/Event.js\").default, Return> &\n * import(\"../Observable\").OnSignature<import(\"../ObjectEventType\").Types|\n * 'change:active', import(\"../Object\").ObjectEvent, Return> &\n * import(\"../Observable\").OnSignature<'boxcancel'|'boxdrag'|'boxend'|'boxstart', DragBoxEvent, Return> &\n * import(\"../Observable\").CombinedOnSignature<import(\"../Observable\").EventTypes|import(\"../ObjectEventType\").Types|\n * 'change:active'|'boxcancel'|'boxdrag'|'boxend', Return>} DragBoxOnSignature\n */\n/**\n * @classdesc\n * Allows the user to draw a vector box by clicking and dragging on the map,\n * normally combined with an {@link module:ol/events/condition} that limits\n * it to when the shift or other key is held down. This is used, for example,\n * for zooming to a specific area of the map\n * (see {@link module:ol/interaction/DragZoom~DragZoom} and\n * {@link module:ol/interaction/DragRotateAndZoom}).\n *\n * @fires DragBoxEvent\n * @api\n */\nvar DragBox = /** @class */ (function (_super) {\n __extends(DragBox, _super);\n /**\n * @param {Options} [opt_options] Options.\n */\n function DragBox(opt_options) {\n var _this = _super.call(this) || this;\n /***\n * @type {DragBoxOnSignature<import(\"../events\").EventsKey>}\n */\n _this.on;\n /***\n * @type {DragBoxOnSignature<import(\"../events\").EventsKey>}\n */\n _this.once;\n /***\n * @type {DragBoxOnSignature<void>}\n */\n _this.un;\n var options = opt_options ? opt_options : {};\n /**\n * @type {import(\"../render/Box.js\").default}\n * @private\n */\n _this.box_ = new RenderBox(options.className || 'ol-dragbox');\n /**\n * @type {number}\n * @private\n */\n _this.minArea_ = options.minArea !== undefined ? options.minArea : 64;\n if (options.onBoxEnd) {\n _this.onBoxEnd = options.onBoxEnd;\n }\n /**\n * @type {import(\"../pixel.js\").Pixel}\n * @private\n */\n _this.startPixel_ = null;\n /**\n * @private\n * @type {import(\"../events/condition.js\").Condition}\n */\n _this.condition_ = options.condition ? options.condition : mouseActionButton;\n /**\n * @private\n * @type {EndCondition}\n */\n _this.boxEndCondition_ = options.boxEndCondition\n ? options.boxEndCondition\n : _this.defaultBoxEndCondition;\n return _this;\n }\n /**\n * The default condition for determining whether the boxend event\n * should fire.\n * @param {import(\"../MapBrowserEvent.js\").default} mapBrowserEvent The originating MapBrowserEvent\n * leading to the box end.\n * @param {import(\"../pixel.js\").Pixel} startPixel The starting pixel of the box.\n * @param {import(\"../pixel.js\").Pixel} endPixel The end pixel of the box.\n * @return {boolean} Whether or not the boxend condition should be fired.\n */\n DragBox.prototype.defaultBoxEndCondition = function (mapBrowserEvent, startPixel, endPixel) {\n var width = endPixel[0] - startPixel[0];\n var height = endPixel[1] - startPixel[1];\n return width * width + height * height >= this.minArea_;\n };\n /**\n * Returns geometry of last drawn box.\n * @return {import(\"../geom/Polygon.js\").default} Geometry.\n * @api\n */\n DragBox.prototype.getGeometry = function () {\n return this.box_.getGeometry();\n };\n /**\n * Handle pointer drag events.\n * @param {import(\"../MapBrowserEvent.js\").default} mapBrowserEvent Event.\n */\n DragBox.prototype.handleDragEvent = function (mapBrowserEvent) {\n this.box_.setPixels(this.startPixel_, mapBrowserEvent.pixel);\n this.dispatchEvent(new DragBoxEvent(DragBoxEventType.BOXDRAG, mapBrowserEvent.coordinate, mapBrowserEvent));\n };\n /**\n * Handle pointer up events.\n * @param {import(\"../MapBrowserEvent.js\").default} mapBrowserEvent Event.\n * @return {boolean} If the event was consumed.\n */\n DragBox.prototype.handleUpEvent = function (mapBrowserEvent) {\n this.box_.setMap(null);\n var completeBox = this.boxEndCondition_(mapBrowserEvent, this.startPixel_, mapBrowserEvent.pixel);\n if (completeBox) {\n this.onBoxEnd(mapBrowserEvent);\n }\n this.dispatchEvent(new DragBoxEvent(completeBox ? DragBoxEventType.BOXEND : DragBoxEventType.BOXCANCEL, mapBrowserEvent.coordinate, mapBrowserEvent));\n return false;\n };\n /**\n * Handle pointer down events.\n * @param {import(\"../MapBrowserEvent.js\").default} mapBrowserEvent Event.\n * @return {boolean} If the event was consumed.\n */\n DragBox.prototype.handleDownEvent = function (mapBrowserEvent) {\n if (this.condition_(mapBrowserEvent)) {\n this.startPixel_ = mapBrowserEvent.pixel;\n this.box_.setMap(mapBrowserEvent.map);\n this.box_.setPixels(this.startPixel_, this.startPixel_);\n this.dispatchEvent(new DragBoxEvent(DragBoxEventType.BOXSTART, mapBrowserEvent.coordinate, mapBrowserEvent));\n return true;\n }\n else {\n return false;\n }\n };\n /**\n * Function to execute just before `onboxend` is fired\n * @param {import(\"../MapBrowserEvent.js\").default} event Event.\n */\n DragBox.prototype.onBoxEnd = function (event) { };\n return DragBox;\n}(PointerInteraction));\nexport default DragBox;\n//# sourceMappingURL=DragBox.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/interaction/DragZoom\n */\nimport DragBox from './DragBox.js';\nimport { easeOut } from '../easing.js';\nimport { shiftKeyOnly } from '../events/condition.js';\n/**\n * @typedef {Object} Options\n * @property {string} [className='ol-dragzoom'] CSS class name for styling the\n * box.\n * @property {import(\"../events/condition.js\").Condition} [condition] A function that\n * takes an {@link module:ol/MapBrowserEvent~MapBrowserEvent} and returns a\n * boolean to indicate whether that event should be handled.\n * Default is {@link module:ol/events/condition.shiftKeyOnly}.\n * @property {number} [duration=200] Animation duration in milliseconds.\n * @property {boolean} [out=false] Use interaction for zooming out.\n * @property {number} [minArea=64] The minimum area of the box in pixel, this value is used by the parent default\n * `boxEndCondition` function.\n */\n/**\n * @classdesc\n * Allows the user to zoom the map by clicking and dragging on the map,\n * normally combined with an {@link module:ol/events/condition} that limits\n * it to when a key, shift by default, is held down.\n *\n * To change the style of the box, use CSS and the `.ol-dragzoom` selector, or\n * your custom one configured with `className`.\n * @api\n */\nvar DragZoom = /** @class */ (function (_super) {\n __extends(DragZoom, _super);\n /**\n * @param {Options} [opt_options] Options.\n */\n function DragZoom(opt_options) {\n var _this = this;\n var options = opt_options ? opt_options : {};\n var condition = options.condition ? options.condition : shiftKeyOnly;\n _this = _super.call(this, {\n condition: condition,\n className: options.className || 'ol-dragzoom',\n minArea: options.minArea,\n }) || this;\n /**\n * @private\n * @type {number}\n */\n _this.duration_ = options.duration !== undefined ? options.duration : 200;\n /**\n * @private\n * @type {boolean}\n */\n _this.out_ = options.out !== undefined ? options.out : false;\n return _this;\n }\n /**\n * Function to execute just before `onboxend` is fired\n * @param {import(\"../MapBrowserEvent.js\").default} event Event.\n */\n DragZoom.prototype.onBoxEnd = function (event) {\n var map = this.getMap();\n var view = /** @type {!import(\"../View.js\").default} */ (map.getView());\n var geometry = this.getGeometry();\n if (this.out_) {\n var rotatedExtent = view.rotatedExtentForGeometry(geometry);\n var resolution = view.getResolutionForExtentInternal(rotatedExtent);\n var factor = view.getResolution() / resolution;\n geometry = geometry.clone();\n geometry.scale(factor * factor);\n }\n view.fitInternal(geometry, {\n duration: this.duration_,\n easing: easeOut,\n });\n };\n return DragZoom;\n}(DragBox));\nexport default DragZoom;\n//# sourceMappingURL=DragZoom.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/interaction/KeyboardPan\n */\nimport EventType from '../events/EventType.js';\nimport Interaction, { pan } from './Interaction.js';\nimport KeyCode from '../events/KeyCode.js';\nimport { noModifierKeys, targetNotEditable } from '../events/condition.js';\nimport { rotate as rotateCoordinate } from '../coordinate.js';\n/**\n * @typedef {Object} Options\n * @property {import(\"../events/condition.js\").Condition} [condition] A function that\n * takes an {@link module:ol/MapBrowserEvent~MapBrowserEvent} and returns a\n * boolean to indicate whether that event should be handled. Default is\n * {@link module:ol/events/condition.noModifierKeys} and\n * {@link module:ol/events/condition.targetNotEditable}.\n * @property {number} [duration=100] Animation duration in milliseconds.\n * @property {number} [pixelDelta=128] The amount of pixels to pan on each key\n * press.\n */\n/**\n * @classdesc\n * Allows the user to pan the map using keyboard arrows.\n * Note that, although this interaction is by default included in maps,\n * the keys can only be used when browser focus is on the element to which\n * the keyboard events are attached. By default, this is the map div,\n * though you can change this with the `keyboardEventTarget` in\n * {@link module:ol/Map~Map}. `document` never loses focus but, for any other\n * element, focus will have to be on, and returned to, this element if the keys\n * are to function.\n * See also {@link module:ol/interaction/KeyboardZoom~KeyboardZoom}.\n * @api\n */\nvar KeyboardPan = /** @class */ (function (_super) {\n __extends(KeyboardPan, _super);\n /**\n * @param {Options} [opt_options] Options.\n */\n function KeyboardPan(opt_options) {\n var _this = _super.call(this) || this;\n var options = opt_options || {};\n /**\n * @private\n * @param {import(\"../MapBrowserEvent.js\").default} mapBrowserEvent Browser event.\n * @return {boolean} Combined condition result.\n */\n _this.defaultCondition_ = function (mapBrowserEvent) {\n return (noModifierKeys(mapBrowserEvent) && targetNotEditable(mapBrowserEvent));\n };\n /**\n * @private\n * @type {import(\"../events/condition.js\").Condition}\n */\n _this.condition_ =\n options.condition !== undefined\n ? options.condition\n : _this.defaultCondition_;\n /**\n * @private\n * @type {number}\n */\n _this.duration_ = options.duration !== undefined ? options.duration : 100;\n /**\n * @private\n * @type {number}\n */\n _this.pixelDelta_ =\n options.pixelDelta !== undefined ? options.pixelDelta : 128;\n return _this;\n }\n /**\n * Handles the {@link module:ol/MapBrowserEvent map browser event} if it was a\n * `KeyEvent`, and decides the direction to pan to (if an arrow key was\n * pressed).\n * @param {import(\"../MapBrowserEvent.js\").default} mapBrowserEvent Map browser event.\n * @return {boolean} `false` to stop event propagation.\n * @this {KeyboardPan}\n */\n KeyboardPan.prototype.handleEvent = function (mapBrowserEvent) {\n var stopEvent = false;\n if (mapBrowserEvent.type == EventType.KEYDOWN) {\n var keyEvent = /** @type {KeyboardEvent} */ (mapBrowserEvent.originalEvent);\n var keyCode = keyEvent.keyCode;\n if (this.condition_(mapBrowserEvent) &&\n (keyCode == KeyCode.DOWN ||\n keyCode == KeyCode.LEFT ||\n keyCode == KeyCode.RIGHT ||\n keyCode == KeyCode.UP)) {\n var map = mapBrowserEvent.map;\n var view = map.getView();\n var mapUnitsDelta = view.getResolution() * this.pixelDelta_;\n var deltaX = 0, deltaY = 0;\n if (keyCode == KeyCode.DOWN) {\n deltaY = -mapUnitsDelta;\n }\n else if (keyCode == KeyCode.LEFT) {\n deltaX = -mapUnitsDelta;\n }\n else if (keyCode == KeyCode.RIGHT) {\n deltaX = mapUnitsDelta;\n }\n else {\n deltaY = mapUnitsDelta;\n }\n var delta = [deltaX, deltaY];\n rotateCoordinate(delta, view.getRotation());\n pan(view, delta, this.duration_);\n keyEvent.preventDefault();\n stopEvent = true;\n }\n }\n return !stopEvent;\n };\n return KeyboardPan;\n}(Interaction));\nexport default KeyboardPan;\n//# sourceMappingURL=KeyboardPan.js.map","/**\n * @module ol/events/KeyCode\n */\n/**\n * @enum {number}\n * @const\n */\nexport default {\n LEFT: 37,\n UP: 38,\n RIGHT: 39,\n DOWN: 40,\n};\n//# sourceMappingURL=KeyCode.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/interaction/KeyboardZoom\n */\nimport EventType from '../events/EventType.js';\nimport Interaction, { zoomByDelta } from './Interaction.js';\nimport { targetNotEditable } from '../events/condition.js';\n/**\n * @typedef {Object} Options\n * @property {number} [duration=100] Animation duration in milliseconds.\n * @property {import(\"../events/condition.js\").Condition} [condition] A function that\n * takes an {@link module:ol/MapBrowserEvent~MapBrowserEvent} and returns a\n * boolean to indicate whether that event should be handled. Default is\n * {@link module:ol/events/condition.targetNotEditable}.\n * @property {number} [delta=1] The zoom level delta on each key press.\n */\n/**\n * @classdesc\n * Allows the user to zoom the map using keyboard + and -.\n * Note that, although this interaction is by default included in maps,\n * the keys can only be used when browser focus is on the element to which\n * the keyboard events are attached. By default, this is the map div,\n * though you can change this with the `keyboardEventTarget` in\n * {@link module:ol/Map~Map}. `document` never loses focus but, for any other\n * element, focus will have to be on, and returned to, this element if the keys\n * are to function.\n * See also {@link module:ol/interaction/KeyboardPan~KeyboardPan}.\n * @api\n */\nvar KeyboardZoom = /** @class */ (function (_super) {\n __extends(KeyboardZoom, _super);\n /**\n * @param {Options} [opt_options] Options.\n */\n function KeyboardZoom(opt_options) {\n var _this = _super.call(this) || this;\n var options = opt_options ? opt_options : {};\n /**\n * @private\n * @type {import(\"../events/condition.js\").Condition}\n */\n _this.condition_ = options.condition ? options.condition : targetNotEditable;\n /**\n * @private\n * @type {number}\n */\n _this.delta_ = options.delta ? options.delta : 1;\n /**\n * @private\n * @type {number}\n */\n _this.duration_ = options.duration !== undefined ? options.duration : 100;\n return _this;\n }\n /**\n * Handles the {@link module:ol/MapBrowserEvent map browser event} if it was a\n * `KeyEvent`, and decides whether to zoom in or out (depending on whether the\n * key pressed was '+' or '-').\n * @param {import(\"../MapBrowserEvent.js\").default} mapBrowserEvent Map browser event.\n * @return {boolean} `false` to stop event propagation.\n * @this {KeyboardZoom}\n */\n KeyboardZoom.prototype.handleEvent = function (mapBrowserEvent) {\n var stopEvent = false;\n if (mapBrowserEvent.type == EventType.KEYDOWN ||\n mapBrowserEvent.type == EventType.KEYPRESS) {\n var keyEvent = /** @type {KeyboardEvent} */ (mapBrowserEvent.originalEvent);\n var charCode = keyEvent.charCode;\n if (this.condition_(mapBrowserEvent) &&\n (charCode == '+'.charCodeAt(0) || charCode == '-'.charCodeAt(0))) {\n var map = mapBrowserEvent.map;\n var delta = charCode == '+'.charCodeAt(0) ? this.delta_ : -this.delta_;\n var view = map.getView();\n zoomByDelta(view, delta, undefined, this.duration_);\n keyEvent.preventDefault();\n stopEvent = true;\n }\n }\n return !stopEvent;\n };\n return KeyboardZoom;\n}(Interaction));\nexport default KeyboardZoom;\n//# sourceMappingURL=KeyboardZoom.js.map","/**\n * @module ol/Kinetic\n */\n/**\n * @classdesc\n * Implementation of inertial deceleration for map movement.\n *\n * @api\n */\nvar Kinetic = /** @class */ (function () {\n /**\n * @param {number} decay Rate of decay (must be negative).\n * @param {number} minVelocity Minimum velocity (pixels/millisecond).\n * @param {number} delay Delay to consider to calculate the kinetic\n * initial values (milliseconds).\n */\n function Kinetic(decay, minVelocity, delay) {\n /**\n * @private\n * @type {number}\n */\n this.decay_ = decay;\n /**\n * @private\n * @type {number}\n */\n this.minVelocity_ = minVelocity;\n /**\n * @private\n * @type {number}\n */\n this.delay_ = delay;\n /**\n * @private\n * @type {Array<number>}\n */\n this.points_ = [];\n /**\n * @private\n * @type {number}\n */\n this.angle_ = 0;\n /**\n * @private\n * @type {number}\n */\n this.initialVelocity_ = 0;\n }\n /**\n * FIXME empty description for jsdoc\n */\n Kinetic.prototype.begin = function () {\n this.points_.length = 0;\n this.angle_ = 0;\n this.initialVelocity_ = 0;\n };\n /**\n * @param {number} x X.\n * @param {number} y Y.\n */\n Kinetic.prototype.update = function (x, y) {\n this.points_.push(x, y, Date.now());\n };\n /**\n * @return {boolean} Whether we should do kinetic animation.\n */\n Kinetic.prototype.end = function () {\n if (this.points_.length < 6) {\n // at least 2 points are required (i.e. there must be at least 6 elements\n // in the array)\n return false;\n }\n var delay = Date.now() - this.delay_;\n var lastIndex = this.points_.length - 3;\n if (this.points_[lastIndex + 2] < delay) {\n // the last tracked point is too old, which means that the user stopped\n // panning before releasing the map\n return false;\n }\n // get the first point which still falls into the delay time\n var firstIndex = lastIndex - 3;\n while (firstIndex > 0 && this.points_[firstIndex + 2] > delay) {\n firstIndex -= 3;\n }\n var duration = this.points_[lastIndex + 2] - this.points_[firstIndex + 2];\n // we don't want a duration of 0 (divide by zero)\n // we also make sure the user panned for a duration of at least one frame\n // (1/60s) to compute sane displacement values\n if (duration < 1000 / 60) {\n return false;\n }\n var dx = this.points_[lastIndex] - this.points_[firstIndex];\n var dy = this.points_[lastIndex + 1] - this.points_[firstIndex + 1];\n this.angle_ = Math.atan2(dy, dx);\n this.initialVelocity_ = Math.sqrt(dx * dx + dy * dy) / duration;\n return this.initialVelocity_ > this.minVelocity_;\n };\n /**\n * @return {number} Total distance travelled (pixels).\n */\n Kinetic.prototype.getDistance = function () {\n return (this.minVelocity_ - this.initialVelocity_) / this.decay_;\n };\n /**\n * @return {number} Angle of the kinetic panning animation (radians).\n */\n Kinetic.prototype.getAngle = function () {\n return this.angle_;\n };\n return Kinetic;\n}());\nexport default Kinetic;\n//# sourceMappingURL=Kinetic.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/interaction/MouseWheelZoom\n */\nimport EventType from '../events/EventType.js';\nimport Interaction, { zoomByDelta } from './Interaction.js';\nimport { DEVICE_PIXEL_RATIO, FIREFOX } from '../has.js';\nimport { all, always, focusWithTabindex } from '../events/condition.js';\nimport { clamp } from '../math.js';\n/**\n * @enum {string}\n */\nexport var Mode = {\n TRACKPAD: 'trackpad',\n WHEEL: 'wheel',\n};\n/**\n * @typedef {Object} Options\n * @property {import(\"../events/condition.js\").Condition} [condition] A function that\n * takes an {@link module:ol/MapBrowserEvent~MapBrowserEvent} and returns a\n * boolean to indicate whether that event should be handled. Default is\n * {@link module:ol/events/condition.always}.\n * @property {boolean} [onFocusOnly=false] When the map's target has a `tabindex` attribute set,\n * the interaction will only handle events when the map has the focus.\n * @property {number} [maxDelta=1] Maximum mouse wheel delta.\n * @property {number} [duration=250] Animation duration in milliseconds.\n * @property {number} [timeout=80] Mouse wheel timeout duration in milliseconds.\n * @property {boolean} [useAnchor=true] Enable zooming using the mouse's\n * location as the anchor. When set to `false`, zooming in and out will zoom to\n * the center of the screen instead of zooming on the mouse's location.\n * @property {boolean} [constrainResolution=false] If true, the mouse wheel zoom\n * event will always animate to the closest zoom level after an interaction;\n * false means intermediary zoom levels are allowed.\n */\n/**\n * @classdesc\n * Allows the user to zoom the map by scrolling the mouse wheel.\n * @api\n */\nvar MouseWheelZoom = /** @class */ (function (_super) {\n __extends(MouseWheelZoom, _super);\n /**\n * @param {Options} [opt_options] Options.\n */\n function MouseWheelZoom(opt_options) {\n var _this = this;\n var options = opt_options ? opt_options : {};\n _this = _super.call(this, \n /** @type {import(\"./Interaction.js\").InteractionOptions} */ (options)) || this;\n /**\n * @private\n * @type {number}\n */\n _this.totalDelta_ = 0;\n /**\n * @private\n * @type {number}\n */\n _this.lastDelta_ = 0;\n /**\n * @private\n * @type {number}\n */\n _this.maxDelta_ = options.maxDelta !== undefined ? options.maxDelta : 1;\n /**\n * @private\n * @type {number}\n */\n _this.duration_ = options.duration !== undefined ? options.duration : 250;\n /**\n * @private\n * @type {number}\n */\n _this.timeout_ = options.timeout !== undefined ? options.timeout : 80;\n /**\n * @private\n * @type {boolean}\n */\n _this.useAnchor_ =\n options.useAnchor !== undefined ? options.useAnchor : true;\n /**\n * @private\n * @type {boolean}\n */\n _this.constrainResolution_ =\n options.constrainResolution !== undefined\n ? options.constrainResolution\n : false;\n var condition = options.condition ? options.condition : always;\n /**\n * @private\n * @type {import(\"../events/condition.js\").Condition}\n */\n _this.condition_ = options.onFocusOnly\n ? all(focusWithTabindex, condition)\n : condition;\n /**\n * @private\n * @type {?import(\"../coordinate.js\").Coordinate}\n */\n _this.lastAnchor_ = null;\n /**\n * @private\n * @type {number|undefined}\n */\n _this.startTime_ = undefined;\n /**\n * @private\n * @type {?}\n */\n _this.timeoutId_;\n /**\n * @private\n * @type {Mode|undefined}\n */\n _this.mode_ = undefined;\n /**\n * Trackpad events separated by this delay will be considered separate\n * interactions.\n * @type {number}\n */\n _this.trackpadEventGap_ = 400;\n /**\n * @type {?}\n */\n _this.trackpadTimeoutId_;\n /**\n * The number of delta values per zoom level\n * @private\n * @type {number}\n */\n _this.deltaPerZoom_ = 300;\n return _this;\n }\n /**\n * @private\n */\n MouseWheelZoom.prototype.endInteraction_ = function () {\n this.trackpadTimeoutId_ = undefined;\n var view = this.getMap().getView();\n view.endInteraction(undefined, this.lastDelta_ ? (this.lastDelta_ > 0 ? 1 : -1) : 0, this.lastAnchor_);\n };\n /**\n * Handles the {@link module:ol/MapBrowserEvent map browser event} (if it was a mousewheel-event) and eventually\n * zooms the map.\n * @param {import(\"../MapBrowserEvent.js\").default} mapBrowserEvent Map browser event.\n * @return {boolean} `false` to stop event propagation.\n */\n MouseWheelZoom.prototype.handleEvent = function (mapBrowserEvent) {\n if (!this.condition_(mapBrowserEvent)) {\n return true;\n }\n var type = mapBrowserEvent.type;\n if (type !== EventType.WHEEL) {\n return true;\n }\n var map = mapBrowserEvent.map;\n var wheelEvent = /** @type {WheelEvent} */ (mapBrowserEvent.originalEvent);\n wheelEvent.preventDefault();\n if (this.useAnchor_) {\n this.lastAnchor_ = mapBrowserEvent.coordinate;\n }\n // Delta normalisation inspired by\n // https://github.com/mapbox/mapbox-gl-js/blob/001c7b9/js/ui/handler/scroll_zoom.js\n var delta;\n if (mapBrowserEvent.type == EventType.WHEEL) {\n delta = wheelEvent.deltaY;\n if (FIREFOX && wheelEvent.deltaMode === WheelEvent.DOM_DELTA_PIXEL) {\n delta /= DEVICE_PIXEL_RATIO;\n }\n if (wheelEvent.deltaMode === WheelEvent.DOM_DELTA_LINE) {\n delta *= 40;\n }\n }\n if (delta === 0) {\n return false;\n }\n else {\n this.lastDelta_ = delta;\n }\n var now = Date.now();\n if (this.startTime_ === undefined) {\n this.startTime_ = now;\n }\n if (!this.mode_ || now - this.startTime_ > this.trackpadEventGap_) {\n this.mode_ = Math.abs(delta) < 4 ? Mode.TRACKPAD : Mode.WHEEL;\n }\n var view = map.getView();\n if (this.mode_ === Mode.TRACKPAD &&\n !(view.getConstrainResolution() || this.constrainResolution_)) {\n if (this.trackpadTimeoutId_) {\n clearTimeout(this.trackpadTimeoutId_);\n }\n else {\n if (view.getAnimating()) {\n view.cancelAnimations();\n }\n view.beginInteraction();\n }\n this.trackpadTimeoutId_ = setTimeout(this.endInteraction_.bind(this), this.timeout_);\n view.adjustZoom(-delta / this.deltaPerZoom_, this.lastAnchor_);\n this.startTime_ = now;\n return false;\n }\n this.totalDelta_ += delta;\n var timeLeft = Math.max(this.timeout_ - (now - this.startTime_), 0);\n clearTimeout(this.timeoutId_);\n this.timeoutId_ = setTimeout(this.handleWheelZoom_.bind(this, map), timeLeft);\n return false;\n };\n /**\n * @private\n * @param {import(\"../PluggableMap.js\").default} map Map.\n */\n MouseWheelZoom.prototype.handleWheelZoom_ = function (map) {\n var view = map.getView();\n if (view.getAnimating()) {\n view.cancelAnimations();\n }\n var delta = -clamp(this.totalDelta_, -this.maxDelta_ * this.deltaPerZoom_, this.maxDelta_ * this.deltaPerZoom_) / this.deltaPerZoom_;\n if (view.getConstrainResolution() || this.constrainResolution_) {\n // view has a zoom constraint, zoom by 1\n delta = delta ? (delta > 0 ? 1 : -1) : 0;\n }\n zoomByDelta(view, delta, this.lastAnchor_, this.duration_);\n this.mode_ = undefined;\n this.totalDelta_ = 0;\n this.lastAnchor_ = null;\n this.startTime_ = undefined;\n this.timeoutId_ = undefined;\n };\n /**\n * Enable or disable using the mouse's location as an anchor when zooming\n * @param {boolean} useAnchor true to zoom to the mouse's location, false\n * to zoom to the center of the map\n * @api\n */\n MouseWheelZoom.prototype.setMouseAnchor = function (useAnchor) {\n this.useAnchor_ = useAnchor;\n if (!useAnchor) {\n this.lastAnchor_ = null;\n }\n };\n return MouseWheelZoom;\n}(Interaction));\nexport default MouseWheelZoom;\n//# sourceMappingURL=MouseWheelZoom.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/interaction/PinchRotate\n */\nimport PointerInteraction, { centroid as centroidFromPointers, } from './Pointer.js';\nimport { FALSE } from '../functions.js';\nimport { disable } from '../rotationconstraint.js';\n/**\n * @typedef {Object} Options\n * @property {number} [duration=250] The duration of the animation in\n * milliseconds.\n * @property {number} [threshold=0.3] Minimal angle in radians to start a rotation.\n */\n/**\n * @classdesc\n * Allows the user to rotate the map by twisting with two fingers\n * on a touch screen.\n * @api\n */\nvar PinchRotate = /** @class */ (function (_super) {\n __extends(PinchRotate, _super);\n /**\n * @param {Options} [opt_options] Options.\n */\n function PinchRotate(opt_options) {\n var _this = this;\n var options = opt_options ? opt_options : {};\n var pointerOptions = /** @type {import(\"./Pointer.js\").Options} */ (options);\n if (!pointerOptions.stopDown) {\n pointerOptions.stopDown = FALSE;\n }\n _this = _super.call(this, pointerOptions) || this;\n /**\n * @private\n * @type {import(\"../coordinate.js\").Coordinate}\n */\n _this.anchor_ = null;\n /**\n * @private\n * @type {number|undefined}\n */\n _this.lastAngle_ = undefined;\n /**\n * @private\n * @type {boolean}\n */\n _this.rotating_ = false;\n /**\n * @private\n * @type {number}\n */\n _this.rotationDelta_ = 0.0;\n /**\n * @private\n * @type {number}\n */\n _this.threshold_ = options.threshold !== undefined ? options.threshold : 0.3;\n /**\n * @private\n * @type {number}\n */\n _this.duration_ = options.duration !== undefined ? options.duration : 250;\n return _this;\n }\n /**\n * Handle pointer drag events.\n * @param {import(\"../MapBrowserEvent.js\").default} mapBrowserEvent Event.\n */\n PinchRotate.prototype.handleDragEvent = function (mapBrowserEvent) {\n var rotationDelta = 0.0;\n var touch0 = this.targetPointers[0];\n var touch1 = this.targetPointers[1];\n // angle between touches\n var angle = Math.atan2(touch1.clientY - touch0.clientY, touch1.clientX - touch0.clientX);\n if (this.lastAngle_ !== undefined) {\n var delta = angle - this.lastAngle_;\n this.rotationDelta_ += delta;\n if (!this.rotating_ && Math.abs(this.rotationDelta_) > this.threshold_) {\n this.rotating_ = true;\n }\n rotationDelta = delta;\n }\n this.lastAngle_ = angle;\n var map = mapBrowserEvent.map;\n var view = map.getView();\n if (view.getConstraints().rotation === disable) {\n return;\n }\n // rotate anchor point.\n // FIXME: should be the intersection point between the lines:\n // touch0,touch1 and previousTouch0,previousTouch1\n var viewportPosition = map.getViewport().getBoundingClientRect();\n var centroid = centroidFromPointers(this.targetPointers);\n centroid[0] -= viewportPosition.left;\n centroid[1] -= viewportPosition.top;\n this.anchor_ = map.getCoordinateFromPixelInternal(centroid);\n // rotate\n if (this.rotating_) {\n map.render();\n view.adjustRotationInternal(rotationDelta, this.anchor_);\n }\n };\n /**\n * Handle pointer up events.\n * @param {import(\"../MapBrowserEvent.js\").default} mapBrowserEvent Event.\n * @return {boolean} If the event was consumed.\n */\n PinchRotate.prototype.handleUpEvent = function (mapBrowserEvent) {\n if (this.targetPointers.length < 2) {\n var map = mapBrowserEvent.map;\n var view = map.getView();\n view.endInteraction(this.duration_);\n return false;\n }\n else {\n return true;\n }\n };\n /**\n * Handle pointer down events.\n * @param {import(\"../MapBrowserEvent.js\").default} mapBrowserEvent Event.\n * @return {boolean} If the event was consumed.\n */\n PinchRotate.prototype.handleDownEvent = function (mapBrowserEvent) {\n if (this.targetPointers.length >= 2) {\n var map = mapBrowserEvent.map;\n this.anchor_ = null;\n this.lastAngle_ = undefined;\n this.rotating_ = false;\n this.rotationDelta_ = 0.0;\n if (!this.handlingDownUpSequence) {\n map.getView().beginInteraction();\n }\n return true;\n }\n else {\n return false;\n }\n };\n return PinchRotate;\n}(PointerInteraction));\nexport default PinchRotate;\n//# sourceMappingURL=PinchRotate.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/interaction/PinchZoom\n */\nimport PointerInteraction, { centroid as centroidFromPointers, } from './Pointer.js';\nimport { FALSE } from '../functions.js';\n/**\n * @typedef {Object} Options\n * @property {number} [duration=400] Animation duration in milliseconds.\n */\n/**\n * @classdesc\n * Allows the user to zoom the map by pinching with two fingers\n * on a touch screen.\n * @api\n */\nvar PinchZoom = /** @class */ (function (_super) {\n __extends(PinchZoom, _super);\n /**\n * @param {Options} [opt_options] Options.\n */\n function PinchZoom(opt_options) {\n var _this = this;\n var options = opt_options ? opt_options : {};\n var pointerOptions = /** @type {import(\"./Pointer.js\").Options} */ (options);\n if (!pointerOptions.stopDown) {\n pointerOptions.stopDown = FALSE;\n }\n _this = _super.call(this, pointerOptions) || this;\n /**\n * @private\n * @type {import(\"../coordinate.js\").Coordinate}\n */\n _this.anchor_ = null;\n /**\n * @private\n * @type {number}\n */\n _this.duration_ = options.duration !== undefined ? options.duration : 400;\n /**\n * @private\n * @type {number|undefined}\n */\n _this.lastDistance_ = undefined;\n /**\n * @private\n * @type {number}\n */\n _this.lastScaleDelta_ = 1;\n return _this;\n }\n /**\n * Handle pointer drag events.\n * @param {import(\"../MapBrowserEvent.js\").default} mapBrowserEvent Event.\n */\n PinchZoom.prototype.handleDragEvent = function (mapBrowserEvent) {\n var scaleDelta = 1.0;\n var touch0 = this.targetPointers[0];\n var touch1 = this.targetPointers[1];\n var dx = touch0.clientX - touch1.clientX;\n var dy = touch0.clientY - touch1.clientY;\n // distance between touches\n var distance = Math.sqrt(dx * dx + dy * dy);\n if (this.lastDistance_ !== undefined) {\n scaleDelta = this.lastDistance_ / distance;\n }\n this.lastDistance_ = distance;\n var map = mapBrowserEvent.map;\n var view = map.getView();\n if (scaleDelta != 1.0) {\n this.lastScaleDelta_ = scaleDelta;\n }\n // scale anchor point.\n var viewportPosition = map.getViewport().getBoundingClientRect();\n var centroid = centroidFromPointers(this.targetPointers);\n centroid[0] -= viewportPosition.left;\n centroid[1] -= viewportPosition.top;\n this.anchor_ = map.getCoordinateFromPixelInternal(centroid);\n // scale, bypass the resolution constraint\n map.render();\n view.adjustResolutionInternal(scaleDelta, this.anchor_);\n };\n /**\n * Handle pointer up events.\n * @param {import(\"../MapBrowserEvent.js\").default} mapBrowserEvent Event.\n * @return {boolean} If the event was consumed.\n */\n PinchZoom.prototype.handleUpEvent = function (mapBrowserEvent) {\n if (this.targetPointers.length < 2) {\n var map = mapBrowserEvent.map;\n var view = map.getView();\n var direction = this.lastScaleDelta_ > 1 ? 1 : -1;\n view.endInteraction(this.duration_, direction);\n return false;\n }\n else {\n return true;\n }\n };\n /**\n * Handle pointer down events.\n * @param {import(\"../MapBrowserEvent.js\").default} mapBrowserEvent Event.\n * @return {boolean} If the event was consumed.\n */\n PinchZoom.prototype.handleDownEvent = function (mapBrowserEvent) {\n if (this.targetPointers.length >= 2) {\n var map = mapBrowserEvent.map;\n this.anchor_ = null;\n this.lastDistance_ = undefined;\n this.lastScaleDelta_ = 1;\n if (!this.handlingDownUpSequence) {\n map.getView().beginInteraction();\n }\n return true;\n }\n else {\n return false;\n }\n };\n return PinchZoom;\n}(PointerInteraction));\nexport default PinchZoom;\n//# sourceMappingURL=PinchZoom.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/Map\n */\nimport CompositeMapRenderer from './renderer/Composite.js';\nimport PluggableMap from './PluggableMap.js';\nimport { assign } from './obj.js';\nimport { defaults as defaultControls } from './control.js';\nimport { defaults as defaultInteractions } from './interaction.js';\n/**\n * @classdesc\n * The map is the core component of OpenLayers. For a map to render, a view,\n * one or more layers, and a target container are needed:\n *\n * import Map from 'ol/Map';\n * import View from 'ol/View';\n * import TileLayer from 'ol/layer/Tile';\n * import OSM from 'ol/source/OSM';\n *\n * var map = new Map({\n * view: new View({\n * center: [0, 0],\n * zoom: 1\n * }),\n * layers: [\n * new TileLayer({\n * source: new OSM()\n * })\n * ],\n * target: 'map'\n * });\n *\n * The above snippet creates a map using a {@link module:ol/layer/Tile} to\n * display {@link module:ol/source/OSM~OSM} OSM data and render it to a DOM\n * element with the id `map`.\n *\n * The constructor places a viewport container (with CSS class name\n * `ol-viewport`) in the target element (see `getViewport()`), and then two\n * further elements within the viewport: one with CSS class name\n * `ol-overlaycontainer-stopevent` for controls and some overlays, and one with\n * CSS class name `ol-overlaycontainer` for other overlays (see the `stopEvent`\n * option of {@link module:ol/Overlay~Overlay} for the difference). The map\n * itself is placed in a further element within the viewport.\n *\n * Layers are stored as a {@link module:ol/Collection~Collection} in\n * layerGroups. A top-level group is provided by the library. This is what is\n * accessed by `getLayerGroup` and `setLayerGroup`. Layers entered in the\n * options are added to this group, and `addLayer` and `removeLayer` change the\n * layer collection in the group. `getLayers` is a convenience function for\n * `getLayerGroup().getLayers()`. Note that {@link module:ol/layer/Group~Group}\n * is a subclass of {@link module:ol/layer/Base}, so layers entered in the\n * options or added with `addLayer` can be groups, which can contain further\n * groups, and so on.\n *\n * @api\n */\nvar Map = /** @class */ (function (_super) {\n __extends(Map, _super);\n /**\n * @param {import(\"./PluggableMap.js\").MapOptions} options Map options.\n */\n function Map(options) {\n var _this = this;\n options = assign({}, options);\n if (!options.controls) {\n options.controls = defaultControls();\n }\n if (!options.interactions) {\n options.interactions = defaultInteractions({\n onFocusOnly: true,\n });\n }\n _this = _super.call(this, options) || this;\n return _this;\n }\n Map.prototype.createRenderer = function () {\n return new CompositeMapRenderer(this);\n };\n return Map;\n}(PluggableMap));\nexport default Map;\n//# sourceMappingURL=Map.js.map","/**\n * @module ol/control\n */\nimport Attribution from './control/Attribution.js';\nimport Collection from './Collection.js';\nimport Rotate from './control/Rotate.js';\nimport Zoom from './control/Zoom.js';\nexport { default as Attribution } from './control/Attribution.js';\nexport { default as Control } from './control/Control.js';\nexport { default as FullScreen } from './control/FullScreen.js';\nexport { default as MousePosition } from './control/MousePosition.js';\nexport { default as OverviewMap } from './control/OverviewMap.js';\nexport { default as Rotate } from './control/Rotate.js';\nexport { default as ScaleLine } from './control/ScaleLine.js';\nexport { default as Zoom } from './control/Zoom.js';\nexport { default as ZoomSlider } from './control/ZoomSlider.js';\nexport { default as ZoomToExtent } from './control/ZoomToExtent.js';\n/**\n * @typedef {Object} DefaultsOptions\n * @property {boolean} [attribution=true] Include\n * {@link module:ol/control/Attribution~Attribution}.\n * @property {import(\"./control/Attribution.js\").Options} [attributionOptions]\n * Options for {@link module:ol/control/Attribution~Attribution}.\n * @property {boolean} [rotate=true] Include\n * {@link module:ol/control/Rotate~Rotate}.\n * @property {import(\"./control/Rotate.js\").Options} [rotateOptions] Options\n * for {@link module:ol/control/Rotate~Rotate}.\n * @property {boolean} [zoom] Include {@link module:ol/control/Zoom~Zoom}.\n * @property {import(\"./control/Zoom.js\").Options} [zoomOptions] Options for\n * {@link module:ol/control/Zoom~Zoom}.\n * @api\n */\n/**\n * Set of controls included in maps by default. Unless configured otherwise,\n * this returns a collection containing an instance of each of the following\n * controls:\n * * {@link module:ol/control/Zoom~Zoom}\n * * {@link module:ol/control/Rotate~Rotate}\n * * {@link module:ol/control/Attribution~Attribution}\n *\n * @param {DefaultsOptions} [opt_options]\n * Defaults options.\n * @return {Collection<import(\"./control/Control.js\").default>}\n * Controls.\n * @api\n */\nexport function defaults(opt_options) {\n var options = opt_options ? opt_options : {};\n var controls = new Collection();\n var zoomControl = options.zoom !== undefined ? options.zoom : true;\n if (zoomControl) {\n controls.push(new Zoom(options.zoomOptions));\n }\n var rotateControl = options.rotate !== undefined ? options.rotate : true;\n if (rotateControl) {\n controls.push(new Rotate(options.rotateOptions));\n }\n var attributionControl = options.attribution !== undefined ? options.attribution : true;\n if (attributionControl) {\n controls.push(new Attribution(options.attributionOptions));\n }\n return controls;\n}\n//# sourceMappingURL=control.js.map","/**\n * @module ol/interaction\n */\nimport Collection from './Collection.js';\nimport DoubleClickZoom from './interaction/DoubleClickZoom.js';\nimport DragPan from './interaction/DragPan.js';\nimport DragRotate from './interaction/DragRotate.js';\nimport DragZoom from './interaction/DragZoom.js';\nimport KeyboardPan from './interaction/KeyboardPan.js';\nimport KeyboardZoom from './interaction/KeyboardZoom.js';\nimport Kinetic from './Kinetic.js';\nimport MouseWheelZoom from './interaction/MouseWheelZoom.js';\nimport PinchRotate from './interaction/PinchRotate.js';\nimport PinchZoom from './interaction/PinchZoom.js';\nexport { default as DoubleClickZoom } from './interaction/DoubleClickZoom.js';\nexport { default as DragAndDrop } from './interaction/DragAndDrop.js';\nexport { default as DragBox } from './interaction/DragBox.js';\nexport { default as DragPan } from './interaction/DragPan.js';\nexport { default as DragRotate } from './interaction/DragRotate.js';\nexport { default as DragRotateAndZoom } from './interaction/DragRotateAndZoom.js';\nexport { default as DragZoom } from './interaction/DragZoom.js';\nexport { default as Draw } from './interaction/Draw.js';\nexport { default as Extent } from './interaction/Extent.js';\nexport { default as Interaction } from './interaction/Interaction.js';\nexport { default as KeyboardPan } from './interaction/KeyboardPan.js';\nexport { default as KeyboardZoom } from './interaction/KeyboardZoom.js';\nexport { default as Modify } from './interaction/Modify.js';\nexport { default as MouseWheelZoom } from './interaction/MouseWheelZoom.js';\nexport { default as PinchRotate } from './interaction/PinchRotate.js';\nexport { default as PinchZoom } from './interaction/PinchZoom.js';\nexport { default as Pointer } from './interaction/Pointer.js';\nexport { default as Select } from './interaction/Select.js';\nexport { default as Snap } from './interaction/Snap.js';\nexport { default as Translate } from './interaction/Translate.js';\n/**\n * @typedef {Object} DefaultsOptions\n * @property {boolean} [altShiftDragRotate=true] Whether Alt-Shift-drag rotate is\n * desired.\n * @property {boolean} [onFocusOnly=false] Interact only when the map has the\n * focus. This affects the `MouseWheelZoom` and `DragPan` interactions and is\n * useful when page scroll is desired for maps that do not have the browser's\n * focus.\n * @property {boolean} [doubleClickZoom=true] Whether double click zoom is\n * desired.\n * @property {boolean} [keyboard=true] Whether keyboard interaction is desired.\n * @property {boolean} [mouseWheelZoom=true] Whether mousewheel zoom is desired.\n * @property {boolean} [shiftDragZoom=true] Whether Shift-drag zoom is desired.\n * @property {boolean} [dragPan=true] Whether drag pan is desired.\n * @property {boolean} [pinchRotate=true] Whether pinch rotate is desired.\n * @property {boolean} [pinchZoom=true] Whether pinch zoom is desired.\n * @property {number} [zoomDelta] Zoom level delta when using keyboard or double click zoom.\n * @property {number} [zoomDuration] Duration of the zoom animation in\n * milliseconds.\n */\n/**\n * Set of interactions included in maps by default. Specific interactions can be\n * excluded by setting the appropriate option to false in the constructor\n * options, but the order of the interactions is fixed. If you want to specify\n * a different order for interactions, you will need to create your own\n * {@link module:ol/interaction/Interaction} instances and insert\n * them into a {@link module:ol/Collection} in the order you want\n * before creating your {@link module:ol/Map~Map} instance. Changing the order can\n * be of interest if the event propagation needs to be stopped at a point.\n * The default set of interactions, in sequence, is:\n * * {@link module:ol/interaction/DragRotate~DragRotate}\n * * {@link module:ol/interaction/DoubleClickZoom~DoubleClickZoom}\n * * {@link module:ol/interaction/DragPan~DragPan}\n * * {@link module:ol/interaction/PinchRotate~PinchRotate}\n * * {@link module:ol/interaction/PinchZoom~PinchZoom}\n * * {@link module:ol/interaction/KeyboardPan~KeyboardPan}\n * * {@link module:ol/interaction/KeyboardZoom~KeyboardZoom}\n * * {@link module:ol/interaction/MouseWheelZoom~MouseWheelZoom}\n * * {@link module:ol/interaction/DragZoom~DragZoom}\n *\n * @param {DefaultsOptions} [opt_options] Defaults options.\n * @return {import(\"./Collection.js\").default<import(\"./interaction/Interaction.js\").default>}\n * A collection of interactions to be used with the {@link module:ol/Map~Map}\n * constructor's `interactions` option.\n * @api\n */\nexport function defaults(opt_options) {\n var options = opt_options ? opt_options : {};\n var interactions = new Collection();\n var kinetic = new Kinetic(-0.005, 0.05, 100);\n var altShiftDragRotate = options.altShiftDragRotate !== undefined\n ? options.altShiftDragRotate\n : true;\n if (altShiftDragRotate) {\n interactions.push(new DragRotate());\n }\n var doubleClickZoom = options.doubleClickZoom !== undefined ? options.doubleClickZoom : true;\n if (doubleClickZoom) {\n interactions.push(new DoubleClickZoom({\n delta: options.zoomDelta,\n duration: options.zoomDuration,\n }));\n }\n var dragPan = options.dragPan !== undefined ? options.dragPan : true;\n if (dragPan) {\n interactions.push(new DragPan({\n onFocusOnly: options.onFocusOnly,\n kinetic: kinetic,\n }));\n }\n var pinchRotate = options.pinchRotate !== undefined ? options.pinchRotate : true;\n if (pinchRotate) {\n interactions.push(new PinchRotate());\n }\n var pinchZoom = options.pinchZoom !== undefined ? options.pinchZoom : true;\n if (pinchZoom) {\n interactions.push(new PinchZoom({\n duration: options.zoomDuration,\n }));\n }\n var keyboard = options.keyboard !== undefined ? options.keyboard : true;\n if (keyboard) {\n interactions.push(new KeyboardPan());\n interactions.push(new KeyboardZoom({\n delta: options.zoomDelta,\n duration: options.zoomDuration,\n }));\n }\n var mouseWheelZoom = options.mouseWheelZoom !== undefined ? options.mouseWheelZoom : true;\n if (mouseWheelZoom) {\n interactions.push(new MouseWheelZoom({\n onFocusOnly: options.onFocusOnly,\n duration: options.zoomDuration,\n }));\n }\n var shiftDragZoom = options.shiftDragZoom !== undefined ? options.shiftDragZoom : true;\n if (shiftDragZoom) {\n interactions.push(new DragZoom({\n duration: options.zoomDuration,\n }));\n }\n return interactions;\n}\n//# sourceMappingURL=interaction.js.map","import { Attribution, MousePosition, Zoom } from 'ol/control.js';\nimport { createStringXY } from 'ol/coordinate.js';\nimport { boundingExtent } from 'ol/extent.js';\nimport { LineString, LinearRing, MultiLineString, MultiPoint, MultiPolygon, Point, Polygon } from 'ol/geom.js';\nimport { Tile, Vector as VectorLayer } from 'ol/layer.js';\nimport { fromLonLat, get, transformExtent } from 'ol/proj.js';\nimport { OSM, Vector as VectorSource } from 'ol/source.js';\nimport { Circle, Fill, Stroke, Style, Text } from 'ol/style.js';\nimport { Feature, Map, View } from 'ol';\n\nconst ol = {\n control: {\n Attribution, MousePosition, Zoom\n },\n coordinate: {\n createStringXY\n },\n extent: {\n boundingExtent\n },\n geom: {\n LineString, LinearRing, MultiLineString, MultiPoint, MultiPolygon, Point, Polygon\n },\n layer: {\n Tile, Vector: VectorLayer\n },\n proj: {\n fromLonLat, get, transformExtent\n },\n source: {\n OSM, Vector: VectorSource\n },\n style: {\n Circle, Fill, Stroke, Style, Text\n },\n Feature, Map, View\n}\n\nexport default ol;"],"names":["root","factory","exports","module","define","amd","self","t","r","e","a","h","n","o","s","l","Math","log","f","exp","u","sqrt","max","floor","min","p","d","x","i","length","this","_maxEntries","_minEntries","ceil","clear","indexOf","children","minX","minY","maxX","maxY","leaf","m","c","height","pop","push","prototype","all","_all","data","search","toBBox","collides","load","insert","_build","slice","_splitRoot","_insert","remove","splice","_condense","compareMinX","compareMinY","toJSON","fromJSON","apply","pow","_chooseSubtree","_split","_adjustParentBBoxes","_chooseSplitAxis","_chooseSplitIndex","v","M","_allDistMargin","sort","__webpack_module_cache__","__webpack_require__","moduleId","cachedModule","undefined","__webpack_modules__","call","definition","key","Object","defineProperty","enumerable","get","obj","prop","hasOwnProperty","BaseEvent","type","propagationStopped","defaultPrevented","target","preventDefault","stopPropagation","Disposable","disposed","dispose","disposeInternal","numberSafeCompareFunction","b","linearFindNearest","arr","direction","reverseSubArray","begin","end","tmp","extension","Array","isArray","equals","arr1","arr2","len1","TRUE","VOID","assign","var_sources","TypeError","output","ii","arguments","source","object","property","getValues","values","extendStatics","__extends","setPrototypeOf","__proto__","String","__","constructor","create","_super","Target","opt_target","_this","eventTarget_","pendingRemovals_","dispatching_","listeners_","addEventListener","listener","listeners","listenersForType","dispatchEvent","event","evt","Event","propagate","dispatching","pendingRemovals","handleEvent","pr","removeEventListener","getListeners","hasListener","opt_type","keys","index","listen","opt_this","opt_once","bind","originalListener_1","eventsKey","listenOnce","unlistenByKey","Observable","on","once","un","revision_","changed","EventType","getRevision","onInternal","len","onceInternal","ol_key","unInternal","unByKey","Error","uidCounter_","getUid","ol_uid","ObjectEvent","oldValue","BaseObject","opt_values","values_","setProperties","value","getKeys","getProperties","hasProperties","notify","eventType","ObjectEventType","addChangeListener","removeChangeListener","set","opt_silent","applyProperties","unset","ua","navigator","userAgent","toLowerCase","FIREFOX","WEBKIT","DEVICE_PIXEL_RATIO","devicePixelRatio","WORKER_OFFSCREEN_CANVAS","WorkerGlobalScope","OffscreenCanvas","IMAGE_DECODE","Image","decode","PASSIVE_EVENT_LISTENERS","passive","options","window","error","createCanvasContext2D","opt_width","opt_height","opt_canvasPool","opt_Context2DSettings","canvas","shift","document","createElement","style","width","getContext","replaceNode","newNode","oldNode","parent","parentNode","replaceChild","removeNode","node","removeChild","Control","element","pointerEvents","target_","map_","listenerKeys","render","setTarget","getMap","setMap","map","getOverlayContainerStopEvent","appendChild","MapEventType","mapEvent","getElementById","CLASS_HIDDEN","CLASS_CONTROL","fontRegEx","RegExp","join","fontRegExMatchIndex","getFontParameters","fontSpec","match","lineHeight","size","weight","variant","families","family","split","cssOpacity","opacity","round","AssertionError","code","message","name","assertion","errorCode","cosh","y","log2","LOG2E","squaredSegmentDistance","x1","y1","x2","y2","dx","dy","angleInDegrees","PI","lerp","BaseLayer","properties","visible","zIndex","maxResolution","Infinity","minResolution","minZoom","maxZoom","className_","className","state_","getClassName","getLayerState","opt_managed","state","layer","managed","getZIndex","getOpacity","sourceState","getSourceState","getVisible","extent","getExtent","getMaxResolution","getMinResolution","getMinZoom","getMaxZoom","getLayersArray","opt_array","getLayerStatesArray","opt_states","setExtent","setMaxResolution","setMinResolution","setMaxZoom","setMinZoom","setOpacity","setVisible","setZIndex","zindex","inView","layerState","viewState","resolution","zoom","Layer","baseOptions","mapPrecomposeKey_","mapRenderKey_","sourceChangeKey_","renderer_","handleSourcePropertyChange_","setSource","array","states","getSource","getState","handleSourceChange_","getFeatures","pixel","Promise","resolve","frameState","layerRenderer","getRenderer","prepareFrame","renderFrame","layerStatesArray","some","arrayLayerState","createRenderer","hasRenderer","Base","Attribution","opt_options","ulElement_","collapsed_","collapsed","userCollapsed_","overrideCollapsible_","collapsible","collapsible_","tipLabel","expandClassName","collapseLabel","collapseClassName","collapseLabel_","textContent","label","label_","activeLabel","toggleButton_","setAttribute","title","handleClick_","cssClasses","renderedAttributions_","renderedVisible_","collectSourceAttributions_","lookup","visibleAttributions","attributionGetter","getAttributions","attributions","getAttributionsCollapsible","j","jj","setCollapsible","updateElement_","display","lastChild","removeChildren","innerHTML","handleToggle_","classList","toggle","getCollapsible","setCollapsed","getCollapsed","Units","RADIANS","DEGREES","FEET","METERS","PIXELS","TILE_PIXELS","USFEET","Projection","code_","units_","extent_","worldExtent_","worldExtent","axisOrientation_","axisOrientation","global_","global","canWrapX_","getPointResolutionFunc_","getPointResolution","defaultTileGrid_","metersPerUnit_","metersPerUnit","canWrapX","getCode","getUnits","getMetersPerUnit","getWorldExtent","getAxisOrientation","isGlobal","setGlobal","getDefaultTileGrid","setDefaultTileGrid","tileGrid","setWorldExtent","setGetPointResolution","func","getPointResolutionFunc","RADIUS","HALF_SIZE","EXTENT","WORLD_EXTENT","MAX_SAFE_Y","tan","EPSG3857Projection","units","point","PROJECTIONS","EPSG4326Projection","opt_axisOrientation","cache","transforms","destination","transformFn","sourceCode","destinationCode","boundingExtent","coordinates","extendCoordinate","buffer","opt_extent","clone","closestSquaredDistanceXY","containsCoordinate","coordinate","containsXY","containsExtent","extent1","extent2","coordinateRelationship","relationship","createOrUpdate","createOrUpdateEmpty","createOrUpdateFromFlatCoordinates","flatCoordinates","offset","stride","extendFlatCoordinates","extendXY","forEachCorner","callback","val","getBottomLeft","getBottomRight","getTopRight","getTopLeft","getArea","area","getHeight","getCenter","getCorner","corner","Corner","getForViewAndSize","center","rotation","cosRotation","cos","sinRotation","sin","xCos","xSin","yCos","ySin","x0","x3","y0","y3","getIntersection","intersection","intersects","getDistance","c1","c2","opt_radius","radius","lat1","lat2","deltaLatBy2","deltaLonBy2","atan2","cloneTransform","input","opt_output","opt_dimension","identityTransform","addProjection","projection","add","projectionLike","replace","opt_units","pointResolution","getter","toEPSG4326_1","getTransformFromProjections","vertices","addEquivalentProjections","projections","forEach","addProjections","createProjection","defaultCode","equivalent","projection1","projection2","equalUnits","sourceProjection","destinationProjection","transformFunc","transform","getTransform","transformExtent","opt_stops","xs","ys","_boundingExtentXYs","applyTransform","projections2","forwardTransform","inverseTransform","userProjection","getUserProjection","toUserCoordinate","fromUserCoordinate","destProjection","toUserResolution","dimension","atan","PROJECTION","COORDINATE_FORMAT","MousePosition","handleProjectionChanged_","coordinateFormat","setCoordinateFormat","setProjection","renderOnMouseOut","placeholder","undefinedHTML","placeholder_","renderOnMouseOut_","renderedHTML_","mapProjection_","transform_","getCoordinateFormat","getProjection","handleMouseMove","updateHTML_","getEventPixel","handleMouseOut","viewport","getViewport","format","html","getCoordinateFromPixelInternal","toString","easeIn","easeOut","inAndOut","linear","Zoom","delta","zoomInClassName","zoomOutClassName","zoomInLabel","zoomOutLabel","zoomInTipLabel","zoomOutTipLabel","inElement","createTextNode","outElement","duration_","duration","zoomByDelta_","view","getView","currentZoom","getZoom","newZoom","getConstrainedZoom","getAnimating","cancelAnimations","animate","easing","setZoom","coordinate1","coordinate2","rotate","angle","cosAngle","sinAngle","worldWidth","worldsAway","opt_sourceExtentWidth","projectionExtent","sourceExtentWidth","transformStringDiv","compose","dx1","dy1","sx","sy","dx2","dy2","makeInverse","mat","det","transformString","transform2D","opt_dest","dest","anchor","anchorX","anchorY","deltaX","deltaY","k","tmpTransform","Geometry","fn","lastResult","lastArgs","lastThis","called","extentRevision_","simplifiedGeometryMaxMinSquaredTolerance","simplifiedGeometryRevision","simplifyTransformedInternal","revision","squaredTolerance","opt_transform","getSimplifiedGeometry","nextArgs","simplifyTransformed","closestPointXY","closestPoint","minSquaredDistance","coord","getClosestPoint","opt_closestPoint","NaN","intersectsCoordinate","computeExtent","isNaN","returnOrUpdate","scale","opt_sy","opt_anchor","simplify","tolerance","getType","intersectsExtent","translate","sourceProj","inCoordinates","outCoordinates","pixelExtent","projectedExtent","SimpleGeometry","layout","getCoordinates","getFirstCoordinate","getFlatCoordinates","getLastCoordinate","getLayout","simplifiedGeometry","getSimplifiedGeometryInternal","getStride","setFlatCoordinates","getStrideForLayout","setCoordinates","opt_layout","setLayout","nesting","getLayoutForStride","assignClosest","offset1","offset2","maxSquaredDelta","squaredDelta","arrayMaxSquaredDelta","ends","assignClosestPoint","maxDelta","isRing","opt_tmpPoint","squaredDistance","tmpPoint","assignClosestArrayPoint","deflateCoordinates","deflateCoordinatesArray","coordinatess","opt_ends","douglasPeucker","simplifiedFlatCoordinates","simplifiedOffset","markers","stack","last","first","maxSquaredDistance","squaredDistance_1","snap","quantize","quantizeArray","simplifiedEnds","ret","inflateCoordinates","opt_coordinates","inflateCoordinatesArray","opt_coordinatess","inflateMultiCoordinatesArray","endss","opt_coordinatesss","coordinatesss","interpolatePoint","fraction","length_1","cumulativeLengths","haystack","needle","opt_comparator","mid","cmp","comparator","low","high","found","binarySearch","lineStringCoordinateAtM","extrapolate","lo","hi","m0","linearRingContainsExtent","linearRingContainsXY","wn","linearRingsContainsXY","intersectsLineString","coordinatesExtent","point1","point2","start","startRel","endRel","startX","startY","endX","endY","slope","intersectsSegment","intersectsLinearRingArray","intersectsLinearRing","lineStringLength","LineString","flatMidpoint_","flatMidpointRevision_","maxDelta_","maxDeltaRevision_","appendCoordinate","lineString","forEachSegment","getCoordinateAtM","opt_extrapolate","getCoordinateAt","getLength","getFlatMidpoint","linearRing","twiceArea","linearRings","LinearRing","MultiLineString","ends_","lineStrings","appendLineString","multiLineString","opt_interpolate","interpolate","lineStringsCoordinateAtM","getEnds","getLineString","getLineStrings","getFlatMidpoints","midpoints","douglasPeuckerArray","intersectsLineStringArray","Point","deflateCoordinate","MultiPoint","appendPoint","multiPoint","getPoint","getPoints","points","getInteriorPointOfArray","flatCenters","flatCentersOffset","intersections","rr","pointX","maxSegmentLength","segmentLength","abs","linearRingIsClockwise","edge","linearRingsAreOriented","opt_right","right","isClockwise","orientLinearRings","orientLinearRingsArray","Polygon","flatInteriorPointRevision_","flatInteriorPoint_","orientedRevision_","orientedFlatCoordinates_","appendLinearRing","polygon","getOrientedFlatCoordinates","getFlatInteriorPoint","flatCenter","getInteriorPoint","getLinearRingCount","getLinearRing","getLinearRings","fromExtent","MultiPolygon","opt_endss","endss_","flatInteriorPointsRevision_","flatInteriorPoints_","polygons","appendPolygon","newEndss","multiPolygon","multiArrayMaxSquaredDelta","assignClosestMultiArrayPoint","linearRingssContainsXY","linearRingss","getEndss","getFlatInteriorPoints","interiorPoints","getInteriorPointsOfMultiArray","getInteriorPoints","linearRingssAreOriented","simplifiedEndss","quantizeMultiArray","getPolygon","prevEnds","getPolygons","intersectsLinearRingMultiArray","deflateMultiCoordinatesArray","lastEnds","BaseTileLayer","preload","useInterimTilesOnError","setPreload","setUseInterimTilesOnError","getPreload","TileProperty","getUseInterimTilesOnError","LayerRenderer","boundHandleImageChange_","handleImageChange_","layer_","declutterExecutorGroup","loadedTileCallback","tiles","tile","tileCoord","createLoadedTileFinder","tileRange","forEachLoadedTile","forEachFeatureAtCoordinate","hitTolerance","matches","getDataAtPixel","getLayer","handleFontsChanged","renderIfReadyAndVisible","loadImage","image","imageState","RenderEvent","opt_inversePixelTransform","opt_frameState","opt_context","inversePixelTransform","context","CanvasLayerRenderer","container","renderedResolution","tempTransform","pixelTransform","containerReused","useContainer","layerClassName","firstElementChild","HTMLCanvasElement","position","left","transformOrigin","clipUnrotated","topLeft","topRight","bottomRight","bottomLeft","coordinateToPixelTransform","inverted","save","beginPath","moveTo","lineTo","clip","dispatchRenderEvent_","event_1","preRender","postRender","getRenderTransform","pixelRatio","offsetX","renderPixel","layerExtent","pixelToCoordinateTransform","newCanvas","newContext","clearRect","drawImage","getImageData","err","Uint8Array","TileRange","contains","containsTileRange","extend","getSize","getWidth","CanvasTileLayerRenderer","tileLayer","extentChanged","renderedExtent_","renderedPixelRatio","renderedProjection","renderedRevision","renderedTiles","newTiles_","tmpExtent","tmpTileRange_","isDrawableTile","tileState","getTile","z","setState","getInterimTile","layerIndex","viewResolution","viewCenter","tileSource","sourceRevision","getTileGridForProjection","getZForResolution","zDirection","tileResolution","getResolution","tilePixelRatio","getTilePixelRatio","canvasExtent","getTileRangeForExtentAndZ","tilesToDrawByZ","findLoadedTiles","tmpTileRange","uid","inTransition","getAlpha","time","childTileRange","getTileCoordChildTileRange","covered","forEachTileCoordParentTileRange","canvasScale","canvasTransform","getContextOptions","clips","clipZs","currentClip","zs","Number","getOpaque","reverse","currentZ","currentTilePixelSize","getTilePixelSize","currentScale","dx_1","dy_1","originTileCoord","getTileCoordForCoordAndZ","originTileExtent","getTileCoordExtent","origin_1","tileGutter","getGutterForProjection","tilesToDraw","tileCoordKey","xIndex","nextX","yIndex","nextY","w","transition","i_1","drawTileImage","restore","unshift","updateUsedTiles","usedTiles","manageTilePyramid","scheduleExpireCache","gutter","getTileImage","alpha","alphaChanged","globalAlpha","endTransition","getImage","canExpireCache","postRenderFunction","tileSourceKey","expireCache","postRenderFunctions","getKey","opt_tileCallback","wantedTiles","tileQueue","tileCount","isKeyQueued","enqueue","getTileCoordCenter","useTile","updateCacheSize","TileLayer","BaseTile","hasArea","toSize","opt_size","ImageStyle","opacity_","rotateWithView_","rotateWithView","rotation_","scale_","scaleArray_","displacement_","displacement","getScale","getRotation","getRotateWithView","getDisplacement","getScaleArray","getAnchor","getHitDetectionImage","getPixelRatio","getImageState","getImageSize","getOrigin","setRotateWithView","setRotation","setScale","listenImageChange","unlistenImageChange","HEX_COLOR_RE_","NAMED_COLOR_RE_","asString","color","fromString","cacheSize","g","exec","el","body","rgb","getComputedStyle","fromNamed","hasAlpha","parseInt","substr","normalize","fromStringInternal_","asArray","asColorLike","defaultFont","defaultFillStyle","defaultLineCap","defaultLineDash","defaultLineJoin","defaultStrokeStyle","defaultTextAlign","defaultTextBaseline","defaultPadding","checkedFonts","setSize","console","warn","measureFont","measureElement","measureContext","textHeights","registerFont","interval","referenceWidth","referenceFonts","text","isAvailable","fontStyle","fontWeight","fontFamily","available","referenceFont","measureTextWidth","check","done","fonts","font","clearInterval","setInterval","measureText","measureAndCacheTextWidth","RegularShape","canvas_","hitDetectionCanvas_","fill_","fill","origin_","points_","radius_","radius1","radius2_","radius2","angle_","stroke_","stroke","anchor_","size_","renderOptions_","getFill","getRadius","getRadius2","getAngle","getStroke","createHitDetectionCanvas_","renderOptions","draw_","calculateLineJoinSize_","lineJoin","strokeWidth","miterLimit","r1","r2","miterRatio","bevelAdd","aa","dd","innerMiterRatio","innerLength","createRenderOptions","strokeStyle","lineDash","lineDashOffset","getColor","getLineDash","getLineDashOffset","getLineJoin","getMiterLimit","maxRadius","createPath_","fillStyle","lineWidth","setLineDash","drawHitDetectionCanvas_","arc","startAngle","step","angle0","radiusC","closePath","CircleStyle","setRadius","Fill","color_","setColor","Stroke","lineCap_","lineCap","lineDash_","lineDashOffset_","lineJoin_","miterLimit_","width_","getLineCap","setLineCap","setLineDashOffset","setLineJoin","setMiterLimit","setWidth","Style","geometry_","geometryFunction_","defaultGeometryFunction","geometry","setGeometry","image_","renderer","hitDetectionRenderer_","hitDetectionRenderer","text_","zIndex_","getGeometry","getText","setRenderer","setHitDetectionRenderer","getHitDetectionRenderer","getGeometryFunction","setFill","setImage","setStroke","setText","feature","defaultStyles","createDefaultStyle","Circle","BaseVectorLayer","renderBuffer","updateWhileAnimating","updateWhileInteracting","declutter_","declutter","renderBuffer_","style_","styleFunction_","setStyle","updateWhileAnimating_","updateWhileInteracting_","getDeclutter","getRenderBuffer","getRenderOrder","getStyle","getStyleFunction","getUpdateWhileAnimating","getUpdateWhileInteracting","renderDeclutter","declutterTree","setRenderOrder","renderOrder","opt_style","styleFunction","styles_1","Instruction","BEGIN_GEOMETRY","BEGIN_PATH","CIRCLE","CLOSE_PATH","CUSTOM","DRAW_CHARS","DRAW_IMAGE","END_GEOMETRY","FILL","MOVE_TO_LINE_TO","SET_FILL_STYLE","SET_STROKE_STYLE","STROKE","fillInstruction","strokeInstruction","beginPathInstruction","closePathInstruction","VectorContext","drawCustom","drawGeometry","drawCircle","circleGeometry","drawFeature","drawGeometryCollection","geometryCollectionGeometry","drawLineString","lineStringGeometry","drawMultiLineString","multiLineStringGeometry","drawMultiPoint","multiPointGeometry","drawMultiPolygon","multiPolygonGeometry","drawPoint","pointGeometry","drawPolygon","polygonGeometry","drawText","setFillStrokeStyle","setImageStyle","imageStyle","opt_declutterImageWithText","setTextStyle","textStyle","CanvasBuilder","maxExtent","maxLineWidth","beginGeometryInstruction1_","beginGeometryInstruction2_","bufferedMaxExtent_","instructions","tmpCoordinate_","hitDetectionInstructions","applyPixelRatio","dashArray","dash","appendFlatPointCoordinates","getBufferedMaxExtent","tmpCoord","myEnd","appendFlatLineCoordinates","closed","skipFirst","lastRel","nextRel","lastXCoord","lastYCoord","nextCoord","skipped","drawCustomCoordinates_","builderEnds","builderEnd","beginGeometry","builderEndss","builderBegin","myEnds","endGeometry","finish","reverseHitDetectionInstructions","instruction","fillStyleColor","strokeStyleColor","strokeStyleLineCap","strokeStyleLineDash","strokeStyleLineDashOffset","strokeStyleLineJoin","strokeStyleWidth","strokeStyleMiterLimit","createFill","applyStroke","createStroke","updateFillStyle","currentFillStyle","updateStrokeStyle","currentStrokeStyle","currentLineCap","currentLineDash","currentLineDashOffset","currentLineJoin","currentLineWidth","currentMiterLimit","endGeometryInstruction","CanvasImageBuilder","hitDetectionImage_","imagePixelRatio_","anchorX_","anchorY_","height_","originX_","originY_","declutterImageWithText_","myBegin","opt_sharedData","hitDetectionImage","origin","CanvasLineStringBuilder","drawFlatCoordinates_","moveToLineToInstruction","lastStroke","CanvasPolygonBuilder","drawFlatCoordinatess_","numEnds","setFillStrokeStyles_","circleInstruction","matchingChunk","maxAngle","m12","m23","x12","y12","x23","y23","chunkStart","chunkEnd","chunkM","acos","TEXT_ALIGN","CanvasTextBuilder","labels_","textOffsetX_","textOffsetY_","textRotateWithView_","textRotation_","textFillState_","fillStates","textStrokeState_","strokeStates","textState_","textStates","textKey_","fillKey_","strokeKey_","fillState","strokeState","textState","geometryType","placement","geometryWidths","overflow","beg_1","filter","keep","saveTextStates_","backgroundFill","backgroundStroke","padding","p0","p1","p2","p3","pixelRatio_1","textAlign","flatOffset","flatEnd","oo","range","drawChars_","strokeKey","textKey","textBaseline","fillKey","baseline","offsetY","textFillStyle","textStrokeStyle","getFont","textScale","getOverflow","getMaxAngle","getPlacement","getTextAlign","getTextBaseline","getBackgroundFill","getBackgroundStroke","getPadding","textOffsetX","getOffsetX","textOffsetY","getOffsetY","textRotateWithView","textRotation","BATCH_CONSTRUCTORS","PolygonBuilder","Builder","ImageBuilder","LineStringBuilder","BuilderGroup","tolerance_","maxExtent_","pixelRatio_","resolution_","buildersByZIndex_","builderInstructions","zKey","builders","builderKey","builderInstruction","getBuilder","builderType","zIndexKey","replays","replay","Constructor","drawTextOnPath","startM","segmentM","advance","beginX","beginY","startOffset","startLength","endM","flat","previousAngle","result","singleSegment","iStart","charLength","chars","substring","p4","getDeclutterBox","replayImageOrLabelArgs","declutterBox","rtlRegEx","fromCharCode","horizontalTextAlign","align","test","Executor","overlaps","alignFill_","coordinateCache_","renderedTransform_","pixelCoordinates_","viewRotation_","widths_","createLabel","lines","numLines","widths","currentWidth","measureTextWidths","metrics","actualBoundingBoxAscent","actualBoundingBoxDescent","minHeight","maxHeight","border","offsetHeight","measureTextHeight","renderWidth","contextInstructions","OffscreenCanvasRenderingContext2D","CanvasRenderingContext2D","leftRight","replayTextBackground_","setStrokeStyle_","calculateImageOrLabelDimensions_","sheetWidth","sheetHeight","centerX","centerY","originX","originY","snapToPixel","fillStroke","boxW","boxH","boxX","boxY","drawImageX","drawImageY","drawImageW","drawImageH","replayImageOrLabel_","contextScale","imageOrLabel","dimensions","box","strokePadding","labelOrImage","setTransform","executeLabelInstructions","drawImageOrLabel","repeatSize","drawLabelWithPointPlacement_","execute_","opt_featureCallback","opt_hitExtent","opt_declutterTree","pixelCoordinates","transform1","transform2","prevX","prevY","roundX","roundY","currentGeometry","pendingFill","pendingStroke","lastFillInstruction","lastStrokeInstruction","coordinateCache","viewRotation","viewRotationFromTransform","batchSize","coords","declutterImageWithText","labelWithAnchor","widthIndex","args","imageArgs","imageDeclutterBox","measurePixelRatio","pixelRatioScale","cachedWidths","pathLength","textLength","parts","drawChars","cc","part","ii_1","execute","executeHitDetection","ORDER","BuilderType","ExecutorGroup","allInstructions","opt_renderBuffer","overlaps_","executorsByZIndex_","hitDetectionContext_","hitDetectionTransform_","createExecutors_","flatClipCoords","getClipCoords","executors","instructionByZindex","hasExecutors","candidates","declutteredFeatures","contextSize","hitExtent","indexes","circlePixelIndexArrayCache","maxDistanceSq","distances","distanceSq","distance","pixelIndex","getPixelIndexArray","featureCallback","imageData","idx","result_1","executor","isEmpty","opt_builderTypes","builderTypes","CanvasImmediateRenderer","opt_squaredTolerance","opt_userTransform","context_","squaredTolerance_","userTransform_","contextFillState_","contextStrokeState_","contextTextState_","fillState_","strokeState_","imageAnchorX_","imageAnchorY_","imageHeight_","imageOpacity_","imageOriginX_","imageOriginY_","imageRotateWithView_","imageRotation_","imageScale_","imageWidth_","textScale_","tmpLocalTransform_","drawImages_","localTransform","drawText_","setContextFillState_","setContextStrokeState_","setContextTextState_","strokeText","fillText","moveToLineTo_","close","drawRings_","simpleGeometry","transformGeom2D","geometries","getGeometriesArray","flatMidpoint","geometryExtent","flatMidpoints","flatInteriorPoint","flatInteriorPoints","contextFillState","contextStrokeState","contextTextState","imageSize","imageAnchor","imageOrigin","textFillStyleColor","textStrokeStyleColor","textStrokeStyleLineCap","textStrokeStyleLineDash","textStrokeStyleLineDashOffset","textStrokeStyleLineJoin","textStrokeStyleWidth","textStrokeStyleMiterLimit","textFont","textText","textTextAlign","textTextBaseline","src","crossOrigin","shared","IconImageCache","cache_","cacheSize_","maxCacheSize_","expire","iconImage","maxCacheSize","ImageBase","listenImage","loadHandler","errorHandler","img","promise","listening_1","then","catch","ImageWrapper","imageLoadFunction","src_","unlisten_","imageLoadFunction_","handleImageError_","unlistenImage_","handleImageLoad_","taintedTestContext","IconImage","imageState_","tainted_","isTainted_","dispatchChangeEvent_","replaceColor_","fillRect","getSrc","ctx","globalCompositeOperation","imgData","putImageData","Icon","normalizedAnchor_","anchorOrigin_","anchorOrigin","IconOrigin","anchorXUnits_","anchorXUnits","IconAnchorUnits","anchorYUnits_","anchorYUnits","crossOrigin_","imgSize","iconImage_","offset_","offsetOrigin_","offsetOrigin","setAnchor","iconImageSize","HIT_DETECT_RESOLUTION","GEOMETRY_RENDERERS","builderGroup","opt_declutterBuilderGroup","imageReplay","textReplay","lineStringReplay","polygonReplay","replayGroup","geometryRenderer","circleReplay","defaultOrder","feature1","feature2","getTolerance","renderFeature","loading","renderGeometry","renderFeatureInternal","getGeometries","brokenDiagonalRendering_","CanvasVectorLayerRenderer","vectorLayer","boundHandleStyleImageChange_","handleStyleImageChange_","animatingOrInteracting_","dirty_","hitDetectionImageData_","renderedFeatures_","renderedRevision_","renderedResolution_","wrappedRenderedExtent_","renderedRotation_","renderedCenter_","renderedProjection_","renderedRenderOrder_","replayGroup_","replayGroupChanged","clipping","renderWorlds","executorGroup","vectorSource","viewHints","multiWorld","getWrapX","endWorld","world","makeScale","clipped","features","imageSmoothingEnabled","featureCount","indexFactor","featuresByZIndex","featureStyleFunction","styles","originalStyle","imgContext","byGeometryType","zIndexKeys","geomAndStyle","kk","createHitDetectionImageData","resultFeatures","hitDetect","lastIndexOf","executorGroups","item","animating","interacting","frameStateExtent","vectorLayerRevision","vectorLayerRenderBuffer","vectorLayerRenderOrder","renderedExtent","loadExtents","loadExtent","declutterBuilderGroup","userTransform","userExtent_1","loadFeatures","dirty","userExtent","getFeaturesInExtent","replayGroupInstructions","getOverlaps","VectorLayer","BaseVector","Tile","interimTile","transition_","transitionStarts_","release","refreshInterimChain","prev","getTileCoord","id","ImageTile","tileLoadFunction","tileLoadFunction_","naturalWidth","naturalHeight","Triangulation","targetProj","targetExtent","maxSourceExtent","errorThreshold","opt_destinationResolution","sourceProj_","targetProj_","transformInvCache","transformInv","transformInv_","maxSourceExtent_","errorThresholdSquared_","triangles_","wrapsXInSource_","canWrapXInSource_","sourceWorldWidth_","targetWorldWidth_","destinationTopLeft","destinationTopRight","destinationBottomRight","destinationBottomLeft","sourceTopLeft","sourceTopRight","sourceBottomRight","sourceBottomLeft","maxSubdivision","addQuad_","leftBound_1","triangle","newTriangle","addTriangle_","aSrc","bSrc","cSrc","dSrc","sourceQuadExtent","sourceCoverageX","sourceWorldWidth","wrapsX","needsSubdivision","isFinite","isNotFinite","centerSrc","bc","bcSrc","da","daSrc","ab","abSrc","cd","cdSrc","calculateSourceExtent","getTriangles","IMAGE_SMOOTHING_DISABLED","msImageSmoothingEnabled","drawTestTriangle","u1","v1","u2","v2","verifyBrokenDiagonalRendering","calculateSourceResolution","targetCenter","targetResolution","sourceCenter","sourceResolution","targetMetersPerUnit","sourceMetersPerUnit","sourceExtent","compensationFactor","ReprojTile","sourceTileGrid","targetTileGrid","wrappedTileCoord","getTileFunction","opt_errorThreshold","opt_renderEdges","opt_contextOptions","renderEdges_","contextOptions_","gutter_","sourceTileGrid_","targetTileGrid_","wrappedTileCoord_","sourceTiles_","sourcesListenerKeys_","sourceZ_","maxTargetExtent","limitedTargetExtent","sourceProjExtent","calculateSourceExtentResolution","errorThresholdInPixels","triangulation_","sourceRange","srcX","srcY","reproject_","sources","getTileSize","triangulation","pixelRound","sourceDataExtent","canvasWidthInUnits","canvasHeightInUnits","stitchContext","stitchScale","xPos","yPos","srcWidth","srcHeight","targetTopLeft","u0","v0","sourceNumericalShiftX","sourceNumericalShiftY","affineCoefs","maxRow","maxEl","absValue","coef","solveLinearSystem","isBrokenDiagonalRendering","ud","vd","steps","leftToLoad_1","sourceListenKey_1","unlistenSources_","setTimeout","LRUCache","opt_highWaterMark","highWaterMark","count_","entries_","oldest_","newest_","getCount","containsKey","entry","value_","key_","newer","older","peekLast","peekLastKey","peekFirstKey","opt_tileCoord","getKeyZXY","TileCache","pruneExceptNewestZ","adaptAttributions","attributionLike","Source","attributions_","attributionsCollapsible_","attributionsCollapsible","wrapX_","wrapX","viewResolver","viewRejector","viewPromise_","reject","getResolutions","refresh","setAttributions","tmpTileCoord","TileGrid","compare","zoomFactor","resolutions_","resolutions","every","currentVal","res","origins","zoomFactor_","origins_","tileSizes_","tileSizes","tileSize_","tileSize","fullTileRanges_","tmpSize_","tmpExtent_","sizes","restrictedTileRange","calculateTileRanges_","forEachTileCoord","opt_tileRange","tileCoordExtent","getTileRangeForTileCoordAndZ","tileCoordZ","tileCoordX","tileCoordY","factor","getTileRangeExtent","getTileCoordForXYAndZ_","getTileCoordForCoordAndResolution","getTileCoordForXYAndResolution_","reverseIntersectionPolicy","adjustX","adjustY","xFromOrigin","yFromOrigin","getTileCoordResolution","getFullTileRange","opt_direction","fullTileRanges","getForProjection","opt_maxZoom","opt_tileSize","opt_corner","resolutionsFromExtent","createForExtent","extentFromProjection","createForProjection","opt_maxResolution","half","TileSource","opaque_","opaque","tilePixelRatio_","tileCache","tmpSize","tileOptions","getTileCacheForProjection","loaded","setKey","getTileGrid","ratio","getTileCoordForTileUrlFunction","opt_projection","withinExtentAndZ","TileSourceEvent","createFromTemplate","template","zRegEx","xRegEx","yRegEx","dashYRegEx","UrlTile","generateTileUrlFunction_","tileUrlFunction","urls","setUrls","url","setUrl","tileLoadingKeys_","getTileLoadFunction","getTileUrlFunction","getPrototypeOf","getUrls","handleTileChange","setTileLoadFunction","setTileUrlFunction","startCharCode","charCodeAt","stopCharCode","charCode","stop_1","expandUrl","templates","tileUrlFunctions","createFromTileUrlFunctions","createFromTemplates","TileImage","defaultTileLoadFunction","tileClass","tileCacheForProjection","tileGridForProjection","reprojectionErrorThreshold_","reprojectionErrorThreshold","imageSmoothing","renderReprojectionEdges_","usedTileCache","getGutter","JSON","stringify","thisProj","projKey","createTile_","urlTileCoord","tileUrl","newTile","getTileInternal","setRenderReprojectionEdges","setTileGridForProjection","tilegrid","proj","imageTile","XYZ","xyzOptions","gridOptions","createXYZ","OSM","CollectionEvent","opt_element","opt_index","Collection","unique_","unique","array_","assertUnique_","updateLength_","getArray","insertAt","elem","CollectionEventType","removeAt","setAt","opt_except","RBush","opt_maxEntries","rbush_","items_","extents","items","update","getAll","getInExtent","bbox","forEach_","forEachInExtent","concat","rbush","xhr","success","failure","XMLHttpRequest","open","FormatType","responseType","withCredentials","onload","status","responseText","responseXML","DOMParser","parseFromString","readFeatures","featureProjection","readProjection","onerror","send","loadFeaturesXhr","dataProjection","addFeatures","VectorSourceEvent","opt_feature","opt_features","VectorSource","loader_","format_","url_","loader","strategy_","strategy","collection","useSpatialIndex","featuresRtree_","loadedExtentsRtree_","loadingExtentsCount_","nullGeometryFeatures_","idIndex_","uidIndex_","featureChangeKeys_","featuresCollection_","addFeaturesInternal","bindFeaturesCollection_","addFeature","addFeatureInternal","featureKey","addToIndex_","setupChangeEvents_","VectorEventType","handleFeatureChange_","valid","getId","newFeatures","geometryFeatures","length_2","length_3","modifyingCollection","removeFeature","opt_fast","featureId","removeFeatureInternal","clearEvent","forEachFeature","forEachFeatureAtCoordinateDirect","forEachFeatureInExtent","forEachFeatureIntersectingExtent","getFeaturesCollection","getFeaturesAtCoordinate","getClosestFeatureToCoordinate","opt_filter","closestFeature","previousMinSquaredDistance","minDistance","getFeatureById","getFeatureByUid","getFormat","getUrl","sid","removeFromIdIndex_","hasFeature","loadedExtentsRtree","extentsToLoad","_loop_1","extentToLoad","this_1","removeLoadedExtent","removed","setLoader","Text","font_","textAlign_","textBaseline_","maxAngle_","placement_","overflow_","offsetX_","offsetY_","backgroundFill_","backgroundStroke_","padding_","setOverflow","setFont","setMaxAngle","setOffsetX","setOffsetY","setPlacement","setTextAlign","setTextBaseline","setBackgroundFill","setBackgroundStroke","setPadding","Feature","opt_geometryOrProperties","id_","geometryName_","geometryChangeKey_","handleGeometryChanged_","setGeometryName","getGeometryName","handleGeometryChange_","setId","MapRenderer","dispatchRenderEvent","calculateMatrices2D","checkWrapped","thisArg","layerFilter","thisArg2","translatedCoordinate","offsets","layerStates","numLayers","callback_1","order","forEachLayerAtPixel","hasFeatureAtCoordinate","scheduleExpireIconCache","expireIconCache","CompositeMapRenderer","fontChangeListenerKey_","redrawText","element_","CLASS_UNSELECTABLE","insertBefore","firstChild","children_","declutterLayers","previousElement","oldChildren","childNodes","oldChild","newChild","replaceChildren","Map","LayerGroup","layers","layersListenerKeys_","listenerKeys_","handleLayersChanged_","setLayers","handleLayerChange_","getLayers","handleLayersAdd_","handleLayersRemove_","layersArray","collectionEvent","pos","ownLayerState","defaultZIndex","MapEvent","MapBrowserEvent","originalEvent","opt_dragging","pixel_","coordinate_","dragging","configurable","getCoordinateFromPixel","SINGLECLICK","CLICK","DBLCLICK","POINTERDRAG","POINTERMOVE","POINTERDOWN","POINTERUP","POINTEROVER","POINTEROUT","POINTERENTER","POINTERLEAVE","POINTERCANCEL","MapBrowserEventHandler","moveTolerance","clickTimeoutId_","emulateClicks_","dragging_","dragListenerKeys_","moveTolerance_","down_","activePointers_","trackedTouches_","pointerdownListenerKey_","handlePointerDown_","originalPointerMoveEvent_","relayedListenerKey_","relayEvent_","boundHandleTouchMove_","handleTouchMove_","emulateClick_","pointerEvent","newEvent","clearTimeout","updateActivePointers_","pointerId","handlePointerUp_","isMouseActionButton_","button","doc","getOwnerDocument","handlePointerMove_","getRootNode","isMoving_","cancelable","clientX","clientY","DROP","PriorityQueue","priorityFunction","keyFunction","priorityFunction_","keyFunction_","elements_","priorities_","queuedElements_","dequeue","elements","priorities","siftUp_","elementKey","priority","siftDown_","getLeftChildIndex_","getRightChildIndex_","getParentIndex_","heapify_","isQueued","count","startIndex","lIndex","rIndex","smallerChildIndex","parentIndex","reprioritize","TileQueue","tilePriorityFunction","tileChangeCallback","boundHandleTileChange_","tileChangeCallback_","tilesLoading_","tilesLoadingKeys_","added","getTilesLoading","tileKey","loadMoreTiles","maxTotalLoading","maxNewLoads","newLoads","createExtent","onlyCenter","smooth","opt_isMoving","opt_centerShift","viewWidth","viewHeight","shiftX","shiftY","none","getViewportClampedResolution","viewportSize","showFullExtent","xResolution","yResolution","getSmoothClampedResolution","createMinMaxResolution","opt_smooth","opt_maxExtent","opt_showFullExtent","cappedMaxRes","disable","View","hints_","animations_","updateAnimationKey_","projection_","viewportSize_","targetCenter_","targetResolution_","targetRotation_","nextCenter_","nextResolution_","nextRotation_","cancelAnchor_","applyOptions_","resolutionConstraintInfo","resolutionConstraint","smoothResolutionConstraint","projExtent","constrainOnlyCenter","constrainResolution","capped","createSnapToResolutions","defaultMaxResolution","defaultMinResolution","defaultMaxZoom","power","opt_minResolution","minZoomLevel","cappedZoomLevel","zoomLevel","createSnapToPower","constraint","createResolutionConstraint","maxResolution_","minResolution_","minZoom_","centerConstraint","smoothExtentConstraint","createCenterConstraint","rotationConstraint","enableRotation","constrainRotation","theta","createRotationConstraint","constraints_","setCenterInternal","setResolution","options_","oldPadding","newPadding","getUpdatedOptions_","newOptions","getCenterInternal","var_args","isDef","resolveConstraints","animateInternal","animationCount","Date","now","series","animation","complete","getResolutionForZoom","sourceRotation","targetRotation","isNoopAnimation","setHint","updateAnimations_","animationCallback","getInteracting","cancelAnimationFrame","more","seriesComplete","elapsed","progress","getViewportSize_","constrainedResolution","calculateCenterZoom","applyTargetState_","constrainedRotation","calculateCenterRotate","Boolean","requestAnimationFrame","currentCenter","currentResolution","opt_rotation","setViewportSize","ViewProperty","getConstraints","getConstrainResolution","getHints","opt_hints","calculateExtent","calculateExtentInternal","getViewportSizeMinusPadding_","getZoomForResolution","setConstrainResolution","enabled","getResolutionForExtent","getResolutionForExtentInternal","getResolutionForValueFunction","opt_power","getConstrainedResolution","getValueForResolutionFunction","logPower","reducedSize","calculateCenterOn","nextCenter","nextResolution","nextRotation","nearest","baseLevel","fit","geometryOrExtent","fitInternal","rotatedExtentForGeometry","minRotX","minRotY","maxRotX","maxRotY","rotX","rotY","rotatedExtent","centerRot","getConstrainedCenter","centerOn","centerOnInternal","calculateCenterShift","centerShift","shiftedCenter","adjustCenter","deltaCoordinates","setCenter","adjustCenterInternal","adjustResolution","adjustResolutionInternal","isMoving","newResolution","adjustZoom","adjustRotation","adjustRotationInternal","newRotation","hint","opt_doNotCancelAnims","opt_forceMoving","newCenter","opt_duration","opt_resolutionDirection","beginInteraction","endInteraction","endInteractionInternal","opt_targetResolution","targetZoom","targetRes","returnValue","PluggableMap","optionsInternal","keyboardEventTarget","controls","interactions","overlays","layerGroup","createOptionsInternal","boundHandleBrowserEvent_","handleBrowserEvent","maxTilesLoading_","maxTilesLoading","postRenderTimeoutHandle_","animationDelayKey_","animationDelay_","renderFrame_","coordinateToPixelTransform_","pixelToCoordinateTransform_","frameIndex_","frameState_","previousExtent_","viewPropertyListenerKey_","viewChangeListenerKey_","layerGroupPropertyListenerKeys_","viewport_","overlayContainer_","overlayContainerStopEvent_","mapBrowserEventHandler_","keyboardEventTarget_","keyHandlerKeys_","overlays_","overlayIdIndex_","handleResize_","postRenderFunctions_","tileQueue_","getTilePriority","handleTileChange_","MapProperty","handleLayerGroupChanged_","handleViewChanged_","handleSizeChanged_","handleTargetChanged_","viewOptions","setView","addOverlayInternal_","control","interaction","addControl","getControls","addInteraction","getInteractions","addLayer","getLayerGroup","addOverlay","overlay","getOverlays","forEachFeatureAtPixel","getFeaturesAtPixel","hasFeatureAtPixel","getEventCoordinate","getEventCoordinateInternal","viewportPosition","getBoundingClientRect","eventPosition","changedTouches","top","getTarget","getTargetElement","getOverlayById","group","getLoading","getPixelFromCoordinate","viewCoordinate","getPixelFromCoordinateInternal","getOverlayContainer","targetElement","ownerDocument","tileCenter","browserEvent","mapBrowserEvent","handleMapBrowserEvent","rootNode","documentElement","interactionsArray","getActive","handlePostRender","hints","lowOnFrameBudget","updateSize","handleViewPropertyChanged_","updateViewportSize_","isRendered","renderSync","removeControl","removeInteraction","removeLayer","removeOverlay","previousFrameState","nextExtent","setLayerGroup","computedStyle","offsetWidth","parseFloat","getClientRects","Rotate","compassClassName","callResetNorth_","resetNorth","autoHide_","autoHide","resetNorth_","zoomByDelta","Interaction","setActive","active","DoubleClickZoom","delta_","stopEvent","shiftKey","PointerInteraction","handleDownEvent","handleDragEvent","handleMoveEvent","handleUpEvent","stopDown","handlingDownUpSequence","trackedPointers_","targetPointers","getPointerCount","updateTrackedPointers_","handledUp","handled","isPointerDraggingEvent","conditions","pass","altShiftKeysOnly","altKey","metaKey","ctrlKey","focusWithTabindex","hasAttribute","activeElement","always","mouseActionButton","noModifierKeys","shiftKeyOnly","targetNotEditable","tagName","mouseOnly","pointerType","primaryAction","isPrimary","DragPan","kinetic_","kinetic","lastCentroid","lastPointersCount_","panning_","condition","condition_","onFocusOnly","noKinetic_","centroid","centerpx","Pointer","DragRotate","lastAngle_","RenderBox","startPixel_","endPixel_","render_","startPixel","endPixel","px","setPixels","createOrUpdateGeometry","DragBoxEvent","DragBox","box_","minArea_","minArea","onBoxEnd","boxEndCondition_","boxEndCondition","defaultBoxEndCondition","completeBox","DragZoom","out_","out","KeyboardPan","defaultCondition_","pixelDelta_","pixelDelta","keyEvent","keyCode","mapUnitsDelta","pan","KeyboardZoom","Kinetic","decay","minVelocity","delay","decay_","minVelocity_","delay_","initialVelocity_","lastIndex","firstIndex","Mode","MouseWheelZoom","totalDelta_","lastDelta_","timeout_","timeout","useAnchor_","useAnchor","constrainResolution_","lastAnchor_","startTime_","timeoutId_","mode_","trackpadEventGap_","trackpadTimeoutId_","deltaPerZoom_","endInteraction_","wheelEvent","deltaMode","WheelEvent","DOM_DELTA_PIXEL","DOM_DELTA_LINE","timeLeft","handleWheelZoom_","setMouseAnchor","PinchRotate","pointerOptions","rotating_","rotationDelta_","threshold_","threshold","rotationDelta","touch0","touch1","PinchZoom","lastDistance_","lastScaleDelta_","scaleDelta","zoomOptions","rotateOptions","attribution","attributionOptions","altShiftDragRotate","doubleClickZoom","zoomDelta","zoomDuration","dragPan","pinchRotate","pinchZoom","keyboard","mouseWheelZoom","shiftDragZoom","Composite","createStringXY","opt_fractionDigits","toFixed","toStringXY","geom","Vector","fromLonLat"],"sourceRoot":""} \ No newline at end of file
+{"version":3,"file":"OpenLayers.js","mappings":"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","sources":["webpack://ol/webpack/universalModuleDefinition","webpack://ol/./node_modules/rbush/rbush.min.js","webpack://ol/webpack/bootstrap","webpack://ol/webpack/runtime/define property getters","webpack://ol/webpack/runtime/hasOwnProperty shorthand","webpack://ol/./node_modules/ol/events/Event.js","webpack://ol/./node_modules/ol/ObjectEventType.js","webpack://ol/./node_modules/ol/Disposable.js","webpack://ol/./node_modules/ol/array.js","webpack://ol/./node_modules/ol/functions.js","webpack://ol/./node_modules/ol/obj.js","webpack://ol/./node_modules/ol/events/Target.js","webpack://ol/./node_modules/ol/events/EventType.js","webpack://ol/./node_modules/ol/events.js","webpack://ol/./node_modules/ol/Observable.js","webpack://ol/./node_modules/ol/util.js","webpack://ol/./node_modules/ol/Object.js","webpack://ol/./node_modules/ol/MapEventType.js","webpack://ol/./node_modules/ol/has.js","webpack://ol/./node_modules/ol/dom.js","webpack://ol/./node_modules/ol/control/Control.js","webpack://ol/./node_modules/ol/css.js","webpack://ol/./node_modules/ol/layer/Property.js","webpack://ol/./node_modules/ol/AssertionError.js","webpack://ol/./node_modules/ol/asserts.js","webpack://ol/./node_modules/ol/math.js","webpack://ol/./node_modules/ol/layer/Base.js","webpack://ol/./node_modules/ol/render/EventType.js","webpack://ol/./node_modules/ol/source/State.js","webpack://ol/./node_modules/ol/layer/Layer.js","webpack://ol/./node_modules/ol/control/Attribution.js","webpack://ol/./node_modules/ol/pointer/EventType.js","webpack://ol/./node_modules/ol/proj/Units.js","webpack://ol/./node_modules/ol/proj/Projection.js","webpack://ol/./node_modules/ol/proj/epsg3857.js","webpack://ol/./node_modules/ol/proj/epsg4326.js","webpack://ol/./node_modules/ol/proj/projections.js","webpack://ol/./node_modules/ol/proj/transforms.js","webpack://ol/./node_modules/ol/extent/Corner.js","webpack://ol/./node_modules/ol/extent.js","webpack://ol/./node_modules/ol/extent/Relationship.js","webpack://ol/./node_modules/ol/coordinate.js","webpack://ol/./node_modules/ol/sphere.js","webpack://ol/./node_modules/ol/proj.js","webpack://ol/./node_modules/ol/control/MousePosition.js","webpack://ol/./node_modules/ol/easing.js","webpack://ol/./node_modules/ol/control/Zoom.js","webpack://ol/./node_modules/ol/transform.js","webpack://ol/./node_modules/ol/geom/GeometryLayout.js","webpack://ol/./node_modules/ol/geom/GeometryType.js","webpack://ol/./node_modules/ol/geom/flat/transform.js","webpack://ol/./node_modules/ol/geom/Geometry.js","webpack://ol/./node_modules/ol/geom/SimpleGeometry.js","webpack://ol/./node_modules/ol/geom/flat/closest.js","webpack://ol/./node_modules/ol/geom/flat/deflate.js","webpack://ol/./node_modules/ol/geom/flat/simplify.js","webpack://ol/./node_modules/ol/geom/flat/segments.js","webpack://ol/./node_modules/ol/geom/flat/inflate.js","webpack://ol/./node_modules/ol/geom/flat/interpolate.js","webpack://ol/./node_modules/ol/geom/flat/contains.js","webpack://ol/./node_modules/ol/geom/flat/intersectsextent.js","webpack://ol/./node_modules/ol/geom/flat/length.js","webpack://ol/./node_modules/ol/geom/LineString.js","webpack://ol/./node_modules/ol/geom/flat/area.js","webpack://ol/./node_modules/ol/geom/LinearRing.js","webpack://ol/./node_modules/ol/geom/MultiLineString.js","webpack://ol/./node_modules/ol/geom/Point.js","webpack://ol/./node_modules/ol/geom/MultiPoint.js","webpack://ol/./node_modules/ol/geom/flat/interiorpoint.js","webpack://ol/./node_modules/ol/geom/flat/reverse.js","webpack://ol/./node_modules/ol/geom/flat/orient.js","webpack://ol/./node_modules/ol/geom/Polygon.js","webpack://ol/./node_modules/ol/geom/MultiPolygon.js","webpack://ol/./node_modules/ol/geom/flat/center.js","webpack://ol/./node_modules/ol/layer/TileProperty.js","webpack://ol/./node_modules/ol/layer/BaseTile.js","webpack://ol/./node_modules/ol/renderer/Layer.js","webpack://ol/./node_modules/ol/ImageState.js","webpack://ol/./node_modules/ol/render/Event.js","webpack://ol/./node_modules/ol/color.js","webpack://ol/./node_modules/ol/renderer/canvas/Layer.js","webpack://ol/./node_modules/ol/Tile.js","webpack://ol/./node_modules/ol/TileState.js","webpack://ol/./node_modules/ol/ImageBase.js","webpack://ol/./node_modules/ol/Image.js","webpack://ol/./node_modules/ol/reproj.js","webpack://ol/./node_modules/ol/ImageTile.js","webpack://ol/./node_modules/ol/reproj/Triangulation.js","webpack://ol/./node_modules/ol/renderer/canvas/common.js","webpack://ol/./node_modules/ol/reproj/Tile.js","webpack://ol/./node_modules/ol/reproj/common.js","webpack://ol/./node_modules/ol/TileRange.js","webpack://ol/./node_modules/ol/size.js","webpack://ol/./node_modules/ol/renderer/canvas/TileLayer.js","webpack://ol/./node_modules/ol/layer/Tile.js","webpack://ol/./node_modules/ol/style/Image.js","webpack://ol/./node_modules/ol/colorlike.js","webpack://ol/./node_modules/ol/render/canvas.js","webpack://ol/./node_modules/ol/style/RegularShape.js","webpack://ol/./node_modules/ol/style/Circle.js","webpack://ol/./node_modules/ol/style/Fill.js","webpack://ol/./node_modules/ol/style/Stroke.js","webpack://ol/./node_modules/ol/style/Style.js","webpack://ol/./node_modules/ol/layer/BaseVector.js","webpack://ol/./node_modules/ol/render/canvas/Instruction.js","webpack://ol/./node_modules/ol/render/VectorContext.js","webpack://ol/./node_modules/ol/render/canvas/Builder.js","webpack://ol/./node_modules/ol/render/canvas/ImageBuilder.js","webpack://ol/./node_modules/ol/render/canvas/LineStringBuilder.js","webpack://ol/./node_modules/ol/render/canvas/PolygonBuilder.js","webpack://ol/./node_modules/ol/geom/flat/straightchunk.js","webpack://ol/./node_modules/ol/render/canvas/TextBuilder.js","webpack://ol/./node_modules/ol/style/TextPlacement.js","webpack://ol/./node_modules/ol/render/canvas/BuilderGroup.js","webpack://ol/./node_modules/ol/render/canvas/BuilderType.js","webpack://ol/./node_modules/ol/geom/flat/textpath.js","webpack://ol/./node_modules/ol/render/canvas/Executor.js","webpack://ol/./node_modules/ol/render/canvas/ExecutorGroup.js","webpack://ol/./node_modules/ol/render/canvas/Immediate.js","webpack://ol/./node_modules/ol/style/IconAnchorUnits.js","webpack://ol/./node_modules/ol/style/IconOrigin.js","webpack://ol/./node_modules/ol/style/IconImageCache.js","webpack://ol/./node_modules/ol/style/IconImage.js","webpack://ol/./node_modules/ol/style/Icon.js","webpack://ol/./node_modules/ol/render/canvas/hitdetect.js","webpack://ol/./node_modules/ol/renderer/vector.js","webpack://ol/./node_modules/ol/renderer/canvas/VectorLayer.js","webpack://ol/./node_modules/ol/ViewHint.js","webpack://ol/./node_modules/ol/layer/Vector.js","webpack://ol/./node_modules/ol/structs/LRUCache.js","webpack://ol/./node_modules/ol/tilecoord.js","webpack://ol/./node_modules/ol/TileCache.js","webpack://ol/./node_modules/ol/source/Source.js","webpack://ol/./node_modules/ol/tilegrid/TileGrid.js","webpack://ol/./node_modules/ol/tilegrid/common.js","webpack://ol/./node_modules/ol/tilegrid.js","webpack://ol/./node_modules/ol/source/Tile.js","webpack://ol/./node_modules/ol/tileurlfunction.js","webpack://ol/./node_modules/ol/source/UrlTile.js","webpack://ol/./node_modules/ol/source/TileEventType.js","webpack://ol/./node_modules/ol/source/TileImage.js","webpack://ol/./node_modules/ol/source/XYZ.js","webpack://ol/./node_modules/ol/source/OSM.js","webpack://ol/./node_modules/ol/CollectionEventType.js","webpack://ol/./node_modules/ol/Collection.js","webpack://ol/./node_modules/ol/structs/RBush.js","webpack://ol/./node_modules/ol/source/VectorEventType.js","webpack://ol/./node_modules/ol/loadingstrategy.js","webpack://ol/./node_modules/ol/format/FormatType.js","webpack://ol/./node_modules/ol/featureloader.js","webpack://ol/./node_modules/ol/source/Vector.js","webpack://ol/./node_modules/ol/style/Text.js","webpack://ol/./node_modules/ol/Feature.js","webpack://ol/./node_modules/ol/renderer/Map.js","webpack://ol/./node_modules/ol/renderer/Composite.js","webpack://ol/./node_modules/ol/layer/Group.js","webpack://ol/./node_modules/ol/MapEvent.js","webpack://ol/./node_modules/ol/MapBrowserEvent.js","webpack://ol/./node_modules/ol/MapBrowserEventType.js","webpack://ol/./node_modules/ol/MapBrowserEventHandler.js","webpack://ol/./node_modules/ol/MapProperty.js","webpack://ol/./node_modules/ol/structs/PriorityQueue.js","webpack://ol/./node_modules/ol/TileQueue.js","webpack://ol/./node_modules/ol/ViewProperty.js","webpack://ol/./node_modules/ol/centerconstraint.js","webpack://ol/./node_modules/ol/resolutionconstraint.js","webpack://ol/./node_modules/ol/rotationconstraint.js","webpack://ol/./node_modules/ol/View.js","webpack://ol/./node_modules/ol/PluggableMap.js","webpack://ol/./node_modules/ol/control/Rotate.js","webpack://ol/./node_modules/ol/interaction/Property.js","webpack://ol/./node_modules/ol/interaction/Interaction.js","webpack://ol/./node_modules/ol/interaction/DoubleClickZoom.js","webpack://ol/./node_modules/ol/interaction/Pointer.js","webpack://ol/./node_modules/ol/events/condition.js","webpack://ol/./node_modules/ol/interaction/DragPan.js","webpack://ol/./node_modules/ol/interaction/DragRotate.js","webpack://ol/./node_modules/ol/render/Box.js","webpack://ol/./node_modules/ol/interaction/DragBox.js","webpack://ol/./node_modules/ol/interaction/DragZoom.js","webpack://ol/./node_modules/ol/interaction/KeyboardPan.js","webpack://ol/./node_modules/ol/events/KeyCode.js","webpack://ol/./node_modules/ol/interaction/KeyboardZoom.js","webpack://ol/./node_modules/ol/Kinetic.js","webpack://ol/./node_modules/ol/interaction/MouseWheelZoom.js","webpack://ol/./node_modules/ol/interaction/PinchRotate.js","webpack://ol/./node_modules/ol/interaction/PinchZoom.js","webpack://ol/./node_modules/ol/Map.js","webpack://ol/./node_modules/ol/control.js","webpack://ol/./node_modules/ol/interaction.js","webpack://ol/./js/src/ol.mjs"],"sourcesContent":["(function webpackUniversalModuleDefinition(root, factory) {\n\tif(typeof exports === 'object' && typeof module === 'object')\n\t\tmodule.exports = factory();\n\telse if(typeof define === 'function' && define.amd)\n\t\tdefine([], factory);\n\telse if(typeof exports === 'object')\n\t\texports[\"ol\"] = factory();\n\telse\n\t\troot[\"ol\"] = factory();\n})(self, function() {\nreturn ","!function(t,i){\"object\"==typeof exports&&\"undefined\"!=typeof module?module.exports=i():\"function\"==typeof define&&define.amd?define(i):(t=t||self).RBush=i()}(this,function(){\"use strict\";function t(t,r,e,a,h){!function t(n,r,e,a,h){for(;a>e;){if(a-e>600){var o=a-e+1,s=r-e+1,l=Math.log(o),f=.5*Math.exp(2*l/3),u=.5*Math.sqrt(l*f*(o-f)/o)*(s-o/2<0?-1:1),m=Math.max(e,Math.floor(r-s*f/o+u)),c=Math.min(a,Math.floor(r+(o-s)*f/o+u));t(n,r,m,c,h)}var p=n[r],d=e,x=a;for(i(n,e,r),h(n[a],p)>0&&i(n,e,a);d<x;){for(i(n,d,x),d++,x--;h(n[d],p)<0;)d++;for(;h(n[x],p)>0;)x--}0===h(n[e],p)?i(n,e,x):i(n,++x,a),x<=r&&(e=x+1),r<=x&&(a=x-1)}}(t,r,e||0,a||t.length-1,h||n)}function i(t,i,n){var r=t[i];t[i]=t[n],t[n]=r}function n(t,i){return t<i?-1:t>i?1:0}var r=function(t){void 0===t&&(t=9),this._maxEntries=Math.max(4,t),this._minEntries=Math.max(2,Math.ceil(.4*this._maxEntries)),this.clear()};function e(t,i,n){if(!n)return i.indexOf(t);for(var r=0;r<i.length;r++)if(n(t,i[r]))return r;return-1}function a(t,i){h(t,0,t.children.length,i,t)}function h(t,i,n,r,e){e||(e=p(null)),e.minX=1/0,e.minY=1/0,e.maxX=-1/0,e.maxY=-1/0;for(var a=i;a<n;a++){var h=t.children[a];o(e,t.leaf?r(h):h)}return e}function o(t,i){return t.minX=Math.min(t.minX,i.minX),t.minY=Math.min(t.minY,i.minY),t.maxX=Math.max(t.maxX,i.maxX),t.maxY=Math.max(t.maxY,i.maxY),t}function s(t,i){return t.minX-i.minX}function l(t,i){return t.minY-i.minY}function f(t){return(t.maxX-t.minX)*(t.maxY-t.minY)}function u(t){return t.maxX-t.minX+(t.maxY-t.minY)}function m(t,i){return t.minX<=i.minX&&t.minY<=i.minY&&i.maxX<=t.maxX&&i.maxY<=t.maxY}function c(t,i){return i.minX<=t.maxX&&i.minY<=t.maxY&&i.maxX>=t.minX&&i.maxY>=t.minY}function p(t){return{children:t,height:1,leaf:!0,minX:1/0,minY:1/0,maxX:-1/0,maxY:-1/0}}function d(i,n,r,e,a){for(var h=[n,r];h.length;)if(!((r=h.pop())-(n=h.pop())<=e)){var o=n+Math.ceil((r-n)/e/2)*e;t(i,o,n,r,a),h.push(n,o,o,r)}}return r.prototype.all=function(){return this._all(this.data,[])},r.prototype.search=function(t){var i=this.data,n=[];if(!c(t,i))return n;for(var r=this.toBBox,e=[];i;){for(var a=0;a<i.children.length;a++){var h=i.children[a],o=i.leaf?r(h):h;c(t,o)&&(i.leaf?n.push(h):m(t,o)?this._all(h,n):e.push(h))}i=e.pop()}return n},r.prototype.collides=function(t){var i=this.data;if(!c(t,i))return!1;for(var n=[];i;){for(var r=0;r<i.children.length;r++){var e=i.children[r],a=i.leaf?this.toBBox(e):e;if(c(t,a)){if(i.leaf||m(t,a))return!0;n.push(e)}}i=n.pop()}return!1},r.prototype.load=function(t){if(!t||!t.length)return this;if(t.length<this._minEntries){for(var i=0;i<t.length;i++)this.insert(t[i]);return this}var n=this._build(t.slice(),0,t.length-1,0);if(this.data.children.length)if(this.data.height===n.height)this._splitRoot(this.data,n);else{if(this.data.height<n.height){var r=this.data;this.data=n,n=r}this._insert(n,this.data.height-n.height-1,!0)}else this.data=n;return this},r.prototype.insert=function(t){return t&&this._insert(t,this.data.height-1),this},r.prototype.clear=function(){return this.data=p([]),this},r.prototype.remove=function(t,i){if(!t)return this;for(var n,r,a,h=this.data,o=this.toBBox(t),s=[],l=[];h||s.length;){if(h||(h=s.pop(),r=s[s.length-1],n=l.pop(),a=!0),h.leaf){var f=e(t,h.children,i);if(-1!==f)return h.children.splice(f,1),s.push(h),this._condense(s),this}a||h.leaf||!m(h,o)?r?(n++,h=r.children[n],a=!1):h=null:(s.push(h),l.push(n),n=0,r=h,h=h.children[0])}return this},r.prototype.toBBox=function(t){return t},r.prototype.compareMinX=function(t,i){return t.minX-i.minX},r.prototype.compareMinY=function(t,i){return t.minY-i.minY},r.prototype.toJSON=function(){return this.data},r.prototype.fromJSON=function(t){return this.data=t,this},r.prototype._all=function(t,i){for(var n=[];t;)t.leaf?i.push.apply(i,t.children):n.push.apply(n,t.children),t=n.pop();return i},r.prototype._build=function(t,i,n,r){var e,h=n-i+1,o=this._maxEntries;if(h<=o)return a(e=p(t.slice(i,n+1)),this.toBBox),e;r||(r=Math.ceil(Math.log(h)/Math.log(o)),o=Math.ceil(h/Math.pow(o,r-1))),(e=p([])).leaf=!1,e.height=r;var s=Math.ceil(h/o),l=s*Math.ceil(Math.sqrt(o));d(t,i,n,l,this.compareMinX);for(var f=i;f<=n;f+=l){var u=Math.min(f+l-1,n);d(t,f,u,s,this.compareMinY);for(var m=f;m<=u;m+=s){var c=Math.min(m+s-1,u);e.children.push(this._build(t,m,c,r-1))}}return a(e,this.toBBox),e},r.prototype._chooseSubtree=function(t,i,n,r){for(;r.push(i),!i.leaf&&r.length-1!==n;){for(var e=1/0,a=1/0,h=void 0,o=0;o<i.children.length;o++){var s=i.children[o],l=f(s),u=(m=t,c=s,(Math.max(c.maxX,m.maxX)-Math.min(c.minX,m.minX))*(Math.max(c.maxY,m.maxY)-Math.min(c.minY,m.minY))-l);u<a?(a=u,e=l<e?l:e,h=s):u===a&&l<e&&(e=l,h=s)}i=h||i.children[0]}var m,c;return i},r.prototype._insert=function(t,i,n){var r=n?t:this.toBBox(t),e=[],a=this._chooseSubtree(r,this.data,i,e);for(a.children.push(t),o(a,r);i>=0&&e[i].children.length>this._maxEntries;)this._split(e,i),i--;this._adjustParentBBoxes(r,e,i)},r.prototype._split=function(t,i){var n=t[i],r=n.children.length,e=this._minEntries;this._chooseSplitAxis(n,e,r);var h=this._chooseSplitIndex(n,e,r),o=p(n.children.splice(h,n.children.length-h));o.height=n.height,o.leaf=n.leaf,a(n,this.toBBox),a(o,this.toBBox),i?t[i-1].children.push(o):this._splitRoot(n,o)},r.prototype._splitRoot=function(t,i){this.data=p([t,i]),this.data.height=t.height+1,this.data.leaf=!1,a(this.data,this.toBBox)},r.prototype._chooseSplitIndex=function(t,i,n){for(var r,e,a,o,s,l,u,m=1/0,c=1/0,p=i;p<=n-i;p++){var d=h(t,0,p,this.toBBox),x=h(t,p,n,this.toBBox),v=(e=d,a=x,o=void 0,s=void 0,l=void 0,u=void 0,o=Math.max(e.minX,a.minX),s=Math.max(e.minY,a.minY),l=Math.min(e.maxX,a.maxX),u=Math.min(e.maxY,a.maxY),Math.max(0,l-o)*Math.max(0,u-s)),M=f(d)+f(x);v<m?(m=v,r=p,c=M<c?M:c):v===m&&M<c&&(c=M,r=p)}return r||n-i},r.prototype._chooseSplitAxis=function(t,i,n){var r=t.leaf?this.compareMinX:s,e=t.leaf?this.compareMinY:l;this._allDistMargin(t,i,n,r)<this._allDistMargin(t,i,n,e)&&t.children.sort(r)},r.prototype._allDistMargin=function(t,i,n,r){t.children.sort(r);for(var e=this.toBBox,a=h(t,0,i,e),s=h(t,n-i,n,e),l=u(a)+u(s),f=i;f<n-i;f++){var m=t.children[f];o(a,t.leaf?e(m):m),l+=u(a)}for(var c=n-i-1;c>=i;c--){var p=t.children[c];o(s,t.leaf?e(p):p),l+=u(s)}return l},r.prototype._adjustParentBBoxes=function(t,i,n){for(var r=n;r>=0;r--)o(i[r],t)},r.prototype._condense=function(t){for(var i=t.length-1,n=void 0;i>=0;i--)0===t[i].children.length?i>0?(n=t[i-1].children).splice(n.indexOf(t[i]),1):this.clear():a(t[i],this.toBBox)},r});\n","// The module cache\nvar __webpack_module_cache__ = {};\n\n// The require function\nfunction __webpack_require__(moduleId) {\n\t// Check if module is in cache\n\tvar cachedModule = __webpack_module_cache__[moduleId];\n\tif (cachedModule !== undefined) {\n\t\treturn cachedModule.exports;\n\t}\n\t// Create a new module (and put it into the cache)\n\tvar module = __webpack_module_cache__[moduleId] = {\n\t\t// no module.id needed\n\t\t// no module.loaded needed\n\t\texports: {}\n\t};\n\n\t// Execute the module function\n\t__webpack_modules__[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n\t// Return the exports of the module\n\treturn module.exports;\n}\n\n","// define getter functions for harmony exports\n__webpack_require__.d = function(exports, definition) {\n\tfor(var key in definition) {\n\t\tif(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {\n\t\t\tObject.defineProperty(exports, key, { enumerable: true, get: definition[key] });\n\t\t}\n\t}\n};","__webpack_require__.o = function(obj, prop) { return Object.prototype.hasOwnProperty.call(obj, prop); }","/**\n * @module ol/events/Event\n */\n/**\n * @classdesc\n * Stripped down implementation of the W3C DOM Level 2 Event interface.\n * See https://www.w3.org/TR/DOM-Level-2-Events/events.html#Events-interface.\n *\n * This implementation only provides `type` and `target` properties, and\n * `stopPropagation` and `preventDefault` methods. It is meant as base class\n * for higher level events defined in the library, and works with\n * {@link module:ol/events/Target~Target}.\n */\nvar BaseEvent = /** @class */ (function () {\n /**\n * @param {string} type Type.\n */\n function BaseEvent(type) {\n /**\n * @type {boolean}\n */\n this.propagationStopped;\n /**\n * @type {boolean}\n */\n this.defaultPrevented;\n /**\n * The event type.\n * @type {string}\n * @api\n */\n this.type = type;\n /**\n * The event target.\n * @type {Object}\n * @api\n */\n this.target = null;\n }\n /**\n * Prevent default. This means that no emulated `click`, `singleclick` or `doubleclick` events\n * will be fired.\n * @api\n */\n BaseEvent.prototype.preventDefault = function () {\n this.defaultPrevented = true;\n };\n /**\n * Stop event propagation.\n * @api\n */\n BaseEvent.prototype.stopPropagation = function () {\n this.propagationStopped = true;\n };\n return BaseEvent;\n}());\n/**\n * @param {Event|import(\"./Event.js\").default} evt Event\n */\nexport function stopPropagation(evt) {\n evt.stopPropagation();\n}\n/**\n * @param {Event|import(\"./Event.js\").default} evt Event\n */\nexport function preventDefault(evt) {\n evt.preventDefault();\n}\nexport default BaseEvent;\n//# sourceMappingURL=Event.js.map","/**\n * @module ol/ObjectEventType\n */\n/**\n * @enum {string}\n */\nexport default {\n /**\n * Triggered when a property is changed.\n * @event module:ol/Object.ObjectEvent#propertychange\n * @api\n */\n PROPERTYCHANGE: 'propertychange',\n};\n/**\n * @typedef {'propertychange'} Types\n */\n//# sourceMappingURL=ObjectEventType.js.map","/**\n * @module ol/Disposable\n */\n/**\n * @classdesc\n * Objects that need to clean up after themselves.\n */\nvar Disposable = /** @class */ (function () {\n function Disposable() {\n /**\n * The object has already been disposed.\n * @type {boolean}\n * @protected\n */\n this.disposed = false;\n }\n /**\n * Clean up.\n */\n Disposable.prototype.dispose = function () {\n if (!this.disposed) {\n this.disposed = true;\n this.disposeInternal();\n }\n };\n /**\n * Extension point for disposable objects.\n * @protected\n */\n Disposable.prototype.disposeInternal = function () { };\n return Disposable;\n}());\nexport default Disposable;\n//# sourceMappingURL=Disposable.js.map","/**\n * @module ol/array\n */\n/**\n * Performs a binary search on the provided sorted list and returns the index of the item if found. If it can't be found it'll return -1.\n * https://github.com/darkskyapp/binary-search\n *\n * @param {Array<*>} haystack Items to search through.\n * @param {*} needle The item to look for.\n * @param {Function} [opt_comparator] Comparator function.\n * @return {number} The index of the item if found, -1 if not.\n */\nexport function binarySearch(haystack, needle, opt_comparator) {\n var mid, cmp;\n var comparator = opt_comparator || numberSafeCompareFunction;\n var low = 0;\n var high = haystack.length;\n var found = false;\n while (low < high) {\n /* Note that \"(low + high) >>> 1\" may overflow, and results in a typecast\n * to double (which gives the wrong results). */\n mid = low + ((high - low) >> 1);\n cmp = +comparator(haystack[mid], needle);\n if (cmp < 0.0) {\n /* Too low. */\n low = mid + 1;\n }\n else {\n /* Key found or too high */\n high = mid;\n found = !cmp;\n }\n }\n /* Key not found. */\n return found ? low : ~low;\n}\n/**\n * Compare function for array sort that is safe for numbers.\n * @param {*} a The first object to be compared.\n * @param {*} b The second object to be compared.\n * @return {number} A negative number, zero, or a positive number as the first\n * argument is less than, equal to, or greater than the second.\n */\nexport function numberSafeCompareFunction(a, b) {\n return a > b ? 1 : a < b ? -1 : 0;\n}\n/**\n * Whether the array contains the given object.\n * @param {Array<*>} arr The array to test for the presence of the element.\n * @param {*} obj The object for which to test.\n * @return {boolean} The object is in the array.\n */\nexport function includes(arr, obj) {\n return arr.indexOf(obj) >= 0;\n}\n/**\n * {@link module:ol/tilegrid/TileGrid~TileGrid#getZForResolution} can use a function\n * of this type to determine which nearest resolution to use.\n *\n * This function takes a `{number}` representing a value between two array entries,\n * a `{number}` representing the value of the nearest higher entry and\n * a `{number}` representing the value of the nearest lower entry\n * as arguments and returns a `{number}`. If a negative number or zero is returned\n * the lower value will be used, if a positive number is returned the higher value\n * will be used.\n * @typedef {function(number, number, number): number} NearestDirectionFunction\n * @api\n */\n/**\n * @param {Array<number>} arr Array in descending order.\n * @param {number} target Target.\n * @param {number|NearestDirectionFunction} direction\n * 0 means return the nearest,\n * > 0 means return the largest nearest,\n * < 0 means return the smallest nearest.\n * @return {number} Index.\n */\nexport function linearFindNearest(arr, target, direction) {\n var n = arr.length;\n if (arr[0] <= target) {\n return 0;\n }\n else if (target <= arr[n - 1]) {\n return n - 1;\n }\n else {\n var i = void 0;\n if (direction > 0) {\n for (i = 1; i < n; ++i) {\n if (arr[i] < target) {\n return i - 1;\n }\n }\n }\n else if (direction < 0) {\n for (i = 1; i < n; ++i) {\n if (arr[i] <= target) {\n return i;\n }\n }\n }\n else {\n for (i = 1; i < n; ++i) {\n if (arr[i] == target) {\n return i;\n }\n else if (arr[i] < target) {\n if (typeof direction === 'function') {\n if (direction(target, arr[i - 1], arr[i]) > 0) {\n return i - 1;\n }\n else {\n return i;\n }\n }\n else if (arr[i - 1] - target < target - arr[i]) {\n return i - 1;\n }\n else {\n return i;\n }\n }\n }\n }\n return n - 1;\n }\n}\n/**\n * @param {Array<*>} arr Array.\n * @param {number} begin Begin index.\n * @param {number} end End index.\n */\nexport function reverseSubArray(arr, begin, end) {\n while (begin < end) {\n var tmp = arr[begin];\n arr[begin] = arr[end];\n arr[end] = tmp;\n ++begin;\n --end;\n }\n}\n/**\n * @param {Array<VALUE>} arr The array to modify.\n * @param {!Array<VALUE>|VALUE} data The elements or arrays of elements to add to arr.\n * @template VALUE\n */\nexport function extend(arr, data) {\n var extension = Array.isArray(data) ? data : [data];\n var length = extension.length;\n for (var i = 0; i < length; i++) {\n arr[arr.length] = extension[i];\n }\n}\n/**\n * @param {Array<VALUE>} arr The array to modify.\n * @param {VALUE} obj The element to remove.\n * @template VALUE\n * @return {boolean} If the element was removed.\n */\nexport function remove(arr, obj) {\n var i = arr.indexOf(obj);\n var found = i > -1;\n if (found) {\n arr.splice(i, 1);\n }\n return found;\n}\n/**\n * @param {Array<VALUE>} arr The array to search in.\n * @param {function(VALUE, number, ?) : boolean} func The function to compare.\n * @template VALUE\n * @return {VALUE|null} The element found or null.\n */\nexport function find(arr, func) {\n var length = arr.length >>> 0;\n var value;\n for (var i = 0; i < length; i++) {\n value = arr[i];\n if (func(value, i, arr)) {\n return value;\n }\n }\n return null;\n}\n/**\n * @param {Array|Uint8ClampedArray} arr1 The first array to compare.\n * @param {Array|Uint8ClampedArray} arr2 The second array to compare.\n * @return {boolean} Whether the two arrays are equal.\n */\nexport function equals(arr1, arr2) {\n var len1 = arr1.length;\n if (len1 !== arr2.length) {\n return false;\n }\n for (var i = 0; i < len1; i++) {\n if (arr1[i] !== arr2[i]) {\n return false;\n }\n }\n return true;\n}\n/**\n * Sort the passed array such that the relative order of equal elements is preserved.\n * See https://en.wikipedia.org/wiki/Sorting_algorithm#Stability for details.\n * @param {Array<*>} arr The array to sort (modifies original).\n * @param {!function(*, *): number} compareFnc Comparison function.\n * @api\n */\nexport function stableSort(arr, compareFnc) {\n var length = arr.length;\n var tmp = Array(arr.length);\n var i;\n for (i = 0; i < length; i++) {\n tmp[i] = { index: i, value: arr[i] };\n }\n tmp.sort(function (a, b) {\n return compareFnc(a.value, b.value) || a.index - b.index;\n });\n for (i = 0; i < arr.length; i++) {\n arr[i] = tmp[i].value;\n }\n}\n/**\n * @param {Array<*>} arr The array to search in.\n * @param {Function} func Comparison function.\n * @return {number} Return index.\n */\nexport function findIndex(arr, func) {\n var index;\n var found = !arr.every(function (el, idx) {\n index = idx;\n return !func(el, idx, arr);\n });\n return found ? index : -1;\n}\n/**\n * @param {Array<*>} arr The array to test.\n * @param {Function} [opt_func] Comparison function.\n * @param {boolean} [opt_strict] Strictly sorted (default false).\n * @return {boolean} Return index.\n */\nexport function isSorted(arr, opt_func, opt_strict) {\n var compare = opt_func || numberSafeCompareFunction;\n return arr.every(function (currentVal, index) {\n if (index === 0) {\n return true;\n }\n var res = compare(arr[index - 1], currentVal);\n return !(res > 0 || (opt_strict && res === 0));\n });\n}\n//# sourceMappingURL=array.js.map","/**\n * @module ol/functions\n */\nimport { equals as arrayEquals } from './array.js';\n/**\n * Always returns true.\n * @return {boolean} true.\n */\nexport function TRUE() {\n return true;\n}\n/**\n * Always returns false.\n * @return {boolean} false.\n */\nexport function FALSE() {\n return false;\n}\n/**\n * A reusable function, used e.g. as a default for callbacks.\n *\n * @return {void} Nothing.\n */\nexport function VOID() { }\n/**\n * Wrap a function in another function that remembers the last return. If the\n * returned function is called twice in a row with the same arguments and the same\n * this object, it will return the value from the first call in the second call.\n *\n * @param {function(...any): ReturnType} fn The function to memoize.\n * @return {function(...any): ReturnType} The memoized function.\n * @template ReturnType\n */\nexport function memoizeOne(fn) {\n var called = false;\n /** @type {ReturnType} */\n var lastResult;\n /** @type {Array<any>} */\n var lastArgs;\n var lastThis;\n return function () {\n var nextArgs = Array.prototype.slice.call(arguments);\n if (!called || this !== lastThis || !arrayEquals(nextArgs, lastArgs)) {\n called = true;\n lastThis = this;\n lastArgs = nextArgs;\n lastResult = fn.apply(this, arguments);\n }\n return lastResult;\n };\n}\n/**\n * @template T\n * @param {function(): (T | Promise<T>)} getter A function that returns a value or a promise for a value.\n * @return {Promise<T>} A promise for the value.\n */\nexport function toPromise(getter) {\n function promiseGetter() {\n var value;\n try {\n value = getter();\n }\n catch (err) {\n return Promise.reject(err);\n }\n if (value instanceof Promise) {\n return value;\n }\n return Promise.resolve(value);\n }\n return promiseGetter();\n}\n//# sourceMappingURL=functions.js.map","/**\n * @module ol/obj\n */\n/**\n * Polyfill for Object.assign(). Assigns enumerable and own properties from\n * one or more source objects to a target object.\n * See https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/Object/assign.\n *\n * @param {!Object} target The target object.\n * @param {...Object} var_sources The source object(s).\n * @return {!Object} The modified target object.\n */\nexport var assign = typeof Object.assign === 'function'\n ? Object.assign\n : function (target, var_sources) {\n if (target === undefined || target === null) {\n throw new TypeError('Cannot convert undefined or null to object');\n }\n var output = Object(target);\n for (var i = 1, ii = arguments.length; i < ii; ++i) {\n var source = arguments[i];\n if (source !== undefined && source !== null) {\n for (var key in source) {\n if (source.hasOwnProperty(key)) {\n output[key] = source[key];\n }\n }\n }\n }\n return output;\n };\n/**\n * Removes all properties from an object.\n * @param {Object} object The object to clear.\n */\nexport function clear(object) {\n for (var property in object) {\n delete object[property];\n }\n}\n/**\n * Polyfill for Object.values(). Get an array of property values from an object.\n * See https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/values\n *\n * @param {!Object<K,V>} object The object from which to get the values.\n * @return {!Array<V>} The property values.\n * @template K,V\n */\nexport var getValues = typeof Object.values === 'function'\n ? Object.values\n : function (object) {\n var values = [];\n for (var property in object) {\n values.push(object[property]);\n }\n return values;\n };\n/**\n * Determine if an object has any properties.\n * @param {Object} object The object to check.\n * @return {boolean} The object is empty.\n */\nexport function isEmpty(object) {\n var property;\n for (property in object) {\n return false;\n }\n return !property;\n}\n//# sourceMappingURL=obj.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/events/Target\n */\nimport Disposable from '../Disposable.js';\nimport Event from './Event.js';\nimport { VOID } from '../functions.js';\nimport { clear } from '../obj.js';\n/**\n * @typedef {EventTarget|Target} EventTargetLike\n */\n/**\n * @classdesc\n * A simplified implementation of the W3C DOM Level 2 EventTarget interface.\n * See https://www.w3.org/TR/2000/REC-DOM-Level-2-Events-20001113/events.html#Events-EventTarget.\n *\n * There are two important simplifications compared to the specification:\n *\n * 1. The handling of `useCapture` in `addEventListener` and\n * `removeEventListener`. There is no real capture model.\n * 2. The handling of `stopPropagation` and `preventDefault` on `dispatchEvent`.\n * There is no event target hierarchy. When a listener calls\n * `stopPropagation` or `preventDefault` on an event object, it means that no\n * more listeners after this one will be called. Same as when the listener\n * returns false.\n */\nvar Target = /** @class */ (function (_super) {\n __extends(Target, _super);\n /**\n * @param {*} [opt_target] Default event target for dispatched events.\n */\n function Target(opt_target) {\n var _this = _super.call(this) || this;\n /**\n * @private\n * @type {*}\n */\n _this.eventTarget_ = opt_target;\n /**\n * @private\n * @type {Object<string, number>}\n */\n _this.pendingRemovals_ = null;\n /**\n * @private\n * @type {Object<string, number>}\n */\n _this.dispatching_ = null;\n /**\n * @private\n * @type {Object<string, Array<import(\"../events.js\").Listener>>}\n */\n _this.listeners_ = null;\n return _this;\n }\n /**\n * @param {string} type Type.\n * @param {import(\"../events.js\").Listener} listener Listener.\n */\n Target.prototype.addEventListener = function (type, listener) {\n if (!type || !listener) {\n return;\n }\n var listeners = this.listeners_ || (this.listeners_ = {});\n var listenersForType = listeners[type] || (listeners[type] = []);\n if (listenersForType.indexOf(listener) === -1) {\n listenersForType.push(listener);\n }\n };\n /**\n * Dispatches an event and calls all listeners listening for events\n * of this type. The event parameter can either be a string or an\n * Object with a `type` property.\n *\n * @param {import(\"./Event.js\").default|string} event Event object.\n * @return {boolean|undefined} `false` if anyone called preventDefault on the\n * event object or if any of the listeners returned false.\n * @api\n */\n Target.prototype.dispatchEvent = function (event) {\n var isString = typeof event === 'string';\n var type = isString ? event : event.type;\n var listeners = this.listeners_ && this.listeners_[type];\n if (!listeners) {\n return;\n }\n var evt = isString ? new Event(event) : /** @type {Event} */ (event);\n if (!evt.target) {\n evt.target = this.eventTarget_ || this;\n }\n var dispatching = this.dispatching_ || (this.dispatching_ = {});\n var pendingRemovals = this.pendingRemovals_ || (this.pendingRemovals_ = {});\n if (!(type in dispatching)) {\n dispatching[type] = 0;\n pendingRemovals[type] = 0;\n }\n ++dispatching[type];\n var propagate;\n for (var i = 0, ii = listeners.length; i < ii; ++i) {\n if ('handleEvent' in listeners[i]) {\n propagate = /** @type {import(\"../events.js\").ListenerObject} */ (listeners[i]).handleEvent(evt);\n }\n else {\n propagate = /** @type {import(\"../events.js\").ListenerFunction} */ (listeners[i]).call(this, evt);\n }\n if (propagate === false || evt.propagationStopped) {\n propagate = false;\n break;\n }\n }\n if (--dispatching[type] === 0) {\n var pr = pendingRemovals[type];\n delete pendingRemovals[type];\n while (pr--) {\n this.removeEventListener(type, VOID);\n }\n delete dispatching[type];\n }\n return propagate;\n };\n /**\n * Clean up.\n */\n Target.prototype.disposeInternal = function () {\n this.listeners_ && clear(this.listeners_);\n };\n /**\n * Get the listeners for a specified event type. Listeners are returned in the\n * order that they will be called in.\n *\n * @param {string} type Type.\n * @return {Array<import(\"../events.js\").Listener>|undefined} Listeners.\n */\n Target.prototype.getListeners = function (type) {\n return (this.listeners_ && this.listeners_[type]) || undefined;\n };\n /**\n * @param {string} [opt_type] Type. If not provided,\n * `true` will be returned if this event target has any listeners.\n * @return {boolean} Has listeners.\n */\n Target.prototype.hasListener = function (opt_type) {\n if (!this.listeners_) {\n return false;\n }\n return opt_type\n ? opt_type in this.listeners_\n : Object.keys(this.listeners_).length > 0;\n };\n /**\n * @param {string} type Type.\n * @param {import(\"../events.js\").Listener} listener Listener.\n */\n Target.prototype.removeEventListener = function (type, listener) {\n var listeners = this.listeners_ && this.listeners_[type];\n if (listeners) {\n var index = listeners.indexOf(listener);\n if (index !== -1) {\n if (this.pendingRemovals_ && type in this.pendingRemovals_) {\n // make listener a no-op, and remove later in #dispatchEvent()\n listeners[index] = VOID;\n ++this.pendingRemovals_[type];\n }\n else {\n listeners.splice(index, 1);\n if (listeners.length === 0) {\n delete this.listeners_[type];\n }\n }\n }\n }\n };\n return Target;\n}(Disposable));\nexport default Target;\n//# sourceMappingURL=Target.js.map","/**\n * @module ol/events/EventType\n */\n/**\n * @enum {string}\n * @const\n */\nexport default {\n /**\n * Generic change event. Triggered when the revision counter is increased.\n * @event module:ol/events/Event~BaseEvent#change\n * @api\n */\n CHANGE: 'change',\n /**\n * Generic error event. Triggered when an error occurs.\n * @event module:ol/events/Event~BaseEvent#error\n * @api\n */\n ERROR: 'error',\n BLUR: 'blur',\n CLEAR: 'clear',\n CONTEXTMENU: 'contextmenu',\n CLICK: 'click',\n DBLCLICK: 'dblclick',\n DRAGENTER: 'dragenter',\n DRAGOVER: 'dragover',\n DROP: 'drop',\n FOCUS: 'focus',\n KEYDOWN: 'keydown',\n KEYPRESS: 'keypress',\n LOAD: 'load',\n RESIZE: 'resize',\n TOUCHMOVE: 'touchmove',\n WHEEL: 'wheel',\n};\n//# sourceMappingURL=EventType.js.map","/**\n * @module ol/events\n */\nimport { clear } from './obj.js';\n/**\n * Key to use with {@link module:ol/Observable.unByKey}.\n * @typedef {Object} EventsKey\n * @property {ListenerFunction} listener Listener.\n * @property {import(\"./events/Target.js\").EventTargetLike} target Target.\n * @property {string} type Type.\n * @api\n */\n/**\n * Listener function. This function is called with an event object as argument.\n * When the function returns `false`, event propagation will stop.\n *\n * @typedef {function((Event|import(\"./events/Event.js\").default)): (void|boolean)} ListenerFunction\n * @api\n */\n/**\n * @typedef {Object} ListenerObject\n * @property {ListenerFunction} handleEvent HandleEvent listener function.\n */\n/**\n * @typedef {ListenerFunction|ListenerObject} Listener\n */\n/**\n * Registers an event listener on an event target. Inspired by\n * https://google.github.io/closure-library/api/source/closure/goog/events/events.js.src.html\n *\n * This function efficiently binds a `listener` to a `this` object, and returns\n * a key for use with {@link module:ol/events.unlistenByKey}.\n *\n * @param {import(\"./events/Target.js\").EventTargetLike} target Event target.\n * @param {string} type Event type.\n * @param {ListenerFunction} listener Listener.\n * @param {Object} [opt_this] Object referenced by the `this` keyword in the\n * listener. Default is the `target`.\n * @param {boolean} [opt_once] If true, add the listener as one-off listener.\n * @return {EventsKey} Unique key for the listener.\n */\nexport function listen(target, type, listener, opt_this, opt_once) {\n if (opt_this && opt_this !== target) {\n listener = listener.bind(opt_this);\n }\n if (opt_once) {\n var originalListener_1 = listener;\n listener = function () {\n target.removeEventListener(type, listener);\n originalListener_1.apply(this, arguments);\n };\n }\n var eventsKey = {\n target: target,\n type: type,\n listener: listener,\n };\n target.addEventListener(type, listener);\n return eventsKey;\n}\n/**\n * Registers a one-off event listener on an event target. Inspired by\n * https://google.github.io/closure-library/api/source/closure/goog/events/events.js.src.html\n *\n * This function efficiently binds a `listener` as self-unregistering listener\n * to a `this` object, and returns a key for use with\n * {@link module:ol/events.unlistenByKey} in case the listener needs to be\n * unregistered before it is called.\n *\n * When {@link module:ol/events.listen} is called with the same arguments after this\n * function, the self-unregistering listener will be turned into a permanent\n * listener.\n *\n * @param {import(\"./events/Target.js\").EventTargetLike} target Event target.\n * @param {string} type Event type.\n * @param {ListenerFunction} listener Listener.\n * @param {Object} [opt_this] Object referenced by the `this` keyword in the\n * listener. Default is the `target`.\n * @return {EventsKey} Key for unlistenByKey.\n */\nexport function listenOnce(target, type, listener, opt_this) {\n return listen(target, type, listener, opt_this, true);\n}\n/**\n * Unregisters event listeners on an event target. Inspired by\n * https://google.github.io/closure-library/api/source/closure/goog/events/events.js.src.html\n *\n * The argument passed to this function is the key returned from\n * {@link module:ol/events.listen} or {@link module:ol/events.listenOnce}.\n *\n * @param {EventsKey} key The key.\n */\nexport function unlistenByKey(key) {\n if (key && key.target) {\n key.target.removeEventListener(key.type, key.listener);\n clear(key);\n }\n}\n//# sourceMappingURL=events.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/Observable\n */\nimport EventTarget from './events/Target.js';\nimport EventType from './events/EventType.js';\nimport { listen, listenOnce, unlistenByKey } from './events.js';\n/***\n * @template {string} Type\n * @template {Event|import(\"./events/Event.js\").default} EventClass\n * @template Return\n * @typedef {(type: Type, listener: (event: EventClass) => ?) => Return} OnSignature\n */\n/***\n * @template {string} Type\n * @template Return\n * @typedef {(type: Type[], listener: (event: Event|import(\"./events/Event\").default) => ?) => Return extends void ? void : Return[]} CombinedOnSignature\n */\n/**\n * @typedef {'change'|'error'} EventTypes\n */\n/***\n * @template Return\n * @typedef {OnSignature<EventTypes, import(\"./events/Event.js\").default, Return> & CombinedOnSignature<EventTypes, Return>} ObservableOnSignature\n */\n/**\n * @classdesc\n * Abstract base class; normally only used for creating subclasses and not\n * instantiated in apps.\n * An event target providing convenient methods for listener registration\n * and unregistration. A generic `change` event is always available through\n * {@link module:ol/Observable~Observable#changed}.\n *\n * @fires import(\"./events/Event.js\").default\n * @api\n */\nvar Observable = /** @class */ (function (_super) {\n __extends(Observable, _super);\n function Observable() {\n var _this = _super.call(this) || this;\n _this.on =\n /** @type {ObservableOnSignature<import(\"./events\").EventsKey>} */ (_this.onInternal);\n _this.once =\n /** @type {ObservableOnSignature<import(\"./events\").EventsKey>} */ (_this.onceInternal);\n _this.un = /** @type {ObservableOnSignature<void>} */ (_this.unInternal);\n /**\n * @private\n * @type {number}\n */\n _this.revision_ = 0;\n return _this;\n }\n /**\n * Increases the revision counter and dispatches a 'change' event.\n * @api\n */\n Observable.prototype.changed = function () {\n ++this.revision_;\n this.dispatchEvent(EventType.CHANGE);\n };\n /**\n * Get the version number for this object. Each time the object is modified,\n * its version number will be incremented.\n * @return {number} Revision.\n * @api\n */\n Observable.prototype.getRevision = function () {\n return this.revision_;\n };\n /**\n * @param {string|Array<string>} type Type.\n * @param {function((Event|import(\"./events/Event\").default)): ?} listener Listener.\n * @return {import(\"./events.js\").EventsKey|Array<import(\"./events.js\").EventsKey>} Event key.\n * @protected\n */\n Observable.prototype.onInternal = function (type, listener) {\n if (Array.isArray(type)) {\n var len = type.length;\n var keys = new Array(len);\n for (var i = 0; i < len; ++i) {\n keys[i] = listen(this, type[i], listener);\n }\n return keys;\n }\n else {\n return listen(this, /** @type {string} */ (type), listener);\n }\n };\n /**\n * @param {string|Array<string>} type Type.\n * @param {function((Event|import(\"./events/Event\").default)): ?} listener Listener.\n * @return {import(\"./events.js\").EventsKey|Array<import(\"./events.js\").EventsKey>} Event key.\n * @protected\n */\n Observable.prototype.onceInternal = function (type, listener) {\n var key;\n if (Array.isArray(type)) {\n var len = type.length;\n key = new Array(len);\n for (var i = 0; i < len; ++i) {\n key[i] = listenOnce(this, type[i], listener);\n }\n }\n else {\n key = listenOnce(this, /** @type {string} */ (type), listener);\n }\n /** @type {Object} */ (listener).ol_key = key;\n return key;\n };\n /**\n * Unlisten for a certain type of event.\n * @param {string|Array<string>} type Type.\n * @param {function((Event|import(\"./events/Event\").default)): ?} listener Listener.\n * @protected\n */\n Observable.prototype.unInternal = function (type, listener) {\n var key = /** @type {Object} */ (listener).ol_key;\n if (key) {\n unByKey(key);\n }\n else if (Array.isArray(type)) {\n for (var i = 0, ii = type.length; i < ii; ++i) {\n this.removeEventListener(type[i], listener);\n }\n }\n else {\n this.removeEventListener(type, listener);\n }\n };\n return Observable;\n}(EventTarget));\n/**\n * Listen for a certain type of event.\n * @function\n * @param {string|Array<string>} type The event type or array of event types.\n * @param {function((Event|import(\"./events/Event\").default)): ?} listener The listener function.\n * @return {import(\"./events.js\").EventsKey|Array<import(\"./events.js\").EventsKey>} Unique key for the listener. If\n * called with an array of event types as the first argument, the return\n * will be an array of keys.\n * @api\n */\nObservable.prototype.on;\n/**\n * Listen once for a certain type of event.\n * @function\n * @param {string|Array<string>} type The event type or array of event types.\n * @param {function((Event|import(\"./events/Event\").default)): ?} listener The listener function.\n * @return {import(\"./events.js\").EventsKey|Array<import(\"./events.js\").EventsKey>} Unique key for the listener. If\n * called with an array of event types as the first argument, the return\n * will be an array of keys.\n * @api\n */\nObservable.prototype.once;\n/**\n * Unlisten for a certain type of event.\n * @function\n * @param {string|Array<string>} type The event type or array of event types.\n * @param {function((Event|import(\"./events/Event\").default)): ?} listener The listener function.\n * @api\n */\nObservable.prototype.un;\n/**\n * Removes an event listener using the key returned by `on()` or `once()`.\n * @param {import(\"./events.js\").EventsKey|Array<import(\"./events.js\").EventsKey>} key The key returned by `on()`\n * or `once()` (or an array of keys).\n * @api\n */\nexport function unByKey(key) {\n if (Array.isArray(key)) {\n for (var i = 0, ii = key.length; i < ii; ++i) {\n unlistenByKey(key[i]);\n }\n }\n else {\n unlistenByKey(/** @type {import(\"./events.js\").EventsKey} */ (key));\n }\n}\nexport default Observable;\n//# sourceMappingURL=Observable.js.map","/**\n * @module ol/util\n */\n/**\n * @return {?} Any return.\n */\nexport function abstract() {\n return /** @type {?} */ ((function () {\n throw new Error('Unimplemented abstract method.');\n })());\n}\n/**\n * Counter for getUid.\n * @type {number}\n * @private\n */\nvar uidCounter_ = 0;\n/**\n * Gets a unique ID for an object. This mutates the object so that further calls\n * with the same object as a parameter returns the same value. Unique IDs are generated\n * as a strictly increasing sequence. Adapted from goog.getUid.\n *\n * @param {Object} obj The object to get the unique ID for.\n * @return {string} The unique ID for the object.\n * @api\n */\nexport function getUid(obj) {\n return obj.ol_uid || (obj.ol_uid = String(++uidCounter_));\n}\n/**\n * OpenLayers version.\n * @type {string}\n */\nexport var VERSION = '6.14.1';\n//# sourceMappingURL=util.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/Object\n */\nimport Event from './events/Event.js';\nimport ObjectEventType from './ObjectEventType.js';\nimport Observable from './Observable.js';\nimport { assign, isEmpty } from './obj.js';\nimport { getUid } from './util.js';\n/**\n * @classdesc\n * Events emitted by {@link module:ol/Object~BaseObject} instances are instances of this type.\n */\nvar ObjectEvent = /** @class */ (function (_super) {\n __extends(ObjectEvent, _super);\n /**\n * @param {string} type The event type.\n * @param {string} key The property name.\n * @param {*} oldValue The old value for `key`.\n */\n function ObjectEvent(type, key, oldValue) {\n var _this = _super.call(this, type) || this;\n /**\n * The name of the property whose value is changing.\n * @type {string}\n * @api\n */\n _this.key = key;\n /**\n * The old value. To get the new value use `e.target.get(e.key)` where\n * `e` is the event object.\n * @type {*}\n * @api\n */\n _this.oldValue = oldValue;\n return _this;\n }\n return ObjectEvent;\n}(Event));\nexport { ObjectEvent };\n/***\n * @template Return\n * @typedef {import(\"./Observable\").OnSignature<import(\"./Observable\").EventTypes, import(\"./events/Event.js\").default, Return> &\n * import(\"./Observable\").OnSignature<import(\"./ObjectEventType\").Types, ObjectEvent, Return> &\n * import(\"./Observable\").CombinedOnSignature<import(\"./Observable\").EventTypes|import(\"./ObjectEventType\").Types, Return>} ObjectOnSignature\n */\n/**\n * @classdesc\n * Abstract base class; normally only used for creating subclasses and not\n * instantiated in apps.\n * Most non-trivial classes inherit from this.\n *\n * This extends {@link module:ol/Observable~Observable} with observable\n * properties, where each property is observable as well as the object as a\n * whole.\n *\n * Classes that inherit from this have pre-defined properties, to which you can\n * add your owns. The pre-defined properties are listed in this documentation as\n * 'Observable Properties', and have their own accessors; for example,\n * {@link module:ol/Map~Map} has a `target` property, accessed with\n * `getTarget()` and changed with `setTarget()`. Not all properties are however\n * settable. There are also general-purpose accessors `get()` and `set()`. For\n * example, `get('target')` is equivalent to `getTarget()`.\n *\n * The `set` accessors trigger a change event, and you can monitor this by\n * registering a listener. For example, {@link module:ol/View~View} has a\n * `center` property, so `view.on('change:center', function(evt) {...});` would\n * call the function whenever the value of the center property changes. Within\n * the function, `evt.target` would be the view, so `evt.target.getCenter()`\n * would return the new center.\n *\n * You can add your own observable properties with\n * `object.set('prop', 'value')`, and retrieve that with `object.get('prop')`.\n * You can listen for changes on that property value with\n * `object.on('change:prop', listener)`. You can get a list of all\n * properties with {@link module:ol/Object~BaseObject#getProperties}.\n *\n * Note that the observable properties are separate from standard JS properties.\n * You can, for example, give your map object a title with\n * `map.title='New title'` and with `map.set('title', 'Another title')`. The\n * first will be a `hasOwnProperty`; the second will appear in\n * `getProperties()`. Only the second is observable.\n *\n * Properties can be deleted by using the unset method. E.g.\n * object.unset('foo').\n *\n * @fires ObjectEvent\n * @api\n */\nvar BaseObject = /** @class */ (function (_super) {\n __extends(BaseObject, _super);\n /**\n * @param {Object<string, *>} [opt_values] An object with key-value pairs.\n */\n function BaseObject(opt_values) {\n var _this = _super.call(this) || this;\n /***\n * @type {ObjectOnSignature<import(\"./events\").EventsKey>}\n */\n _this.on;\n /***\n * @type {ObjectOnSignature<import(\"./events\").EventsKey>}\n */\n _this.once;\n /***\n * @type {ObjectOnSignature<void>}\n */\n _this.un;\n // Call {@link module:ol/util.getUid} to ensure that the order of objects' ids is\n // the same as the order in which they were created. This also helps to\n // ensure that object properties are always added in the same order, which\n // helps many JavaScript engines generate faster code.\n getUid(_this);\n /**\n * @private\n * @type {Object<string, *>}\n */\n _this.values_ = null;\n if (opt_values !== undefined) {\n _this.setProperties(opt_values);\n }\n return _this;\n }\n /**\n * Gets a value.\n * @param {string} key Key name.\n * @return {*} Value.\n * @api\n */\n BaseObject.prototype.get = function (key) {\n var value;\n if (this.values_ && this.values_.hasOwnProperty(key)) {\n value = this.values_[key];\n }\n return value;\n };\n /**\n * Get a list of object property names.\n * @return {Array<string>} List of property names.\n * @api\n */\n BaseObject.prototype.getKeys = function () {\n return (this.values_ && Object.keys(this.values_)) || [];\n };\n /**\n * Get an object of all property names and values.\n * @return {Object<string, *>} Object.\n * @api\n */\n BaseObject.prototype.getProperties = function () {\n return (this.values_ && assign({}, this.values_)) || {};\n };\n /**\n * @return {boolean} The object has properties.\n */\n BaseObject.prototype.hasProperties = function () {\n return !!this.values_;\n };\n /**\n * @param {string} key Key name.\n * @param {*} oldValue Old value.\n */\n BaseObject.prototype.notify = function (key, oldValue) {\n var eventType;\n eventType = \"change:\".concat(key);\n if (this.hasListener(eventType)) {\n this.dispatchEvent(new ObjectEvent(eventType, key, oldValue));\n }\n eventType = ObjectEventType.PROPERTYCHANGE;\n if (this.hasListener(eventType)) {\n this.dispatchEvent(new ObjectEvent(eventType, key, oldValue));\n }\n };\n /**\n * @param {string} key Key name.\n * @param {import(\"./events.js\").Listener} listener Listener.\n */\n BaseObject.prototype.addChangeListener = function (key, listener) {\n this.addEventListener(\"change:\".concat(key), listener);\n };\n /**\n * @param {string} key Key name.\n * @param {import(\"./events.js\").Listener} listener Listener.\n */\n BaseObject.prototype.removeChangeListener = function (key, listener) {\n this.removeEventListener(\"change:\".concat(key), listener);\n };\n /**\n * Sets a value.\n * @param {string} key Key name.\n * @param {*} value Value.\n * @param {boolean} [opt_silent] Update without triggering an event.\n * @api\n */\n BaseObject.prototype.set = function (key, value, opt_silent) {\n var values = this.values_ || (this.values_ = {});\n if (opt_silent) {\n values[key] = value;\n }\n else {\n var oldValue = values[key];\n values[key] = value;\n if (oldValue !== value) {\n this.notify(key, oldValue);\n }\n }\n };\n /**\n * Sets a collection of key-value pairs. Note that this changes any existing\n * properties and adds new ones (it does not remove any existing properties).\n * @param {Object<string, *>} values Values.\n * @param {boolean} [opt_silent] Update without triggering an event.\n * @api\n */\n BaseObject.prototype.setProperties = function (values, opt_silent) {\n for (var key in values) {\n this.set(key, values[key], opt_silent);\n }\n };\n /**\n * Apply any properties from another object without triggering events.\n * @param {BaseObject} source The source object.\n * @protected\n */\n BaseObject.prototype.applyProperties = function (source) {\n if (!source.values_) {\n return;\n }\n assign(this.values_ || (this.values_ = {}), source.values_);\n };\n /**\n * Unsets a property.\n * @param {string} key Key name.\n * @param {boolean} [opt_silent] Unset without triggering an event.\n * @api\n */\n BaseObject.prototype.unset = function (key, opt_silent) {\n if (this.values_ && key in this.values_) {\n var oldValue = this.values_[key];\n delete this.values_[key];\n if (isEmpty(this.values_)) {\n this.values_ = null;\n }\n if (!opt_silent) {\n this.notify(key, oldValue);\n }\n }\n };\n return BaseObject;\n}(Observable));\nexport default BaseObject;\n//# sourceMappingURL=Object.js.map","/**\n * @module ol/MapEventType\n */\n/**\n * @enum {string}\n */\nexport default {\n /**\n * Triggered after a map frame is rendered.\n * @event module:ol/MapEvent~MapEvent#postrender\n * @api\n */\n POSTRENDER: 'postrender',\n /**\n * Triggered when the map starts moving.\n * @event module:ol/MapEvent~MapEvent#movestart\n * @api\n */\n MOVESTART: 'movestart',\n /**\n * Triggered after the map is moved.\n * @event module:ol/MapEvent~MapEvent#moveend\n * @api\n */\n MOVEEND: 'moveend',\n /**\n * Triggered when loading of additional map data (tiles, images, features) starts.\n * @event module:ol/render/Event~RenderEvent#loadstart\n * @api\n */\n LOADSTART: 'loadstart',\n /**\n * Triggered when loading of additional map data has completed.\n * @event module:ol/render/Event~RenderEvent#loadend\n * @api\n */\n LOADEND: 'loadend',\n};\n/***\n * @typedef {'postrender'|'movestart'|'moveend'|'loadstart'|'loadend'} Types\n */\n//# sourceMappingURL=MapEventType.js.map","/**\n * @module ol/has\n */\nvar ua = typeof navigator !== 'undefined' && typeof navigator.userAgent !== 'undefined'\n ? navigator.userAgent.toLowerCase()\n : '';\n/**\n * User agent string says we are dealing with Firefox as browser.\n * @type {boolean}\n */\nexport var FIREFOX = ua.indexOf('firefox') !== -1;\n/**\n * User agent string says we are dealing with Safari as browser.\n * @type {boolean}\n */\nexport var SAFARI = ua.indexOf('safari') !== -1 && ua.indexOf('chrom') == -1;\n/**\n * https://bugs.webkit.org/show_bug.cgi?id=237906\n * @type {boolean}\n */\nexport var SAFARI_BUG_237906 = SAFARI &&\n !!(ua.indexOf('version/15.4') >= 0 ||\n ua.match(/cpu (os|iphone os) 15_4 like mac os x/));\n/**\n * User agent string says we are dealing with a WebKit engine.\n * @type {boolean}\n */\nexport var WEBKIT = ua.indexOf('webkit') !== -1 && ua.indexOf('edge') == -1;\n/**\n * User agent string says we are dealing with a Mac as platform.\n * @type {boolean}\n */\nexport var MAC = ua.indexOf('macintosh') !== -1;\n/**\n * The ratio between physical pixels and device-independent pixels\n * (dips) on the device (`window.devicePixelRatio`).\n * @const\n * @type {number}\n * @api\n */\nexport var DEVICE_PIXEL_RATIO = typeof devicePixelRatio !== 'undefined' ? devicePixelRatio : 1;\n/**\n * The execution context is a worker with OffscreenCanvas available.\n * @const\n * @type {boolean}\n */\nexport var WORKER_OFFSCREEN_CANVAS = typeof WorkerGlobalScope !== 'undefined' &&\n typeof OffscreenCanvas !== 'undefined' &&\n self instanceof WorkerGlobalScope; //eslint-disable-line\n/**\n * Image.prototype.decode() is supported.\n * @type {boolean}\n */\nexport var IMAGE_DECODE = typeof Image !== 'undefined' && Image.prototype.decode;\n/**\n * @type {boolean}\n */\nexport var PASSIVE_EVENT_LISTENERS = (function () {\n var passive = false;\n try {\n var options = Object.defineProperty({}, 'passive', {\n get: function () {\n passive = true;\n },\n });\n window.addEventListener('_', null, options);\n window.removeEventListener('_', null, options);\n }\n catch (error) {\n // passive not supported\n }\n return passive;\n})();\n//# sourceMappingURL=has.js.map","import { WORKER_OFFSCREEN_CANVAS } from './has.js';\n/**\n * @module ol/dom\n */\n//FIXME Move this function to the canvas module\n/**\n * Create an html canvas element and returns its 2d context.\n * @param {number} [opt_width] Canvas width.\n * @param {number} [opt_height] Canvas height.\n * @param {Array<HTMLCanvasElement>} [opt_canvasPool] Canvas pool to take existing canvas from.\n * @param {CanvasRenderingContext2DSettings} [opt_Context2DSettings] CanvasRenderingContext2DSettings\n * @return {CanvasRenderingContext2D} The context.\n */\nexport function createCanvasContext2D(opt_width, opt_height, opt_canvasPool, opt_Context2DSettings) {\n /** @type {HTMLCanvasElement|OffscreenCanvas} */\n var canvas;\n if (opt_canvasPool && opt_canvasPool.length) {\n canvas = opt_canvasPool.shift();\n }\n else if (WORKER_OFFSCREEN_CANVAS) {\n canvas = new OffscreenCanvas(opt_width || 300, opt_height || 300);\n }\n else {\n canvas = document.createElement('canvas');\n }\n if (opt_width) {\n canvas.width = opt_width;\n }\n if (opt_height) {\n canvas.height = opt_height;\n }\n //FIXME Allow OffscreenCanvasRenderingContext2D as return type\n return /** @type {CanvasRenderingContext2D} */ (canvas.getContext('2d', opt_Context2DSettings));\n}\n/**\n * Get the current computed width for the given element including margin,\n * padding and border.\n * Equivalent to jQuery's `$(el).outerWidth(true)`.\n * @param {!HTMLElement} element Element.\n * @return {number} The width.\n */\nexport function outerWidth(element) {\n var width = element.offsetWidth;\n var style = getComputedStyle(element);\n width += parseInt(style.marginLeft, 10) + parseInt(style.marginRight, 10);\n return width;\n}\n/**\n * Get the current computed height for the given element including margin,\n * padding and border.\n * Equivalent to jQuery's `$(el).outerHeight(true)`.\n * @param {!HTMLElement} element Element.\n * @return {number} The height.\n */\nexport function outerHeight(element) {\n var height = element.offsetHeight;\n var style = getComputedStyle(element);\n height += parseInt(style.marginTop, 10) + parseInt(style.marginBottom, 10);\n return height;\n}\n/**\n * @param {Node} newNode Node to replace old node\n * @param {Node} oldNode The node to be replaced\n */\nexport function replaceNode(newNode, oldNode) {\n var parent = oldNode.parentNode;\n if (parent) {\n parent.replaceChild(newNode, oldNode);\n }\n}\n/**\n * @param {Node} node The node to remove.\n * @return {Node|null} The node that was removed or null.\n */\nexport function removeNode(node) {\n return node && node.parentNode ? node.parentNode.removeChild(node) : null;\n}\n/**\n * @param {Node} node The node to remove the children from.\n */\nexport function removeChildren(node) {\n while (node.lastChild) {\n node.removeChild(node.lastChild);\n }\n}\n/**\n * Transform the children of a parent node so they match the\n * provided list of children. This function aims to efficiently\n * remove, add, and reorder child nodes while maintaining a simple\n * implementation (it is not guaranteed to minimize DOM operations).\n * @param {Node} node The parent node whose children need reworking.\n * @param {Array<Node>} children The desired children.\n */\nexport function replaceChildren(node, children) {\n var oldChildren = node.childNodes;\n for (var i = 0; true; ++i) {\n var oldChild = oldChildren[i];\n var newChild = children[i];\n // check if our work is done\n if (!oldChild && !newChild) {\n break;\n }\n // check if children match\n if (oldChild === newChild) {\n continue;\n }\n // check if a new child needs to be added\n if (!oldChild) {\n node.appendChild(newChild);\n continue;\n }\n // check if an old child needs to be removed\n if (!newChild) {\n node.removeChild(oldChild);\n --i;\n continue;\n }\n // reorder\n node.insertBefore(newChild, oldChild);\n }\n}\n//# sourceMappingURL=dom.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/control/Control\n */\nimport BaseObject from '../Object.js';\nimport MapEventType from '../MapEventType.js';\nimport { VOID } from '../functions.js';\nimport { listen, unlistenByKey } from '../events.js';\nimport { removeNode } from '../dom.js';\n/**\n * @typedef {Object} Options\n * @property {HTMLElement} [element] The element is the control's\n * container element. This only needs to be specified if you're developing\n * a custom control.\n * @property {function(import(\"../MapEvent.js\").default):void} [render] Function called when\n * the control should be re-rendered. This is called in a `requestAnimationFrame`\n * callback.\n * @property {HTMLElement|string} [target] Specify a target if you want\n * the control to be rendered outside of the map's viewport.\n */\n/**\n * @classdesc\n * A control is a visible widget with a DOM element in a fixed position on the\n * screen. They can involve user input (buttons), or be informational only;\n * the position is determined using CSS. By default these are placed in the\n * container with CSS class name `ol-overlaycontainer-stopevent`, but can use\n * any outside DOM element.\n *\n * This is the base class for controls. You can use it for simple custom\n * controls by creating the element with listeners, creating an instance:\n * ```js\n * var myControl = new Control({element: myElement});\n * ```\n * and then adding this to the map.\n *\n * The main advantage of having this as a control rather than a simple separate\n * DOM element is that preventing propagation is handled for you. Controls\n * will also be objects in a {@link module:ol/Collection~Collection}, so you can use their methods.\n *\n * You can also extend this base for your own control class. See\n * examples/custom-controls for an example of how to do this.\n *\n * @api\n */\nvar Control = /** @class */ (function (_super) {\n __extends(Control, _super);\n /**\n * @param {Options} options Control options.\n */\n function Control(options) {\n var _this = _super.call(this) || this;\n var element = options.element;\n if (element && !options.target && !element.style.pointerEvents) {\n element.style.pointerEvents = 'auto';\n }\n /**\n * @protected\n * @type {HTMLElement}\n */\n _this.element = element ? element : null;\n /**\n * @private\n * @type {HTMLElement}\n */\n _this.target_ = null;\n /**\n * @private\n * @type {import(\"../PluggableMap.js\").default|null}\n */\n _this.map_ = null;\n /**\n * @protected\n * @type {!Array<import(\"../events.js\").EventsKey>}\n */\n _this.listenerKeys = [];\n if (options.render) {\n _this.render = options.render;\n }\n if (options.target) {\n _this.setTarget(options.target);\n }\n return _this;\n }\n /**\n * Clean up.\n */\n Control.prototype.disposeInternal = function () {\n removeNode(this.element);\n _super.prototype.disposeInternal.call(this);\n };\n /**\n * Get the map associated with this control.\n * @return {import(\"../PluggableMap.js\").default|null} Map.\n * @api\n */\n Control.prototype.getMap = function () {\n return this.map_;\n };\n /**\n * Remove the control from its current map and attach it to the new map.\n * Pass `null` to just remove the control from the current map.\n * Subclasses may set up event handlers to get notified about changes to\n * the map here.\n * @param {import(\"../PluggableMap.js\").default|null} map Map.\n * @api\n */\n Control.prototype.setMap = function (map) {\n if (this.map_) {\n removeNode(this.element);\n }\n for (var i = 0, ii = this.listenerKeys.length; i < ii; ++i) {\n unlistenByKey(this.listenerKeys[i]);\n }\n this.listenerKeys.length = 0;\n this.map_ = map;\n if (map) {\n var target = this.target_\n ? this.target_\n : map.getOverlayContainerStopEvent();\n target.appendChild(this.element);\n if (this.render !== VOID) {\n this.listenerKeys.push(listen(map, MapEventType.POSTRENDER, this.render, this));\n }\n map.render();\n }\n };\n /**\n * Renders the control.\n * @param {import(\"../MapEvent.js\").default} mapEvent Map event.\n * @api\n */\n Control.prototype.render = function (mapEvent) { };\n /**\n * This function is used to set a target element for the control. It has no\n * effect if it is called after the control has been added to the map (i.e.\n * after `setMap` is called on the control). If no `target` is set in the\n * options passed to the control constructor and if `setTarget` is not called\n * then the control is added to the map's overlay container.\n * @param {HTMLElement|string} target Target.\n * @api\n */\n Control.prototype.setTarget = function (target) {\n this.target_ =\n typeof target === 'string' ? document.getElementById(target) : target;\n };\n return Control;\n}(BaseObject));\nexport default Control;\n//# sourceMappingURL=Control.js.map","/**\n * @module ol/css\n */\n/**\n * @typedef {Object} FontParameters\n * @property {string} style Style.\n * @property {string} variant Variant.\n * @property {string} weight Weight.\n * @property {string} size Size.\n * @property {string} lineHeight LineHeight.\n * @property {string} family Family.\n * @property {Array<string>} families Families.\n */\n/**\n * The CSS class for hidden feature.\n *\n * @const\n * @type {string}\n */\nexport var CLASS_HIDDEN = 'ol-hidden';\n/**\n * The CSS class that we'll give the DOM elements to have them selectable.\n *\n * @const\n * @type {string}\n */\nexport var CLASS_SELECTABLE = 'ol-selectable';\n/**\n * The CSS class that we'll give the DOM elements to have them unselectable.\n *\n * @const\n * @type {string}\n */\nexport var CLASS_UNSELECTABLE = 'ol-unselectable';\n/**\n * The CSS class for unsupported feature.\n *\n * @const\n * @type {string}\n */\nexport var CLASS_UNSUPPORTED = 'ol-unsupported';\n/**\n * The CSS class for controls.\n *\n * @const\n * @type {string}\n */\nexport var CLASS_CONTROL = 'ol-control';\n/**\n * The CSS class that we'll give the DOM elements that are collapsed, i.e.\n * to those elements which usually can be expanded.\n *\n * @const\n * @type {string}\n */\nexport var CLASS_COLLAPSED = 'ol-collapsed';\n/**\n * From https://stackoverflow.com/questions/10135697/regex-to-parse-any-css-font\n * @type {RegExp}\n */\nvar fontRegEx = new RegExp([\n '^\\\\s*(?=(?:(?:[-a-z]+\\\\s*){0,2}(italic|oblique))?)',\n '(?=(?:(?:[-a-z]+\\\\s*){0,2}(small-caps))?)',\n '(?=(?:(?:[-a-z]+\\\\s*){0,2}(bold(?:er)?|lighter|[1-9]00 ))?)',\n '(?:(?:normal|\\\\1|\\\\2|\\\\3)\\\\s*){0,3}((?:xx?-)?',\n '(?:small|large)|medium|smaller|larger|[\\\\.\\\\d]+(?:\\\\%|in|[cem]m|ex|p[ctx]))',\n '(?:\\\\s*\\\\/\\\\s*(normal|[\\\\.\\\\d]+(?:\\\\%|in|[cem]m|ex|p[ctx])?))',\n '?\\\\s*([-,\\\\\"\\\\\\'\\\\sa-z]+?)\\\\s*$',\n].join(''), 'i');\nvar fontRegExMatchIndex = [\n 'style',\n 'variant',\n 'weight',\n 'size',\n 'lineHeight',\n 'family',\n];\n/**\n * Get the list of font families from a font spec. Note that this doesn't work\n * for font families that have commas in them.\n * @param {string} fontSpec The CSS font property.\n * @return {FontParameters|null} The font parameters (or null if the input spec is invalid).\n */\nexport var getFontParameters = function (fontSpec) {\n var match = fontSpec.match(fontRegEx);\n if (!match) {\n return null;\n }\n var style = /** @type {FontParameters} */ ({\n lineHeight: 'normal',\n size: '1.2em',\n style: 'normal',\n weight: 'normal',\n variant: 'normal',\n });\n for (var i = 0, ii = fontRegExMatchIndex.length; i < ii; ++i) {\n var value = match[i + 1];\n if (value !== undefined) {\n style[fontRegExMatchIndex[i]] = value;\n }\n }\n style.families = style.family.split(/,\\s?/);\n return style;\n};\n/**\n * @param {number} opacity Opacity (0..1).\n * @return {string} CSS opacity.\n */\nexport function cssOpacity(opacity) {\n return opacity === 1 ? '' : String(Math.round(opacity * 100) / 100);\n}\n//# sourceMappingURL=css.js.map","/**\n * @module ol/layer/Property\n */\n/**\n * @enum {string}\n */\nexport default {\n OPACITY: 'opacity',\n VISIBLE: 'visible',\n EXTENT: 'extent',\n Z_INDEX: 'zIndex',\n MAX_RESOLUTION: 'maxResolution',\n MIN_RESOLUTION: 'minResolution',\n MAX_ZOOM: 'maxZoom',\n MIN_ZOOM: 'minZoom',\n SOURCE: 'source',\n MAP: 'map',\n};\n//# sourceMappingURL=Property.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/AssertionError\n */\nimport { VERSION } from './util.js';\n/**\n * Error object thrown when an assertion failed. This is an ECMA-262 Error,\n * extended with a `code` property.\n * See https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error.\n */\nvar AssertionError = /** @class */ (function (_super) {\n __extends(AssertionError, _super);\n /**\n * @param {number} code Error code.\n */\n function AssertionError(code) {\n var _this = this;\n var path = VERSION === 'latest' ? VERSION : 'v' + VERSION.split('-')[0];\n var message = 'Assertion failed. See https://openlayers.org/en/' +\n path +\n '/doc/errors/#' +\n code +\n ' for details.';\n _this = _super.call(this, message) || this;\n /**\n * Error code. The meaning of the code can be found on\n * https://openlayers.org/en/latest/doc/errors/ (replace `latest` with\n * the version found in the OpenLayers script's header comment if a version\n * other than the latest is used).\n * @type {number}\n * @api\n */\n _this.code = code;\n /**\n * @type {string}\n */\n _this.name = 'AssertionError';\n // Re-assign message, see https://github.com/Rich-Harris/buble/issues/40\n _this.message = message;\n return _this;\n }\n return AssertionError;\n}(Error));\nexport default AssertionError;\n//# sourceMappingURL=AssertionError.js.map","/**\n * @module ol/asserts\n */\nimport AssertionError from './AssertionError.js';\n/**\n * @param {*} assertion Assertion we expected to be truthy.\n * @param {number} errorCode Error code.\n */\nexport function assert(assertion, errorCode) {\n if (!assertion) {\n throw new AssertionError(errorCode);\n }\n}\n//# sourceMappingURL=asserts.js.map","/**\n * @module ol/math\n */\n/**\n * Takes a number and clamps it to within the provided bounds.\n * @param {number} value The input number.\n * @param {number} min The minimum value to return.\n * @param {number} max The maximum value to return.\n * @return {number} The input number if it is within bounds, or the nearest\n * number within the bounds.\n */\nexport function clamp(value, min, max) {\n return Math.min(Math.max(value, min), max);\n}\n/**\n * Return the hyperbolic cosine of a given number. The method will use the\n * native `Math.cosh` function if it is available, otherwise the hyperbolic\n * cosine will be calculated via the reference implementation of the Mozilla\n * developer network.\n *\n * @param {number} x X.\n * @return {number} Hyperbolic cosine of x.\n */\nexport var cosh = (function () {\n // Wrapped in a iife, to save the overhead of checking for the native\n // implementation on every invocation.\n var cosh;\n if ('cosh' in Math) {\n // The environment supports the native Math.cosh function, use it…\n cosh = Math.cosh;\n }\n else {\n // … else, use the reference implementation of MDN:\n cosh = function (x) {\n var y = /** @type {Math} */ (Math).exp(x);\n return (y + 1 / y) / 2;\n };\n }\n return cosh;\n})();\n/**\n * Return the base 2 logarithm of a given number. The method will use the\n * native `Math.log2` function if it is available, otherwise the base 2\n * logarithm will be calculated via the reference implementation of the\n * Mozilla developer network.\n *\n * @param {number} x X.\n * @return {number} Base 2 logarithm of x.\n */\nexport var log2 = (function () {\n // Wrapped in a iife, to save the overhead of checking for the native\n // implementation on every invocation.\n var log2;\n if ('log2' in Math) {\n // The environment supports the native Math.log2 function, use it…\n log2 = Math.log2;\n }\n else {\n // … else, use the reference implementation of MDN:\n log2 = function (x) {\n return Math.log(x) * Math.LOG2E;\n };\n }\n return log2;\n})();\n/**\n * Returns the square of the closest distance between the point (x, y) and the\n * line segment (x1, y1) to (x2, y2).\n * @param {number} x X.\n * @param {number} y Y.\n * @param {number} x1 X1.\n * @param {number} y1 Y1.\n * @param {number} x2 X2.\n * @param {number} y2 Y2.\n * @return {number} Squared distance.\n */\nexport function squaredSegmentDistance(x, y, x1, y1, x2, y2) {\n var dx = x2 - x1;\n var dy = y2 - y1;\n if (dx !== 0 || dy !== 0) {\n var t = ((x - x1) * dx + (y - y1) * dy) / (dx * dx + dy * dy);\n if (t > 1) {\n x1 = x2;\n y1 = y2;\n }\n else if (t > 0) {\n x1 += dx * t;\n y1 += dy * t;\n }\n }\n return squaredDistance(x, y, x1, y1);\n}\n/**\n * Returns the square of the distance between the points (x1, y1) and (x2, y2).\n * @param {number} x1 X1.\n * @param {number} y1 Y1.\n * @param {number} x2 X2.\n * @param {number} y2 Y2.\n * @return {number} Squared distance.\n */\nexport function squaredDistance(x1, y1, x2, y2) {\n var dx = x2 - x1;\n var dy = y2 - y1;\n return dx * dx + dy * dy;\n}\n/**\n * Solves system of linear equations using Gaussian elimination method.\n *\n * @param {Array<Array<number>>} mat Augmented matrix (n x n + 1 column)\n * in row-major order.\n * @return {Array<number>} The resulting vector.\n */\nexport function solveLinearSystem(mat) {\n var n = mat.length;\n for (var i = 0; i < n; i++) {\n // Find max in the i-th column (ignoring i - 1 first rows)\n var maxRow = i;\n var maxEl = Math.abs(mat[i][i]);\n for (var r = i + 1; r < n; r++) {\n var absValue = Math.abs(mat[r][i]);\n if (absValue > maxEl) {\n maxEl = absValue;\n maxRow = r;\n }\n }\n if (maxEl === 0) {\n return null; // matrix is singular\n }\n // Swap max row with i-th (current) row\n var tmp = mat[maxRow];\n mat[maxRow] = mat[i];\n mat[i] = tmp;\n // Subtract the i-th row to make all the remaining rows 0 in the i-th column\n for (var j = i + 1; j < n; j++) {\n var coef = -mat[j][i] / mat[i][i];\n for (var k = i; k < n + 1; k++) {\n if (i == k) {\n mat[j][k] = 0;\n }\n else {\n mat[j][k] += coef * mat[i][k];\n }\n }\n }\n }\n // Solve Ax=b for upper triangular matrix A (mat)\n var x = new Array(n);\n for (var l = n - 1; l >= 0; l--) {\n x[l] = mat[l][n] / mat[l][l];\n for (var m = l - 1; m >= 0; m--) {\n mat[m][n] -= mat[m][l] * x[l];\n }\n }\n return x;\n}\n/**\n * Converts radians to to degrees.\n *\n * @param {number} angleInRadians Angle in radians.\n * @return {number} Angle in degrees.\n */\nexport function toDegrees(angleInRadians) {\n return (angleInRadians * 180) / Math.PI;\n}\n/**\n * Converts degrees to radians.\n *\n * @param {number} angleInDegrees Angle in degrees.\n * @return {number} Angle in radians.\n */\nexport function toRadians(angleInDegrees) {\n return (angleInDegrees * Math.PI) / 180;\n}\n/**\n * Returns the modulo of a / b, depending on the sign of b.\n *\n * @param {number} a Dividend.\n * @param {number} b Divisor.\n * @return {number} Modulo.\n */\nexport function modulo(a, b) {\n var r = a % b;\n return r * b < 0 ? r + b : r;\n}\n/**\n * Calculates the linearly interpolated value of x between a and b.\n *\n * @param {number} a Number\n * @param {number} b Number\n * @param {number} x Value to be interpolated.\n * @return {number} Interpolated value.\n */\nexport function lerp(a, b, x) {\n return a + x * (b - a);\n}\n/**\n * Returns a number with a limited number of decimal digits.\n * @param {number} n The input number.\n * @param {number} decimals The maximum number of decimal digits.\n * @return {number} The input number with a limited number of decimal digits.\n */\nexport function toFixed(n, decimals) {\n var factor = Math.pow(10, decimals);\n return Math.round(n * factor) / factor;\n}\n/**\n * Rounds a number to the nearest integer value considering only the given number\n * of decimal digits (with rounding on the final digit).\n * @param {number} n The input number.\n * @param {number} decimals The maximum number of decimal digits.\n * @return {number} The nearest integer.\n */\nexport function round(n, decimals) {\n return Math.round(toFixed(n, decimals));\n}\n/**\n * Rounds a number to the next smaller integer considering only the given number\n * of decimal digits (with rounding on the final digit).\n * @param {number} n The input number.\n * @param {number} decimals The maximum number of decimal digits.\n * @return {number} The next smaller integer.\n */\nexport function floor(n, decimals) {\n return Math.floor(toFixed(n, decimals));\n}\n/**\n * Rounds a number to the next bigger integer considering only the given number\n * of decimal digits (with rounding on the final digit).\n * @param {number} n The input number.\n * @param {number} decimals The maximum number of decimal digits.\n * @return {number} The next bigger integer.\n */\nexport function ceil(n, decimals) {\n return Math.ceil(toFixed(n, decimals));\n}\n//# sourceMappingURL=math.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/layer/Base\n */\nimport BaseObject from '../Object.js';\nimport LayerProperty from './Property.js';\nimport { abstract } from '../util.js';\nimport { assert } from '../asserts.js';\nimport { assign } from '../obj.js';\nimport { clamp } from '../math.js';\n/**\n * A css color, or a function called with a view resolution returning a css color.\n *\n * @typedef {string|function(number):string} BackgroundColor\n * @api\n */\n/**\n * @typedef {import(\"../ObjectEventType\").Types|'change:extent'|'change:maxResolution'|'change:maxZoom'|\n * 'change:minResolution'|'change:minZoom'|'change:opacity'|'change:visible'|'change:zIndex'} BaseLayerObjectEventTypes\n */\n/***\n * @template Return\n * @typedef {import(\"../Observable\").OnSignature<import(\"../Observable\").EventTypes, import(\"../events/Event.js\").default, Return> &\n * import(\"../Observable\").OnSignature<BaseLayerObjectEventTypes, import(\"../Object\").ObjectEvent, Return> &\n * import(\"../Observable\").CombinedOnSignature<import(\"../Observable\").EventTypes|BaseLayerObjectEventTypes, Return>} BaseLayerOnSignature\n */\n/**\n * @typedef {Object} Options\n * @property {string} [className='ol-layer'] A CSS class name to set to the layer element.\n * @property {number} [opacity=1] Opacity (0, 1).\n * @property {boolean} [visible=true] Visibility.\n * @property {import(\"../extent.js\").Extent} [extent] The bounding extent for layer rendering. The layer will not be\n * rendered outside of this extent.\n * @property {number} [zIndex] The z-index for layer rendering. At rendering time, the layers\n * will be ordered, first by Z-index and then by position. When `undefined`, a `zIndex` of 0 is assumed\n * for layers that are added to the map's `layers` collection, or `Infinity` when the layer's `setMap()`\n * method was used.\n * @property {number} [minResolution] The minimum resolution (inclusive) at which this layer will be\n * visible.\n * @property {number} [maxResolution] The maximum resolution (exclusive) below which this layer will\n * be visible.\n * @property {number} [minZoom] The minimum view zoom level (exclusive) above which this layer will be\n * visible.\n * @property {number} [maxZoom] The maximum view zoom level (inclusive) at which this layer will\n * be visible.\n * @property {BackgroundColor} [background] Background color for the layer. If not specified, no background\n * will be rendered.\n * @property {Object<string, *>} [properties] Arbitrary observable properties. Can be accessed with `#get()` and `#set()`.\n */\n/**\n * @classdesc\n * Abstract base class; normally only used for creating subclasses and not\n * instantiated in apps.\n * Note that with {@link module:ol/layer/Base~BaseLayer} and all its subclasses, any property set in\n * the options is set as a {@link module:ol/Object~BaseObject} property on the layer object, so\n * is observable, and has get/set accessors.\n *\n * @api\n */\nvar BaseLayer = /** @class */ (function (_super) {\n __extends(BaseLayer, _super);\n /**\n * @param {Options} options Layer options.\n */\n function BaseLayer(options) {\n var _this = _super.call(this) || this;\n /***\n * @type {BaseLayerOnSignature<import(\"../events\").EventsKey>}\n */\n _this.on;\n /***\n * @type {BaseLayerOnSignature<import(\"../events\").EventsKey>}\n */\n _this.once;\n /***\n * @type {BaseLayerOnSignature<void>}\n */\n _this.un;\n /**\n * @type {BackgroundColor|false}\n * @private\n */\n _this.background_ = options.background;\n /**\n * @type {Object<string, *>}\n */\n var properties = assign({}, options);\n if (typeof options.properties === 'object') {\n delete properties.properties;\n assign(properties, options.properties);\n }\n properties[LayerProperty.OPACITY] =\n options.opacity !== undefined ? options.opacity : 1;\n assert(typeof properties[LayerProperty.OPACITY] === 'number', 64); // Layer opacity must be a number\n properties[LayerProperty.VISIBLE] =\n options.visible !== undefined ? options.visible : true;\n properties[LayerProperty.Z_INDEX] = options.zIndex;\n properties[LayerProperty.MAX_RESOLUTION] =\n options.maxResolution !== undefined ? options.maxResolution : Infinity;\n properties[LayerProperty.MIN_RESOLUTION] =\n options.minResolution !== undefined ? options.minResolution : 0;\n properties[LayerProperty.MIN_ZOOM] =\n options.minZoom !== undefined ? options.minZoom : -Infinity;\n properties[LayerProperty.MAX_ZOOM] =\n options.maxZoom !== undefined ? options.maxZoom : Infinity;\n /**\n * @type {string}\n * @private\n */\n _this.className_ =\n properties.className !== undefined ? properties.className : 'ol-layer';\n delete properties.className;\n _this.setProperties(properties);\n /**\n * @type {import(\"./Layer.js\").State}\n * @private\n */\n _this.state_ = null;\n return _this;\n }\n /**\n * Get the background for this layer.\n * @return {BackgroundColor|false} Layer background.\n */\n BaseLayer.prototype.getBackground = function () {\n return this.background_;\n };\n /**\n * @return {string} CSS class name.\n */\n BaseLayer.prototype.getClassName = function () {\n return this.className_;\n };\n /**\n * This method is not meant to be called by layers or layer renderers because the state\n * is incorrect if the layer is included in a layer group.\n *\n * @param {boolean} [opt_managed] Layer is managed.\n * @return {import(\"./Layer.js\").State} Layer state.\n */\n BaseLayer.prototype.getLayerState = function (opt_managed) {\n /** @type {import(\"./Layer.js\").State} */\n var state = this.state_ ||\n /** @type {?} */ ({\n layer: this,\n managed: opt_managed === undefined ? true : opt_managed,\n });\n var zIndex = this.getZIndex();\n state.opacity = clamp(Math.round(this.getOpacity() * 100) / 100, 0, 1);\n state.visible = this.getVisible();\n state.extent = this.getExtent();\n state.zIndex = zIndex === undefined && !state.managed ? Infinity : zIndex;\n state.maxResolution = this.getMaxResolution();\n state.minResolution = Math.max(this.getMinResolution(), 0);\n state.minZoom = this.getMinZoom();\n state.maxZoom = this.getMaxZoom();\n this.state_ = state;\n return state;\n };\n /**\n * @abstract\n * @param {Array<import(\"./Layer.js\").default>} [opt_array] Array of layers (to be\n * modified in place).\n * @return {Array<import(\"./Layer.js\").default>} Array of layers.\n */\n BaseLayer.prototype.getLayersArray = function (opt_array) {\n return abstract();\n };\n /**\n * @abstract\n * @param {Array<import(\"./Layer.js\").State>} [opt_states] Optional list of layer\n * states (to be modified in place).\n * @return {Array<import(\"./Layer.js\").State>} List of layer states.\n */\n BaseLayer.prototype.getLayerStatesArray = function (opt_states) {\n return abstract();\n };\n /**\n * Return the {@link module:ol/extent~Extent extent} of the layer or `undefined` if it\n * will be visible regardless of extent.\n * @return {import(\"../extent.js\").Extent|undefined} The layer extent.\n * @observable\n * @api\n */\n BaseLayer.prototype.getExtent = function () {\n return /** @type {import(\"../extent.js\").Extent|undefined} */ (this.get(LayerProperty.EXTENT));\n };\n /**\n * Return the maximum resolution of the layer.\n * @return {number} The maximum resolution of the layer.\n * @observable\n * @api\n */\n BaseLayer.prototype.getMaxResolution = function () {\n return /** @type {number} */ (this.get(LayerProperty.MAX_RESOLUTION));\n };\n /**\n * Return the minimum resolution of the layer.\n * @return {number} The minimum resolution of the layer.\n * @observable\n * @api\n */\n BaseLayer.prototype.getMinResolution = function () {\n return /** @type {number} */ (this.get(LayerProperty.MIN_RESOLUTION));\n };\n /**\n * Return the minimum zoom level of the layer.\n * @return {number} The minimum zoom level of the layer.\n * @observable\n * @api\n */\n BaseLayer.prototype.getMinZoom = function () {\n return /** @type {number} */ (this.get(LayerProperty.MIN_ZOOM));\n };\n /**\n * Return the maximum zoom level of the layer.\n * @return {number} The maximum zoom level of the layer.\n * @observable\n * @api\n */\n BaseLayer.prototype.getMaxZoom = function () {\n return /** @type {number} */ (this.get(LayerProperty.MAX_ZOOM));\n };\n /**\n * Return the opacity of the layer (between 0 and 1).\n * @return {number} The opacity of the layer.\n * @observable\n * @api\n */\n BaseLayer.prototype.getOpacity = function () {\n return /** @type {number} */ (this.get(LayerProperty.OPACITY));\n };\n /**\n * @abstract\n * @return {import(\"../source/State.js\").default} Source state.\n */\n BaseLayer.prototype.getSourceState = function () {\n return abstract();\n };\n /**\n * Return the visibility of the layer (`true` or `false`).\n * @return {boolean} The visibility of the layer.\n * @observable\n * @api\n */\n BaseLayer.prototype.getVisible = function () {\n return /** @type {boolean} */ (this.get(LayerProperty.VISIBLE));\n };\n /**\n * Return the Z-index of the layer, which is used to order layers before\n * rendering. The default Z-index is 0.\n * @return {number} The Z-index of the layer.\n * @observable\n * @api\n */\n BaseLayer.prototype.getZIndex = function () {\n return /** @type {number} */ (this.get(LayerProperty.Z_INDEX));\n };\n /**\n * Sets the background color.\n * @param {BackgroundColor} [opt_background] Background color.\n */\n BaseLayer.prototype.setBackground = function (opt_background) {\n this.background_ = opt_background;\n this.changed();\n };\n /**\n * Set the extent at which the layer is visible. If `undefined`, the layer\n * will be visible at all extents.\n * @param {import(\"../extent.js\").Extent|undefined} extent The extent of the layer.\n * @observable\n * @api\n */\n BaseLayer.prototype.setExtent = function (extent) {\n this.set(LayerProperty.EXTENT, extent);\n };\n /**\n * Set the maximum resolution at which the layer is visible.\n * @param {number} maxResolution The maximum resolution of the layer.\n * @observable\n * @api\n */\n BaseLayer.prototype.setMaxResolution = function (maxResolution) {\n this.set(LayerProperty.MAX_RESOLUTION, maxResolution);\n };\n /**\n * Set the minimum resolution at which the layer is visible.\n * @param {number} minResolution The minimum resolution of the layer.\n * @observable\n * @api\n */\n BaseLayer.prototype.setMinResolution = function (minResolution) {\n this.set(LayerProperty.MIN_RESOLUTION, minResolution);\n };\n /**\n * Set the maximum zoom (exclusive) at which the layer is visible.\n * Note that the zoom levels for layer visibility are based on the\n * view zoom level, which may be different from a tile source zoom level.\n * @param {number} maxZoom The maximum zoom of the layer.\n * @observable\n * @api\n */\n BaseLayer.prototype.setMaxZoom = function (maxZoom) {\n this.set(LayerProperty.MAX_ZOOM, maxZoom);\n };\n /**\n * Set the minimum zoom (inclusive) at which the layer is visible.\n * Note that the zoom levels for layer visibility are based on the\n * view zoom level, which may be different from a tile source zoom level.\n * @param {number} minZoom The minimum zoom of the layer.\n * @observable\n * @api\n */\n BaseLayer.prototype.setMinZoom = function (minZoom) {\n this.set(LayerProperty.MIN_ZOOM, minZoom);\n };\n /**\n * Set the opacity of the layer, allowed values range from 0 to 1.\n * @param {number} opacity The opacity of the layer.\n * @observable\n * @api\n */\n BaseLayer.prototype.setOpacity = function (opacity) {\n assert(typeof opacity === 'number', 64); // Layer opacity must be a number\n this.set(LayerProperty.OPACITY, opacity);\n };\n /**\n * Set the visibility of the layer (`true` or `false`).\n * @param {boolean} visible The visibility of the layer.\n * @observable\n * @api\n */\n BaseLayer.prototype.setVisible = function (visible) {\n this.set(LayerProperty.VISIBLE, visible);\n };\n /**\n * Set Z-index of the layer, which is used to order layers before rendering.\n * The default Z-index is 0.\n * @param {number} zindex The z-index of the layer.\n * @observable\n * @api\n */\n BaseLayer.prototype.setZIndex = function (zindex) {\n this.set(LayerProperty.Z_INDEX, zindex);\n };\n /**\n * Clean up.\n */\n BaseLayer.prototype.disposeInternal = function () {\n if (this.state_) {\n this.state_.layer = null;\n this.state_ = null;\n }\n _super.prototype.disposeInternal.call(this);\n };\n return BaseLayer;\n}(BaseObject));\nexport default BaseLayer;\n//# sourceMappingURL=Base.js.map","/**\n * @module ol/render/EventType\n */\n/**\n * @enum {string}\n */\nexport default {\n /**\n * Triggered before a layer is rendered.\n * @event module:ol/render/Event~RenderEvent#prerender\n * @api\n */\n PRERENDER: 'prerender',\n /**\n * Triggered after a layer is rendered.\n * @event module:ol/render/Event~RenderEvent#postrender\n * @api\n */\n POSTRENDER: 'postrender',\n /**\n * Triggered before layers are composed. When dispatched by the map, the event object will not have\n * a `context` set. When dispatched by a layer, the event object will have a `context` set. Only\n * WebGL layers currently dispatch this event.\n * @event module:ol/render/Event~RenderEvent#precompose\n * @api\n */\n PRECOMPOSE: 'precompose',\n /**\n * Triggered after layers are composed. When dispatched by the map, the event object will not have\n * a `context` set. When dispatched by a layer, the event object will have a `context` set. Only\n * WebGL layers currently dispatch this event.\n * @event module:ol/render/Event~RenderEvent#postcompose\n * @api\n */\n POSTCOMPOSE: 'postcompose',\n /**\n * Triggered when rendering is complete, i.e. all sources and tiles have\n * finished loading for the current viewport, and all tiles are faded in.\n * The event object will not have a `context` set.\n * @event module:ol/render/Event~RenderEvent#rendercomplete\n * @api\n */\n RENDERCOMPLETE: 'rendercomplete',\n};\n/**\n * @typedef {'postrender'|'precompose'|'postcompose'|'rendercomplete'} MapRenderEventTypes\n */\n/**\n * @typedef {'postrender'|'prerender'} LayerRenderEventTypes\n */\n//# sourceMappingURL=EventType.js.map","/**\n * @module ol/source/State\n */\n/**\n * @enum {string}\n * State of the source, one of 'undefined', 'loading', 'ready' or 'error'.\n */\nexport default {\n UNDEFINED: 'undefined',\n LOADING: 'loading',\n READY: 'ready',\n ERROR: 'error',\n};\n//# sourceMappingURL=State.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/layer/Layer\n */\nimport BaseLayer from './Base.js';\nimport EventType from '../events/EventType.js';\nimport LayerProperty from './Property.js';\nimport RenderEventType from '../render/EventType.js';\nimport SourceState from '../source/State.js';\nimport { assert } from '../asserts.js';\nimport { assign } from '../obj.js';\nimport { listen, unlistenByKey } from '../events.js';\n/**\n * @typedef {function(import(\"../PluggableMap.js\").FrameState):HTMLElement} RenderFunction\n */\n/***\n * @template Return\n * @typedef {import(\"../Observable\").OnSignature<import(\"../Observable\").EventTypes, import(\"../events/Event.js\").default, Return> &\n * import(\"../Observable\").OnSignature<import(\"./Base\").BaseLayerObjectEventTypes|\n * 'change:source', import(\"../Object\").ObjectEvent, Return> &\n * import(\"../Observable\").OnSignature<import(\"../render/EventType\").LayerRenderEventTypes, import(\"../render/Event\").default, Return> &\n * import(\"../Observable\").CombinedOnSignature<import(\"../Observable\").EventTypes|import(\"./Base\").BaseLayerObjectEventTypes|'change:source'|\n * import(\"../render/EventType\").LayerRenderEventTypes, Return>} LayerOnSignature\n */\n/**\n * @template {import(\"../source/Source.js\").default} [SourceType=import(\"../source/Source.js\").default]\n * @typedef {Object} Options\n * @property {string} [className='ol-layer'] A CSS class name to set to the layer element.\n * @property {number} [opacity=1] Opacity (0, 1).\n * @property {boolean} [visible=true] Visibility.\n * @property {import(\"../extent.js\").Extent} [extent] The bounding extent for layer rendering. The layer will not be\n * rendered outside of this extent.\n * @property {number} [zIndex] The z-index for layer rendering. At rendering time, the layers\n * will be ordered, first by Z-index and then by position. When `undefined`, a `zIndex` of 0 is assumed\n * for layers that are added to the map's `layers` collection, or `Infinity` when the layer's `setMap()`\n * method was used.\n * @property {number} [minResolution] The minimum resolution (inclusive) at which this layer will be\n * visible.\n * @property {number} [maxResolution] The maximum resolution (exclusive) below which this layer will\n * be visible.\n * @property {number} [minZoom] The minimum view zoom level (exclusive) above which this layer will be\n * visible.\n * @property {number} [maxZoom] The maximum view zoom level (inclusive) at which this layer will\n * be visible.\n * @property {SourceType} [source] Source for this layer. If not provided to the constructor,\n * the source can be set by calling {@link module:ol/layer/Layer~Layer#setSource layer.setSource(source)} after\n * construction.\n * @property {import(\"../PluggableMap.js\").default|null} [map] Map.\n * @property {RenderFunction} [render] Render function. Takes the frame state as input and is expected to return an\n * HTML element. Will overwrite the default rendering for the layer.\n * @property {Object<string, *>} [properties] Arbitrary observable properties. Can be accessed with `#get()` and `#set()`.\n */\n/**\n * @typedef {Object} State\n * @property {import(\"./Layer.js\").default} layer Layer.\n * @property {number} opacity Opacity, the value is rounded to two digits to appear after the decimal point.\n * @property {boolean} visible Visible.\n * @property {boolean} managed Managed.\n * @property {import(\"../extent.js\").Extent} [extent] Extent.\n * @property {number} zIndex ZIndex.\n * @property {number} maxResolution Maximum resolution.\n * @property {number} minResolution Minimum resolution.\n * @property {number} minZoom Minimum zoom.\n * @property {number} maxZoom Maximum zoom.\n */\n/**\n * @classdesc\n * Base class from which all layer types are derived. This should only be instantiated\n * in the case where a custom layer is added to the map with a custom `render` function.\n * Such a function can be specified in the `options` object, and is expected to return an HTML element.\n *\n * A visual representation of raster or vector map data.\n * Layers group together those properties that pertain to how the data is to be\n * displayed, irrespective of the source of that data.\n *\n * Layers are usually added to a map with {@link import(\"../PluggableMap.js\").default#addLayer map.addLayer()}. Components\n * like {@link module:ol/interaction/Draw~Draw} use unmanaged layers\n * internally. These unmanaged layers are associated with the map using\n * {@link module:ol/layer/Layer~Layer#setMap} instead.\n *\n * A generic `change` event is fired when the state of the source changes.\n *\n * Please note that for performance reasons several layers might get rendered to\n * the same HTML element, which will cause {@link import(\"../PluggableMap.js\").default#forEachLayerAtPixel map.forEachLayerAtPixel()} to\n * give false positives. To avoid this, apply different `className` properties to the\n * layers at creation time.\n *\n * @fires import(\"../render/Event.js\").RenderEvent#prerender\n * @fires import(\"../render/Event.js\").RenderEvent#postrender\n *\n * @template {import(\"../source/Source.js\").default} [SourceType=import(\"../source/Source.js\").default]\n * @template {import(\"../renderer/Layer.js\").default} [RendererType=import(\"../renderer/Layer.js\").default]\n * @api\n */\nvar Layer = /** @class */ (function (_super) {\n __extends(Layer, _super);\n /**\n * @param {Options<SourceType>} options Layer options.\n */\n function Layer(options) {\n var _this = this;\n var baseOptions = assign({}, options);\n delete baseOptions.source;\n _this = _super.call(this, baseOptions) || this;\n /***\n * @type {LayerOnSignature<import(\"../events\").EventsKey>}\n */\n _this.on;\n /***\n * @type {LayerOnSignature<import(\"../events\").EventsKey>}\n */\n _this.once;\n /***\n * @type {LayerOnSignature<void>}\n */\n _this.un;\n /**\n * @private\n * @type {?import(\"../events.js\").EventsKey}\n */\n _this.mapPrecomposeKey_ = null;\n /**\n * @private\n * @type {?import(\"../events.js\").EventsKey}\n */\n _this.mapRenderKey_ = null;\n /**\n * @private\n * @type {?import(\"../events.js\").EventsKey}\n */\n _this.sourceChangeKey_ = null;\n /**\n * @private\n * @type {RendererType}\n */\n _this.renderer_ = null;\n /**\n * @protected\n * @type {boolean}\n */\n _this.rendered = false;\n // Overwrite default render method with a custom one\n if (options.render) {\n _this.render = options.render;\n }\n if (options.map) {\n _this.setMap(options.map);\n }\n _this.addChangeListener(LayerProperty.SOURCE, _this.handleSourcePropertyChange_);\n var source = options.source\n ? /** @type {SourceType} */ (options.source)\n : null;\n _this.setSource(source);\n return _this;\n }\n /**\n * @param {Array<import(\"./Layer.js\").default>} [opt_array] Array of layers (to be modified in place).\n * @return {Array<import(\"./Layer.js\").default>} Array of layers.\n */\n Layer.prototype.getLayersArray = function (opt_array) {\n var array = opt_array ? opt_array : [];\n array.push(this);\n return array;\n };\n /**\n * @param {Array<import(\"./Layer.js\").State>} [opt_states] Optional list of layer states (to be modified in place).\n * @return {Array<import(\"./Layer.js\").State>} List of layer states.\n */\n Layer.prototype.getLayerStatesArray = function (opt_states) {\n var states = opt_states ? opt_states : [];\n states.push(this.getLayerState());\n return states;\n };\n /**\n * Get the layer source.\n * @return {SourceType|null} The layer source (or `null` if not yet set).\n * @observable\n * @api\n */\n Layer.prototype.getSource = function () {\n return /** @type {SourceType} */ (this.get(LayerProperty.SOURCE)) || null;\n };\n /**\n * @return {SourceType|null} The source being rendered.\n */\n Layer.prototype.getRenderSource = function () {\n return this.getSource();\n };\n /**\n * @return {import(\"../source/State.js\").default} Source state.\n */\n Layer.prototype.getSourceState = function () {\n var source = this.getSource();\n return !source ? SourceState.UNDEFINED : source.getState();\n };\n /**\n * @private\n */\n Layer.prototype.handleSourceChange_ = function () {\n this.changed();\n };\n /**\n * @private\n */\n Layer.prototype.handleSourcePropertyChange_ = function () {\n if (this.sourceChangeKey_) {\n unlistenByKey(this.sourceChangeKey_);\n this.sourceChangeKey_ = null;\n }\n var source = this.getSource();\n if (source) {\n this.sourceChangeKey_ = listen(source, EventType.CHANGE, this.handleSourceChange_, this);\n }\n this.changed();\n };\n /**\n * @param {import(\"../pixel\").Pixel} pixel Pixel.\n * @return {Promise<Array<import(\"../Feature\").default>>} Promise that resolves with\n * an array of features.\n */\n Layer.prototype.getFeatures = function (pixel) {\n if (!this.renderer_) {\n return new Promise(function (resolve) { return resolve([]); });\n }\n return this.renderer_.getFeatures(pixel);\n };\n /**\n * @param {import(\"../pixel\").Pixel} pixel Pixel.\n * @return {Uint8ClampedArray|Uint8Array|Float32Array|DataView|null} Pixel data.\n */\n Layer.prototype.getData = function (pixel) {\n if (!this.renderer_ || !this.rendered) {\n return null;\n }\n return this.renderer_.getData(pixel);\n };\n /**\n * In charge to manage the rendering of the layer. One layer type is\n * bounded with one layer renderer.\n * @param {?import(\"../PluggableMap.js\").FrameState} frameState Frame state.\n * @param {HTMLElement} target Target which the renderer may (but need not) use\n * for rendering its content.\n * @return {HTMLElement} The rendered element.\n */\n Layer.prototype.render = function (frameState, target) {\n var layerRenderer = this.getRenderer();\n if (layerRenderer.prepareFrame(frameState)) {\n this.rendered = true;\n return layerRenderer.renderFrame(frameState, target);\n }\n };\n /**\n * Called when a layer is not visible during a map render.\n */\n Layer.prototype.unrender = function () {\n this.rendered = false;\n };\n /**\n * For use inside the library only.\n * @param {import(\"../PluggableMap.js\").default|null} map Map.\n */\n Layer.prototype.setMapInternal = function (map) {\n if (!map) {\n this.unrender();\n }\n this.set(LayerProperty.MAP, map);\n };\n /**\n * For use inside the library only.\n * @return {import(\"../PluggableMap.js\").default|null} Map.\n */\n Layer.prototype.getMapInternal = function () {\n return this.get(LayerProperty.MAP);\n };\n /**\n * Sets the layer to be rendered on top of other layers on a map. The map will\n * not manage this layer in its layers collection, and the callback in\n * {@link module:ol/Map~Map#forEachLayerAtPixel} will receive `null` as layer. This\n * is useful for temporary layers. To remove an unmanaged layer from the map,\n * use `#setMap(null)`.\n *\n * To add the layer to a map and have it managed by the map, use\n * {@link module:ol/Map~Map#addLayer} instead.\n * @param {import(\"../PluggableMap.js\").default|null} map Map.\n * @api\n */\n Layer.prototype.setMap = function (map) {\n if (this.mapPrecomposeKey_) {\n unlistenByKey(this.mapPrecomposeKey_);\n this.mapPrecomposeKey_ = null;\n }\n if (!map) {\n this.changed();\n }\n if (this.mapRenderKey_) {\n unlistenByKey(this.mapRenderKey_);\n this.mapRenderKey_ = null;\n }\n if (map) {\n this.mapPrecomposeKey_ = listen(map, RenderEventType.PRECOMPOSE, function (evt) {\n var renderEvent = \n /** @type {import(\"../render/Event.js\").default} */ (evt);\n var layerStatesArray = renderEvent.frameState.layerStatesArray;\n var layerState = this.getLayerState(false);\n // A layer can only be added to the map once. Use either `layer.setMap()` or `map.addLayer()`, not both.\n assert(!layerStatesArray.some(function (arrayLayerState) {\n return arrayLayerState.layer === layerState.layer;\n }), 67);\n layerStatesArray.push(layerState);\n }, this);\n this.mapRenderKey_ = listen(this, EventType.CHANGE, map.render, map);\n this.changed();\n }\n };\n /**\n * Set the layer source.\n * @param {SourceType|null} source The layer source.\n * @observable\n * @api\n */\n Layer.prototype.setSource = function (source) {\n this.set(LayerProperty.SOURCE, source);\n };\n /**\n * Get the renderer for this layer.\n * @return {RendererType|null} The layer renderer.\n */\n Layer.prototype.getRenderer = function () {\n if (!this.renderer_) {\n this.renderer_ = this.createRenderer();\n }\n return this.renderer_;\n };\n /**\n * @return {boolean} The layer has a renderer.\n */\n Layer.prototype.hasRenderer = function () {\n return !!this.renderer_;\n };\n /**\n * Create a renderer for this layer.\n * @return {RendererType} A layer renderer.\n * @protected\n */\n Layer.prototype.createRenderer = function () {\n return null;\n };\n /**\n * Clean up.\n */\n Layer.prototype.disposeInternal = function () {\n if (this.renderer_) {\n this.renderer_.dispose();\n delete this.renderer_;\n }\n this.setSource(null);\n _super.prototype.disposeInternal.call(this);\n };\n return Layer;\n}(BaseLayer));\n/**\n * Return `true` if the layer is visible and if the provided view state\n * has resolution and zoom levels that are in range of the layer's min/max.\n * @param {State} layerState Layer state.\n * @param {import(\"../View.js\").State} viewState View state.\n * @return {boolean} The layer is visible at the given view state.\n */\nexport function inView(layerState, viewState) {\n if (!layerState.visible) {\n return false;\n }\n var resolution = viewState.resolution;\n if (resolution < layerState.minResolution ||\n resolution >= layerState.maxResolution) {\n return false;\n }\n var zoom = viewState.zoom;\n return zoom > layerState.minZoom && zoom <= layerState.maxZoom;\n}\nexport default Layer;\n//# sourceMappingURL=Layer.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/control/Attribution\n */\nimport Control from './Control.js';\nimport EventType from '../events/EventType.js';\nimport { CLASS_COLLAPSED, CLASS_CONTROL, CLASS_UNSELECTABLE } from '../css.js';\nimport { equals } from '../array.js';\nimport { inView } from '../layer/Layer.js';\nimport { removeChildren, replaceNode } from '../dom.js';\n/**\n * @typedef {Object} Options\n * @property {string} [className='ol-attribution'] CSS class name.\n * @property {HTMLElement|string} [target] Specify a target if you\n * want the control to be rendered outside of the map's\n * viewport.\n * @property {boolean} [collapsible] Specify if attributions can\n * be collapsed. If not specified, sources control this behavior with their\n * `attributionsCollapsible` setting.\n * @property {boolean} [collapsed=true] Specify if attributions should\n * be collapsed at startup.\n * @property {string} [tipLabel='Attributions'] Text label to use for the button tip.\n * @property {string|HTMLElement} [label='i'] Text label to use for the\n * collapsed attributions button.\n * Instead of text, also an element (e.g. a `span` element) can be used.\n * @property {string} [expandClassName=className + '-expand'] CSS class name for the\n * collapsed attributions button.\n * @property {string|HTMLElement} [collapseLabel='›'] Text label to use\n * for the expanded attributions button.\n * Instead of text, also an element (e.g. a `span` element) can be used.\n * @property {string} [collapseClassName=className + '-collapse'] CSS class name for the\n * expanded attributions button.\n * @property {function(import(\"../MapEvent.js\").default):void} [render] Function called when\n * the control should be re-rendered. This is called in a `requestAnimationFrame`\n * callback.\n */\n/**\n * @classdesc\n * Control to show all the attributions associated with the layer sources\n * in the map. This control is one of the default controls included in maps.\n * By default it will show in the bottom right portion of the map, but this can\n * be changed by using a css selector for `.ol-attribution`.\n *\n * @api\n */\nvar Attribution = /** @class */ (function (_super) {\n __extends(Attribution, _super);\n /**\n * @param {Options} [opt_options] Attribution options.\n */\n function Attribution(opt_options) {\n var _this = this;\n var options = opt_options ? opt_options : {};\n _this = _super.call(this, {\n element: document.createElement('div'),\n render: options.render,\n target: options.target,\n }) || this;\n /**\n * @private\n * @type {HTMLElement}\n */\n _this.ulElement_ = document.createElement('ul');\n /**\n * @private\n * @type {boolean}\n */\n _this.collapsed_ =\n options.collapsed !== undefined ? options.collapsed : true;\n /**\n * @private\n * @type {boolean}\n */\n _this.userCollapsed_ = _this.collapsed_;\n /**\n * @private\n * @type {boolean}\n */\n _this.overrideCollapsible_ = options.collapsible !== undefined;\n /**\n * @private\n * @type {boolean}\n */\n _this.collapsible_ =\n options.collapsible !== undefined ? options.collapsible : true;\n if (!_this.collapsible_) {\n _this.collapsed_ = false;\n }\n var className = options.className !== undefined ? options.className : 'ol-attribution';\n var tipLabel = options.tipLabel !== undefined ? options.tipLabel : 'Attributions';\n var expandClassName = options.expandClassName !== undefined\n ? options.expandClassName\n : className + '-expand';\n var collapseLabel = options.collapseLabel !== undefined ? options.collapseLabel : '\\u203A';\n var collapseClassName = options.collapseClassName !== undefined\n ? options.collapseClassName\n : className + '-collapse';\n if (typeof collapseLabel === 'string') {\n /**\n * @private\n * @type {HTMLElement}\n */\n _this.collapseLabel_ = document.createElement('span');\n _this.collapseLabel_.textContent = collapseLabel;\n _this.collapseLabel_.className = collapseClassName;\n }\n else {\n _this.collapseLabel_ = collapseLabel;\n }\n var label = options.label !== undefined ? options.label : 'i';\n if (typeof label === 'string') {\n /**\n * @private\n * @type {HTMLElement}\n */\n _this.label_ = document.createElement('span');\n _this.label_.textContent = label;\n _this.label_.className = expandClassName;\n }\n else {\n _this.label_ = label;\n }\n var activeLabel = _this.collapsible_ && !_this.collapsed_ ? _this.collapseLabel_ : _this.label_;\n /**\n * @private\n * @type {HTMLElement}\n */\n _this.toggleButton_ = document.createElement('button');\n _this.toggleButton_.setAttribute('type', 'button');\n _this.toggleButton_.setAttribute('aria-expanded', String(!_this.collapsed_));\n _this.toggleButton_.title = tipLabel;\n _this.toggleButton_.appendChild(activeLabel);\n _this.toggleButton_.addEventListener(EventType.CLICK, _this.handleClick_.bind(_this), false);\n var cssClasses = className +\n ' ' +\n CLASS_UNSELECTABLE +\n ' ' +\n CLASS_CONTROL +\n (_this.collapsed_ && _this.collapsible_ ? ' ' + CLASS_COLLAPSED : '') +\n (_this.collapsible_ ? '' : ' ol-uncollapsible');\n var element = _this.element;\n element.className = cssClasses;\n element.appendChild(_this.toggleButton_);\n element.appendChild(_this.ulElement_);\n /**\n * A list of currently rendered resolutions.\n * @type {Array<string>}\n * @private\n */\n _this.renderedAttributions_ = [];\n /**\n * @private\n * @type {boolean}\n */\n _this.renderedVisible_ = true;\n return _this;\n }\n /**\n * Collect a list of visible attributions and set the collapsible state.\n * @param {import(\"../PluggableMap.js\").FrameState} frameState Frame state.\n * @return {Array<string>} Attributions.\n * @private\n */\n Attribution.prototype.collectSourceAttributions_ = function (frameState) {\n /**\n * Used to determine if an attribution already exists.\n * @type {!Object<string, boolean>}\n */\n var lookup = {};\n /**\n * A list of visible attributions.\n * @type {Array<string>}\n */\n var visibleAttributions = [];\n var collapsible = true;\n var layerStatesArray = frameState.layerStatesArray;\n for (var i = 0, ii = layerStatesArray.length; i < ii; ++i) {\n var layerState = layerStatesArray[i];\n if (!inView(layerState, frameState.viewState)) {\n continue;\n }\n var source = /** @type {import(\"../layer/Layer.js\").default} */ (layerState.layer).getSource();\n if (!source) {\n continue;\n }\n var attributionGetter = source.getAttributions();\n if (!attributionGetter) {\n continue;\n }\n var attributions = attributionGetter(frameState);\n if (!attributions) {\n continue;\n }\n collapsible =\n collapsible && source.getAttributionsCollapsible() !== false;\n if (Array.isArray(attributions)) {\n for (var j = 0, jj = attributions.length; j < jj; ++j) {\n if (!(attributions[j] in lookup)) {\n visibleAttributions.push(attributions[j]);\n lookup[attributions[j]] = true;\n }\n }\n }\n else {\n if (!(attributions in lookup)) {\n visibleAttributions.push(attributions);\n lookup[attributions] = true;\n }\n }\n }\n if (!this.overrideCollapsible_) {\n this.setCollapsible(collapsible);\n }\n return visibleAttributions;\n };\n /**\n * @private\n * @param {?import(\"../PluggableMap.js\").FrameState} frameState Frame state.\n */\n Attribution.prototype.updateElement_ = function (frameState) {\n if (!frameState) {\n if (this.renderedVisible_) {\n this.element.style.display = 'none';\n this.renderedVisible_ = false;\n }\n return;\n }\n var attributions = this.collectSourceAttributions_(frameState);\n var visible = attributions.length > 0;\n if (this.renderedVisible_ != visible) {\n this.element.style.display = visible ? '' : 'none';\n this.renderedVisible_ = visible;\n }\n if (equals(attributions, this.renderedAttributions_)) {\n return;\n }\n removeChildren(this.ulElement_);\n // append the attributions\n for (var i = 0, ii = attributions.length; i < ii; ++i) {\n var element = document.createElement('li');\n element.innerHTML = attributions[i];\n this.ulElement_.appendChild(element);\n }\n this.renderedAttributions_ = attributions;\n };\n /**\n * @param {MouseEvent} event The event to handle\n * @private\n */\n Attribution.prototype.handleClick_ = function (event) {\n event.preventDefault();\n this.handleToggle_();\n this.userCollapsed_ = this.collapsed_;\n };\n /**\n * @private\n */\n Attribution.prototype.handleToggle_ = function () {\n this.element.classList.toggle(CLASS_COLLAPSED);\n if (this.collapsed_) {\n replaceNode(this.collapseLabel_, this.label_);\n }\n else {\n replaceNode(this.label_, this.collapseLabel_);\n }\n this.collapsed_ = !this.collapsed_;\n this.toggleButton_.setAttribute('aria-expanded', String(!this.collapsed_));\n };\n /**\n * Return `true` if the attribution is collapsible, `false` otherwise.\n * @return {boolean} True if the widget is collapsible.\n * @api\n */\n Attribution.prototype.getCollapsible = function () {\n return this.collapsible_;\n };\n /**\n * Set whether the attribution should be collapsible.\n * @param {boolean} collapsible True if the widget is collapsible.\n * @api\n */\n Attribution.prototype.setCollapsible = function (collapsible) {\n if (this.collapsible_ === collapsible) {\n return;\n }\n this.collapsible_ = collapsible;\n this.element.classList.toggle('ol-uncollapsible');\n if (this.userCollapsed_) {\n this.handleToggle_();\n }\n };\n /**\n * Collapse or expand the attribution according to the passed parameter. Will\n * not do anything if the attribution isn't collapsible or if the current\n * collapsed state is already the one requested.\n * @param {boolean} collapsed True if the widget is collapsed.\n * @api\n */\n Attribution.prototype.setCollapsed = function (collapsed) {\n this.userCollapsed_ = collapsed;\n if (!this.collapsible_ || this.collapsed_ === collapsed) {\n return;\n }\n this.handleToggle_();\n };\n /**\n * Return `true` when the attribution is currently collapsed or `false`\n * otherwise.\n * @return {boolean} True if the widget is collapsed.\n * @api\n */\n Attribution.prototype.getCollapsed = function () {\n return this.collapsed_;\n };\n /**\n * Update the attribution element.\n * @param {import(\"../MapEvent.js\").default} mapEvent Map event.\n * @override\n */\n Attribution.prototype.render = function (mapEvent) {\n this.updateElement_(mapEvent.frameState);\n };\n return Attribution;\n}(Control));\nexport default Attribution;\n//# sourceMappingURL=Attribution.js.map","/**\n * @module ol/pointer/EventType\n */\n/**\n * Constants for event names.\n * @enum {string}\n */\nexport default {\n POINTERMOVE: 'pointermove',\n POINTERDOWN: 'pointerdown',\n POINTERUP: 'pointerup',\n POINTEROVER: 'pointerover',\n POINTEROUT: 'pointerout',\n POINTERENTER: 'pointerenter',\n POINTERLEAVE: 'pointerleave',\n POINTERCANCEL: 'pointercancel',\n};\n//# sourceMappingURL=EventType.js.map","/**\n * @module ol/proj/Units\n */\n/**\n * Projection units: `'degrees'`, `'ft'`, `'m'`, `'pixels'`, `'tile-pixels'` or\n * `'us-ft'`.\n * @enum {string}\n */\nvar Units = {\n /**\n * Radians\n * @api\n */\n RADIANS: 'radians',\n /**\n * Degrees\n * @api\n */\n DEGREES: 'degrees',\n /**\n * Feet\n * @api\n */\n FEET: 'ft',\n /**\n * Meters\n * @api\n */\n METERS: 'm',\n /**\n * Pixels\n * @api\n */\n PIXELS: 'pixels',\n /**\n * Tile Pixels\n * @api\n */\n TILE_PIXELS: 'tile-pixels',\n /**\n * US Feet\n * @api\n */\n USFEET: 'us-ft',\n};\n/**\n * See http://duff.ess.washington.edu/data/raster/drg/docs/geotiff.txt\n * @type {Object<number, Units>}\n */\nvar unitByCode = {\n '9001': Units.METERS,\n '9002': Units.FEET,\n '9003': Units.USFEET,\n '9101': Units.RADIANS,\n '9102': Units.DEGREES,\n};\n/**\n * @param {number} code Unit code.\n * @return {Units} Units.\n */\nexport function fromCode(code) {\n return unitByCode[code];\n}\n/**\n * Meters per unit lookup table.\n * @const\n * @type {Object<Units, number>}\n * @api\n */\nexport var METERS_PER_UNIT = {};\n// use the radius of the Normal sphere\nMETERS_PER_UNIT[Units.RADIANS] = 6370997 / (2 * Math.PI);\nMETERS_PER_UNIT[Units.DEGREES] = (2 * Math.PI * 6370997) / 360;\nMETERS_PER_UNIT[Units.FEET] = 0.3048;\nMETERS_PER_UNIT[Units.METERS] = 1;\nMETERS_PER_UNIT[Units.USFEET] = 1200 / 3937;\nexport default Units;\n//# sourceMappingURL=Units.js.map","/**\n * @module ol/proj/Projection\n */\nimport { METERS_PER_UNIT } from './Units.js';\n/**\n * @typedef {Object} Options\n * @property {string} code The SRS identifier code, e.g. `EPSG:4326`.\n * @property {import(\"./Units.js\").default|string} [units] Units. Required unless a\n * proj4 projection is defined for `code`.\n * @property {import(\"../extent.js\").Extent} [extent] The validity extent for the SRS.\n * @property {string} [axisOrientation='enu'] The axis orientation as specified in Proj4.\n * @property {boolean} [global=false] Whether the projection is valid for the whole globe.\n * @property {number} [metersPerUnit] The meters per unit for the SRS.\n * If not provided, the `units` are used to get the meters per unit from the {@link module:ol/proj/Units~METERS_PER_UNIT}\n * lookup table.\n * @property {import(\"../extent.js\").Extent} [worldExtent] The world extent for the SRS.\n * @property {function(number, import(\"../coordinate.js\").Coordinate):number} [getPointResolution]\n * Function to determine resolution at a point. The function is called with a\n * `number` view resolution and a {@link module:ol/coordinate~Coordinate Coordinate} as arguments, and returns\n * the `number` resolution in projection units at the passed coordinate. If this is `undefined`,\n * the default {@link module:ol/proj.getPointResolution getPointResolution()} function will be used.\n */\n/**\n * @classdesc\n * Projection definition class. One of these is created for each projection\n * supported in the application and stored in the {@link module:ol/proj} namespace.\n * You can use these in applications, but this is not required, as API params\n * and options use {@link module:ol/proj~ProjectionLike} which means the simple string\n * code will suffice.\n *\n * You can use {@link module:ol/proj.get} to retrieve the object for a particular\n * projection.\n *\n * The library includes definitions for `EPSG:4326` and `EPSG:3857`, together\n * with the following aliases:\n * * `EPSG:4326`: CRS:84, urn:ogc:def:crs:EPSG:6.6:4326,\n * urn:ogc:def:crs:OGC:1.3:CRS84, urn:ogc:def:crs:OGC:2:84,\n * http://www.opengis.net/gml/srs/epsg.xml#4326,\n * urn:x-ogc:def:crs:EPSG:4326\n * * `EPSG:3857`: EPSG:102100, EPSG:102113, EPSG:900913,\n * urn:ogc:def:crs:EPSG:6.18:3:3857,\n * http://www.opengis.net/gml/srs/epsg.xml#3857\n *\n * If you use [proj4js](https://github.com/proj4js/proj4js), aliases can\n * be added using `proj4.defs()`. After all required projection definitions are\n * added, call the {@link module:ol/proj/proj4.register} function.\n *\n * @api\n */\nvar Projection = /** @class */ (function () {\n /**\n * @param {Options} options Projection options.\n */\n function Projection(options) {\n /**\n * @private\n * @type {string}\n */\n this.code_ = options.code;\n /**\n * Units of projected coordinates. When set to `TILE_PIXELS`, a\n * `this.extent_` and `this.worldExtent_` must be configured properly for each\n * tile.\n * @private\n * @type {import(\"./Units.js\").default}\n */\n this.units_ = /** @type {import(\"./Units.js\").default} */ (options.units);\n /**\n * Validity extent of the projection in projected coordinates. For projections\n * with `TILE_PIXELS` units, this is the extent of the tile in\n * tile pixel space.\n * @private\n * @type {import(\"../extent.js\").Extent}\n */\n this.extent_ = options.extent !== undefined ? options.extent : null;\n /**\n * Extent of the world in EPSG:4326. For projections with\n * `TILE_PIXELS` units, this is the extent of the tile in\n * projected coordinate space.\n * @private\n * @type {import(\"../extent.js\").Extent}\n */\n this.worldExtent_ =\n options.worldExtent !== undefined ? options.worldExtent : null;\n /**\n * @private\n * @type {string}\n */\n this.axisOrientation_ =\n options.axisOrientation !== undefined ? options.axisOrientation : 'enu';\n /**\n * @private\n * @type {boolean}\n */\n this.global_ = options.global !== undefined ? options.global : false;\n /**\n * @private\n * @type {boolean}\n */\n this.canWrapX_ = !!(this.global_ && this.extent_);\n /**\n * @private\n * @type {function(number, import(\"../coordinate.js\").Coordinate):number|undefined}\n */\n this.getPointResolutionFunc_ = options.getPointResolution;\n /**\n * @private\n * @type {import(\"../tilegrid/TileGrid.js\").default}\n */\n this.defaultTileGrid_ = null;\n /**\n * @private\n * @type {number|undefined}\n */\n this.metersPerUnit_ = options.metersPerUnit;\n }\n /**\n * @return {boolean} The projection is suitable for wrapping the x-axis\n */\n Projection.prototype.canWrapX = function () {\n return this.canWrapX_;\n };\n /**\n * Get the code for this projection, e.g. 'EPSG:4326'.\n * @return {string} Code.\n * @api\n */\n Projection.prototype.getCode = function () {\n return this.code_;\n };\n /**\n * Get the validity extent for this projection.\n * @return {import(\"../extent.js\").Extent} Extent.\n * @api\n */\n Projection.prototype.getExtent = function () {\n return this.extent_;\n };\n /**\n * Get the units of this projection.\n * @return {import(\"./Units.js\").default} Units.\n * @api\n */\n Projection.prototype.getUnits = function () {\n return this.units_;\n };\n /**\n * Get the amount of meters per unit of this projection. If the projection is\n * not configured with `metersPerUnit` or a units identifier, the return is\n * `undefined`.\n * @return {number|undefined} Meters.\n * @api\n */\n Projection.prototype.getMetersPerUnit = function () {\n return this.metersPerUnit_ || METERS_PER_UNIT[this.units_];\n };\n /**\n * Get the world extent for this projection.\n * @return {import(\"../extent.js\").Extent} Extent.\n * @api\n */\n Projection.prototype.getWorldExtent = function () {\n return this.worldExtent_;\n };\n /**\n * Get the axis orientation of this projection.\n * Example values are:\n * enu - the default easting, northing, elevation.\n * neu - northing, easting, up - useful for \"lat/long\" geographic coordinates,\n * or south orientated transverse mercator.\n * wnu - westing, northing, up - some planetary coordinate systems have\n * \"west positive\" coordinate systems\n * @return {string} Axis orientation.\n * @api\n */\n Projection.prototype.getAxisOrientation = function () {\n return this.axisOrientation_;\n };\n /**\n * Is this projection a global projection which spans the whole world?\n * @return {boolean} Whether the projection is global.\n * @api\n */\n Projection.prototype.isGlobal = function () {\n return this.global_;\n };\n /**\n * Set if the projection is a global projection which spans the whole world\n * @param {boolean} global Whether the projection is global.\n * @api\n */\n Projection.prototype.setGlobal = function (global) {\n this.global_ = global;\n this.canWrapX_ = !!(global && this.extent_);\n };\n /**\n * @return {import(\"../tilegrid/TileGrid.js\").default} The default tile grid.\n */\n Projection.prototype.getDefaultTileGrid = function () {\n return this.defaultTileGrid_;\n };\n /**\n * @param {import(\"../tilegrid/TileGrid.js\").default} tileGrid The default tile grid.\n */\n Projection.prototype.setDefaultTileGrid = function (tileGrid) {\n this.defaultTileGrid_ = tileGrid;\n };\n /**\n * Set the validity extent for this projection.\n * @param {import(\"../extent.js\").Extent} extent Extent.\n * @api\n */\n Projection.prototype.setExtent = function (extent) {\n this.extent_ = extent;\n this.canWrapX_ = !!(this.global_ && extent);\n };\n /**\n * Set the world extent for this projection.\n * @param {import(\"../extent.js\").Extent} worldExtent World extent\n * [minlon, minlat, maxlon, maxlat].\n * @api\n */\n Projection.prototype.setWorldExtent = function (worldExtent) {\n this.worldExtent_ = worldExtent;\n };\n /**\n * Set the getPointResolution function (see {@link module:ol/proj.getPointResolution}\n * for this projection.\n * @param {function(number, import(\"../coordinate.js\").Coordinate):number} func Function\n * @api\n */\n Projection.prototype.setGetPointResolution = function (func) {\n this.getPointResolutionFunc_ = func;\n };\n /**\n * Get the custom point resolution function for this projection (if set).\n * @return {function(number, import(\"../coordinate.js\").Coordinate):number|undefined} The custom point\n * resolution function (if set).\n */\n Projection.prototype.getPointResolutionFunc = function () {\n return this.getPointResolutionFunc_;\n };\n return Projection;\n}());\nexport default Projection;\n//# sourceMappingURL=Projection.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/proj/epsg3857\n */\nimport Projection from './Projection.js';\nimport Units from './Units.js';\nimport { cosh } from '../math.js';\n/**\n * Radius of WGS84 sphere\n *\n * @const\n * @type {number}\n */\nexport var RADIUS = 6378137;\n/**\n * @const\n * @type {number}\n */\nexport var HALF_SIZE = Math.PI * RADIUS;\n/**\n * @const\n * @type {import(\"../extent.js\").Extent}\n */\nexport var EXTENT = [-HALF_SIZE, -HALF_SIZE, HALF_SIZE, HALF_SIZE];\n/**\n * @const\n * @type {import(\"../extent.js\").Extent}\n */\nexport var WORLD_EXTENT = [-180, -85, 180, 85];\n/**\n * Maximum safe value in y direction\n * @const\n * @type {number}\n */\nexport var MAX_SAFE_Y = RADIUS * Math.log(Math.tan(Math.PI / 2));\n/**\n * @classdesc\n * Projection object for web/spherical Mercator (EPSG:3857).\n */\nvar EPSG3857Projection = /** @class */ (function (_super) {\n __extends(EPSG3857Projection, _super);\n /**\n * @param {string} code Code.\n */\n function EPSG3857Projection(code) {\n return _super.call(this, {\n code: code,\n units: Units.METERS,\n extent: EXTENT,\n global: true,\n worldExtent: WORLD_EXTENT,\n getPointResolution: function (resolution, point) {\n return resolution / cosh(point[1] / RADIUS);\n },\n }) || this;\n }\n return EPSG3857Projection;\n}(Projection));\n/**\n * Projections equal to EPSG:3857.\n *\n * @const\n * @type {Array<import(\"./Projection.js\").default>}\n */\nexport var PROJECTIONS = [\n new EPSG3857Projection('EPSG:3857'),\n new EPSG3857Projection('EPSG:102100'),\n new EPSG3857Projection('EPSG:102113'),\n new EPSG3857Projection('EPSG:900913'),\n new EPSG3857Projection('http://www.opengis.net/def/crs/EPSG/0/3857'),\n new EPSG3857Projection('http://www.opengis.net/gml/srs/epsg.xml#3857'),\n];\n/**\n * Transformation from EPSG:4326 to EPSG:3857.\n *\n * @param {Array<number>} input Input array of coordinate values.\n * @param {Array<number>} [opt_output] Output array of coordinate values.\n * @param {number} [opt_dimension] Dimension (default is `2`).\n * @return {Array<number>} Output array of coordinate values.\n */\nexport function fromEPSG4326(input, opt_output, opt_dimension) {\n var length = input.length;\n var dimension = opt_dimension > 1 ? opt_dimension : 2;\n var output = opt_output;\n if (output === undefined) {\n if (dimension > 2) {\n // preserve values beyond second dimension\n output = input.slice();\n }\n else {\n output = new Array(length);\n }\n }\n for (var i = 0; i < length; i += dimension) {\n output[i] = (HALF_SIZE * input[i]) / 180;\n var y = RADIUS * Math.log(Math.tan((Math.PI * (+input[i + 1] + 90)) / 360));\n if (y > MAX_SAFE_Y) {\n y = MAX_SAFE_Y;\n }\n else if (y < -MAX_SAFE_Y) {\n y = -MAX_SAFE_Y;\n }\n output[i + 1] = y;\n }\n return output;\n}\n/**\n * Transformation from EPSG:3857 to EPSG:4326.\n *\n * @param {Array<number>} input Input array of coordinate values.\n * @param {Array<number>} [opt_output] Output array of coordinate values.\n * @param {number} [opt_dimension] Dimension (default is `2`).\n * @return {Array<number>} Output array of coordinate values.\n */\nexport function toEPSG4326(input, opt_output, opt_dimension) {\n var length = input.length;\n var dimension = opt_dimension > 1 ? opt_dimension : 2;\n var output = opt_output;\n if (output === undefined) {\n if (dimension > 2) {\n // preserve values beyond second dimension\n output = input.slice();\n }\n else {\n output = new Array(length);\n }\n }\n for (var i = 0; i < length; i += dimension) {\n output[i] = (180 * input[i]) / HALF_SIZE;\n output[i + 1] =\n (360 * Math.atan(Math.exp(input[i + 1] / RADIUS))) / Math.PI - 90;\n }\n return output;\n}\n//# sourceMappingURL=epsg3857.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/proj/epsg4326\n */\nimport Projection from './Projection.js';\nimport Units from './Units.js';\n/**\n * Semi-major radius of the WGS84 ellipsoid.\n *\n * @const\n * @type {number}\n */\nexport var RADIUS = 6378137;\n/**\n * Extent of the EPSG:4326 projection which is the whole world.\n *\n * @const\n * @type {import(\"../extent.js\").Extent}\n */\nexport var EXTENT = [-180, -90, 180, 90];\n/**\n * @const\n * @type {number}\n */\nexport var METERS_PER_UNIT = (Math.PI * RADIUS) / 180;\n/**\n * @classdesc\n * Projection object for WGS84 geographic coordinates (EPSG:4326).\n *\n * Note that OpenLayers does not strictly comply with the EPSG definition.\n * The EPSG registry defines 4326 as a CRS for Latitude,Longitude (y,x).\n * OpenLayers treats EPSG:4326 as a pseudo-projection, with x,y coordinates.\n */\nvar EPSG4326Projection = /** @class */ (function (_super) {\n __extends(EPSG4326Projection, _super);\n /**\n * @param {string} code Code.\n * @param {string} [opt_axisOrientation] Axis orientation.\n */\n function EPSG4326Projection(code, opt_axisOrientation) {\n return _super.call(this, {\n code: code,\n units: Units.DEGREES,\n extent: EXTENT,\n axisOrientation: opt_axisOrientation,\n global: true,\n metersPerUnit: METERS_PER_UNIT,\n worldExtent: EXTENT,\n }) || this;\n }\n return EPSG4326Projection;\n}(Projection));\n/**\n * Projections equal to EPSG:4326.\n *\n * @const\n * @type {Array<import(\"./Projection.js\").default>}\n */\nexport var PROJECTIONS = [\n new EPSG4326Projection('CRS:84'),\n new EPSG4326Projection('EPSG:4326', 'neu'),\n new EPSG4326Projection('urn:ogc:def:crs:OGC:1.3:CRS84'),\n new EPSG4326Projection('urn:ogc:def:crs:OGC:2:84'),\n new EPSG4326Projection('http://www.opengis.net/def/crs/OGC/1.3/CRS84'),\n new EPSG4326Projection('http://www.opengis.net/gml/srs/epsg.xml#4326', 'neu'),\n new EPSG4326Projection('http://www.opengis.net/def/crs/EPSG/0/4326', 'neu'),\n];\n//# sourceMappingURL=epsg4326.js.map","/**\n * @module ol/proj/projections\n */\n/**\n * @type {Object<string, import(\"./Projection.js\").default>}\n */\nvar cache = {};\n/**\n * Clear the projections cache.\n */\nexport function clear() {\n cache = {};\n}\n/**\n * Get a cached projection by code.\n * @param {string} code The code for the projection.\n * @return {import(\"./Projection.js\").default} The projection (if cached).\n */\nexport function get(code) {\n return (cache[code] ||\n cache[code.replace(/urn:(x-)?ogc:def:crs:EPSG:(.*:)?(\\w+)$/, 'EPSG:$3')] ||\n null);\n}\n/**\n * Add a projection to the cache.\n * @param {string} code The projection code.\n * @param {import(\"./Projection.js\").default} projection The projection to cache.\n */\nexport function add(code, projection) {\n cache[code] = projection;\n}\n//# sourceMappingURL=projections.js.map","/**\n * @module ol/proj/transforms\n */\nimport { isEmpty } from '../obj.js';\n/**\n * @private\n * @type {!Object<string, Object<string, import(\"../proj.js\").TransformFunction>>}\n */\nvar transforms = {};\n/**\n * Clear the transform cache.\n */\nexport function clear() {\n transforms = {};\n}\n/**\n * Registers a conversion function to convert coordinates from the source\n * projection to the destination projection.\n *\n * @param {import(\"./Projection.js\").default} source Source.\n * @param {import(\"./Projection.js\").default} destination Destination.\n * @param {import(\"../proj.js\").TransformFunction} transformFn Transform.\n */\nexport function add(source, destination, transformFn) {\n var sourceCode = source.getCode();\n var destinationCode = destination.getCode();\n if (!(sourceCode in transforms)) {\n transforms[sourceCode] = {};\n }\n transforms[sourceCode][destinationCode] = transformFn;\n}\n/**\n * Unregisters the conversion function to convert coordinates from the source\n * projection to the destination projection. This method is used to clean up\n * cached transforms during testing.\n *\n * @param {import(\"./Projection.js\").default} source Source projection.\n * @param {import(\"./Projection.js\").default} destination Destination projection.\n * @return {import(\"../proj.js\").TransformFunction} transformFn The unregistered transform.\n */\nexport function remove(source, destination) {\n var sourceCode = source.getCode();\n var destinationCode = destination.getCode();\n var transform = transforms[sourceCode][destinationCode];\n delete transforms[sourceCode][destinationCode];\n if (isEmpty(transforms[sourceCode])) {\n delete transforms[sourceCode];\n }\n return transform;\n}\n/**\n * Get a transform given a source code and a destination code.\n * @param {string} sourceCode The code for the source projection.\n * @param {string} destinationCode The code for the destination projection.\n * @return {import(\"../proj.js\").TransformFunction|undefined} The transform function (if found).\n */\nexport function get(sourceCode, destinationCode) {\n var transform;\n if (sourceCode in transforms && destinationCode in transforms[sourceCode]) {\n transform = transforms[sourceCode][destinationCode];\n }\n return transform;\n}\n//# sourceMappingURL=transforms.js.map","/**\n * @module ol/extent/Corner\n */\n/**\n * Extent corner.\n * @enum {string}\n */\nexport default {\n BOTTOM_LEFT: 'bottom-left',\n BOTTOM_RIGHT: 'bottom-right',\n TOP_LEFT: 'top-left',\n TOP_RIGHT: 'top-right',\n};\n//# sourceMappingURL=Corner.js.map","/**\n * @module ol/extent\n */\nimport Corner from './extent/Corner.js';\nimport Relationship from './extent/Relationship.js';\nimport { assert } from './asserts.js';\n/**\n * An array of numbers representing an extent: `[minx, miny, maxx, maxy]`.\n * @typedef {Array<number>} Extent\n * @api\n */\n/**\n * Build an extent that includes all given coordinates.\n *\n * @param {Array<import(\"./coordinate.js\").Coordinate>} coordinates Coordinates.\n * @return {Extent} Bounding extent.\n * @api\n */\nexport function boundingExtent(coordinates) {\n var extent = createEmpty();\n for (var i = 0, ii = coordinates.length; i < ii; ++i) {\n extendCoordinate(extent, coordinates[i]);\n }\n return extent;\n}\n/**\n * @param {Array<number>} xs Xs.\n * @param {Array<number>} ys Ys.\n * @param {Extent} [opt_extent] Destination extent.\n * @private\n * @return {Extent} Extent.\n */\nfunction _boundingExtentXYs(xs, ys, opt_extent) {\n var minX = Math.min.apply(null, xs);\n var minY = Math.min.apply(null, ys);\n var maxX = Math.max.apply(null, xs);\n var maxY = Math.max.apply(null, ys);\n return createOrUpdate(minX, minY, maxX, maxY, opt_extent);\n}\n/**\n * Return extent increased by the provided value.\n * @param {Extent} extent Extent.\n * @param {number} value The amount by which the extent should be buffered.\n * @param {Extent} [opt_extent] Extent.\n * @return {Extent} Extent.\n * @api\n */\nexport function buffer(extent, value, opt_extent) {\n if (opt_extent) {\n opt_extent[0] = extent[0] - value;\n opt_extent[1] = extent[1] - value;\n opt_extent[2] = extent[2] + value;\n opt_extent[3] = extent[3] + value;\n return opt_extent;\n }\n else {\n return [\n extent[0] - value,\n extent[1] - value,\n extent[2] + value,\n extent[3] + value,\n ];\n }\n}\n/**\n * Creates a clone of an extent.\n *\n * @param {Extent} extent Extent to clone.\n * @param {Extent} [opt_extent] Extent.\n * @return {Extent} The clone.\n */\nexport function clone(extent, opt_extent) {\n if (opt_extent) {\n opt_extent[0] = extent[0];\n opt_extent[1] = extent[1];\n opt_extent[2] = extent[2];\n opt_extent[3] = extent[3];\n return opt_extent;\n }\n else {\n return extent.slice();\n }\n}\n/**\n * @param {Extent} extent Extent.\n * @param {number} x X.\n * @param {number} y Y.\n * @return {number} Closest squared distance.\n */\nexport function closestSquaredDistanceXY(extent, x, y) {\n var dx, dy;\n if (x < extent[0]) {\n dx = extent[0] - x;\n }\n else if (extent[2] < x) {\n dx = x - extent[2];\n }\n else {\n dx = 0;\n }\n if (y < extent[1]) {\n dy = extent[1] - y;\n }\n else if (extent[3] < y) {\n dy = y - extent[3];\n }\n else {\n dy = 0;\n }\n return dx * dx + dy * dy;\n}\n/**\n * Check if the passed coordinate is contained or on the edge of the extent.\n *\n * @param {Extent} extent Extent.\n * @param {import(\"./coordinate.js\").Coordinate} coordinate Coordinate.\n * @return {boolean} The coordinate is contained in the extent.\n * @api\n */\nexport function containsCoordinate(extent, coordinate) {\n return containsXY(extent, coordinate[0], coordinate[1]);\n}\n/**\n * Check if one extent contains another.\n *\n * An extent is deemed contained if it lies completely within the other extent,\n * including if they share one or more edges.\n *\n * @param {Extent} extent1 Extent 1.\n * @param {Extent} extent2 Extent 2.\n * @return {boolean} The second extent is contained by or on the edge of the\n * first.\n * @api\n */\nexport function containsExtent(extent1, extent2) {\n return (extent1[0] <= extent2[0] &&\n extent2[2] <= extent1[2] &&\n extent1[1] <= extent2[1] &&\n extent2[3] <= extent1[3]);\n}\n/**\n * Check if the passed coordinate is contained or on the edge of the extent.\n *\n * @param {Extent} extent Extent.\n * @param {number} x X coordinate.\n * @param {number} y Y coordinate.\n * @return {boolean} The x, y values are contained in the extent.\n * @api\n */\nexport function containsXY(extent, x, y) {\n return extent[0] <= x && x <= extent[2] && extent[1] <= y && y <= extent[3];\n}\n/**\n * Get the relationship between a coordinate and extent.\n * @param {Extent} extent The extent.\n * @param {import(\"./coordinate.js\").Coordinate} coordinate The coordinate.\n * @return {import(\"./extent/Relationship.js\").default} The relationship (bitwise compare with\n * import(\"./extent/Relationship.js\").Relationship).\n */\nexport function coordinateRelationship(extent, coordinate) {\n var minX = extent[0];\n var minY = extent[1];\n var maxX = extent[2];\n var maxY = extent[3];\n var x = coordinate[0];\n var y = coordinate[1];\n var relationship = Relationship.UNKNOWN;\n if (x < minX) {\n relationship = relationship | Relationship.LEFT;\n }\n else if (x > maxX) {\n relationship = relationship | Relationship.RIGHT;\n }\n if (y < minY) {\n relationship = relationship | Relationship.BELOW;\n }\n else if (y > maxY) {\n relationship = relationship | Relationship.ABOVE;\n }\n if (relationship === Relationship.UNKNOWN) {\n relationship = Relationship.INTERSECTING;\n }\n return relationship;\n}\n/**\n * Create an empty extent.\n * @return {Extent} Empty extent.\n * @api\n */\nexport function createEmpty() {\n return [Infinity, Infinity, -Infinity, -Infinity];\n}\n/**\n * Create a new extent or update the provided extent.\n * @param {number} minX Minimum X.\n * @param {number} minY Minimum Y.\n * @param {number} maxX Maximum X.\n * @param {number} maxY Maximum Y.\n * @param {Extent} [opt_extent] Destination extent.\n * @return {Extent} Extent.\n */\nexport function createOrUpdate(minX, minY, maxX, maxY, opt_extent) {\n if (opt_extent) {\n opt_extent[0] = minX;\n opt_extent[1] = minY;\n opt_extent[2] = maxX;\n opt_extent[3] = maxY;\n return opt_extent;\n }\n else {\n return [minX, minY, maxX, maxY];\n }\n}\n/**\n * Create a new empty extent or make the provided one empty.\n * @param {Extent} [opt_extent] Extent.\n * @return {Extent} Extent.\n */\nexport function createOrUpdateEmpty(opt_extent) {\n return createOrUpdate(Infinity, Infinity, -Infinity, -Infinity, opt_extent);\n}\n/**\n * @param {import(\"./coordinate.js\").Coordinate} coordinate Coordinate.\n * @param {Extent} [opt_extent] Extent.\n * @return {Extent} Extent.\n */\nexport function createOrUpdateFromCoordinate(coordinate, opt_extent) {\n var x = coordinate[0];\n var y = coordinate[1];\n return createOrUpdate(x, y, x, y, opt_extent);\n}\n/**\n * @param {Array<import(\"./coordinate.js\").Coordinate>} coordinates Coordinates.\n * @param {Extent} [opt_extent] Extent.\n * @return {Extent} Extent.\n */\nexport function createOrUpdateFromCoordinates(coordinates, opt_extent) {\n var extent = createOrUpdateEmpty(opt_extent);\n return extendCoordinates(extent, coordinates);\n}\n/**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {number} end End.\n * @param {number} stride Stride.\n * @param {Extent} [opt_extent] Extent.\n * @return {Extent} Extent.\n */\nexport function createOrUpdateFromFlatCoordinates(flatCoordinates, offset, end, stride, opt_extent) {\n var extent = createOrUpdateEmpty(opt_extent);\n return extendFlatCoordinates(extent, flatCoordinates, offset, end, stride);\n}\n/**\n * @param {Array<Array<import(\"./coordinate.js\").Coordinate>>} rings Rings.\n * @param {Extent} [opt_extent] Extent.\n * @return {Extent} Extent.\n */\nexport function createOrUpdateFromRings(rings, opt_extent) {\n var extent = createOrUpdateEmpty(opt_extent);\n return extendRings(extent, rings);\n}\n/**\n * Determine if two extents are equivalent.\n * @param {Extent} extent1 Extent 1.\n * @param {Extent} extent2 Extent 2.\n * @return {boolean} The two extents are equivalent.\n * @api\n */\nexport function equals(extent1, extent2) {\n return (extent1[0] == extent2[0] &&\n extent1[2] == extent2[2] &&\n extent1[1] == extent2[1] &&\n extent1[3] == extent2[3]);\n}\n/**\n * Determine if two extents are approximately equivalent.\n * @param {Extent} extent1 Extent 1.\n * @param {Extent} extent2 Extent 2.\n * @param {number} tolerance Tolerance in extent coordinate units.\n * @return {boolean} The two extents differ by less than the tolerance.\n */\nexport function approximatelyEquals(extent1, extent2, tolerance) {\n return (Math.abs(extent1[0] - extent2[0]) < tolerance &&\n Math.abs(extent1[2] - extent2[2]) < tolerance &&\n Math.abs(extent1[1] - extent2[1]) < tolerance &&\n Math.abs(extent1[3] - extent2[3]) < tolerance);\n}\n/**\n * Modify an extent to include another extent.\n * @param {Extent} extent1 The extent to be modified.\n * @param {Extent} extent2 The extent that will be included in the first.\n * @return {Extent} A reference to the first (extended) extent.\n * @api\n */\nexport function extend(extent1, extent2) {\n if (extent2[0] < extent1[0]) {\n extent1[0] = extent2[0];\n }\n if (extent2[2] > extent1[2]) {\n extent1[2] = extent2[2];\n }\n if (extent2[1] < extent1[1]) {\n extent1[1] = extent2[1];\n }\n if (extent2[3] > extent1[3]) {\n extent1[3] = extent2[3];\n }\n return extent1;\n}\n/**\n * @param {Extent} extent Extent.\n * @param {import(\"./coordinate.js\").Coordinate} coordinate Coordinate.\n */\nexport function extendCoordinate(extent, coordinate) {\n if (coordinate[0] < extent[0]) {\n extent[0] = coordinate[0];\n }\n if (coordinate[0] > extent[2]) {\n extent[2] = coordinate[0];\n }\n if (coordinate[1] < extent[1]) {\n extent[1] = coordinate[1];\n }\n if (coordinate[1] > extent[3]) {\n extent[3] = coordinate[1];\n }\n}\n/**\n * @param {Extent} extent Extent.\n * @param {Array<import(\"./coordinate.js\").Coordinate>} coordinates Coordinates.\n * @return {Extent} Extent.\n */\nexport function extendCoordinates(extent, coordinates) {\n for (var i = 0, ii = coordinates.length; i < ii; ++i) {\n extendCoordinate(extent, coordinates[i]);\n }\n return extent;\n}\n/**\n * @param {Extent} extent Extent.\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {number} end End.\n * @param {number} stride Stride.\n * @return {Extent} Extent.\n */\nexport function extendFlatCoordinates(extent, flatCoordinates, offset, end, stride) {\n for (; offset < end; offset += stride) {\n extendXY(extent, flatCoordinates[offset], flatCoordinates[offset + 1]);\n }\n return extent;\n}\n/**\n * @param {Extent} extent Extent.\n * @param {Array<Array<import(\"./coordinate.js\").Coordinate>>} rings Rings.\n * @return {Extent} Extent.\n */\nexport function extendRings(extent, rings) {\n for (var i = 0, ii = rings.length; i < ii; ++i) {\n extendCoordinates(extent, rings[i]);\n }\n return extent;\n}\n/**\n * @param {Extent} extent Extent.\n * @param {number} x X.\n * @param {number} y Y.\n */\nexport function extendXY(extent, x, y) {\n extent[0] = Math.min(extent[0], x);\n extent[1] = Math.min(extent[1], y);\n extent[2] = Math.max(extent[2], x);\n extent[3] = Math.max(extent[3], y);\n}\n/**\n * This function calls `callback` for each corner of the extent. If the\n * callback returns a truthy value the function returns that value\n * immediately. Otherwise the function returns `false`.\n * @param {Extent} extent Extent.\n * @param {function(import(\"./coordinate.js\").Coordinate): S} callback Callback.\n * @return {S|boolean} Value.\n * @template S\n */\nexport function forEachCorner(extent, callback) {\n var val;\n val = callback(getBottomLeft(extent));\n if (val) {\n return val;\n }\n val = callback(getBottomRight(extent));\n if (val) {\n return val;\n }\n val = callback(getTopRight(extent));\n if (val) {\n return val;\n }\n val = callback(getTopLeft(extent));\n if (val) {\n return val;\n }\n return false;\n}\n/**\n * Get the size of an extent.\n * @param {Extent} extent Extent.\n * @return {number} Area.\n * @api\n */\nexport function getArea(extent) {\n var area = 0;\n if (!isEmpty(extent)) {\n area = getWidth(extent) * getHeight(extent);\n }\n return area;\n}\n/**\n * Get the bottom left coordinate of an extent.\n * @param {Extent} extent Extent.\n * @return {import(\"./coordinate.js\").Coordinate} Bottom left coordinate.\n * @api\n */\nexport function getBottomLeft(extent) {\n return [extent[0], extent[1]];\n}\n/**\n * Get the bottom right coordinate of an extent.\n * @param {Extent} extent Extent.\n * @return {import(\"./coordinate.js\").Coordinate} Bottom right coordinate.\n * @api\n */\nexport function getBottomRight(extent) {\n return [extent[2], extent[1]];\n}\n/**\n * Get the center coordinate of an extent.\n * @param {Extent} extent Extent.\n * @return {import(\"./coordinate.js\").Coordinate} Center.\n * @api\n */\nexport function getCenter(extent) {\n return [(extent[0] + extent[2]) / 2, (extent[1] + extent[3]) / 2];\n}\n/**\n * Get a corner coordinate of an extent.\n * @param {Extent} extent Extent.\n * @param {import(\"./extent/Corner.js\").default} corner Corner.\n * @return {import(\"./coordinate.js\").Coordinate} Corner coordinate.\n */\nexport function getCorner(extent, corner) {\n var coordinate;\n if (corner === Corner.BOTTOM_LEFT) {\n coordinate = getBottomLeft(extent);\n }\n else if (corner === Corner.BOTTOM_RIGHT) {\n coordinate = getBottomRight(extent);\n }\n else if (corner === Corner.TOP_LEFT) {\n coordinate = getTopLeft(extent);\n }\n else if (corner === Corner.TOP_RIGHT) {\n coordinate = getTopRight(extent);\n }\n else {\n assert(false, 13); // Invalid corner\n }\n return coordinate;\n}\n/**\n * @param {Extent} extent1 Extent 1.\n * @param {Extent} extent2 Extent 2.\n * @return {number} Enlarged area.\n */\nexport function getEnlargedArea(extent1, extent2) {\n var minX = Math.min(extent1[0], extent2[0]);\n var minY = Math.min(extent1[1], extent2[1]);\n var maxX = Math.max(extent1[2], extent2[2]);\n var maxY = Math.max(extent1[3], extent2[3]);\n return (maxX - minX) * (maxY - minY);\n}\n/**\n * @param {import(\"./coordinate.js\").Coordinate} center Center.\n * @param {number} resolution Resolution.\n * @param {number} rotation Rotation.\n * @param {import(\"./size.js\").Size} size Size.\n * @param {Extent} [opt_extent] Destination extent.\n * @return {Extent} Extent.\n */\nexport function getForViewAndSize(center, resolution, rotation, size, opt_extent) {\n var dx = (resolution * size[0]) / 2;\n var dy = (resolution * size[1]) / 2;\n var cosRotation = Math.cos(rotation);\n var sinRotation = Math.sin(rotation);\n var xCos = dx * cosRotation;\n var xSin = dx * sinRotation;\n var yCos = dy * cosRotation;\n var ySin = dy * sinRotation;\n var x = center[0];\n var y = center[1];\n var x0 = x - xCos + ySin;\n var x1 = x - xCos - ySin;\n var x2 = x + xCos - ySin;\n var x3 = x + xCos + ySin;\n var y0 = y - xSin - yCos;\n var y1 = y - xSin + yCos;\n var y2 = y + xSin + yCos;\n var y3 = y + xSin - yCos;\n return createOrUpdate(Math.min(x0, x1, x2, x3), Math.min(y0, y1, y2, y3), Math.max(x0, x1, x2, x3), Math.max(y0, y1, y2, y3), opt_extent);\n}\n/**\n * Get the height of an extent.\n * @param {Extent} extent Extent.\n * @return {number} Height.\n * @api\n */\nexport function getHeight(extent) {\n return extent[3] - extent[1];\n}\n/**\n * @param {Extent} extent1 Extent 1.\n * @param {Extent} extent2 Extent 2.\n * @return {number} Intersection area.\n */\nexport function getIntersectionArea(extent1, extent2) {\n var intersection = getIntersection(extent1, extent2);\n return getArea(intersection);\n}\n/**\n * Get the intersection of two extents.\n * @param {Extent} extent1 Extent 1.\n * @param {Extent} extent2 Extent 2.\n * @param {Extent} [opt_extent] Optional extent to populate with intersection.\n * @return {Extent} Intersecting extent.\n * @api\n */\nexport function getIntersection(extent1, extent2, opt_extent) {\n var intersection = opt_extent ? opt_extent : createEmpty();\n if (intersects(extent1, extent2)) {\n if (extent1[0] > extent2[0]) {\n intersection[0] = extent1[0];\n }\n else {\n intersection[0] = extent2[0];\n }\n if (extent1[1] > extent2[1]) {\n intersection[1] = extent1[1];\n }\n else {\n intersection[1] = extent2[1];\n }\n if (extent1[2] < extent2[2]) {\n intersection[2] = extent1[2];\n }\n else {\n intersection[2] = extent2[2];\n }\n if (extent1[3] < extent2[3]) {\n intersection[3] = extent1[3];\n }\n else {\n intersection[3] = extent2[3];\n }\n }\n else {\n createOrUpdateEmpty(intersection);\n }\n return intersection;\n}\n/**\n * @param {Extent} extent Extent.\n * @return {number} Margin.\n */\nexport function getMargin(extent) {\n return getWidth(extent) + getHeight(extent);\n}\n/**\n * Get the size (width, height) of an extent.\n * @param {Extent} extent The extent.\n * @return {import(\"./size.js\").Size} The extent size.\n * @api\n */\nexport function getSize(extent) {\n return [extent[2] - extent[0], extent[3] - extent[1]];\n}\n/**\n * Get the top left coordinate of an extent.\n * @param {Extent} extent Extent.\n * @return {import(\"./coordinate.js\").Coordinate} Top left coordinate.\n * @api\n */\nexport function getTopLeft(extent) {\n return [extent[0], extent[3]];\n}\n/**\n * Get the top right coordinate of an extent.\n * @param {Extent} extent Extent.\n * @return {import(\"./coordinate.js\").Coordinate} Top right coordinate.\n * @api\n */\nexport function getTopRight(extent) {\n return [extent[2], extent[3]];\n}\n/**\n * Get the width of an extent.\n * @param {Extent} extent Extent.\n * @return {number} Width.\n * @api\n */\nexport function getWidth(extent) {\n return extent[2] - extent[0];\n}\n/**\n * Determine if one extent intersects another.\n * @param {Extent} extent1 Extent 1.\n * @param {Extent} extent2 Extent.\n * @return {boolean} The two extents intersect.\n * @api\n */\nexport function intersects(extent1, extent2) {\n return (extent1[0] <= extent2[2] &&\n extent1[2] >= extent2[0] &&\n extent1[1] <= extent2[3] &&\n extent1[3] >= extent2[1]);\n}\n/**\n * Determine if an extent is empty.\n * @param {Extent} extent Extent.\n * @return {boolean} Is empty.\n * @api\n */\nexport function isEmpty(extent) {\n return extent[2] < extent[0] || extent[3] < extent[1];\n}\n/**\n * @param {Extent} extent Extent.\n * @param {Extent} [opt_extent] Extent.\n * @return {Extent} Extent.\n */\nexport function returnOrUpdate(extent, opt_extent) {\n if (opt_extent) {\n opt_extent[0] = extent[0];\n opt_extent[1] = extent[1];\n opt_extent[2] = extent[2];\n opt_extent[3] = extent[3];\n return opt_extent;\n }\n else {\n return extent;\n }\n}\n/**\n * @param {Extent} extent Extent.\n * @param {number} value Value.\n */\nexport function scaleFromCenter(extent, value) {\n var deltaX = ((extent[2] - extent[0]) / 2) * (value - 1);\n var deltaY = ((extent[3] - extent[1]) / 2) * (value - 1);\n extent[0] -= deltaX;\n extent[2] += deltaX;\n extent[1] -= deltaY;\n extent[3] += deltaY;\n}\n/**\n * Determine if the segment between two coordinates intersects (crosses,\n * touches, or is contained by) the provided extent.\n * @param {Extent} extent The extent.\n * @param {import(\"./coordinate.js\").Coordinate} start Segment start coordinate.\n * @param {import(\"./coordinate.js\").Coordinate} end Segment end coordinate.\n * @return {boolean} The segment intersects the extent.\n */\nexport function intersectsSegment(extent, start, end) {\n var intersects = false;\n var startRel = coordinateRelationship(extent, start);\n var endRel = coordinateRelationship(extent, end);\n if (startRel === Relationship.INTERSECTING ||\n endRel === Relationship.INTERSECTING) {\n intersects = true;\n }\n else {\n var minX = extent[0];\n var minY = extent[1];\n var maxX = extent[2];\n var maxY = extent[3];\n var startX = start[0];\n var startY = start[1];\n var endX = end[0];\n var endY = end[1];\n var slope = (endY - startY) / (endX - startX);\n var x = void 0, y = void 0;\n if (!!(endRel & Relationship.ABOVE) && !(startRel & Relationship.ABOVE)) {\n // potentially intersects top\n x = endX - (endY - maxY) / slope;\n intersects = x >= minX && x <= maxX;\n }\n if (!intersects &&\n !!(endRel & Relationship.RIGHT) &&\n !(startRel & Relationship.RIGHT)) {\n // potentially intersects right\n y = endY - (endX - maxX) * slope;\n intersects = y >= minY && y <= maxY;\n }\n if (!intersects &&\n !!(endRel & Relationship.BELOW) &&\n !(startRel & Relationship.BELOW)) {\n // potentially intersects bottom\n x = endX - (endY - minY) / slope;\n intersects = x >= minX && x <= maxX;\n }\n if (!intersects &&\n !!(endRel & Relationship.LEFT) &&\n !(startRel & Relationship.LEFT)) {\n // potentially intersects left\n y = endY - (endX - minX) * slope;\n intersects = y >= minY && y <= maxY;\n }\n }\n return intersects;\n}\n/**\n * Apply a transform function to the extent.\n * @param {Extent} extent Extent.\n * @param {import(\"./proj.js\").TransformFunction} transformFn Transform function.\n * Called with `[minX, minY, maxX, maxY]` extent coordinates.\n * @param {Extent} [opt_extent] Destination extent.\n * @param {number} [opt_stops] Number of stops per side used for the transform.\n * By default only the corners are used.\n * @return {Extent} Extent.\n * @api\n */\nexport function applyTransform(extent, transformFn, opt_extent, opt_stops) {\n var coordinates = [];\n if (opt_stops > 1) {\n var width = extent[2] - extent[0];\n var height = extent[3] - extent[1];\n for (var i = 0; i < opt_stops; ++i) {\n coordinates.push(extent[0] + (width * i) / opt_stops, extent[1], extent[2], extent[1] + (height * i) / opt_stops, extent[2] - (width * i) / opt_stops, extent[3], extent[0], extent[3] - (height * i) / opt_stops);\n }\n }\n else {\n coordinates = [\n extent[0],\n extent[1],\n extent[2],\n extent[1],\n extent[2],\n extent[3],\n extent[0],\n extent[3],\n ];\n }\n transformFn(coordinates, coordinates, 2);\n var xs = [];\n var ys = [];\n for (var i = 0, l = coordinates.length; i < l; i += 2) {\n xs.push(coordinates[i]);\n ys.push(coordinates[i + 1]);\n }\n return _boundingExtentXYs(xs, ys, opt_extent);\n}\n/**\n * Modifies the provided extent in-place to be within the real world\n * extent.\n *\n * @param {Extent} extent Extent.\n * @param {import(\"./proj/Projection.js\").default} projection Projection\n * @return {Extent} The extent within the real world extent.\n */\nexport function wrapX(extent, projection) {\n var projectionExtent = projection.getExtent();\n var center = getCenter(extent);\n if (projection.canWrapX() &&\n (center[0] < projectionExtent[0] || center[0] >= projectionExtent[2])) {\n var worldWidth = getWidth(projectionExtent);\n var worldsAway = Math.floor((center[0] - projectionExtent[0]) / worldWidth);\n var offset = worldsAway * worldWidth;\n extent[0] -= offset;\n extent[2] -= offset;\n }\n return extent;\n}\n//# sourceMappingURL=extent.js.map","/**\n * @module ol/extent/Relationship\n */\n/**\n * Relationship to an extent.\n * @enum {number}\n */\nexport default {\n UNKNOWN: 0,\n INTERSECTING: 1,\n ABOVE: 2,\n RIGHT: 4,\n BELOW: 8,\n LEFT: 16,\n};\n//# sourceMappingURL=Relationship.js.map","/**\n * @module ol/coordinate\n */\nimport { getWidth } from './extent.js';\nimport { modulo } from './math.js';\nimport { padNumber } from './string.js';\n/**\n * An array of numbers representing an xy coordinate. Example: `[16, 48]`.\n * @typedef {Array<number>} Coordinate\n * @api\n */\n/**\n * A function that takes a {@link module:ol/coordinate~Coordinate} and\n * transforms it into a `{string}`.\n *\n * @typedef {function((Coordinate|undefined)): string} CoordinateFormat\n * @api\n */\n/**\n * Add `delta` to `coordinate`. `coordinate` is modified in place and returned\n * by the function.\n *\n * Example:\n *\n * import {add} from 'ol/coordinate';\n *\n * var coord = [7.85, 47.983333];\n * add(coord, [-2, 4]);\n * // coord is now [5.85, 51.983333]\n *\n * @param {Coordinate} coordinate Coordinate.\n * @param {Coordinate} delta Delta.\n * @return {Coordinate} The input coordinate adjusted by\n * the given delta.\n * @api\n */\nexport function add(coordinate, delta) {\n coordinate[0] += +delta[0];\n coordinate[1] += +delta[1];\n return coordinate;\n}\n/**\n * Calculates the point closest to the passed coordinate on the passed circle.\n *\n * @param {Coordinate} coordinate The coordinate.\n * @param {import(\"./geom/Circle.js\").default} circle The circle.\n * @return {Coordinate} Closest point on the circumference.\n */\nexport function closestOnCircle(coordinate, circle) {\n var r = circle.getRadius();\n var center = circle.getCenter();\n var x0 = center[0];\n var y0 = center[1];\n var x1 = coordinate[0];\n var y1 = coordinate[1];\n var dx = x1 - x0;\n var dy = y1 - y0;\n if (dx === 0 && dy === 0) {\n dx = 1;\n }\n var d = Math.sqrt(dx * dx + dy * dy);\n var x = x0 + (r * dx) / d;\n var y = y0 + (r * dy) / d;\n return [x, y];\n}\n/**\n * Calculates the point closest to the passed coordinate on the passed segment.\n * This is the foot of the perpendicular of the coordinate to the segment when\n * the foot is on the segment, or the closest segment coordinate when the foot\n * is outside the segment.\n *\n * @param {Coordinate} coordinate The coordinate.\n * @param {Array<Coordinate>} segment The two coordinates\n * of the segment.\n * @return {Coordinate} The foot of the perpendicular of\n * the coordinate to the segment.\n */\nexport function closestOnSegment(coordinate, segment) {\n var x0 = coordinate[0];\n var y0 = coordinate[1];\n var start = segment[0];\n var end = segment[1];\n var x1 = start[0];\n var y1 = start[1];\n var x2 = end[0];\n var y2 = end[1];\n var dx = x2 - x1;\n var dy = y2 - y1;\n var along = dx === 0 && dy === 0\n ? 0\n : (dx * (x0 - x1) + dy * (y0 - y1)) / (dx * dx + dy * dy || 0);\n var x, y;\n if (along <= 0) {\n x = x1;\n y = y1;\n }\n else if (along >= 1) {\n x = x2;\n y = y2;\n }\n else {\n x = x1 + along * dx;\n y = y1 + along * dy;\n }\n return [x, y];\n}\n/**\n * Returns a {@link module:ol/coordinate~CoordinateFormat} function that can be\n * used to format\n * a {Coordinate} to a string.\n *\n * Example without specifying the fractional digits:\n *\n * import {createStringXY} from 'ol/coordinate';\n *\n * var coord = [7.85, 47.983333];\n * var stringifyFunc = createStringXY();\n * var out = stringifyFunc(coord);\n * // out is now '8, 48'\n *\n * Example with explicitly specifying 2 fractional digits:\n *\n * import {createStringXY} from 'ol/coordinate';\n *\n * var coord = [7.85, 47.983333];\n * var stringifyFunc = createStringXY(2);\n * var out = stringifyFunc(coord);\n * // out is now '7.85, 47.98'\n *\n * @param {number} [opt_fractionDigits] The number of digits to include\n * after the decimal point. Default is `0`.\n * @return {CoordinateFormat} Coordinate format.\n * @api\n */\nexport function createStringXY(opt_fractionDigits) {\n return (\n /**\n * @param {Coordinate} coordinate Coordinate.\n * @return {string} String XY.\n */\n function (coordinate) {\n return toStringXY(coordinate, opt_fractionDigits);\n });\n}\n/**\n * @param {string} hemispheres Hemispheres.\n * @param {number} degrees Degrees.\n * @param {number} [opt_fractionDigits] The number of digits to include\n * after the decimal point. Default is `0`.\n * @return {string} String.\n */\nexport function degreesToStringHDMS(hemispheres, degrees, opt_fractionDigits) {\n var normalizedDegrees = modulo(degrees + 180, 360) - 180;\n var x = Math.abs(3600 * normalizedDegrees);\n var dflPrecision = opt_fractionDigits || 0;\n var precision = Math.pow(10, dflPrecision);\n var deg = Math.floor(x / 3600);\n var min = Math.floor((x - deg * 3600) / 60);\n var sec = x - deg * 3600 - min * 60;\n sec = Math.ceil(sec * precision) / precision;\n if (sec >= 60) {\n sec = 0;\n min += 1;\n }\n if (min >= 60) {\n min = 0;\n deg += 1;\n }\n return (deg +\n '\\u00b0 ' +\n padNumber(min, 2) +\n '\\u2032 ' +\n padNumber(sec, 2, dflPrecision) +\n '\\u2033' +\n (normalizedDegrees == 0\n ? ''\n : ' ' + hemispheres.charAt(normalizedDegrees < 0 ? 1 : 0)));\n}\n/**\n * Transforms the given {@link module:ol/coordinate~Coordinate} to a string\n * using the given string template. The strings `{x}` and `{y}` in the template\n * will be replaced with the first and second coordinate values respectively.\n *\n * Example without specifying the fractional digits:\n *\n * import {format} from 'ol/coordinate';\n *\n * var coord = [7.85, 47.983333];\n * var template = 'Coordinate is ({x}|{y}).';\n * var out = format(coord, template);\n * // out is now 'Coordinate is (8|48).'\n *\n * Example explicitly specifying the fractional digits:\n *\n * import {format} from 'ol/coordinate';\n *\n * var coord = [7.85, 47.983333];\n * var template = 'Coordinate is ({x}|{y}).';\n * var out = format(coord, template, 2);\n * // out is now 'Coordinate is (7.85|47.98).'\n *\n * @param {Coordinate} coordinate Coordinate.\n * @param {string} template A template string with `{x}` and `{y}` placeholders\n * that will be replaced by first and second coordinate values.\n * @param {number} [opt_fractionDigits] The number of digits to include\n * after the decimal point. Default is `0`.\n * @return {string} Formatted coordinate.\n * @api\n */\nexport function format(coordinate, template, opt_fractionDigits) {\n if (coordinate) {\n return template\n .replace('{x}', coordinate[0].toFixed(opt_fractionDigits))\n .replace('{y}', coordinate[1].toFixed(opt_fractionDigits));\n }\n else {\n return '';\n }\n}\n/**\n * @param {Coordinate} coordinate1 First coordinate.\n * @param {Coordinate} coordinate2 Second coordinate.\n * @return {boolean} The two coordinates are equal.\n */\nexport function equals(coordinate1, coordinate2) {\n var equals = true;\n for (var i = coordinate1.length - 1; i >= 0; --i) {\n if (coordinate1[i] != coordinate2[i]) {\n equals = false;\n break;\n }\n }\n return equals;\n}\n/**\n * Rotate `coordinate` by `angle`. `coordinate` is modified in place and\n * returned by the function.\n *\n * Example:\n *\n * import {rotate} from 'ol/coordinate';\n *\n * var coord = [7.85, 47.983333];\n * var rotateRadians = Math.PI / 2; // 90 degrees\n * rotate(coord, rotateRadians);\n * // coord is now [-47.983333, 7.85]\n *\n * @param {Coordinate} coordinate Coordinate.\n * @param {number} angle Angle in radian.\n * @return {Coordinate} Coordinate.\n * @api\n */\nexport function rotate(coordinate, angle) {\n var cosAngle = Math.cos(angle);\n var sinAngle = Math.sin(angle);\n var x = coordinate[0] * cosAngle - coordinate[1] * sinAngle;\n var y = coordinate[1] * cosAngle + coordinate[0] * sinAngle;\n coordinate[0] = x;\n coordinate[1] = y;\n return coordinate;\n}\n/**\n * Scale `coordinate` by `scale`. `coordinate` is modified in place and returned\n * by the function.\n *\n * Example:\n *\n * import {scale as scaleCoordinate} from 'ol/coordinate';\n *\n * var coord = [7.85, 47.983333];\n * var scale = 1.2;\n * scaleCoordinate(coord, scale);\n * // coord is now [9.42, 57.5799996]\n *\n * @param {Coordinate} coordinate Coordinate.\n * @param {number} scale Scale factor.\n * @return {Coordinate} Coordinate.\n */\nexport function scale(coordinate, scale) {\n coordinate[0] *= scale;\n coordinate[1] *= scale;\n return coordinate;\n}\n/**\n * @param {Coordinate} coord1 First coordinate.\n * @param {Coordinate} coord2 Second coordinate.\n * @return {number} Squared distance between coord1 and coord2.\n */\nexport function squaredDistance(coord1, coord2) {\n var dx = coord1[0] - coord2[0];\n var dy = coord1[1] - coord2[1];\n return dx * dx + dy * dy;\n}\n/**\n * @param {Coordinate} coord1 First coordinate.\n * @param {Coordinate} coord2 Second coordinate.\n * @return {number} Distance between coord1 and coord2.\n */\nexport function distance(coord1, coord2) {\n return Math.sqrt(squaredDistance(coord1, coord2));\n}\n/**\n * Calculate the squared distance from a coordinate to a line segment.\n *\n * @param {Coordinate} coordinate Coordinate of the point.\n * @param {Array<Coordinate>} segment Line segment (2\n * coordinates).\n * @return {number} Squared distance from the point to the line segment.\n */\nexport function squaredDistanceToSegment(coordinate, segment) {\n return squaredDistance(coordinate, closestOnSegment(coordinate, segment));\n}\n/**\n * Format a geographic coordinate with the hemisphere, degrees, minutes, and\n * seconds.\n *\n * Example without specifying fractional digits:\n *\n * import {toStringHDMS} from 'ol/coordinate';\n *\n * var coord = [7.85, 47.983333];\n * var out = toStringHDMS(coord);\n * // out is now '47° 58′ 60″ N 7° 50′ 60″ E'\n *\n * Example explicitly specifying 1 fractional digit:\n *\n * import {toStringHDMS} from 'ol/coordinate';\n *\n * var coord = [7.85, 47.983333];\n * var out = toStringHDMS(coord, 1);\n * // out is now '47° 58′ 60.0″ N 7° 50′ 60.0″ E'\n *\n * @param {Coordinate} coordinate Coordinate.\n * @param {number} [opt_fractionDigits] The number of digits to include\n * after the decimal point. Default is `0`.\n * @return {string} Hemisphere, degrees, minutes and seconds.\n * @api\n */\nexport function toStringHDMS(coordinate, opt_fractionDigits) {\n if (coordinate) {\n return (degreesToStringHDMS('NS', coordinate[1], opt_fractionDigits) +\n ' ' +\n degreesToStringHDMS('EW', coordinate[0], opt_fractionDigits));\n }\n else {\n return '';\n }\n}\n/**\n * Format a coordinate as a comma delimited string.\n *\n * Example without specifying fractional digits:\n *\n * import {toStringXY} from 'ol/coordinate';\n *\n * var coord = [7.85, 47.983333];\n * var out = toStringXY(coord);\n * // out is now '8, 48'\n *\n * Example explicitly specifying 1 fractional digit:\n *\n * import {toStringXY} from 'ol/coordinate';\n *\n * var coord = [7.85, 47.983333];\n * var out = toStringXY(coord, 1);\n * // out is now '7.8, 48.0'\n *\n * @param {Coordinate} coordinate Coordinate.\n * @param {number} [opt_fractionDigits] The number of digits to include\n * after the decimal point. Default is `0`.\n * @return {string} XY.\n * @api\n */\nexport function toStringXY(coordinate, opt_fractionDigits) {\n return format(coordinate, '{x}, {y}', opt_fractionDigits);\n}\n/**\n * Modifies the provided coordinate in-place to be within the real world\n * extent. The lower projection extent boundary is inclusive, the upper one\n * exclusive.\n *\n * @param {Coordinate} coordinate Coordinate.\n * @param {import(\"./proj/Projection.js\").default} projection Projection.\n * @return {Coordinate} The coordinate within the real world extent.\n */\nexport function wrapX(coordinate, projection) {\n if (projection.canWrapX()) {\n var worldWidth = getWidth(projection.getExtent());\n var worldsAway = getWorldsAway(coordinate, projection, worldWidth);\n if (worldsAway) {\n coordinate[0] -= worldsAway * worldWidth;\n }\n }\n return coordinate;\n}\n/**\n * @param {Coordinate} coordinate Coordinate.\n * @param {import(\"./proj/Projection.js\").default} projection Projection.\n * @param {number} [opt_sourceExtentWidth] Width of the source extent.\n * @return {number} Offset in world widths.\n */\nexport function getWorldsAway(coordinate, projection, opt_sourceExtentWidth) {\n var projectionExtent = projection.getExtent();\n var worldsAway = 0;\n if (projection.canWrapX() &&\n (coordinate[0] < projectionExtent[0] || coordinate[0] > projectionExtent[2])) {\n var sourceExtentWidth = opt_sourceExtentWidth || getWidth(projectionExtent);\n worldsAway = Math.floor((coordinate[0] - projectionExtent[0]) / sourceExtentWidth);\n }\n return worldsAway;\n}\n//# sourceMappingURL=coordinate.js.map","/**\n * @module ol/sphere\n */\nimport GeometryType from './geom/GeometryType.js';\nimport { toDegrees, toRadians } from './math.js';\n/**\n * Object literal with options for the {@link getLength} or {@link getArea}\n * functions.\n * @typedef {Object} SphereMetricOptions\n * @property {import(\"./proj.js\").ProjectionLike} [projection='EPSG:3857']\n * Projection of the geometry. By default, the geometry is assumed to be in\n * Web Mercator.\n * @property {number} [radius=6371008.8] Sphere radius. By default, the\n * [mean Earth radius](https://en.wikipedia.org/wiki/Earth_radius#Mean_radius)\n * for the WGS84 ellipsoid is used.\n */\n/**\n * The mean Earth radius (1/3 * (2a + b)) for the WGS84 ellipsoid.\n * https://en.wikipedia.org/wiki/Earth_radius#Mean_radius\n * @type {number}\n */\nexport var DEFAULT_RADIUS = 6371008.8;\n/**\n * Get the great circle distance (in meters) between two geographic coordinates.\n * @param {Array} c1 Starting coordinate.\n * @param {Array} c2 Ending coordinate.\n * @param {number} [opt_radius] The sphere radius to use. Defaults to the Earth's\n * mean radius using the WGS84 ellipsoid.\n * @return {number} The great circle distance between the points (in meters).\n * @api\n */\nexport function getDistance(c1, c2, opt_radius) {\n var radius = opt_radius || DEFAULT_RADIUS;\n var lat1 = toRadians(c1[1]);\n var lat2 = toRadians(c2[1]);\n var deltaLatBy2 = (lat2 - lat1) / 2;\n var deltaLonBy2 = toRadians(c2[0] - c1[0]) / 2;\n var a = Math.sin(deltaLatBy2) * Math.sin(deltaLatBy2) +\n Math.sin(deltaLonBy2) *\n Math.sin(deltaLonBy2) *\n Math.cos(lat1) *\n Math.cos(lat2);\n return 2 * radius * Math.atan2(Math.sqrt(a), Math.sqrt(1 - a));\n}\n/**\n * Get the cumulative great circle length of linestring coordinates (geographic).\n * @param {Array} coordinates Linestring coordinates.\n * @param {number} radius The sphere radius to use.\n * @return {number} The length (in meters).\n */\nfunction getLengthInternal(coordinates, radius) {\n var length = 0;\n for (var i = 0, ii = coordinates.length; i < ii - 1; ++i) {\n length += getDistance(coordinates[i], coordinates[i + 1], radius);\n }\n return length;\n}\n/**\n * Get the spherical length of a geometry. This length is the sum of the\n * great circle distances between coordinates. For polygons, the length is\n * the sum of all rings. For points, the length is zero. For multi-part\n * geometries, the length is the sum of the length of each part.\n * @param {import(\"./geom/Geometry.js\").default} geometry A geometry.\n * @param {SphereMetricOptions} [opt_options] Options for the\n * length calculation. By default, geometries are assumed to be in 'EPSG:3857'.\n * You can change this by providing a `projection` option.\n * @return {number} The spherical length (in meters).\n * @api\n */\nexport function getLength(geometry, opt_options) {\n var options = opt_options || {};\n var radius = options.radius || DEFAULT_RADIUS;\n var projection = options.projection || 'EPSG:3857';\n var type = geometry.getType();\n if (type !== GeometryType.GEOMETRY_COLLECTION) {\n geometry = geometry.clone().transform(projection, 'EPSG:4326');\n }\n var length = 0;\n var coordinates, coords, i, ii, j, jj;\n switch (type) {\n case GeometryType.POINT:\n case GeometryType.MULTI_POINT: {\n break;\n }\n case GeometryType.LINE_STRING:\n case GeometryType.LINEAR_RING: {\n coordinates = /** @type {import(\"./geom/SimpleGeometry.js\").default} */ (geometry).getCoordinates();\n length = getLengthInternal(coordinates, radius);\n break;\n }\n case GeometryType.MULTI_LINE_STRING:\n case GeometryType.POLYGON: {\n coordinates = /** @type {import(\"./geom/SimpleGeometry.js\").default} */ (geometry).getCoordinates();\n for (i = 0, ii = coordinates.length; i < ii; ++i) {\n length += getLengthInternal(coordinates[i], radius);\n }\n break;\n }\n case GeometryType.MULTI_POLYGON: {\n coordinates = /** @type {import(\"./geom/SimpleGeometry.js\").default} */ (geometry).getCoordinates();\n for (i = 0, ii = coordinates.length; i < ii; ++i) {\n coords = coordinates[i];\n for (j = 0, jj = coords.length; j < jj; ++j) {\n length += getLengthInternal(coords[j], radius);\n }\n }\n break;\n }\n case GeometryType.GEOMETRY_COLLECTION: {\n var geometries = \n /** @type {import(\"./geom/GeometryCollection.js\").default} */ (geometry).getGeometries();\n for (i = 0, ii = geometries.length; i < ii; ++i) {\n length += getLength(geometries[i], opt_options);\n }\n break;\n }\n default: {\n throw new Error('Unsupported geometry type: ' + type);\n }\n }\n return length;\n}\n/**\n * Returns the spherical area for a list of coordinates.\n *\n * [Reference](https://trs.jpl.nasa.gov/handle/2014/40409)\n * Robert. G. Chamberlain and William H. Duquette, \"Some Algorithms for\n * Polygons on a Sphere\", JPL Publication 07-03, Jet Propulsion\n * Laboratory, Pasadena, CA, June 2007\n *\n * @param {Array<import(\"./coordinate.js\").Coordinate>} coordinates List of coordinates of a linear\n * ring. If the ring is oriented clockwise, the area will be positive,\n * otherwise it will be negative.\n * @param {number} radius The sphere radius.\n * @return {number} Area (in square meters).\n */\nfunction getAreaInternal(coordinates, radius) {\n var area = 0;\n var len = coordinates.length;\n var x1 = coordinates[len - 1][0];\n var y1 = coordinates[len - 1][1];\n for (var i = 0; i < len; i++) {\n var x2 = coordinates[i][0];\n var y2 = coordinates[i][1];\n area +=\n toRadians(x2 - x1) *\n (2 + Math.sin(toRadians(y1)) + Math.sin(toRadians(y2)));\n x1 = x2;\n y1 = y2;\n }\n return (area * radius * radius) / 2.0;\n}\n/**\n * Get the spherical area of a geometry. This is the area (in meters) assuming\n * that polygon edges are segments of great circles on a sphere.\n * @param {import(\"./geom/Geometry.js\").default} geometry A geometry.\n * @param {SphereMetricOptions} [opt_options] Options for the area\n * calculation. By default, geometries are assumed to be in 'EPSG:3857'.\n * You can change this by providing a `projection` option.\n * @return {number} The spherical area (in square meters).\n * @api\n */\nexport function getArea(geometry, opt_options) {\n var options = opt_options || {};\n var radius = options.radius || DEFAULT_RADIUS;\n var projection = options.projection || 'EPSG:3857';\n var type = geometry.getType();\n if (type !== GeometryType.GEOMETRY_COLLECTION) {\n geometry = geometry.clone().transform(projection, 'EPSG:4326');\n }\n var area = 0;\n var coordinates, coords, i, ii, j, jj;\n switch (type) {\n case GeometryType.POINT:\n case GeometryType.MULTI_POINT:\n case GeometryType.LINE_STRING:\n case GeometryType.MULTI_LINE_STRING:\n case GeometryType.LINEAR_RING: {\n break;\n }\n case GeometryType.POLYGON: {\n coordinates = /** @type {import(\"./geom/Polygon.js\").default} */ (geometry).getCoordinates();\n area = Math.abs(getAreaInternal(coordinates[0], radius));\n for (i = 1, ii = coordinates.length; i < ii; ++i) {\n area -= Math.abs(getAreaInternal(coordinates[i], radius));\n }\n break;\n }\n case GeometryType.MULTI_POLYGON: {\n coordinates = /** @type {import(\"./geom/SimpleGeometry.js\").default} */ (geometry).getCoordinates();\n for (i = 0, ii = coordinates.length; i < ii; ++i) {\n coords = coordinates[i];\n area += Math.abs(getAreaInternal(coords[0], radius));\n for (j = 1, jj = coords.length; j < jj; ++j) {\n area -= Math.abs(getAreaInternal(coords[j], radius));\n }\n }\n break;\n }\n case GeometryType.GEOMETRY_COLLECTION: {\n var geometries = \n /** @type {import(\"./geom/GeometryCollection.js\").default} */ (geometry).getGeometries();\n for (i = 0, ii = geometries.length; i < ii; ++i) {\n area += getArea(geometries[i], opt_options);\n }\n break;\n }\n default: {\n throw new Error('Unsupported geometry type: ' + type);\n }\n }\n return area;\n}\n/**\n * Returns the coordinate at the given distance and bearing from `c1`.\n *\n * @param {import(\"./coordinate.js\").Coordinate} c1 The origin point (`[lon, lat]` in degrees).\n * @param {number} distance The great-circle distance between the origin\n * point and the target point.\n * @param {number} bearing The bearing (in radians).\n * @param {number} [opt_radius] The sphere radius to use. Defaults to the Earth's\n * mean radius using the WGS84 ellipsoid.\n * @return {import(\"./coordinate.js\").Coordinate} The target point.\n */\nexport function offset(c1, distance, bearing, opt_radius) {\n var radius = opt_radius || DEFAULT_RADIUS;\n var lat1 = toRadians(c1[1]);\n var lon1 = toRadians(c1[0]);\n var dByR = distance / radius;\n var lat = Math.asin(Math.sin(lat1) * Math.cos(dByR) +\n Math.cos(lat1) * Math.sin(dByR) * Math.cos(bearing));\n var lon = lon1 +\n Math.atan2(Math.sin(bearing) * Math.sin(dByR) * Math.cos(lat1), Math.cos(dByR) - Math.sin(lat1) * Math.sin(lat));\n return [toDegrees(lon), toDegrees(lat)];\n}\n//# sourceMappingURL=sphere.js.map","/**\n * @module ol/proj\n */\n/**\n * The ol/proj module stores:\n * * a list of {@link module:ol/proj/Projection~Projection}\n * objects, one for each projection supported by the application\n * * a list of transform functions needed to convert coordinates in one projection\n * into another.\n *\n * The static functions are the methods used to maintain these.\n * Each transform function can handle not only simple coordinate pairs, but also\n * large arrays of coordinates such as vector geometries.\n *\n * When loaded, the library adds projection objects for EPSG:4326 (WGS84\n * geographic coordinates) and EPSG:3857 (Web or Spherical Mercator, as used\n * for example by Bing Maps or OpenStreetMap), together with the relevant\n * transform functions.\n *\n * Additional transforms may be added by using the http://proj4js.org/\n * library (version 2.2 or later). You can use the full build supplied by\n * Proj4js, or create a custom build to support those projections you need; see\n * the Proj4js website for how to do this. You also need the Proj4js definitions\n * for the required projections. These definitions can be obtained from\n * https://epsg.io/, and are a JS function, so can be loaded in a script\n * tag (as in the examples) or pasted into your application.\n *\n * After all required projection definitions are added to proj4's registry (by\n * using `proj4.defs()`), simply call `register(proj4)` from the `ol/proj/proj4`\n * package. Existing transforms are not changed by this function. See\n * examples/wms-image-custom-proj for an example of this.\n *\n * Additional projection definitions can be registered with `proj4.defs()` any\n * time. Just make sure to call `register(proj4)` again; for example, with user-supplied data where you don't\n * know in advance what projections are needed, you can initially load minimal\n * support and then load whichever are requested.\n *\n * Note that Proj4js does not support projection extents. If you want to add\n * one for creating default tile grids, you can add it after the Projection\n * object has been created with `setExtent`, for example,\n * `get('EPSG:1234').setExtent(extent)`.\n *\n * In addition to Proj4js support, any transform functions can be added with\n * {@link module:ol/proj.addCoordinateTransforms}. To use this, you must first create\n * a {@link module:ol/proj/Projection~Projection} object for the new projection and add it with\n * {@link module:ol/proj.addProjection}. You can then add the forward and inverse\n * functions with {@link module:ol/proj.addCoordinateTransforms}. See\n * examples/wms-custom-proj for an example of this.\n *\n * Note that if no transforms are needed and you only need to define the\n * projection, just add a {@link module:ol/proj/Projection~Projection} with\n * {@link module:ol/proj.addProjection}. See examples/wms-no-proj for an example of\n * this.\n */\nimport Projection from './proj/Projection.js';\nimport Units, { METERS_PER_UNIT } from './proj/Units.js';\nimport { PROJECTIONS as EPSG3857_PROJECTIONS, fromEPSG4326, toEPSG4326, } from './proj/epsg3857.js';\nimport { PROJECTIONS as EPSG4326_PROJECTIONS } from './proj/epsg4326.js';\nimport { add as addProj, clear as clearProj, get as getProj, } from './proj/projections.js';\nimport { add as addTransformFunc, clear as clearTransformFuncs, get as getTransformFunc, } from './proj/transforms.js';\nimport { applyTransform, getWidth } from './extent.js';\nimport { clamp, modulo } from './math.js';\nimport { equals, getWorldsAway } from './coordinate.js';\nimport { getDistance } from './sphere.js';\n/**\n * A projection as {@link module:ol/proj/Projection~Projection}, SRS identifier\n * string or undefined.\n * @typedef {Projection|string|undefined} ProjectionLike\n * @api\n */\n/**\n * A transform function accepts an array of input coordinate values, an optional\n * output array, and an optional dimension (default should be 2). The function\n * transforms the input coordinate values, populates the output array, and\n * returns the output array.\n *\n * @typedef {function(Array<number>, Array<number>=, number=): Array<number>} TransformFunction\n * @api\n */\nexport { METERS_PER_UNIT };\nexport { Projection };\nvar showCoordinateWarning = true;\n/**\n * @param {boolean} [opt_disable = true] Disable console info about `useGeographic()`\n */\nexport function disableCoordinateWarning(opt_disable) {\n var hide = opt_disable === undefined ? true : opt_disable;\n showCoordinateWarning = !hide;\n}\n/**\n * @param {Array<number>} input Input coordinate array.\n * @param {Array<number>} [opt_output] Output array of coordinate values.\n * @param {number} [opt_dimension] Dimension.\n * @return {Array<number>} Output coordinate array (new array, same coordinate\n * values).\n */\nexport function cloneTransform(input, opt_output, opt_dimension) {\n var output;\n if (opt_output !== undefined) {\n for (var i = 0, ii = input.length; i < ii; ++i) {\n opt_output[i] = input[i];\n }\n output = opt_output;\n }\n else {\n output = input.slice();\n }\n return output;\n}\n/**\n * @param {Array<number>} input Input coordinate array.\n * @param {Array<number>} [opt_output] Output array of coordinate values.\n * @param {number} [opt_dimension] Dimension.\n * @return {Array<number>} Input coordinate array (same array as input).\n */\nexport function identityTransform(input, opt_output, opt_dimension) {\n if (opt_output !== undefined && input !== opt_output) {\n for (var i = 0, ii = input.length; i < ii; ++i) {\n opt_output[i] = input[i];\n }\n input = opt_output;\n }\n return input;\n}\n/**\n * Add a Projection object to the list of supported projections that can be\n * looked up by their code.\n *\n * @param {Projection} projection Projection instance.\n * @api\n */\nexport function addProjection(projection) {\n addProj(projection.getCode(), projection);\n addTransformFunc(projection, projection, cloneTransform);\n}\n/**\n * @param {Array<Projection>} projections Projections.\n */\nexport function addProjections(projections) {\n projections.forEach(addProjection);\n}\n/**\n * Fetches a Projection object for the code specified.\n *\n * @param {ProjectionLike} projectionLike Either a code string which is\n * a combination of authority and identifier such as \"EPSG:4326\", or an\n * existing projection object, or undefined.\n * @return {Projection|null} Projection object, or null if not in list.\n * @api\n */\nexport function get(projectionLike) {\n return typeof projectionLike === 'string'\n ? getProj(/** @type {string} */ (projectionLike))\n : /** @type {Projection} */ (projectionLike) || null;\n}\n/**\n * Get the resolution of the point in degrees or distance units.\n * For projections with degrees as the unit this will simply return the\n * provided resolution. For other projections the point resolution is\n * by default estimated by transforming the `point` pixel to EPSG:4326,\n * measuring its width and height on the normal sphere,\n * and taking the average of the width and height.\n * A custom function can be provided for a specific projection, either\n * by setting the `getPointResolution` option in the\n * {@link module:ol/proj/Projection~Projection} constructor or by using\n * {@link module:ol/proj/Projection~Projection#setGetPointResolution} to change an existing\n * projection object.\n * @param {ProjectionLike} projection The projection.\n * @param {number} resolution Nominal resolution in projection units.\n * @param {import(\"./coordinate.js\").Coordinate} point Point to find adjusted resolution at.\n * @param {import(\"./proj/Units.js\").default} [opt_units] Units to get the point resolution in.\n * Default is the projection's units.\n * @return {number} Point resolution.\n * @api\n */\nexport function getPointResolution(projection, resolution, point, opt_units) {\n projection = get(projection);\n var pointResolution;\n var getter = projection.getPointResolutionFunc();\n if (getter) {\n pointResolution = getter(resolution, point);\n if (opt_units && opt_units !== projection.getUnits()) {\n var metersPerUnit = projection.getMetersPerUnit();\n if (metersPerUnit) {\n pointResolution =\n (pointResolution * metersPerUnit) / METERS_PER_UNIT[opt_units];\n }\n }\n }\n else {\n var units = projection.getUnits();\n if ((units == Units.DEGREES && !opt_units) || opt_units == Units.DEGREES) {\n pointResolution = resolution;\n }\n else {\n // Estimate point resolution by transforming the center pixel to EPSG:4326,\n // measuring its width and height on the normal sphere, and taking the\n // average of the width and height.\n var toEPSG4326_1 = getTransformFromProjections(projection, get('EPSG:4326'));\n if (toEPSG4326_1 === identityTransform && units !== Units.DEGREES) {\n // no transform is available\n pointResolution = resolution * projection.getMetersPerUnit();\n }\n else {\n var vertices = [\n point[0] - resolution / 2,\n point[1],\n point[0] + resolution / 2,\n point[1],\n point[0],\n point[1] - resolution / 2,\n point[0],\n point[1] + resolution / 2,\n ];\n vertices = toEPSG4326_1(vertices, vertices, 2);\n var width = getDistance(vertices.slice(0, 2), vertices.slice(2, 4));\n var height = getDistance(vertices.slice(4, 6), vertices.slice(6, 8));\n pointResolution = (width + height) / 2;\n }\n var metersPerUnit = opt_units\n ? METERS_PER_UNIT[opt_units]\n : projection.getMetersPerUnit();\n if (metersPerUnit !== undefined) {\n pointResolution /= metersPerUnit;\n }\n }\n }\n return pointResolution;\n}\n/**\n * Registers transformation functions that don't alter coordinates. Those allow\n * to transform between projections with equal meaning.\n *\n * @param {Array<Projection>} projections Projections.\n * @api\n */\nexport function addEquivalentProjections(projections) {\n addProjections(projections);\n projections.forEach(function (source) {\n projections.forEach(function (destination) {\n if (source !== destination) {\n addTransformFunc(source, destination, cloneTransform);\n }\n });\n });\n}\n/**\n * Registers transformation functions to convert coordinates in any projection\n * in projection1 to any projection in projection2.\n *\n * @param {Array<Projection>} projections1 Projections with equal\n * meaning.\n * @param {Array<Projection>} projections2 Projections with equal\n * meaning.\n * @param {TransformFunction} forwardTransform Transformation from any\n * projection in projection1 to any projection in projection2.\n * @param {TransformFunction} inverseTransform Transform from any projection\n * in projection2 to any projection in projection1..\n */\nexport function addEquivalentTransforms(projections1, projections2, forwardTransform, inverseTransform) {\n projections1.forEach(function (projection1) {\n projections2.forEach(function (projection2) {\n addTransformFunc(projection1, projection2, forwardTransform);\n addTransformFunc(projection2, projection1, inverseTransform);\n });\n });\n}\n/**\n * Clear all cached projections and transforms.\n */\nexport function clearAllProjections() {\n clearProj();\n clearTransformFuncs();\n}\n/**\n * @param {Projection|string|undefined} projection Projection.\n * @param {string} defaultCode Default code.\n * @return {Projection} Projection.\n */\nexport function createProjection(projection, defaultCode) {\n if (!projection) {\n return get(defaultCode);\n }\n else if (typeof projection === 'string') {\n return get(projection);\n }\n else {\n return /** @type {Projection} */ (projection);\n }\n}\n/**\n * Creates a {@link module:ol/proj~TransformFunction} from a simple 2D coordinate transform\n * function.\n * @param {function(import(\"./coordinate.js\").Coordinate): import(\"./coordinate.js\").Coordinate} coordTransform Coordinate\n * transform.\n * @return {TransformFunction} Transform function.\n */\nexport function createTransformFromCoordinateTransform(coordTransform) {\n return (\n /**\n * @param {Array<number>} input Input.\n * @param {Array<number>} [opt_output] Output.\n * @param {number} [opt_dimension] Dimension.\n * @return {Array<number>} Output.\n */\n function (input, opt_output, opt_dimension) {\n var length = input.length;\n var dimension = opt_dimension !== undefined ? opt_dimension : 2;\n var output = opt_output !== undefined ? opt_output : new Array(length);\n for (var i = 0; i < length; i += dimension) {\n var point = coordTransform([input[i], input[i + 1]]);\n output[i] = point[0];\n output[i + 1] = point[1];\n for (var j = dimension - 1; j >= 2; --j) {\n output[i + j] = input[i + j];\n }\n }\n return output;\n });\n}\n/**\n * Registers coordinate transform functions to convert coordinates between the\n * source projection and the destination projection.\n * The forward and inverse functions convert coordinate pairs; this function\n * converts these into the functions used internally which also handle\n * extents and coordinate arrays.\n *\n * @param {ProjectionLike} source Source projection.\n * @param {ProjectionLike} destination Destination projection.\n * @param {function(import(\"./coordinate.js\").Coordinate): import(\"./coordinate.js\").Coordinate} forward The forward transform\n * function (that is, from the source projection to the destination\n * projection) that takes a {@link module:ol/coordinate~Coordinate} as argument and returns\n * the transformed {@link module:ol/coordinate~Coordinate}.\n * @param {function(import(\"./coordinate.js\").Coordinate): import(\"./coordinate.js\").Coordinate} inverse The inverse transform\n * function (that is, from the destination projection to the source\n * projection) that takes a {@link module:ol/coordinate~Coordinate} as argument and returns\n * the transformed {@link module:ol/coordinate~Coordinate}.\n * @api\n */\nexport function addCoordinateTransforms(source, destination, forward, inverse) {\n var sourceProj = get(source);\n var destProj = get(destination);\n addTransformFunc(sourceProj, destProj, createTransformFromCoordinateTransform(forward));\n addTransformFunc(destProj, sourceProj, createTransformFromCoordinateTransform(inverse));\n}\n/**\n * Transforms a coordinate from longitude/latitude to a different projection.\n * @param {import(\"./coordinate.js\").Coordinate} coordinate Coordinate as longitude and latitude, i.e.\n * an array with longitude as 1st and latitude as 2nd element.\n * @param {ProjectionLike} [opt_projection] Target projection. The\n * default is Web Mercator, i.e. 'EPSG:3857'.\n * @return {import(\"./coordinate.js\").Coordinate} Coordinate projected to the target projection.\n * @api\n */\nexport function fromLonLat(coordinate, opt_projection) {\n disableCoordinateWarning();\n return transform(coordinate, 'EPSG:4326', opt_projection !== undefined ? opt_projection : 'EPSG:3857');\n}\n/**\n * Transforms a coordinate to longitude/latitude.\n * @param {import(\"./coordinate.js\").Coordinate} coordinate Projected coordinate.\n * @param {ProjectionLike} [opt_projection] Projection of the coordinate.\n * The default is Web Mercator, i.e. 'EPSG:3857'.\n * @return {import(\"./coordinate.js\").Coordinate} Coordinate as longitude and latitude, i.e. an array\n * with longitude as 1st and latitude as 2nd element.\n * @api\n */\nexport function toLonLat(coordinate, opt_projection) {\n var lonLat = transform(coordinate, opt_projection !== undefined ? opt_projection : 'EPSG:3857', 'EPSG:4326');\n var lon = lonLat[0];\n if (lon < -180 || lon > 180) {\n lonLat[0] = modulo(lon + 180, 360) - 180;\n }\n return lonLat;\n}\n/**\n * Checks if two projections are the same, that is every coordinate in one\n * projection does represent the same geographic point as the same coordinate in\n * the other projection.\n *\n * @param {Projection} projection1 Projection 1.\n * @param {Projection} projection2 Projection 2.\n * @return {boolean} Equivalent.\n * @api\n */\nexport function equivalent(projection1, projection2) {\n if (projection1 === projection2) {\n return true;\n }\n var equalUnits = projection1.getUnits() === projection2.getUnits();\n if (projection1.getCode() === projection2.getCode()) {\n return equalUnits;\n }\n else {\n var transformFunc = getTransformFromProjections(projection1, projection2);\n return transformFunc === cloneTransform && equalUnits;\n }\n}\n/**\n * Searches in the list of transform functions for the function for converting\n * coordinates from the source projection to the destination projection.\n *\n * @param {Projection} sourceProjection Source Projection object.\n * @param {Projection} destinationProjection Destination Projection\n * object.\n * @return {TransformFunction} Transform function.\n */\nexport function getTransformFromProjections(sourceProjection, destinationProjection) {\n var sourceCode = sourceProjection.getCode();\n var destinationCode = destinationProjection.getCode();\n var transformFunc = getTransformFunc(sourceCode, destinationCode);\n if (!transformFunc) {\n transformFunc = identityTransform;\n }\n return transformFunc;\n}\n/**\n * Given the projection-like objects, searches for a transformation\n * function to convert a coordinates array from the source projection to the\n * destination projection.\n *\n * @param {ProjectionLike} source Source.\n * @param {ProjectionLike} destination Destination.\n * @return {TransformFunction} Transform function.\n * @api\n */\nexport function getTransform(source, destination) {\n var sourceProjection = get(source);\n var destinationProjection = get(destination);\n return getTransformFromProjections(sourceProjection, destinationProjection);\n}\n/**\n * Transforms a coordinate from source projection to destination projection.\n * This returns a new coordinate (and does not modify the original).\n *\n * See {@link module:ol/proj.transformExtent} for extent transformation.\n * See the transform method of {@link module:ol/geom/Geometry~Geometry} and its\n * subclasses for geometry transforms.\n *\n * @param {import(\"./coordinate.js\").Coordinate} coordinate Coordinate.\n * @param {ProjectionLike} source Source projection-like.\n * @param {ProjectionLike} destination Destination projection-like.\n * @return {import(\"./coordinate.js\").Coordinate} Coordinate.\n * @api\n */\nexport function transform(coordinate, source, destination) {\n var transformFunc = getTransform(source, destination);\n return transformFunc(coordinate, undefined, coordinate.length);\n}\n/**\n * Transforms an extent from source projection to destination projection. This\n * returns a new extent (and does not modify the original).\n *\n * @param {import(\"./extent.js\").Extent} extent The extent to transform.\n * @param {ProjectionLike} source Source projection-like.\n * @param {ProjectionLike} destination Destination projection-like.\n * @param {number} [opt_stops] Number of stops per side used for the transform.\n * By default only the corners are used.\n * @return {import(\"./extent.js\").Extent} The transformed extent.\n * @api\n */\nexport function transformExtent(extent, source, destination, opt_stops) {\n var transformFunc = getTransform(source, destination);\n return applyTransform(extent, transformFunc, undefined, opt_stops);\n}\n/**\n * Transforms the given point to the destination projection.\n *\n * @param {import(\"./coordinate.js\").Coordinate} point Point.\n * @param {Projection} sourceProjection Source projection.\n * @param {Projection} destinationProjection Destination projection.\n * @return {import(\"./coordinate.js\").Coordinate} Point.\n */\nexport function transformWithProjections(point, sourceProjection, destinationProjection) {\n var transformFunc = getTransformFromProjections(sourceProjection, destinationProjection);\n return transformFunc(point);\n}\n/**\n * @type {Projection|null}\n */\nvar userProjection = null;\n/**\n * Set the projection for coordinates supplied from and returned by API methods.\n * This includes all API methods except for those interacting with tile grids.\n * @param {ProjectionLike} projection The user projection.\n * @api\n */\nexport function setUserProjection(projection) {\n userProjection = get(projection);\n}\n/**\n * Clear the user projection if set.\n * @api\n */\nexport function clearUserProjection() {\n userProjection = null;\n}\n/**\n * Get the projection for coordinates supplied from and returned by API methods.\n * Note that this method is not yet a part of the stable API. Support for user\n * projections is not yet complete and should be considered experimental.\n * @return {Projection|null} The user projection (or null if not set).\n * @api\n */\nexport function getUserProjection() {\n return userProjection;\n}\n/**\n * Use geographic coordinates (WGS-84 datum) in API methods. This includes all API\n * methods except for those interacting with tile grids.\n * @api\n */\nexport function useGeographic() {\n setUserProjection('EPSG:4326');\n}\n/**\n * Return a coordinate transformed into the user projection. If no user projection\n * is set, the original coordinate is returned.\n * @param {Array<number>} coordinate Input coordinate.\n * @param {ProjectionLike} sourceProjection The input coordinate projection.\n * @return {Array<number>} The input coordinate in the user projection.\n */\nexport function toUserCoordinate(coordinate, sourceProjection) {\n if (!userProjection) {\n return coordinate;\n }\n return transform(coordinate, sourceProjection, userProjection);\n}\n/**\n * Return a coordinate transformed from the user projection. If no user projection\n * is set, the original coordinate is returned.\n * @param {Array<number>} coordinate Input coordinate.\n * @param {ProjectionLike} destProjection The destination projection.\n * @return {Array<number>} The input coordinate transformed.\n */\nexport function fromUserCoordinate(coordinate, destProjection) {\n if (!userProjection) {\n if (showCoordinateWarning &&\n !equals(coordinate, [0, 0]) &&\n coordinate[0] >= -180 &&\n coordinate[0] <= 180 &&\n coordinate[1] >= -90 &&\n coordinate[1] <= 90) {\n showCoordinateWarning = false;\n // eslint-disable-next-line no-console\n console.warn('Call useGeographic() from ol/proj once to work with [longitude, latitude] coordinates.');\n }\n return coordinate;\n }\n return transform(coordinate, userProjection, destProjection);\n}\n/**\n * Return an extent transformed into the user projection. If no user projection\n * is set, the original extent is returned.\n * @param {import(\"./extent.js\").Extent} extent Input extent.\n * @param {ProjectionLike} sourceProjection The input extent projection.\n * @return {import(\"./extent.js\").Extent} The input extent in the user projection.\n */\nexport function toUserExtent(extent, sourceProjection) {\n if (!userProjection) {\n return extent;\n }\n return transformExtent(extent, sourceProjection, userProjection);\n}\n/**\n * Return an extent transformed from the user projection. If no user projection\n * is set, the original extent is returned.\n * @param {import(\"./extent.js\").Extent} extent Input extent.\n * @param {ProjectionLike} destProjection The destination projection.\n * @return {import(\"./extent.js\").Extent} The input extent transformed.\n */\nexport function fromUserExtent(extent, destProjection) {\n if (!userProjection) {\n return extent;\n }\n return transformExtent(extent, userProjection, destProjection);\n}\n/**\n * Return the resolution in user projection units per pixel. If no user projection\n * is set, or source or user projection are missing units, the original resolution\n * is returned.\n * @param {number} resolution Resolution in input projection units per pixel.\n * @param {ProjectionLike} sourceProjection The input projection.\n * @return {number} Resolution in user projection units per pixel.\n */\nexport function toUserResolution(resolution, sourceProjection) {\n if (!userProjection) {\n return resolution;\n }\n var sourceUnits = get(sourceProjection).getUnits();\n var userUnits = userProjection.getUnits();\n return sourceUnits && userUnits\n ? (resolution * METERS_PER_UNIT[sourceUnits]) / METERS_PER_UNIT[userUnits]\n : resolution;\n}\n/**\n * Return the resolution in user projection units per pixel. If no user projection\n * is set, or source or user projection are missing units, the original resolution\n * is returned.\n * @param {number} resolution Resolution in user projection units per pixel.\n * @param {ProjectionLike} destProjection The destination projection.\n * @return {number} Resolution in destination projection units per pixel.\n */\nexport function fromUserResolution(resolution, destProjection) {\n if (!userProjection) {\n return resolution;\n }\n var sourceUnits = get(destProjection).getUnits();\n var userUnits = userProjection.getUnits();\n return sourceUnits && userUnits\n ? (resolution * METERS_PER_UNIT[userUnits]) / METERS_PER_UNIT[sourceUnits]\n : resolution;\n}\n/**\n * Creates a safe coordinate transform function from a coordinate transform function.\n * \"Safe\" means that it can handle wrapping of x-coordinates for global projections,\n * and that coordinates exceeding the source projection validity extent's range will be\n * clamped to the validity range.\n * @param {Projection} sourceProj Source projection.\n * @param {Projection} destProj Destination projection.\n * @param {function(import(\"./coordinate.js\").Coordinate): import(\"./coordinate.js\").Coordinate} transform Transform function (source to destiation).\n * @return {function(import(\"./coordinate.js\").Coordinate): import(\"./coordinate.js\").Coordinate} Safe transform function (source to destiation).\n */\nexport function createSafeCoordinateTransform(sourceProj, destProj, transform) {\n return function (coord) {\n var sourceX = coord[0];\n var sourceY = coord[1];\n var transformed, worldsAway;\n if (sourceProj.canWrapX()) {\n var sourceExtent = sourceProj.getExtent();\n var sourceExtentWidth = getWidth(sourceExtent);\n worldsAway = getWorldsAway(coord, sourceProj, sourceExtentWidth);\n if (worldsAway) {\n // Move x to the real world\n sourceX = sourceX - worldsAway * sourceExtentWidth;\n }\n sourceX = clamp(sourceX, sourceExtent[0], sourceExtent[2]);\n sourceY = clamp(sourceY, sourceExtent[1], sourceExtent[3]);\n transformed = transform([sourceX, sourceY]);\n }\n else {\n transformed = transform(coord);\n }\n if (worldsAway && destProj.canWrapX()) {\n // Move transformed coordinate back to the offset world\n transformed[0] += worldsAway * getWidth(destProj.getExtent());\n }\n return transformed;\n };\n}\n/**\n * Add transforms to and from EPSG:4326 and EPSG:3857. This function is called\n * by when this module is executed and should only need to be called again after\n * `clearAllProjections()` is called (e.g. in tests).\n */\nexport function addCommon() {\n // Add transformations that don't alter coordinates to convert within set of\n // projections with equal meaning.\n addEquivalentProjections(EPSG3857_PROJECTIONS);\n addEquivalentProjections(EPSG4326_PROJECTIONS);\n // Add transformations to convert EPSG:4326 like coordinates to EPSG:3857 like\n // coordinates and back.\n addEquivalentTransforms(EPSG4326_PROJECTIONS, EPSG3857_PROJECTIONS, fromEPSG4326, toEPSG4326);\n}\naddCommon();\n//# sourceMappingURL=proj.js.map","/**\n * @module ol/control/MousePosition\n */\nvar __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\nimport Control from './Control.js';\nimport EventType from '../pointer/EventType.js';\nimport { get as getProjection, getTransformFromProjections, getUserProjection, identityTransform, } from '../proj.js';\nimport { listen } from '../events.js';\n/**\n * @type {string}\n */\nvar PROJECTION = 'projection';\n/**\n * @type {string}\n */\nvar COORDINATE_FORMAT = 'coordinateFormat';\n/***\n * @template Return\n * @typedef {import(\"../Observable\").OnSignature<import(\"../Observable\").EventTypes, import(\"../events/Event.js\").default, Return> &\n * import(\"../Observable\").OnSignature<import(\"../ObjectEventType\").Types|\n * 'change:coordinateFormat'|'change:projection', import(\"../Object\").ObjectEvent, Return> &\n * import(\"../Observable\").CombinedOnSignature<import(\"../Observable\").EventTypes|import(\"../ObjectEventType\").Types|\n * 'change:coordinateFormat'|'change:projection', Return>} MousePositionOnSignature\n */\n/**\n * @typedef {Object} Options\n * @property {string} [className='ol-mouse-position'] CSS class name.\n * @property {import(\"../coordinate.js\").CoordinateFormat} [coordinateFormat] Coordinate format.\n * @property {import(\"../proj.js\").ProjectionLike} [projection] Projection. Default is the view projection.\n * @property {function(import(\"../MapEvent.js\").default):void} [render] Function called when the\n * control should be re-rendered. This is called in a `requestAnimationFrame`\n * callback.\n * @property {HTMLElement|string} [target] Specify a target if you want the\n * control to be rendered outside of the map's viewport.\n * @property {string|boolean} [placeholder] Markup to show when the mouse position is not\n * available (e.g. when the pointer leaves the map viewport). By default, a non-breaking space\n * is rendered when the mouse leaves the viewport. To render something else, provide a string\n * to be used as the text content (e.g. 'no position' or '' for an empty string). Set the placeholder\n * to `false` to retain the last position when the mouse leaves the viewport. In a future release, this\n * will be the default behavior.\n * @property {string} [undefinedHTML='&#160;'] This option is deprecated. Use the `placeholder` option instead.\n */\n/**\n * @classdesc\n * A control to show the 2D coordinates of the mouse cursor. By default, these\n * are in the view projection, but can be in any supported projection.\n * By default the control is shown in the top right corner of the map, but this\n * can be changed by using the css selector `.ol-mouse-position`.\n *\n * On touch devices, which usually do not have a mouse cursor, the coordinates\n * of the currently touched position are shown.\n *\n * @api\n */\nvar MousePosition = /** @class */ (function (_super) {\n __extends(MousePosition, _super);\n /**\n * @param {Options} [opt_options] Mouse position options.\n */\n function MousePosition(opt_options) {\n var _this = this;\n var options = opt_options ? opt_options : {};\n var element = document.createElement('div');\n element.className =\n options.className !== undefined ? options.className : 'ol-mouse-position';\n _this = _super.call(this, {\n element: element,\n render: options.render,\n target: options.target,\n }) || this;\n /***\n * @type {MousePositionOnSignature<import(\"../events\").EventsKey>}\n */\n _this.on;\n /***\n * @type {MousePositionOnSignature<import(\"../events\").EventsKey>}\n */\n _this.once;\n /***\n * @type {MousePositionOnSignature<void>}\n */\n _this.un;\n _this.addChangeListener(PROJECTION, _this.handleProjectionChanged_);\n if (options.coordinateFormat) {\n _this.setCoordinateFormat(options.coordinateFormat);\n }\n if (options.projection) {\n _this.setProjection(options.projection);\n }\n /**\n * Change this to `false` when removing the deprecated `undefinedHTML` option.\n * @type {boolean}\n */\n var renderOnMouseOut = true;\n /**\n * @type {string}\n */\n var placeholder = '&#160;';\n if ('undefinedHTML' in options) {\n // deprecated behavior\n if (options.undefinedHTML !== undefined) {\n placeholder = options.undefinedHTML;\n }\n renderOnMouseOut = !!placeholder;\n }\n else if ('placeholder' in options) {\n if (options.placeholder === false) {\n renderOnMouseOut = false;\n }\n else {\n placeholder = String(options.placeholder);\n }\n }\n /**\n * @private\n * @type {string}\n */\n _this.placeholder_ = placeholder;\n /**\n * @private\n * @type {boolean}\n */\n _this.renderOnMouseOut_ = renderOnMouseOut;\n /**\n * @private\n * @type {string}\n */\n _this.renderedHTML_ = element.innerHTML;\n /**\n * @private\n * @type {?import(\"../proj/Projection.js\").default}\n */\n _this.mapProjection_ = null;\n /**\n * @private\n * @type {?import(\"../proj.js\").TransformFunction}\n */\n _this.transform_ = null;\n return _this;\n }\n /**\n * @private\n */\n MousePosition.prototype.handleProjectionChanged_ = function () {\n this.transform_ = null;\n };\n /**\n * Return the coordinate format type used to render the current position or\n * undefined.\n * @return {import(\"../coordinate.js\").CoordinateFormat|undefined} The format to render the current\n * position in.\n * @observable\n * @api\n */\n MousePosition.prototype.getCoordinateFormat = function () {\n return /** @type {import(\"../coordinate.js\").CoordinateFormat|undefined} */ (this.get(COORDINATE_FORMAT));\n };\n /**\n * Return the projection that is used to report the mouse position.\n * @return {import(\"../proj/Projection.js\").default|undefined} The projection to report mouse\n * position in.\n * @observable\n * @api\n */\n MousePosition.prototype.getProjection = function () {\n return /** @type {import(\"../proj/Projection.js\").default|undefined} */ (this.get(PROJECTION));\n };\n /**\n * @param {MouseEvent} event Browser event.\n * @protected\n */\n MousePosition.prototype.handleMouseMove = function (event) {\n var map = this.getMap();\n this.updateHTML_(map.getEventPixel(event));\n };\n /**\n * @param {Event} event Browser event.\n * @protected\n */\n MousePosition.prototype.handleMouseOut = function (event) {\n this.updateHTML_(null);\n };\n /**\n * Remove the control from its current map and attach it to the new map.\n * Pass `null` to just remove the control from the current map.\n * Subclasses may set up event handlers to get notified about changes to\n * the map here.\n * @param {import(\"../PluggableMap.js\").default|null} map Map.\n * @api\n */\n MousePosition.prototype.setMap = function (map) {\n _super.prototype.setMap.call(this, map);\n if (map) {\n var viewport = map.getViewport();\n this.listenerKeys.push(listen(viewport, EventType.POINTERMOVE, this.handleMouseMove, this));\n if (this.renderOnMouseOut_) {\n this.listenerKeys.push(listen(viewport, EventType.POINTEROUT, this.handleMouseOut, this));\n }\n this.updateHTML_(null);\n }\n };\n /**\n * Set the coordinate format type used to render the current position.\n * @param {import(\"../coordinate.js\").CoordinateFormat} format The format to render the current\n * position in.\n * @observable\n * @api\n */\n MousePosition.prototype.setCoordinateFormat = function (format) {\n this.set(COORDINATE_FORMAT, format);\n };\n /**\n * Set the projection that is used to report the mouse position.\n * @param {import(\"../proj.js\").ProjectionLike} projection The projection to report mouse\n * position in.\n * @observable\n * @api\n */\n MousePosition.prototype.setProjection = function (projection) {\n this.set(PROJECTION, getProjection(projection));\n };\n /**\n * @param {?import(\"../pixel.js\").Pixel} pixel Pixel.\n * @private\n */\n MousePosition.prototype.updateHTML_ = function (pixel) {\n var html = this.placeholder_;\n if (pixel && this.mapProjection_) {\n if (!this.transform_) {\n var projection = this.getProjection();\n if (projection) {\n this.transform_ = getTransformFromProjections(this.mapProjection_, projection);\n }\n else {\n this.transform_ = identityTransform;\n }\n }\n var map = this.getMap();\n var coordinate = map.getCoordinateFromPixelInternal(pixel);\n if (coordinate) {\n var userProjection = getUserProjection();\n if (userProjection) {\n this.transform_ = getTransformFromProjections(this.mapProjection_, userProjection);\n }\n this.transform_(coordinate, coordinate);\n var coordinateFormat = this.getCoordinateFormat();\n if (coordinateFormat) {\n html = coordinateFormat(coordinate);\n }\n else {\n html = coordinate.toString();\n }\n }\n }\n if (!this.renderedHTML_ || html !== this.renderedHTML_) {\n this.element.innerHTML = html;\n this.renderedHTML_ = html;\n }\n };\n /**\n * Update the projection. Rendering of the coordinates is done in\n * `handleMouseMove` and `handleMouseUp`.\n * @param {import(\"../MapEvent.js\").default} mapEvent Map event.\n * @override\n */\n MousePosition.prototype.render = function (mapEvent) {\n var frameState = mapEvent.frameState;\n if (!frameState) {\n this.mapProjection_ = null;\n }\n else {\n if (this.mapProjection_ != frameState.viewState.projection) {\n this.mapProjection_ = frameState.viewState.projection;\n this.transform_ = null;\n }\n }\n };\n return MousePosition;\n}(Control));\nexport default MousePosition;\n//# sourceMappingURL=MousePosition.js.map","/**\n * @module ol/easing\n */\n/**\n * Start slow and speed up.\n * @param {number} t Input between 0 and 1.\n * @return {number} Output between 0 and 1.\n * @api\n */\nexport function easeIn(t) {\n return Math.pow(t, 3);\n}\n/**\n * Start fast and slow down.\n * @param {number} t Input between 0 and 1.\n * @return {number} Output between 0 and 1.\n * @api\n */\nexport function easeOut(t) {\n return 1 - easeIn(1 - t);\n}\n/**\n * Start slow, speed up, and then slow down again.\n * @param {number} t Input between 0 and 1.\n * @return {number} Output between 0 and 1.\n * @api\n */\nexport function inAndOut(t) {\n return 3 * t * t - 2 * t * t * t;\n}\n/**\n * Maintain a constant speed over time.\n * @param {number} t Input between 0 and 1.\n * @return {number} Output between 0 and 1.\n * @api\n */\nexport function linear(t) {\n return t;\n}\n/**\n * Start slow, speed up, and at the very end slow down again. This has the\n * same general behavior as {@link module:ol/easing.inAndOut}, but the final\n * slowdown is delayed.\n * @param {number} t Input between 0 and 1.\n * @return {number} Output between 0 and 1.\n * @api\n */\nexport function upAndDown(t) {\n if (t < 0.5) {\n return inAndOut(2 * t);\n }\n else {\n return 1 - inAndOut(2 * (t - 0.5));\n }\n}\n//# sourceMappingURL=easing.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/control/Zoom\n */\nimport Control from './Control.js';\nimport EventType from '../events/EventType.js';\nimport { CLASS_CONTROL, CLASS_UNSELECTABLE } from '../css.js';\nimport { easeOut } from '../easing.js';\n/**\n * @typedef {Object} Options\n * @property {number} [duration=250] Animation duration in milliseconds.\n * @property {string} [className='ol-zoom'] CSS class name.\n * @property {string} [zoomInClassName=className + '-in'] CSS class name for the zoom-in button.\n * @property {string} [zoomOutClassName=className + '-out'] CSS class name for the zoom-out button.\n * @property {string|HTMLElement} [zoomInLabel='+'] Text label to use for the zoom-in\n * button. Instead of text, also an element (e.g. a `span` element) can be used.\n * @property {string|HTMLElement} [zoomOutLabel='–'] Text label to use for the zoom-out button.\n * Instead of text, also an element (e.g. a `span` element) can be used.\n * @property {string} [zoomInTipLabel='Zoom in'] Text label to use for the button tip.\n * @property {string} [zoomOutTipLabel='Zoom out'] Text label to use for the button tip.\n * @property {number} [delta=1] The zoom delta applied on each click.\n * @property {HTMLElement|string} [target] Specify a target if you want the control to be\n * rendered outside of the map's viewport.\n */\n/**\n * @classdesc\n * A control with 2 buttons, one for zoom in and one for zoom out.\n * This control is one of the default controls of a map. To style this control\n * use css selectors `.ol-zoom-in` and `.ol-zoom-out`.\n *\n * @api\n */\nvar Zoom = /** @class */ (function (_super) {\n __extends(Zoom, _super);\n /**\n * @param {Options} [opt_options] Zoom options.\n */\n function Zoom(opt_options) {\n var _this = this;\n var options = opt_options ? opt_options : {};\n _this = _super.call(this, {\n element: document.createElement('div'),\n target: options.target,\n }) || this;\n var className = options.className !== undefined ? options.className : 'ol-zoom';\n var delta = options.delta !== undefined ? options.delta : 1;\n var zoomInClassName = options.zoomInClassName !== undefined\n ? options.zoomInClassName\n : className + '-in';\n var zoomOutClassName = options.zoomOutClassName !== undefined\n ? options.zoomOutClassName\n : className + '-out';\n var zoomInLabel = options.zoomInLabel !== undefined ? options.zoomInLabel : '+';\n var zoomOutLabel = options.zoomOutLabel !== undefined ? options.zoomOutLabel : '\\u2013';\n var zoomInTipLabel = options.zoomInTipLabel !== undefined ? options.zoomInTipLabel : 'Zoom in';\n var zoomOutTipLabel = options.zoomOutTipLabel !== undefined\n ? options.zoomOutTipLabel\n : 'Zoom out';\n var inElement = document.createElement('button');\n inElement.className = zoomInClassName;\n inElement.setAttribute('type', 'button');\n inElement.title = zoomInTipLabel;\n inElement.appendChild(typeof zoomInLabel === 'string'\n ? document.createTextNode(zoomInLabel)\n : zoomInLabel);\n inElement.addEventListener(EventType.CLICK, _this.handleClick_.bind(_this, delta), false);\n var outElement = document.createElement('button');\n outElement.className = zoomOutClassName;\n outElement.setAttribute('type', 'button');\n outElement.title = zoomOutTipLabel;\n outElement.appendChild(typeof zoomOutLabel === 'string'\n ? document.createTextNode(zoomOutLabel)\n : zoomOutLabel);\n outElement.addEventListener(EventType.CLICK, _this.handleClick_.bind(_this, -delta), false);\n var cssClasses = className + ' ' + CLASS_UNSELECTABLE + ' ' + CLASS_CONTROL;\n var element = _this.element;\n element.className = cssClasses;\n element.appendChild(inElement);\n element.appendChild(outElement);\n /**\n * @type {number}\n * @private\n */\n _this.duration_ = options.duration !== undefined ? options.duration : 250;\n return _this;\n }\n /**\n * @param {number} delta Zoom delta.\n * @param {MouseEvent} event The event to handle\n * @private\n */\n Zoom.prototype.handleClick_ = function (delta, event) {\n event.preventDefault();\n this.zoomByDelta_(delta);\n };\n /**\n * @param {number} delta Zoom delta.\n * @private\n */\n Zoom.prototype.zoomByDelta_ = function (delta) {\n var map = this.getMap();\n var view = map.getView();\n if (!view) {\n // the map does not have a view, so we can't act\n // upon it\n return;\n }\n var currentZoom = view.getZoom();\n if (currentZoom !== undefined) {\n var newZoom = view.getConstrainedZoom(currentZoom + delta);\n if (this.duration_ > 0) {\n if (view.getAnimating()) {\n view.cancelAnimations();\n }\n view.animate({\n zoom: newZoom,\n duration: this.duration_,\n easing: easeOut,\n });\n }\n else {\n view.setZoom(newZoom);\n }\n }\n };\n return Zoom;\n}(Control));\nexport default Zoom;\n//# sourceMappingURL=Zoom.js.map","/**\n * @module ol/transform\n */\nimport { WORKER_OFFSCREEN_CANVAS } from './has.js';\nimport { assert } from './asserts.js';\n/**\n * An array representing an affine 2d transformation for use with\n * {@link module:ol/transform} functions. The array has 6 elements.\n * @typedef {!Array<number>} Transform\n * @api\n */\n/**\n * Collection of affine 2d transformation functions. The functions work on an\n * array of 6 elements. The element order is compatible with the [SVGMatrix\n * interface](https://developer.mozilla.org/en-US/docs/Web/API/SVGMatrix) and is\n * a subset (elements a to f) of a 3×3 matrix:\n * ```\n * [ a c e ]\n * [ b d f ]\n * [ 0 0 1 ]\n * ```\n */\n/**\n * @private\n * @type {Transform}\n */\nvar tmp_ = new Array(6);\n/**\n * Create an identity transform.\n * @return {!Transform} Identity transform.\n */\nexport function create() {\n return [1, 0, 0, 1, 0, 0];\n}\n/**\n * Resets the given transform to an identity transform.\n * @param {!Transform} transform Transform.\n * @return {!Transform} Transform.\n */\nexport function reset(transform) {\n return set(transform, 1, 0, 0, 1, 0, 0);\n}\n/**\n * Multiply the underlying matrices of two transforms and return the result in\n * the first transform.\n * @param {!Transform} transform1 Transform parameters of matrix 1.\n * @param {!Transform} transform2 Transform parameters of matrix 2.\n * @return {!Transform} transform1 multiplied with transform2.\n */\nexport function multiply(transform1, transform2) {\n var a1 = transform1[0];\n var b1 = transform1[1];\n var c1 = transform1[2];\n var d1 = transform1[3];\n var e1 = transform1[4];\n var f1 = transform1[5];\n var a2 = transform2[0];\n var b2 = transform2[1];\n var c2 = transform2[2];\n var d2 = transform2[3];\n var e2 = transform2[4];\n var f2 = transform2[5];\n transform1[0] = a1 * a2 + c1 * b2;\n transform1[1] = b1 * a2 + d1 * b2;\n transform1[2] = a1 * c2 + c1 * d2;\n transform1[3] = b1 * c2 + d1 * d2;\n transform1[4] = a1 * e2 + c1 * f2 + e1;\n transform1[5] = b1 * e2 + d1 * f2 + f1;\n return transform1;\n}\n/**\n * Set the transform components a-f on a given transform.\n * @param {!Transform} transform Transform.\n * @param {number} a The a component of the transform.\n * @param {number} b The b component of the transform.\n * @param {number} c The c component of the transform.\n * @param {number} d The d component of the transform.\n * @param {number} e The e component of the transform.\n * @param {number} f The f component of the transform.\n * @return {!Transform} Matrix with transform applied.\n */\nexport function set(transform, a, b, c, d, e, f) {\n transform[0] = a;\n transform[1] = b;\n transform[2] = c;\n transform[3] = d;\n transform[4] = e;\n transform[5] = f;\n return transform;\n}\n/**\n * Set transform on one matrix from another matrix.\n * @param {!Transform} transform1 Matrix to set transform to.\n * @param {!Transform} transform2 Matrix to set transform from.\n * @return {!Transform} transform1 with transform from transform2 applied.\n */\nexport function setFromArray(transform1, transform2) {\n transform1[0] = transform2[0];\n transform1[1] = transform2[1];\n transform1[2] = transform2[2];\n transform1[3] = transform2[3];\n transform1[4] = transform2[4];\n transform1[5] = transform2[5];\n return transform1;\n}\n/**\n * Transforms the given coordinate with the given transform returning the\n * resulting, transformed coordinate. The coordinate will be modified in-place.\n *\n * @param {Transform} transform The transformation.\n * @param {import(\"./coordinate.js\").Coordinate|import(\"./pixel.js\").Pixel} coordinate The coordinate to transform.\n * @return {import(\"./coordinate.js\").Coordinate|import(\"./pixel.js\").Pixel} return coordinate so that operations can be\n * chained together.\n */\nexport function apply(transform, coordinate) {\n var x = coordinate[0];\n var y = coordinate[1];\n coordinate[0] = transform[0] * x + transform[2] * y + transform[4];\n coordinate[1] = transform[1] * x + transform[3] * y + transform[5];\n return coordinate;\n}\n/**\n * Applies rotation to the given transform.\n * @param {!Transform} transform Transform.\n * @param {number} angle Angle in radians.\n * @return {!Transform} The rotated transform.\n */\nexport function rotate(transform, angle) {\n var cos = Math.cos(angle);\n var sin = Math.sin(angle);\n return multiply(transform, set(tmp_, cos, sin, -sin, cos, 0, 0));\n}\n/**\n * Applies scale to a given transform.\n * @param {!Transform} transform Transform.\n * @param {number} x Scale factor x.\n * @param {number} y Scale factor y.\n * @return {!Transform} The scaled transform.\n */\nexport function scale(transform, x, y) {\n return multiply(transform, set(tmp_, x, 0, 0, y, 0, 0));\n}\n/**\n * Creates a scale transform.\n * @param {!Transform} target Transform to overwrite.\n * @param {number} x Scale factor x.\n * @param {number} y Scale factor y.\n * @return {!Transform} The scale transform.\n */\nexport function makeScale(target, x, y) {\n return set(target, x, 0, 0, y, 0, 0);\n}\n/**\n * Applies translation to the given transform.\n * @param {!Transform} transform Transform.\n * @param {number} dx Translation x.\n * @param {number} dy Translation y.\n * @return {!Transform} The translated transform.\n */\nexport function translate(transform, dx, dy) {\n return multiply(transform, set(tmp_, 1, 0, 0, 1, dx, dy));\n}\n/**\n * Creates a composite transform given an initial translation, scale, rotation, and\n * final translation (in that order only, not commutative).\n * @param {!Transform} transform The transform (will be modified in place).\n * @param {number} dx1 Initial translation x.\n * @param {number} dy1 Initial translation y.\n * @param {number} sx Scale factor x.\n * @param {number} sy Scale factor y.\n * @param {number} angle Rotation (in counter-clockwise radians).\n * @param {number} dx2 Final translation x.\n * @param {number} dy2 Final translation y.\n * @return {!Transform} The composite transform.\n */\nexport function compose(transform, dx1, dy1, sx, sy, angle, dx2, dy2) {\n var sin = Math.sin(angle);\n var cos = Math.cos(angle);\n transform[0] = sx * cos;\n transform[1] = sy * sin;\n transform[2] = -sx * sin;\n transform[3] = sy * cos;\n transform[4] = dx2 * sx * cos - dy2 * sx * sin + dx1;\n transform[5] = dx2 * sy * sin + dy2 * sy * cos + dy1;\n return transform;\n}\n/**\n * Creates a composite transform given an initial translation, scale, rotation, and\n * final translation (in that order only, not commutative). The resulting transform\n * string can be applied as `transform` property of an HTMLElement's style.\n * @param {number} dx1 Initial translation x.\n * @param {number} dy1 Initial translation y.\n * @param {number} sx Scale factor x.\n * @param {number} sy Scale factor y.\n * @param {number} angle Rotation (in counter-clockwise radians).\n * @param {number} dx2 Final translation x.\n * @param {number} dy2 Final translation y.\n * @return {string} The composite css transform.\n * @api\n */\nexport function composeCssTransform(dx1, dy1, sx, sy, angle, dx2, dy2) {\n return toString(compose(create(), dx1, dy1, sx, sy, angle, dx2, dy2));\n}\n/**\n * Invert the given transform.\n * @param {!Transform} source The source transform to invert.\n * @return {!Transform} The inverted (source) transform.\n */\nexport function invert(source) {\n return makeInverse(source, source);\n}\n/**\n * Invert the given transform.\n * @param {!Transform} target Transform to be set as the inverse of\n * the source transform.\n * @param {!Transform} source The source transform to invert.\n * @return {!Transform} The inverted (target) transform.\n */\nexport function makeInverse(target, source) {\n var det = determinant(source);\n assert(det !== 0, 32); // Transformation matrix cannot be inverted\n var a = source[0];\n var b = source[1];\n var c = source[2];\n var d = source[3];\n var e = source[4];\n var f = source[5];\n target[0] = d / det;\n target[1] = -b / det;\n target[2] = -c / det;\n target[3] = a / det;\n target[4] = (c * f - d * e) / det;\n target[5] = -(a * f - b * e) / det;\n return target;\n}\n/**\n * Returns the determinant of the given matrix.\n * @param {!Transform} mat Matrix.\n * @return {number} Determinant.\n */\nexport function determinant(mat) {\n return mat[0] * mat[3] - mat[1] * mat[2];\n}\n/**\n * @type {HTMLElement}\n * @private\n */\nvar transformStringDiv;\n/**\n * A rounded string version of the transform. This can be used\n * for CSS transforms.\n * @param {!Transform} mat Matrix.\n * @return {string} The transform as a string.\n */\nexport function toString(mat) {\n var transformString = 'matrix(' + mat.join(', ') + ')';\n if (WORKER_OFFSCREEN_CANVAS) {\n return transformString;\n }\n var node = transformStringDiv || (transformStringDiv = document.createElement('div'));\n node.style.transform = transformString;\n return node.style.transform;\n}\n//# sourceMappingURL=transform.js.map","/**\n * @module ol/geom/GeometryLayout\n */\n/**\n * The coordinate layout for geometries, indicating whether a 3rd or 4th z ('Z')\n * or measure ('M') coordinate is available. Supported values are `'XY'`,\n * `'XYZ'`, `'XYM'`, `'XYZM'`.\n * @enum {string}\n */\nexport default {\n XY: 'XY',\n XYZ: 'XYZ',\n XYM: 'XYM',\n XYZM: 'XYZM',\n};\n//# sourceMappingURL=GeometryLayout.js.map","/**\n * @module ol/geom/GeometryType\n */\n/**\n * The geometry type. One of `'Point'`, `'LineString'`, `'LinearRing'`,\n * `'Polygon'`, `'MultiPoint'`, `'MultiLineString'`, `'MultiPolygon'`,\n * `'GeometryCollection'`, `'Circle'`.\n * @enum {string}\n */\nexport default {\n POINT: 'Point',\n LINE_STRING: 'LineString',\n LINEAR_RING: 'LinearRing',\n POLYGON: 'Polygon',\n MULTI_POINT: 'MultiPoint',\n MULTI_LINE_STRING: 'MultiLineString',\n MULTI_POLYGON: 'MultiPolygon',\n GEOMETRY_COLLECTION: 'GeometryCollection',\n CIRCLE: 'Circle',\n};\n//# sourceMappingURL=GeometryType.js.map","/**\n * @module ol/geom/flat/transform\n */\n/**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {number} end End.\n * @param {number} stride Stride.\n * @param {import(\"../../transform.js\").Transform} transform Transform.\n * @param {Array<number>} [opt_dest] Destination.\n * @return {Array<number>} Transformed coordinates.\n */\nexport function transform2D(flatCoordinates, offset, end, stride, transform, opt_dest) {\n var dest = opt_dest ? opt_dest : [];\n var i = 0;\n for (var j = offset; j < end; j += stride) {\n var x = flatCoordinates[j];\n var y = flatCoordinates[j + 1];\n dest[i++] = transform[0] * x + transform[2] * y + transform[4];\n dest[i++] = transform[1] * x + transform[3] * y + transform[5];\n }\n if (opt_dest && dest.length != i) {\n dest.length = i;\n }\n return dest;\n}\n/**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {number} end End.\n * @param {number} stride Stride.\n * @param {number} angle Angle.\n * @param {Array<number>} anchor Rotation anchor point.\n * @param {Array<number>} [opt_dest] Destination.\n * @return {Array<number>} Transformed coordinates.\n */\nexport function rotate(flatCoordinates, offset, end, stride, angle, anchor, opt_dest) {\n var dest = opt_dest ? opt_dest : [];\n var cos = Math.cos(angle);\n var sin = Math.sin(angle);\n var anchorX = anchor[0];\n var anchorY = anchor[1];\n var i = 0;\n for (var j = offset; j < end; j += stride) {\n var deltaX = flatCoordinates[j] - anchorX;\n var deltaY = flatCoordinates[j + 1] - anchorY;\n dest[i++] = anchorX + deltaX * cos - deltaY * sin;\n dest[i++] = anchorY + deltaX * sin + deltaY * cos;\n for (var k = j + 2; k < j + stride; ++k) {\n dest[i++] = flatCoordinates[k];\n }\n }\n if (opt_dest && dest.length != i) {\n dest.length = i;\n }\n return dest;\n}\n/**\n * Scale the coordinates.\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {number} end End.\n * @param {number} stride Stride.\n * @param {number} sx Scale factor in the x-direction.\n * @param {number} sy Scale factor in the y-direction.\n * @param {Array<number>} anchor Scale anchor point.\n * @param {Array<number>} [opt_dest] Destination.\n * @return {Array<number>} Transformed coordinates.\n */\nexport function scale(flatCoordinates, offset, end, stride, sx, sy, anchor, opt_dest) {\n var dest = opt_dest ? opt_dest : [];\n var anchorX = anchor[0];\n var anchorY = anchor[1];\n var i = 0;\n for (var j = offset; j < end; j += stride) {\n var deltaX = flatCoordinates[j] - anchorX;\n var deltaY = flatCoordinates[j + 1] - anchorY;\n dest[i++] = anchorX + sx * deltaX;\n dest[i++] = anchorY + sy * deltaY;\n for (var k = j + 2; k < j + stride; ++k) {\n dest[i++] = flatCoordinates[k];\n }\n }\n if (opt_dest && dest.length != i) {\n dest.length = i;\n }\n return dest;\n}\n/**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {number} end End.\n * @param {number} stride Stride.\n * @param {number} deltaX Delta X.\n * @param {number} deltaY Delta Y.\n * @param {Array<number>} [opt_dest] Destination.\n * @return {Array<number>} Transformed coordinates.\n */\nexport function translate(flatCoordinates, offset, end, stride, deltaX, deltaY, opt_dest) {\n var dest = opt_dest ? opt_dest : [];\n var i = 0;\n for (var j = offset; j < end; j += stride) {\n dest[i++] = flatCoordinates[j] + deltaX;\n dest[i++] = flatCoordinates[j + 1] + deltaY;\n for (var k = j + 2; k < j + stride; ++k) {\n dest[i++] = flatCoordinates[k];\n }\n }\n if (opt_dest && dest.length != i) {\n dest.length = i;\n }\n return dest;\n}\n//# sourceMappingURL=transform.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/geom/Geometry\n */\nimport BaseObject from '../Object.js';\nimport Units from '../proj/Units.js';\nimport { abstract } from '../util.js';\nimport { compose as composeTransform, create as createTransform, } from '../transform.js';\nimport { createEmpty, createOrUpdateEmpty, getHeight, returnOrUpdate, } from '../extent.js';\nimport { get as getProjection, getTransform } from '../proj.js';\nimport { memoizeOne } from '../functions.js';\nimport { transform2D } from './flat/transform.js';\n/**\n * @type {import(\"../transform.js\").Transform}\n */\nvar tmpTransform = createTransform();\n/**\n * @classdesc\n * Abstract base class; normally only used for creating subclasses and not\n * instantiated in apps.\n * Base class for vector geometries.\n *\n * To get notified of changes to the geometry, register a listener for the\n * generic `change` event on your geometry instance.\n *\n * @abstract\n * @api\n */\nvar Geometry = /** @class */ (function (_super) {\n __extends(Geometry, _super);\n function Geometry() {\n var _this = _super.call(this) || this;\n /**\n * @private\n * @type {import(\"../extent.js\").Extent}\n */\n _this.extent_ = createEmpty();\n /**\n * @private\n * @type {number}\n */\n _this.extentRevision_ = -1;\n /**\n * @protected\n * @type {number}\n */\n _this.simplifiedGeometryMaxMinSquaredTolerance = 0;\n /**\n * @protected\n * @type {number}\n */\n _this.simplifiedGeometryRevision = 0;\n /**\n * Get a transformed and simplified version of the geometry.\n * @abstract\n * @param {number} revision The geometry revision.\n * @param {number} squaredTolerance Squared tolerance.\n * @param {import(\"../proj.js\").TransformFunction} [opt_transform] Optional transform function.\n * @return {Geometry} Simplified geometry.\n */\n _this.simplifyTransformedInternal = memoizeOne(function (revision, squaredTolerance, opt_transform) {\n if (!opt_transform) {\n return this.getSimplifiedGeometry(squaredTolerance);\n }\n var clone = this.clone();\n clone.applyTransform(opt_transform);\n return clone.getSimplifiedGeometry(squaredTolerance);\n });\n return _this;\n }\n /**\n * Get a transformed and simplified version of the geometry.\n * @abstract\n * @param {number} squaredTolerance Squared tolerance.\n * @param {import(\"../proj.js\").TransformFunction} [opt_transform] Optional transform function.\n * @return {Geometry} Simplified geometry.\n */\n Geometry.prototype.simplifyTransformed = function (squaredTolerance, opt_transform) {\n return this.simplifyTransformedInternal(this.getRevision(), squaredTolerance, opt_transform);\n };\n /**\n * Make a complete copy of the geometry.\n * @abstract\n * @return {!Geometry} Clone.\n */\n Geometry.prototype.clone = function () {\n return abstract();\n };\n /**\n * @abstract\n * @param {number} x X.\n * @param {number} y Y.\n * @param {import(\"../coordinate.js\").Coordinate} closestPoint Closest point.\n * @param {number} minSquaredDistance Minimum squared distance.\n * @return {number} Minimum squared distance.\n */\n Geometry.prototype.closestPointXY = function (x, y, closestPoint, minSquaredDistance) {\n return abstract();\n };\n /**\n * @param {number} x X.\n * @param {number} y Y.\n * @return {boolean} Contains (x, y).\n */\n Geometry.prototype.containsXY = function (x, y) {\n var coord = this.getClosestPoint([x, y]);\n return coord[0] === x && coord[1] === y;\n };\n /**\n * Return the closest point of the geometry to the passed point as\n * {@link module:ol/coordinate~Coordinate coordinate}.\n * @param {import(\"../coordinate.js\").Coordinate} point Point.\n * @param {import(\"../coordinate.js\").Coordinate} [opt_closestPoint] Closest point.\n * @return {import(\"../coordinate.js\").Coordinate} Closest point.\n * @api\n */\n Geometry.prototype.getClosestPoint = function (point, opt_closestPoint) {\n var closestPoint = opt_closestPoint ? opt_closestPoint : [NaN, NaN];\n this.closestPointXY(point[0], point[1], closestPoint, Infinity);\n return closestPoint;\n };\n /**\n * Returns true if this geometry includes the specified coordinate. If the\n * coordinate is on the boundary of the geometry, returns false.\n * @param {import(\"../coordinate.js\").Coordinate} coordinate Coordinate.\n * @return {boolean} Contains coordinate.\n * @api\n */\n Geometry.prototype.intersectsCoordinate = function (coordinate) {\n return this.containsXY(coordinate[0], coordinate[1]);\n };\n /**\n * @abstract\n * @param {import(\"../extent.js\").Extent} extent Extent.\n * @protected\n * @return {import(\"../extent.js\").Extent} extent Extent.\n */\n Geometry.prototype.computeExtent = function (extent) {\n return abstract();\n };\n /**\n * Get the extent of the geometry.\n * @param {import(\"../extent.js\").Extent} [opt_extent] Extent.\n * @return {import(\"../extent.js\").Extent} extent Extent.\n * @api\n */\n Geometry.prototype.getExtent = function (opt_extent) {\n if (this.extentRevision_ != this.getRevision()) {\n var extent = this.computeExtent(this.extent_);\n if (isNaN(extent[0]) || isNaN(extent[1])) {\n createOrUpdateEmpty(extent);\n }\n this.extentRevision_ = this.getRevision();\n }\n return returnOrUpdate(this.extent_, opt_extent);\n };\n /**\n * Rotate the geometry around a given coordinate. This modifies the geometry\n * coordinates in place.\n * @abstract\n * @param {number} angle Rotation angle in radians.\n * @param {import(\"../coordinate.js\").Coordinate} anchor The rotation center.\n * @api\n */\n Geometry.prototype.rotate = function (angle, anchor) {\n abstract();\n };\n /**\n * Scale the geometry (with an optional origin). This modifies the geometry\n * coordinates in place.\n * @abstract\n * @param {number} sx The scaling factor in the x-direction.\n * @param {number} [opt_sy] The scaling factor in the y-direction (defaults to sx).\n * @param {import(\"../coordinate.js\").Coordinate} [opt_anchor] The scale origin (defaults to the center\n * of the geometry extent).\n * @api\n */\n Geometry.prototype.scale = function (sx, opt_sy, opt_anchor) {\n abstract();\n };\n /**\n * Create a simplified version of this geometry. For linestrings, this uses\n * the [Douglas Peucker](https://en.wikipedia.org/wiki/Ramer-Douglas-Peucker_algorithm)\n * algorithm. For polygons, a quantization-based\n * simplification is used to preserve topology.\n * @param {number} tolerance The tolerance distance for simplification.\n * @return {Geometry} A new, simplified version of the original geometry.\n * @api\n */\n Geometry.prototype.simplify = function (tolerance) {\n return this.getSimplifiedGeometry(tolerance * tolerance);\n };\n /**\n * Create a simplified version of this geometry using the Douglas Peucker\n * algorithm.\n * See https://en.wikipedia.org/wiki/Ramer-Douglas-Peucker_algorithm.\n * @abstract\n * @param {number} squaredTolerance Squared tolerance.\n * @return {Geometry} Simplified geometry.\n */\n Geometry.prototype.getSimplifiedGeometry = function (squaredTolerance) {\n return abstract();\n };\n /**\n * Get the type of this geometry.\n * @abstract\n * @return {import(\"./GeometryType.js\").default} Geometry type.\n */\n Geometry.prototype.getType = function () {\n return abstract();\n };\n /**\n * Apply a transform function to the coordinates of the geometry.\n * The geometry is modified in place.\n * If you do not want the geometry modified in place, first `clone()` it and\n * then use this function on the clone.\n * @abstract\n * @param {import(\"../proj.js\").TransformFunction} transformFn Transform function.\n * Called with a flat array of geometry coordinates.\n */\n Geometry.prototype.applyTransform = function (transformFn) {\n abstract();\n };\n /**\n * Test if the geometry and the passed extent intersect.\n * @abstract\n * @param {import(\"../extent.js\").Extent} extent Extent.\n * @return {boolean} `true` if the geometry and the extent intersect.\n */\n Geometry.prototype.intersectsExtent = function (extent) {\n return abstract();\n };\n /**\n * Translate the geometry. This modifies the geometry coordinates in place. If\n * instead you want a new geometry, first `clone()` this geometry.\n * @abstract\n * @param {number} deltaX Delta X.\n * @param {number} deltaY Delta Y.\n * @api\n */\n Geometry.prototype.translate = function (deltaX, deltaY) {\n abstract();\n };\n /**\n * Transform each coordinate of the geometry from one coordinate reference\n * system to another. The geometry is modified in place.\n * For example, a line will be transformed to a line and a circle to a circle.\n * If you do not want the geometry modified in place, first `clone()` it and\n * then use this function on the clone.\n *\n * @param {import(\"../proj.js\").ProjectionLike} source The current projection. Can be a\n * string identifier or a {@link module:ol/proj/Projection~Projection} object.\n * @param {import(\"../proj.js\").ProjectionLike} destination The desired projection. Can be a\n * string identifier or a {@link module:ol/proj/Projection~Projection} object.\n * @return {Geometry} This geometry. Note that original geometry is\n * modified in place.\n * @api\n */\n Geometry.prototype.transform = function (source, destination) {\n /** @type {import(\"../proj/Projection.js\").default} */\n var sourceProj = getProjection(source);\n var transformFn = sourceProj.getUnits() == Units.TILE_PIXELS\n ? function (inCoordinates, outCoordinates, stride) {\n var pixelExtent = sourceProj.getExtent();\n var projectedExtent = sourceProj.getWorldExtent();\n var scale = getHeight(projectedExtent) / getHeight(pixelExtent);\n composeTransform(tmpTransform, projectedExtent[0], projectedExtent[3], scale, -scale, 0, 0, 0);\n transform2D(inCoordinates, 0, inCoordinates.length, stride, tmpTransform, outCoordinates);\n return getTransform(sourceProj, destination)(inCoordinates, outCoordinates, stride);\n }\n : getTransform(sourceProj, destination);\n this.applyTransform(transformFn);\n return this;\n };\n return Geometry;\n}(BaseObject));\nexport default Geometry;\n//# sourceMappingURL=Geometry.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/geom/SimpleGeometry\n */\nimport Geometry from './Geometry.js';\nimport GeometryLayout from './GeometryLayout.js';\nimport { abstract } from '../util.js';\nimport { createOrUpdateFromFlatCoordinates, getCenter } from '../extent.js';\nimport { rotate, scale, transform2D, translate } from './flat/transform.js';\n/**\n * @classdesc\n * Abstract base class; only used for creating subclasses; do not instantiate\n * in apps, as cannot be rendered.\n *\n * @abstract\n * @api\n */\nvar SimpleGeometry = /** @class */ (function (_super) {\n __extends(SimpleGeometry, _super);\n function SimpleGeometry() {\n var _this = _super.call(this) || this;\n /**\n * @protected\n * @type {import(\"./GeometryLayout.js\").default}\n */\n _this.layout = GeometryLayout.XY;\n /**\n * @protected\n * @type {number}\n */\n _this.stride = 2;\n /**\n * @protected\n * @type {Array<number>}\n */\n _this.flatCoordinates = null;\n return _this;\n }\n /**\n * @param {import(\"../extent.js\").Extent} extent Extent.\n * @protected\n * @return {import(\"../extent.js\").Extent} extent Extent.\n */\n SimpleGeometry.prototype.computeExtent = function (extent) {\n return createOrUpdateFromFlatCoordinates(this.flatCoordinates, 0, this.flatCoordinates.length, this.stride, extent);\n };\n /**\n * @abstract\n * @return {Array<*> | null} Coordinates.\n */\n SimpleGeometry.prototype.getCoordinates = function () {\n return abstract();\n };\n /**\n * Return the first coordinate of the geometry.\n * @return {import(\"../coordinate.js\").Coordinate} First coordinate.\n * @api\n */\n SimpleGeometry.prototype.getFirstCoordinate = function () {\n return this.flatCoordinates.slice(0, this.stride);\n };\n /**\n * @return {Array<number>} Flat coordinates.\n */\n SimpleGeometry.prototype.getFlatCoordinates = function () {\n return this.flatCoordinates;\n };\n /**\n * Return the last coordinate of the geometry.\n * @return {import(\"../coordinate.js\").Coordinate} Last point.\n * @api\n */\n SimpleGeometry.prototype.getLastCoordinate = function () {\n return this.flatCoordinates.slice(this.flatCoordinates.length - this.stride);\n };\n /**\n * Return the {@link module:ol/geom/GeometryLayout layout} of the geometry.\n * @return {import(\"./GeometryLayout.js\").default} Layout.\n * @api\n */\n SimpleGeometry.prototype.getLayout = function () {\n return this.layout;\n };\n /**\n * Create a simplified version of this geometry using the Douglas Peucker algorithm.\n * @param {number} squaredTolerance Squared tolerance.\n * @return {SimpleGeometry} Simplified geometry.\n */\n SimpleGeometry.prototype.getSimplifiedGeometry = function (squaredTolerance) {\n if (this.simplifiedGeometryRevision !== this.getRevision()) {\n this.simplifiedGeometryMaxMinSquaredTolerance = 0;\n this.simplifiedGeometryRevision = this.getRevision();\n }\n // If squaredTolerance is negative or if we know that simplification will not\n // have any effect then just return this.\n if (squaredTolerance < 0 ||\n (this.simplifiedGeometryMaxMinSquaredTolerance !== 0 &&\n squaredTolerance <= this.simplifiedGeometryMaxMinSquaredTolerance)) {\n return this;\n }\n var simplifiedGeometry = this.getSimplifiedGeometryInternal(squaredTolerance);\n var simplifiedFlatCoordinates = simplifiedGeometry.getFlatCoordinates();\n if (simplifiedFlatCoordinates.length < this.flatCoordinates.length) {\n return simplifiedGeometry;\n }\n else {\n // Simplification did not actually remove any coordinates. We now know\n // that any calls to getSimplifiedGeometry with a squaredTolerance less\n // than or equal to the current squaredTolerance will also not have any\n // effect. This allows us to short circuit simplification (saving CPU\n // cycles) and prevents the cache of simplified geometries from filling\n // up with useless identical copies of this geometry (saving memory).\n this.simplifiedGeometryMaxMinSquaredTolerance = squaredTolerance;\n return this;\n }\n };\n /**\n * @param {number} squaredTolerance Squared tolerance.\n * @return {SimpleGeometry} Simplified geometry.\n * @protected\n */\n SimpleGeometry.prototype.getSimplifiedGeometryInternal = function (squaredTolerance) {\n return this;\n };\n /**\n * @return {number} Stride.\n */\n SimpleGeometry.prototype.getStride = function () {\n return this.stride;\n };\n /**\n * @param {import(\"./GeometryLayout.js\").default} layout Layout.\n * @param {Array<number>} flatCoordinates Flat coordinates.\n */\n SimpleGeometry.prototype.setFlatCoordinates = function (layout, flatCoordinates) {\n this.stride = getStrideForLayout(layout);\n this.layout = layout;\n this.flatCoordinates = flatCoordinates;\n };\n /**\n * @abstract\n * @param {!Array<*>} coordinates Coordinates.\n * @param {import(\"./GeometryLayout.js\").default} [opt_layout] Layout.\n */\n SimpleGeometry.prototype.setCoordinates = function (coordinates, opt_layout) {\n abstract();\n };\n /**\n * @param {import(\"./GeometryLayout.js\").default|undefined} layout Layout.\n * @param {Array<*>} coordinates Coordinates.\n * @param {number} nesting Nesting.\n * @protected\n */\n SimpleGeometry.prototype.setLayout = function (layout, coordinates, nesting) {\n /** @type {number} */\n var stride;\n if (layout) {\n stride = getStrideForLayout(layout);\n }\n else {\n for (var i = 0; i < nesting; ++i) {\n if (coordinates.length === 0) {\n this.layout = GeometryLayout.XY;\n this.stride = 2;\n return;\n }\n else {\n coordinates = /** @type {Array} */ (coordinates[0]);\n }\n }\n stride = coordinates.length;\n layout = getLayoutForStride(stride);\n }\n this.layout = layout;\n this.stride = stride;\n };\n /**\n * Apply a transform function to the coordinates of the geometry.\n * The geometry is modified in place.\n * If you do not want the geometry modified in place, first `clone()` it and\n * then use this function on the clone.\n * @param {import(\"../proj.js\").TransformFunction} transformFn Transform function.\n * Called with a flat array of geometry coordinates.\n * @api\n */\n SimpleGeometry.prototype.applyTransform = function (transformFn) {\n if (this.flatCoordinates) {\n transformFn(this.flatCoordinates, this.flatCoordinates, this.stride);\n this.changed();\n }\n };\n /**\n * Rotate the geometry around a given coordinate. This modifies the geometry\n * coordinates in place.\n * @param {number} angle Rotation angle in counter-clockwise radians.\n * @param {import(\"../coordinate.js\").Coordinate} anchor The rotation center.\n * @api\n */\n SimpleGeometry.prototype.rotate = function (angle, anchor) {\n var flatCoordinates = this.getFlatCoordinates();\n if (flatCoordinates) {\n var stride = this.getStride();\n rotate(flatCoordinates, 0, flatCoordinates.length, stride, angle, anchor, flatCoordinates);\n this.changed();\n }\n };\n /**\n * Scale the geometry (with an optional origin). This modifies the geometry\n * coordinates in place.\n * @param {number} sx The scaling factor in the x-direction.\n * @param {number} [opt_sy] The scaling factor in the y-direction (defaults to sx).\n * @param {import(\"../coordinate.js\").Coordinate} [opt_anchor] The scale origin (defaults to the center\n * of the geometry extent).\n * @api\n */\n SimpleGeometry.prototype.scale = function (sx, opt_sy, opt_anchor) {\n var sy = opt_sy;\n if (sy === undefined) {\n sy = sx;\n }\n var anchor = opt_anchor;\n if (!anchor) {\n anchor = getCenter(this.getExtent());\n }\n var flatCoordinates = this.getFlatCoordinates();\n if (flatCoordinates) {\n var stride = this.getStride();\n scale(flatCoordinates, 0, flatCoordinates.length, stride, sx, sy, anchor, flatCoordinates);\n this.changed();\n }\n };\n /**\n * Translate the geometry. This modifies the geometry coordinates in place. If\n * instead you want a new geometry, first `clone()` this geometry.\n * @param {number} deltaX Delta X.\n * @param {number} deltaY Delta Y.\n * @api\n */\n SimpleGeometry.prototype.translate = function (deltaX, deltaY) {\n var flatCoordinates = this.getFlatCoordinates();\n if (flatCoordinates) {\n var stride = this.getStride();\n translate(flatCoordinates, 0, flatCoordinates.length, stride, deltaX, deltaY, flatCoordinates);\n this.changed();\n }\n };\n return SimpleGeometry;\n}(Geometry));\n/**\n * @param {number} stride Stride.\n * @return {import(\"./GeometryLayout.js\").default} layout Layout.\n */\nfunction getLayoutForStride(stride) {\n var layout;\n if (stride == 2) {\n layout = GeometryLayout.XY;\n }\n else if (stride == 3) {\n layout = GeometryLayout.XYZ;\n }\n else if (stride == 4) {\n layout = GeometryLayout.XYZM;\n }\n return /** @type {import(\"./GeometryLayout.js\").default} */ (layout);\n}\n/**\n * @param {import(\"./GeometryLayout.js\").default} layout Layout.\n * @return {number} Stride.\n */\nexport function getStrideForLayout(layout) {\n var stride;\n if (layout == GeometryLayout.XY) {\n stride = 2;\n }\n else if (layout == GeometryLayout.XYZ || layout == GeometryLayout.XYM) {\n stride = 3;\n }\n else if (layout == GeometryLayout.XYZM) {\n stride = 4;\n }\n return /** @type {number} */ (stride);\n}\n/**\n * @param {SimpleGeometry} simpleGeometry Simple geometry.\n * @param {import(\"../transform.js\").Transform} transform Transform.\n * @param {Array<number>} [opt_dest] Destination.\n * @return {Array<number>} Transformed flat coordinates.\n */\nexport function transformGeom2D(simpleGeometry, transform, opt_dest) {\n var flatCoordinates = simpleGeometry.getFlatCoordinates();\n if (!flatCoordinates) {\n return null;\n }\n else {\n var stride = simpleGeometry.getStride();\n return transform2D(flatCoordinates, 0, flatCoordinates.length, stride, transform, opt_dest);\n }\n}\nexport default SimpleGeometry;\n//# sourceMappingURL=SimpleGeometry.js.map","/**\n * @module ol/geom/flat/closest\n */\nimport { lerp, squaredDistance as squaredDx } from '../../math.js';\n/**\n * Returns the point on the 2D line segment flatCoordinates[offset1] to\n * flatCoordinates[offset2] that is closest to the point (x, y). Extra\n * dimensions are linearly interpolated.\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset1 Offset 1.\n * @param {number} offset2 Offset 2.\n * @param {number} stride Stride.\n * @param {number} x X.\n * @param {number} y Y.\n * @param {Array<number>} closestPoint Closest point.\n */\nfunction assignClosest(flatCoordinates, offset1, offset2, stride, x, y, closestPoint) {\n var x1 = flatCoordinates[offset1];\n var y1 = flatCoordinates[offset1 + 1];\n var dx = flatCoordinates[offset2] - x1;\n var dy = flatCoordinates[offset2 + 1] - y1;\n var offset;\n if (dx === 0 && dy === 0) {\n offset = offset1;\n }\n else {\n var t = ((x - x1) * dx + (y - y1) * dy) / (dx * dx + dy * dy);\n if (t > 1) {\n offset = offset2;\n }\n else if (t > 0) {\n for (var i = 0; i < stride; ++i) {\n closestPoint[i] = lerp(flatCoordinates[offset1 + i], flatCoordinates[offset2 + i], t);\n }\n closestPoint.length = stride;\n return;\n }\n else {\n offset = offset1;\n }\n }\n for (var i = 0; i < stride; ++i) {\n closestPoint[i] = flatCoordinates[offset + i];\n }\n closestPoint.length = stride;\n}\n/**\n * Return the squared of the largest distance between any pair of consecutive\n * coordinates.\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {number} end End.\n * @param {number} stride Stride.\n * @param {number} max Max squared delta.\n * @return {number} Max squared delta.\n */\nexport function maxSquaredDelta(flatCoordinates, offset, end, stride, max) {\n var x1 = flatCoordinates[offset];\n var y1 = flatCoordinates[offset + 1];\n for (offset += stride; offset < end; offset += stride) {\n var x2 = flatCoordinates[offset];\n var y2 = flatCoordinates[offset + 1];\n var squaredDelta = squaredDx(x1, y1, x2, y2);\n if (squaredDelta > max) {\n max = squaredDelta;\n }\n x1 = x2;\n y1 = y2;\n }\n return max;\n}\n/**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {Array<number>} ends Ends.\n * @param {number} stride Stride.\n * @param {number} max Max squared delta.\n * @return {number} Max squared delta.\n */\nexport function arrayMaxSquaredDelta(flatCoordinates, offset, ends, stride, max) {\n for (var i = 0, ii = ends.length; i < ii; ++i) {\n var end = ends[i];\n max = maxSquaredDelta(flatCoordinates, offset, end, stride, max);\n offset = end;\n }\n return max;\n}\n/**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {Array<Array<number>>} endss Endss.\n * @param {number} stride Stride.\n * @param {number} max Max squared delta.\n * @return {number} Max squared delta.\n */\nexport function multiArrayMaxSquaredDelta(flatCoordinates, offset, endss, stride, max) {\n for (var i = 0, ii = endss.length; i < ii; ++i) {\n var ends = endss[i];\n max = arrayMaxSquaredDelta(flatCoordinates, offset, ends, stride, max);\n offset = ends[ends.length - 1];\n }\n return max;\n}\n/**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {number} end End.\n * @param {number} stride Stride.\n * @param {number} maxDelta Max delta.\n * @param {boolean} isRing Is ring.\n * @param {number} x X.\n * @param {number} y Y.\n * @param {Array<number>} closestPoint Closest point.\n * @param {number} minSquaredDistance Minimum squared distance.\n * @param {Array<number>} [opt_tmpPoint] Temporary point object.\n * @return {number} Minimum squared distance.\n */\nexport function assignClosestPoint(flatCoordinates, offset, end, stride, maxDelta, isRing, x, y, closestPoint, minSquaredDistance, opt_tmpPoint) {\n if (offset == end) {\n return minSquaredDistance;\n }\n var i, squaredDistance;\n if (maxDelta === 0) {\n // All points are identical, so just test the first point.\n squaredDistance = squaredDx(x, y, flatCoordinates[offset], flatCoordinates[offset + 1]);\n if (squaredDistance < minSquaredDistance) {\n for (i = 0; i < stride; ++i) {\n closestPoint[i] = flatCoordinates[offset + i];\n }\n closestPoint.length = stride;\n return squaredDistance;\n }\n else {\n return minSquaredDistance;\n }\n }\n var tmpPoint = opt_tmpPoint ? opt_tmpPoint : [NaN, NaN];\n var index = offset + stride;\n while (index < end) {\n assignClosest(flatCoordinates, index - stride, index, stride, x, y, tmpPoint);\n squaredDistance = squaredDx(x, y, tmpPoint[0], tmpPoint[1]);\n if (squaredDistance < minSquaredDistance) {\n minSquaredDistance = squaredDistance;\n for (i = 0; i < stride; ++i) {\n closestPoint[i] = tmpPoint[i];\n }\n closestPoint.length = stride;\n index += stride;\n }\n else {\n // Skip ahead multiple points, because we know that all the skipped\n // points cannot be any closer than the closest point we have found so\n // far. We know this because we know how close the current point is, how\n // close the closest point we have found so far is, and the maximum\n // distance between consecutive points. For example, if we're currently\n // at distance 10, the best we've found so far is 3, and that the maximum\n // distance between consecutive points is 2, then we'll need to skip at\n // least (10 - 3) / 2 == 3 (rounded down) points to have any chance of\n // finding a closer point. We use Math.max(..., 1) to ensure that we\n // always advance at least one point, to avoid an infinite loop.\n index +=\n stride *\n Math.max(((Math.sqrt(squaredDistance) - Math.sqrt(minSquaredDistance)) /\n maxDelta) |\n 0, 1);\n }\n }\n if (isRing) {\n // Check the closing segment.\n assignClosest(flatCoordinates, end - stride, offset, stride, x, y, tmpPoint);\n squaredDistance = squaredDx(x, y, tmpPoint[0], tmpPoint[1]);\n if (squaredDistance < minSquaredDistance) {\n minSquaredDistance = squaredDistance;\n for (i = 0; i < stride; ++i) {\n closestPoint[i] = tmpPoint[i];\n }\n closestPoint.length = stride;\n }\n }\n return minSquaredDistance;\n}\n/**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {Array<number>} ends Ends.\n * @param {number} stride Stride.\n * @param {number} maxDelta Max delta.\n * @param {boolean} isRing Is ring.\n * @param {number} x X.\n * @param {number} y Y.\n * @param {Array<number>} closestPoint Closest point.\n * @param {number} minSquaredDistance Minimum squared distance.\n * @param {Array<number>} [opt_tmpPoint] Temporary point object.\n * @return {number} Minimum squared distance.\n */\nexport function assignClosestArrayPoint(flatCoordinates, offset, ends, stride, maxDelta, isRing, x, y, closestPoint, minSquaredDistance, opt_tmpPoint) {\n var tmpPoint = opt_tmpPoint ? opt_tmpPoint : [NaN, NaN];\n for (var i = 0, ii = ends.length; i < ii; ++i) {\n var end = ends[i];\n minSquaredDistance = assignClosestPoint(flatCoordinates, offset, end, stride, maxDelta, isRing, x, y, closestPoint, minSquaredDistance, tmpPoint);\n offset = end;\n }\n return minSquaredDistance;\n}\n/**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {Array<Array<number>>} endss Endss.\n * @param {number} stride Stride.\n * @param {number} maxDelta Max delta.\n * @param {boolean} isRing Is ring.\n * @param {number} x X.\n * @param {number} y Y.\n * @param {Array<number>} closestPoint Closest point.\n * @param {number} minSquaredDistance Minimum squared distance.\n * @param {Array<number>} [opt_tmpPoint] Temporary point object.\n * @return {number} Minimum squared distance.\n */\nexport function assignClosestMultiArrayPoint(flatCoordinates, offset, endss, stride, maxDelta, isRing, x, y, closestPoint, minSquaredDistance, opt_tmpPoint) {\n var tmpPoint = opt_tmpPoint ? opt_tmpPoint : [NaN, NaN];\n for (var i = 0, ii = endss.length; i < ii; ++i) {\n var ends = endss[i];\n minSquaredDistance = assignClosestArrayPoint(flatCoordinates, offset, ends, stride, maxDelta, isRing, x, y, closestPoint, minSquaredDistance, tmpPoint);\n offset = ends[ends.length - 1];\n }\n return minSquaredDistance;\n}\n//# sourceMappingURL=closest.js.map","/**\n * @module ol/geom/flat/deflate\n */\n/**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {import(\"../../coordinate.js\").Coordinate} coordinate Coordinate.\n * @param {number} stride Stride.\n * @return {number} offset Offset.\n */\nexport function deflateCoordinate(flatCoordinates, offset, coordinate, stride) {\n for (var i = 0, ii = coordinate.length; i < ii; ++i) {\n flatCoordinates[offset++] = coordinate[i];\n }\n return offset;\n}\n/**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {Array<import(\"../../coordinate.js\").Coordinate>} coordinates Coordinates.\n * @param {number} stride Stride.\n * @return {number} offset Offset.\n */\nexport function deflateCoordinates(flatCoordinates, offset, coordinates, stride) {\n for (var i = 0, ii = coordinates.length; i < ii; ++i) {\n var coordinate = coordinates[i];\n for (var j = 0; j < stride; ++j) {\n flatCoordinates[offset++] = coordinate[j];\n }\n }\n return offset;\n}\n/**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {Array<Array<import(\"../../coordinate.js\").Coordinate>>} coordinatess Coordinatess.\n * @param {number} stride Stride.\n * @param {Array<number>} [opt_ends] Ends.\n * @return {Array<number>} Ends.\n */\nexport function deflateCoordinatesArray(flatCoordinates, offset, coordinatess, stride, opt_ends) {\n var ends = opt_ends ? opt_ends : [];\n var i = 0;\n for (var j = 0, jj = coordinatess.length; j < jj; ++j) {\n var end = deflateCoordinates(flatCoordinates, offset, coordinatess[j], stride);\n ends[i++] = end;\n offset = end;\n }\n ends.length = i;\n return ends;\n}\n/**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {Array<Array<Array<import(\"../../coordinate.js\").Coordinate>>>} coordinatesss Coordinatesss.\n * @param {number} stride Stride.\n * @param {Array<Array<number>>} [opt_endss] Endss.\n * @return {Array<Array<number>>} Endss.\n */\nexport function deflateMultiCoordinatesArray(flatCoordinates, offset, coordinatesss, stride, opt_endss) {\n var endss = opt_endss ? opt_endss : [];\n var i = 0;\n for (var j = 0, jj = coordinatesss.length; j < jj; ++j) {\n var ends = deflateCoordinatesArray(flatCoordinates, offset, coordinatesss[j], stride, endss[i]);\n endss[i++] = ends;\n offset = ends[ends.length - 1];\n }\n endss.length = i;\n return endss;\n}\n//# sourceMappingURL=deflate.js.map","/**\n * @module ol/geom/flat/simplify\n */\n// Based on simplify-js https://github.com/mourner/simplify-js\n// Copyright (c) 2012, Vladimir Agafonkin\n// All rights reserved.\n//\n// Redistribution and use in source and binary forms, with or without\n// modification, are permitted provided that the following conditions are met:\n//\n// 1. Redistributions of source code must retain the above copyright notice,\n// this list of conditions and the following disclaimer.\n//\n// 2. Redistributions in binary form must reproduce the above copyright\n// notice, this list of conditions and the following disclaimer in the\n// documentation and/or other materials provided with the distribution.\n//\n// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE\n// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n// POSSIBILITY OF SUCH DAMAGE.\nimport { squaredDistance, squaredSegmentDistance } from '../../math.js';\n/**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {number} end End.\n * @param {number} stride Stride.\n * @param {number} squaredTolerance Squared tolerance.\n * @param {boolean} highQuality Highest quality.\n * @param {Array<number>} [opt_simplifiedFlatCoordinates] Simplified flat\n * coordinates.\n * @return {Array<number>} Simplified line string.\n */\nexport function simplifyLineString(flatCoordinates, offset, end, stride, squaredTolerance, highQuality, opt_simplifiedFlatCoordinates) {\n var simplifiedFlatCoordinates = opt_simplifiedFlatCoordinates !== undefined\n ? opt_simplifiedFlatCoordinates\n : [];\n if (!highQuality) {\n end = radialDistance(flatCoordinates, offset, end, stride, squaredTolerance, simplifiedFlatCoordinates, 0);\n flatCoordinates = simplifiedFlatCoordinates;\n offset = 0;\n stride = 2;\n }\n simplifiedFlatCoordinates.length = douglasPeucker(flatCoordinates, offset, end, stride, squaredTolerance, simplifiedFlatCoordinates, 0);\n return simplifiedFlatCoordinates;\n}\n/**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {number} end End.\n * @param {number} stride Stride.\n * @param {number} squaredTolerance Squared tolerance.\n * @param {Array<number>} simplifiedFlatCoordinates Simplified flat\n * coordinates.\n * @param {number} simplifiedOffset Simplified offset.\n * @return {number} Simplified offset.\n */\nexport function douglasPeucker(flatCoordinates, offset, end, stride, squaredTolerance, simplifiedFlatCoordinates, simplifiedOffset) {\n var n = (end - offset) / stride;\n if (n < 3) {\n for (; offset < end; offset += stride) {\n simplifiedFlatCoordinates[simplifiedOffset++] = flatCoordinates[offset];\n simplifiedFlatCoordinates[simplifiedOffset++] =\n flatCoordinates[offset + 1];\n }\n return simplifiedOffset;\n }\n /** @type {Array<number>} */\n var markers = new Array(n);\n markers[0] = 1;\n markers[n - 1] = 1;\n /** @type {Array<number>} */\n var stack = [offset, end - stride];\n var index = 0;\n while (stack.length > 0) {\n var last = stack.pop();\n var first = stack.pop();\n var maxSquaredDistance = 0;\n var x1 = flatCoordinates[first];\n var y1 = flatCoordinates[first + 1];\n var x2 = flatCoordinates[last];\n var y2 = flatCoordinates[last + 1];\n for (var i = first + stride; i < last; i += stride) {\n var x = flatCoordinates[i];\n var y = flatCoordinates[i + 1];\n var squaredDistance_1 = squaredSegmentDistance(x, y, x1, y1, x2, y2);\n if (squaredDistance_1 > maxSquaredDistance) {\n index = i;\n maxSquaredDistance = squaredDistance_1;\n }\n }\n if (maxSquaredDistance > squaredTolerance) {\n markers[(index - offset) / stride] = 1;\n if (first + stride < index) {\n stack.push(first, index);\n }\n if (index + stride < last) {\n stack.push(index, last);\n }\n }\n }\n for (var i = 0; i < n; ++i) {\n if (markers[i]) {\n simplifiedFlatCoordinates[simplifiedOffset++] =\n flatCoordinates[offset + i * stride];\n simplifiedFlatCoordinates[simplifiedOffset++] =\n flatCoordinates[offset + i * stride + 1];\n }\n }\n return simplifiedOffset;\n}\n/**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {Array<number>} ends Ends.\n * @param {number} stride Stride.\n * @param {number} squaredTolerance Squared tolerance.\n * @param {Array<number>} simplifiedFlatCoordinates Simplified flat\n * coordinates.\n * @param {number} simplifiedOffset Simplified offset.\n * @param {Array<number>} simplifiedEnds Simplified ends.\n * @return {number} Simplified offset.\n */\nexport function douglasPeuckerArray(flatCoordinates, offset, ends, stride, squaredTolerance, simplifiedFlatCoordinates, simplifiedOffset, simplifiedEnds) {\n for (var i = 0, ii = ends.length; i < ii; ++i) {\n var end = ends[i];\n simplifiedOffset = douglasPeucker(flatCoordinates, offset, end, stride, squaredTolerance, simplifiedFlatCoordinates, simplifiedOffset);\n simplifiedEnds.push(simplifiedOffset);\n offset = end;\n }\n return simplifiedOffset;\n}\n/**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {Array<Array<number>>} endss Endss.\n * @param {number} stride Stride.\n * @param {number} squaredTolerance Squared tolerance.\n * @param {Array<number>} simplifiedFlatCoordinates Simplified flat\n * coordinates.\n * @param {number} simplifiedOffset Simplified offset.\n * @param {Array<Array<number>>} simplifiedEndss Simplified endss.\n * @return {number} Simplified offset.\n */\nexport function douglasPeuckerMultiArray(flatCoordinates, offset, endss, stride, squaredTolerance, simplifiedFlatCoordinates, simplifiedOffset, simplifiedEndss) {\n for (var i = 0, ii = endss.length; i < ii; ++i) {\n var ends = endss[i];\n var simplifiedEnds = [];\n simplifiedOffset = douglasPeuckerArray(flatCoordinates, offset, ends, stride, squaredTolerance, simplifiedFlatCoordinates, simplifiedOffset, simplifiedEnds);\n simplifiedEndss.push(simplifiedEnds);\n offset = ends[ends.length - 1];\n }\n return simplifiedOffset;\n}\n/**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {number} end End.\n * @param {number} stride Stride.\n * @param {number} squaredTolerance Squared tolerance.\n * @param {Array<number>} simplifiedFlatCoordinates Simplified flat\n * coordinates.\n * @param {number} simplifiedOffset Simplified offset.\n * @return {number} Simplified offset.\n */\nexport function radialDistance(flatCoordinates, offset, end, stride, squaredTolerance, simplifiedFlatCoordinates, simplifiedOffset) {\n if (end <= offset + stride) {\n // zero or one point, no simplification possible, so copy and return\n for (; offset < end; offset += stride) {\n simplifiedFlatCoordinates[simplifiedOffset++] = flatCoordinates[offset];\n simplifiedFlatCoordinates[simplifiedOffset++] =\n flatCoordinates[offset + 1];\n }\n return simplifiedOffset;\n }\n var x1 = flatCoordinates[offset];\n var y1 = flatCoordinates[offset + 1];\n // copy first point\n simplifiedFlatCoordinates[simplifiedOffset++] = x1;\n simplifiedFlatCoordinates[simplifiedOffset++] = y1;\n var x2 = x1;\n var y2 = y1;\n for (offset += stride; offset < end; offset += stride) {\n x2 = flatCoordinates[offset];\n y2 = flatCoordinates[offset + 1];\n if (squaredDistance(x1, y1, x2, y2) > squaredTolerance) {\n // copy point at offset\n simplifiedFlatCoordinates[simplifiedOffset++] = x2;\n simplifiedFlatCoordinates[simplifiedOffset++] = y2;\n x1 = x2;\n y1 = y2;\n }\n }\n if (x2 != x1 || y2 != y1) {\n // copy last point\n simplifiedFlatCoordinates[simplifiedOffset++] = x2;\n simplifiedFlatCoordinates[simplifiedOffset++] = y2;\n }\n return simplifiedOffset;\n}\n/**\n * @param {number} value Value.\n * @param {number} tolerance Tolerance.\n * @return {number} Rounded value.\n */\nexport function snap(value, tolerance) {\n return tolerance * Math.round(value / tolerance);\n}\n/**\n * Simplifies a line string using an algorithm designed by Tim Schaub.\n * Coordinates are snapped to the nearest value in a virtual grid and\n * consecutive duplicate coordinates are discarded. This effectively preserves\n * topology as the simplification of any subsection of a line string is\n * independent of the rest of the line string. This means that, for examples,\n * the common edge between two polygons will be simplified to the same line\n * string independently in both polygons. This implementation uses a single\n * pass over the coordinates and eliminates intermediate collinear points.\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {number} end End.\n * @param {number} stride Stride.\n * @param {number} tolerance Tolerance.\n * @param {Array<number>} simplifiedFlatCoordinates Simplified flat\n * coordinates.\n * @param {number} simplifiedOffset Simplified offset.\n * @return {number} Simplified offset.\n */\nexport function quantize(flatCoordinates, offset, end, stride, tolerance, simplifiedFlatCoordinates, simplifiedOffset) {\n // do nothing if the line is empty\n if (offset == end) {\n return simplifiedOffset;\n }\n // snap the first coordinate (P1)\n var x1 = snap(flatCoordinates[offset], tolerance);\n var y1 = snap(flatCoordinates[offset + 1], tolerance);\n offset += stride;\n // add the first coordinate to the output\n simplifiedFlatCoordinates[simplifiedOffset++] = x1;\n simplifiedFlatCoordinates[simplifiedOffset++] = y1;\n // find the next coordinate that does not snap to the same value as the first\n // coordinate (P2)\n var x2, y2;\n do {\n x2 = snap(flatCoordinates[offset], tolerance);\n y2 = snap(flatCoordinates[offset + 1], tolerance);\n offset += stride;\n if (offset == end) {\n // all coordinates snap to the same value, the line collapses to a point\n // push the last snapped value anyway to ensure that the output contains\n // at least two points\n // FIXME should we really return at least two points anyway?\n simplifiedFlatCoordinates[simplifiedOffset++] = x2;\n simplifiedFlatCoordinates[simplifiedOffset++] = y2;\n return simplifiedOffset;\n }\n } while (x2 == x1 && y2 == y1);\n while (offset < end) {\n // snap the next coordinate (P3)\n var x3 = snap(flatCoordinates[offset], tolerance);\n var y3 = snap(flatCoordinates[offset + 1], tolerance);\n offset += stride;\n // skip P3 if it is equal to P2\n if (x3 == x2 && y3 == y2) {\n continue;\n }\n // calculate the delta between P1 and P2\n var dx1 = x2 - x1;\n var dy1 = y2 - y1;\n // calculate the delta between P3 and P1\n var dx2 = x3 - x1;\n var dy2 = y3 - y1;\n // if P1, P2, and P3 are colinear and P3 is further from P1 than P2 is from\n // P1 in the same direction then P2 is on the straight line between P1 and\n // P3\n if (dx1 * dy2 == dy1 * dx2 &&\n ((dx1 < 0 && dx2 < dx1) || dx1 == dx2 || (dx1 > 0 && dx2 > dx1)) &&\n ((dy1 < 0 && dy2 < dy1) || dy1 == dy2 || (dy1 > 0 && dy2 > dy1))) {\n // discard P2 and set P2 = P3\n x2 = x3;\n y2 = y3;\n continue;\n }\n // either P1, P2, and P3 are not colinear, or they are colinear but P3 is\n // between P3 and P1 or on the opposite half of the line to P2. add P2,\n // and continue with P1 = P2 and P2 = P3\n simplifiedFlatCoordinates[simplifiedOffset++] = x2;\n simplifiedFlatCoordinates[simplifiedOffset++] = y2;\n x1 = x2;\n y1 = y2;\n x2 = x3;\n y2 = y3;\n }\n // add the last point (P2)\n simplifiedFlatCoordinates[simplifiedOffset++] = x2;\n simplifiedFlatCoordinates[simplifiedOffset++] = y2;\n return simplifiedOffset;\n}\n/**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {Array<number>} ends Ends.\n * @param {number} stride Stride.\n * @param {number} tolerance Tolerance.\n * @param {Array<number>} simplifiedFlatCoordinates Simplified flat\n * coordinates.\n * @param {number} simplifiedOffset Simplified offset.\n * @param {Array<number>} simplifiedEnds Simplified ends.\n * @return {number} Simplified offset.\n */\nexport function quantizeArray(flatCoordinates, offset, ends, stride, tolerance, simplifiedFlatCoordinates, simplifiedOffset, simplifiedEnds) {\n for (var i = 0, ii = ends.length; i < ii; ++i) {\n var end = ends[i];\n simplifiedOffset = quantize(flatCoordinates, offset, end, stride, tolerance, simplifiedFlatCoordinates, simplifiedOffset);\n simplifiedEnds.push(simplifiedOffset);\n offset = end;\n }\n return simplifiedOffset;\n}\n/**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {Array<Array<number>>} endss Endss.\n * @param {number} stride Stride.\n * @param {number} tolerance Tolerance.\n * @param {Array<number>} simplifiedFlatCoordinates Simplified flat\n * coordinates.\n * @param {number} simplifiedOffset Simplified offset.\n * @param {Array<Array<number>>} simplifiedEndss Simplified endss.\n * @return {number} Simplified offset.\n */\nexport function quantizeMultiArray(flatCoordinates, offset, endss, stride, tolerance, simplifiedFlatCoordinates, simplifiedOffset, simplifiedEndss) {\n for (var i = 0, ii = endss.length; i < ii; ++i) {\n var ends = endss[i];\n var simplifiedEnds = [];\n simplifiedOffset = quantizeArray(flatCoordinates, offset, ends, stride, tolerance, simplifiedFlatCoordinates, simplifiedOffset, simplifiedEnds);\n simplifiedEndss.push(simplifiedEnds);\n offset = ends[ends.length - 1];\n }\n return simplifiedOffset;\n}\n//# sourceMappingURL=simplify.js.map","/**\n * @module ol/geom/flat/segments\n */\n/**\n * This function calls `callback` for each segment of the flat coordinates\n * array. If the callback returns a truthy value the function returns that\n * value immediately. Otherwise the function returns `false`.\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {number} end End.\n * @param {number} stride Stride.\n * @param {function(import(\"../../coordinate.js\").Coordinate, import(\"../../coordinate.js\").Coordinate): T} callback Function\n * called for each segment.\n * @return {T|boolean} Value.\n * @template T\n */\nexport function forEach(flatCoordinates, offset, end, stride, callback) {\n var ret;\n offset += stride;\n for (; offset < end; offset += stride) {\n ret = callback(flatCoordinates.slice(offset - stride, offset), flatCoordinates.slice(offset, offset + stride));\n if (ret) {\n return ret;\n }\n }\n return false;\n}\n//# sourceMappingURL=segments.js.map","/**\n * @module ol/geom/flat/inflate\n */\n/**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {number} end End.\n * @param {number} stride Stride.\n * @param {Array<import(\"../../coordinate.js\").Coordinate>} [opt_coordinates] Coordinates.\n * @return {Array<import(\"../../coordinate.js\").Coordinate>} Coordinates.\n */\nexport function inflateCoordinates(flatCoordinates, offset, end, stride, opt_coordinates) {\n var coordinates = opt_coordinates !== undefined ? opt_coordinates : [];\n var i = 0;\n for (var j = offset; j < end; j += stride) {\n coordinates[i++] = flatCoordinates.slice(j, j + stride);\n }\n coordinates.length = i;\n return coordinates;\n}\n/**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {Array<number>} ends Ends.\n * @param {number} stride Stride.\n * @param {Array<Array<import(\"../../coordinate.js\").Coordinate>>} [opt_coordinatess] Coordinatess.\n * @return {Array<Array<import(\"../../coordinate.js\").Coordinate>>} Coordinatess.\n */\nexport function inflateCoordinatesArray(flatCoordinates, offset, ends, stride, opt_coordinatess) {\n var coordinatess = opt_coordinatess !== undefined ? opt_coordinatess : [];\n var i = 0;\n for (var j = 0, jj = ends.length; j < jj; ++j) {\n var end = ends[j];\n coordinatess[i++] = inflateCoordinates(flatCoordinates, offset, end, stride, coordinatess[i]);\n offset = end;\n }\n coordinatess.length = i;\n return coordinatess;\n}\n/**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {Array<Array<number>>} endss Endss.\n * @param {number} stride Stride.\n * @param {Array<Array<Array<import(\"../../coordinate.js\").Coordinate>>>} [opt_coordinatesss]\n * Coordinatesss.\n * @return {Array<Array<Array<import(\"../../coordinate.js\").Coordinate>>>} Coordinatesss.\n */\nexport function inflateMultiCoordinatesArray(flatCoordinates, offset, endss, stride, opt_coordinatesss) {\n var coordinatesss = opt_coordinatesss !== undefined ? opt_coordinatesss : [];\n var i = 0;\n for (var j = 0, jj = endss.length; j < jj; ++j) {\n var ends = endss[j];\n coordinatesss[i++] = inflateCoordinatesArray(flatCoordinates, offset, ends, stride, coordinatesss[i]);\n offset = ends[ends.length - 1];\n }\n coordinatesss.length = i;\n return coordinatesss;\n}\n//# sourceMappingURL=inflate.js.map","/**\n * @module ol/geom/flat/interpolate\n */\nimport { binarySearch } from '../../array.js';\nimport { lerp } from '../../math.js';\n/**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {number} end End.\n * @param {number} stride Stride.\n * @param {number} fraction Fraction.\n * @param {Array<number>} [opt_dest] Destination.\n * @param {number} [opt_dimension] Destination dimension (default is `2`)\n * @return {Array<number>} Destination.\n */\nexport function interpolatePoint(flatCoordinates, offset, end, stride, fraction, opt_dest, opt_dimension) {\n var o, t;\n var n = (end - offset) / stride;\n if (n === 1) {\n o = offset;\n }\n else if (n === 2) {\n o = offset;\n t = fraction;\n }\n else if (n !== 0) {\n var x1 = flatCoordinates[offset];\n var y1 = flatCoordinates[offset + 1];\n var length_1 = 0;\n var cumulativeLengths = [0];\n for (var i = offset + stride; i < end; i += stride) {\n var x2 = flatCoordinates[i];\n var y2 = flatCoordinates[i + 1];\n length_1 += Math.sqrt((x2 - x1) * (x2 - x1) + (y2 - y1) * (y2 - y1));\n cumulativeLengths.push(length_1);\n x1 = x2;\n y1 = y2;\n }\n var target = fraction * length_1;\n var index = binarySearch(cumulativeLengths, target);\n if (index < 0) {\n t =\n (target - cumulativeLengths[-index - 2]) /\n (cumulativeLengths[-index - 1] - cumulativeLengths[-index - 2]);\n o = offset + (-index - 2) * stride;\n }\n else {\n o = offset + index * stride;\n }\n }\n var dimension = opt_dimension > 1 ? opt_dimension : 2;\n var dest = opt_dest ? opt_dest : new Array(dimension);\n for (var i = 0; i < dimension; ++i) {\n dest[i] =\n o === undefined\n ? NaN\n : t === undefined\n ? flatCoordinates[o + i]\n : lerp(flatCoordinates[o + i], flatCoordinates[o + stride + i], t);\n }\n return dest;\n}\n/**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {number} end End.\n * @param {number} stride Stride.\n * @param {number} m M.\n * @param {boolean} extrapolate Extrapolate.\n * @return {import(\"../../coordinate.js\").Coordinate|null} Coordinate.\n */\nexport function lineStringCoordinateAtM(flatCoordinates, offset, end, stride, m, extrapolate) {\n if (end == offset) {\n return null;\n }\n var coordinate;\n if (m < flatCoordinates[offset + stride - 1]) {\n if (extrapolate) {\n coordinate = flatCoordinates.slice(offset, offset + stride);\n coordinate[stride - 1] = m;\n return coordinate;\n }\n else {\n return null;\n }\n }\n else if (flatCoordinates[end - 1] < m) {\n if (extrapolate) {\n coordinate = flatCoordinates.slice(end - stride, end);\n coordinate[stride - 1] = m;\n return coordinate;\n }\n else {\n return null;\n }\n }\n // FIXME use O(1) search\n if (m == flatCoordinates[offset + stride - 1]) {\n return flatCoordinates.slice(offset, offset + stride);\n }\n var lo = offset / stride;\n var hi = end / stride;\n while (lo < hi) {\n var mid = (lo + hi) >> 1;\n if (m < flatCoordinates[(mid + 1) * stride - 1]) {\n hi = mid;\n }\n else {\n lo = mid + 1;\n }\n }\n var m0 = flatCoordinates[lo * stride - 1];\n if (m == m0) {\n return flatCoordinates.slice((lo - 1) * stride, (lo - 1) * stride + stride);\n }\n var m1 = flatCoordinates[(lo + 1) * stride - 1];\n var t = (m - m0) / (m1 - m0);\n coordinate = [];\n for (var i = 0; i < stride - 1; ++i) {\n coordinate.push(lerp(flatCoordinates[(lo - 1) * stride + i], flatCoordinates[lo * stride + i], t));\n }\n coordinate.push(m);\n return coordinate;\n}\n/**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {Array<number>} ends Ends.\n * @param {number} stride Stride.\n * @param {number} m M.\n * @param {boolean} extrapolate Extrapolate.\n * @param {boolean} interpolate Interpolate.\n * @return {import(\"../../coordinate.js\").Coordinate|null} Coordinate.\n */\nexport function lineStringsCoordinateAtM(flatCoordinates, offset, ends, stride, m, extrapolate, interpolate) {\n if (interpolate) {\n return lineStringCoordinateAtM(flatCoordinates, offset, ends[ends.length - 1], stride, m, extrapolate);\n }\n var coordinate;\n if (m < flatCoordinates[stride - 1]) {\n if (extrapolate) {\n coordinate = flatCoordinates.slice(0, stride);\n coordinate[stride - 1] = m;\n return coordinate;\n }\n else {\n return null;\n }\n }\n if (flatCoordinates[flatCoordinates.length - 1] < m) {\n if (extrapolate) {\n coordinate = flatCoordinates.slice(flatCoordinates.length - stride);\n coordinate[stride - 1] = m;\n return coordinate;\n }\n else {\n return null;\n }\n }\n for (var i = 0, ii = ends.length; i < ii; ++i) {\n var end = ends[i];\n if (offset == end) {\n continue;\n }\n if (m < flatCoordinates[offset + stride - 1]) {\n return null;\n }\n else if (m <= flatCoordinates[end - 1]) {\n return lineStringCoordinateAtM(flatCoordinates, offset, end, stride, m, false);\n }\n offset = end;\n }\n return null;\n}\n//# sourceMappingURL=interpolate.js.map","/**\n * @module ol/geom/flat/contains\n */\nimport { forEachCorner } from '../../extent.js';\n/**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {number} end End.\n * @param {number} stride Stride.\n * @param {import(\"../../extent.js\").Extent} extent Extent.\n * @return {boolean} Contains extent.\n */\nexport function linearRingContainsExtent(flatCoordinates, offset, end, stride, extent) {\n var outside = forEachCorner(extent, \n /**\n * @param {import(\"../../coordinate.js\").Coordinate} coordinate Coordinate.\n * @return {boolean} Contains (x, y).\n */\n function (coordinate) {\n return !linearRingContainsXY(flatCoordinates, offset, end, stride, coordinate[0], coordinate[1]);\n });\n return !outside;\n}\n/**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {number} end End.\n * @param {number} stride Stride.\n * @param {number} x X.\n * @param {number} y Y.\n * @return {boolean} Contains (x, y).\n */\nexport function linearRingContainsXY(flatCoordinates, offset, end, stride, x, y) {\n // https://geomalgorithms.com/a03-_inclusion.html\n // Copyright 2000 softSurfer, 2012 Dan Sunday\n // This code may be freely used and modified for any purpose\n // providing that this copyright notice is included with it.\n // SoftSurfer makes no warranty for this code, and cannot be held\n // liable for any real or imagined damage resulting from its use.\n // Users of this code must verify correctness for their application.\n var wn = 0;\n var x1 = flatCoordinates[end - stride];\n var y1 = flatCoordinates[end - stride + 1];\n for (; offset < end; offset += stride) {\n var x2 = flatCoordinates[offset];\n var y2 = flatCoordinates[offset + 1];\n if (y1 <= y) {\n if (y2 > y && (x2 - x1) * (y - y1) - (x - x1) * (y2 - y1) > 0) {\n wn++;\n }\n }\n else if (y2 <= y && (x2 - x1) * (y - y1) - (x - x1) * (y2 - y1) < 0) {\n wn--;\n }\n x1 = x2;\n y1 = y2;\n }\n return wn !== 0;\n}\n/**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {Array<number>} ends Ends.\n * @param {number} stride Stride.\n * @param {number} x X.\n * @param {number} y Y.\n * @return {boolean} Contains (x, y).\n */\nexport function linearRingsContainsXY(flatCoordinates, offset, ends, stride, x, y) {\n if (ends.length === 0) {\n return false;\n }\n if (!linearRingContainsXY(flatCoordinates, offset, ends[0], stride, x, y)) {\n return false;\n }\n for (var i = 1, ii = ends.length; i < ii; ++i) {\n if (linearRingContainsXY(flatCoordinates, ends[i - 1], ends[i], stride, x, y)) {\n return false;\n }\n }\n return true;\n}\n/**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {Array<Array<number>>} endss Endss.\n * @param {number} stride Stride.\n * @param {number} x X.\n * @param {number} y Y.\n * @return {boolean} Contains (x, y).\n */\nexport function linearRingssContainsXY(flatCoordinates, offset, endss, stride, x, y) {\n if (endss.length === 0) {\n return false;\n }\n for (var i = 0, ii = endss.length; i < ii; ++i) {\n var ends = endss[i];\n if (linearRingsContainsXY(flatCoordinates, offset, ends, stride, x, y)) {\n return true;\n }\n offset = ends[ends.length - 1];\n }\n return false;\n}\n//# sourceMappingURL=contains.js.map","/**\n * @module ol/geom/flat/intersectsextent\n */\nimport { containsExtent, createEmpty, extendFlatCoordinates, intersects, intersectsSegment, } from '../../extent.js';\nimport { forEach as forEachSegment } from './segments.js';\nimport { linearRingContainsExtent, linearRingContainsXY } from './contains.js';\n/**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {number} end End.\n * @param {number} stride Stride.\n * @param {import(\"../../extent.js\").Extent} extent Extent.\n * @return {boolean} True if the geometry and the extent intersect.\n */\nexport function intersectsLineString(flatCoordinates, offset, end, stride, extent) {\n var coordinatesExtent = extendFlatCoordinates(createEmpty(), flatCoordinates, offset, end, stride);\n if (!intersects(extent, coordinatesExtent)) {\n return false;\n }\n if (containsExtent(extent, coordinatesExtent)) {\n return true;\n }\n if (coordinatesExtent[0] >= extent[0] && coordinatesExtent[2] <= extent[2]) {\n return true;\n }\n if (coordinatesExtent[1] >= extent[1] && coordinatesExtent[3] <= extent[3]) {\n return true;\n }\n return forEachSegment(flatCoordinates, offset, end, stride, \n /**\n * @param {import(\"../../coordinate.js\").Coordinate} point1 Start point.\n * @param {import(\"../../coordinate.js\").Coordinate} point2 End point.\n * @return {boolean} `true` if the segment and the extent intersect,\n * `false` otherwise.\n */\n function (point1, point2) {\n return intersectsSegment(extent, point1, point2);\n });\n}\n/**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {Array<number>} ends Ends.\n * @param {number} stride Stride.\n * @param {import(\"../../extent.js\").Extent} extent Extent.\n * @return {boolean} True if the geometry and the extent intersect.\n */\nexport function intersectsLineStringArray(flatCoordinates, offset, ends, stride, extent) {\n for (var i = 0, ii = ends.length; i < ii; ++i) {\n if (intersectsLineString(flatCoordinates, offset, ends[i], stride, extent)) {\n return true;\n }\n offset = ends[i];\n }\n return false;\n}\n/**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {number} end End.\n * @param {number} stride Stride.\n * @param {import(\"../../extent.js\").Extent} extent Extent.\n * @return {boolean} True if the geometry and the extent intersect.\n */\nexport function intersectsLinearRing(flatCoordinates, offset, end, stride, extent) {\n if (intersectsLineString(flatCoordinates, offset, end, stride, extent)) {\n return true;\n }\n if (linearRingContainsXY(flatCoordinates, offset, end, stride, extent[0], extent[1])) {\n return true;\n }\n if (linearRingContainsXY(flatCoordinates, offset, end, stride, extent[0], extent[3])) {\n return true;\n }\n if (linearRingContainsXY(flatCoordinates, offset, end, stride, extent[2], extent[1])) {\n return true;\n }\n if (linearRingContainsXY(flatCoordinates, offset, end, stride, extent[2], extent[3])) {\n return true;\n }\n return false;\n}\n/**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {Array<number>} ends Ends.\n * @param {number} stride Stride.\n * @param {import(\"../../extent.js\").Extent} extent Extent.\n * @return {boolean} True if the geometry and the extent intersect.\n */\nexport function intersectsLinearRingArray(flatCoordinates, offset, ends, stride, extent) {\n if (!intersectsLinearRing(flatCoordinates, offset, ends[0], stride, extent)) {\n return false;\n }\n if (ends.length === 1) {\n return true;\n }\n for (var i = 1, ii = ends.length; i < ii; ++i) {\n if (linearRingContainsExtent(flatCoordinates, ends[i - 1], ends[i], stride, extent)) {\n if (!intersectsLineString(flatCoordinates, ends[i - 1], ends[i], stride, extent)) {\n return false;\n }\n }\n }\n return true;\n}\n/**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {Array<Array<number>>} endss Endss.\n * @param {number} stride Stride.\n * @param {import(\"../../extent.js\").Extent} extent Extent.\n * @return {boolean} True if the geometry and the extent intersect.\n */\nexport function intersectsLinearRingMultiArray(flatCoordinates, offset, endss, stride, extent) {\n for (var i = 0, ii = endss.length; i < ii; ++i) {\n var ends = endss[i];\n if (intersectsLinearRingArray(flatCoordinates, offset, ends, stride, extent)) {\n return true;\n }\n offset = ends[ends.length - 1];\n }\n return false;\n}\n//# sourceMappingURL=intersectsextent.js.map","/**\n * @module ol/geom/flat/length\n */\n/**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {number} end End.\n * @param {number} stride Stride.\n * @return {number} Length.\n */\nexport function lineStringLength(flatCoordinates, offset, end, stride) {\n var x1 = flatCoordinates[offset];\n var y1 = flatCoordinates[offset + 1];\n var length = 0;\n for (var i = offset + stride; i < end; i += stride) {\n var x2 = flatCoordinates[i];\n var y2 = flatCoordinates[i + 1];\n length += Math.sqrt((x2 - x1) * (x2 - x1) + (y2 - y1) * (y2 - y1));\n x1 = x2;\n y1 = y2;\n }\n return length;\n}\n/**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {number} end End.\n * @param {number} stride Stride.\n * @return {number} Perimeter.\n */\nexport function linearRingLength(flatCoordinates, offset, end, stride) {\n var perimeter = lineStringLength(flatCoordinates, offset, end, stride);\n var dx = flatCoordinates[end - stride] - flatCoordinates[offset];\n var dy = flatCoordinates[end - stride + 1] - flatCoordinates[offset + 1];\n perimeter += Math.sqrt(dx * dx + dy * dy);\n return perimeter;\n}\n//# sourceMappingURL=length.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/geom/LineString\n */\nimport GeometryLayout from './GeometryLayout.js';\nimport GeometryType from './GeometryType.js';\nimport SimpleGeometry from './SimpleGeometry.js';\nimport { assignClosestPoint, maxSquaredDelta } from './flat/closest.js';\nimport { closestSquaredDistanceXY } from '../extent.js';\nimport { deflateCoordinates } from './flat/deflate.js';\nimport { douglasPeucker } from './flat/simplify.js';\nimport { extend } from '../array.js';\nimport { forEach as forEachSegment } from './flat/segments.js';\nimport { inflateCoordinates } from './flat/inflate.js';\nimport { interpolatePoint, lineStringCoordinateAtM } from './flat/interpolate.js';\nimport { intersectsLineString } from './flat/intersectsextent.js';\nimport { lineStringLength } from './flat/length.js';\n/**\n * @classdesc\n * Linestring geometry.\n *\n * @api\n */\nvar LineString = /** @class */ (function (_super) {\n __extends(LineString, _super);\n /**\n * @param {Array<import(\"../coordinate.js\").Coordinate>|Array<number>} coordinates Coordinates.\n * For internal use, flat coordinates in combination with `opt_layout` are also accepted.\n * @param {import(\"./GeometryLayout.js\").default} [opt_layout] Layout.\n */\n function LineString(coordinates, opt_layout) {\n var _this = _super.call(this) || this;\n /**\n * @private\n * @type {import(\"../coordinate.js\").Coordinate}\n */\n _this.flatMidpoint_ = null;\n /**\n * @private\n * @type {number}\n */\n _this.flatMidpointRevision_ = -1;\n /**\n * @private\n * @type {number}\n */\n _this.maxDelta_ = -1;\n /**\n * @private\n * @type {number}\n */\n _this.maxDeltaRevision_ = -1;\n if (opt_layout !== undefined && !Array.isArray(coordinates[0])) {\n _this.setFlatCoordinates(opt_layout, \n /** @type {Array<number>} */ (coordinates));\n }\n else {\n _this.setCoordinates(\n /** @type {Array<import(\"../coordinate.js\").Coordinate>} */ (coordinates), opt_layout);\n }\n return _this;\n }\n /**\n * Append the passed coordinate to the coordinates of the linestring.\n * @param {import(\"../coordinate.js\").Coordinate} coordinate Coordinate.\n * @api\n */\n LineString.prototype.appendCoordinate = function (coordinate) {\n if (!this.flatCoordinates) {\n this.flatCoordinates = coordinate.slice();\n }\n else {\n extend(this.flatCoordinates, coordinate);\n }\n this.changed();\n };\n /**\n * Make a complete copy of the geometry.\n * @return {!LineString} Clone.\n * @api\n */\n LineString.prototype.clone = function () {\n var lineString = new LineString(this.flatCoordinates.slice(), this.layout);\n lineString.applyProperties(this);\n return lineString;\n };\n /**\n * @param {number} x X.\n * @param {number} y Y.\n * @param {import(\"../coordinate.js\").Coordinate} closestPoint Closest point.\n * @param {number} minSquaredDistance Minimum squared distance.\n * @return {number} Minimum squared distance.\n */\n LineString.prototype.closestPointXY = function (x, y, closestPoint, minSquaredDistance) {\n if (minSquaredDistance < closestSquaredDistanceXY(this.getExtent(), x, y)) {\n return minSquaredDistance;\n }\n if (this.maxDeltaRevision_ != this.getRevision()) {\n this.maxDelta_ = Math.sqrt(maxSquaredDelta(this.flatCoordinates, 0, this.flatCoordinates.length, this.stride, 0));\n this.maxDeltaRevision_ = this.getRevision();\n }\n return assignClosestPoint(this.flatCoordinates, 0, this.flatCoordinates.length, this.stride, this.maxDelta_, false, x, y, closestPoint, minSquaredDistance);\n };\n /**\n * Iterate over each segment, calling the provided callback.\n * If the callback returns a truthy value the function returns that\n * value immediately. Otherwise the function returns `false`.\n *\n * @param {function(this: S, import(\"../coordinate.js\").Coordinate, import(\"../coordinate.js\").Coordinate): T} callback Function\n * called for each segment. The function will receive two arguments, the start and end coordinates of the segment.\n * @return {T|boolean} Value.\n * @template T,S\n * @api\n */\n LineString.prototype.forEachSegment = function (callback) {\n return forEachSegment(this.flatCoordinates, 0, this.flatCoordinates.length, this.stride, callback);\n };\n /**\n * Returns the coordinate at `m` using linear interpolation, or `null` if no\n * such coordinate exists.\n *\n * `opt_extrapolate` controls extrapolation beyond the range of Ms in the\n * MultiLineString. If `opt_extrapolate` is `true` then Ms less than the first\n * M will return the first coordinate and Ms greater than the last M will\n * return the last coordinate.\n *\n * @param {number} m M.\n * @param {boolean} [opt_extrapolate] Extrapolate. Default is `false`.\n * @return {import(\"../coordinate.js\").Coordinate|null} Coordinate.\n * @api\n */\n LineString.prototype.getCoordinateAtM = function (m, opt_extrapolate) {\n if (this.layout != GeometryLayout.XYM &&\n this.layout != GeometryLayout.XYZM) {\n return null;\n }\n var extrapolate = opt_extrapolate !== undefined ? opt_extrapolate : false;\n return lineStringCoordinateAtM(this.flatCoordinates, 0, this.flatCoordinates.length, this.stride, m, extrapolate);\n };\n /**\n * Return the coordinates of the linestring.\n * @return {Array<import(\"../coordinate.js\").Coordinate>} Coordinates.\n * @api\n */\n LineString.prototype.getCoordinates = function () {\n return inflateCoordinates(this.flatCoordinates, 0, this.flatCoordinates.length, this.stride);\n };\n /**\n * Return the coordinate at the provided fraction along the linestring.\n * The `fraction` is a number between 0 and 1, where 0 is the start of the\n * linestring and 1 is the end.\n * @param {number} fraction Fraction.\n * @param {import(\"../coordinate.js\").Coordinate} [opt_dest] Optional coordinate whose values will\n * be modified. If not provided, a new coordinate will be returned.\n * @return {import(\"../coordinate.js\").Coordinate} Coordinate of the interpolated point.\n * @api\n */\n LineString.prototype.getCoordinateAt = function (fraction, opt_dest) {\n return interpolatePoint(this.flatCoordinates, 0, this.flatCoordinates.length, this.stride, fraction, opt_dest, this.stride);\n };\n /**\n * Return the length of the linestring on projected plane.\n * @return {number} Length (on projected plane).\n * @api\n */\n LineString.prototype.getLength = function () {\n return lineStringLength(this.flatCoordinates, 0, this.flatCoordinates.length, this.stride);\n };\n /**\n * @return {Array<number>} Flat midpoint.\n */\n LineString.prototype.getFlatMidpoint = function () {\n if (this.flatMidpointRevision_ != this.getRevision()) {\n this.flatMidpoint_ = this.getCoordinateAt(0.5, this.flatMidpoint_);\n this.flatMidpointRevision_ = this.getRevision();\n }\n return this.flatMidpoint_;\n };\n /**\n * @param {number} squaredTolerance Squared tolerance.\n * @return {LineString} Simplified LineString.\n * @protected\n */\n LineString.prototype.getSimplifiedGeometryInternal = function (squaredTolerance) {\n var simplifiedFlatCoordinates = [];\n simplifiedFlatCoordinates.length = douglasPeucker(this.flatCoordinates, 0, this.flatCoordinates.length, this.stride, squaredTolerance, simplifiedFlatCoordinates, 0);\n return new LineString(simplifiedFlatCoordinates, GeometryLayout.XY);\n };\n /**\n * Get the type of this geometry.\n * @return {import(\"./GeometryType.js\").default} Geometry type.\n * @api\n */\n LineString.prototype.getType = function () {\n return GeometryType.LINE_STRING;\n };\n /**\n * Test if the geometry and the passed extent intersect.\n * @param {import(\"../extent.js\").Extent} extent Extent.\n * @return {boolean} `true` if the geometry and the extent intersect.\n * @api\n */\n LineString.prototype.intersectsExtent = function (extent) {\n return intersectsLineString(this.flatCoordinates, 0, this.flatCoordinates.length, this.stride, extent);\n };\n /**\n * Set the coordinates of the linestring.\n * @param {!Array<import(\"../coordinate.js\").Coordinate>} coordinates Coordinates.\n * @param {import(\"./GeometryLayout.js\").default} [opt_layout] Layout.\n * @api\n */\n LineString.prototype.setCoordinates = function (coordinates, opt_layout) {\n this.setLayout(opt_layout, coordinates, 1);\n if (!this.flatCoordinates) {\n this.flatCoordinates = [];\n }\n this.flatCoordinates.length = deflateCoordinates(this.flatCoordinates, 0, coordinates, this.stride);\n this.changed();\n };\n return LineString;\n}(SimpleGeometry));\nexport default LineString;\n//# sourceMappingURL=LineString.js.map","/**\n * @module ol/geom/flat/area\n */\n/**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {number} end End.\n * @param {number} stride Stride.\n * @return {number} Area.\n */\nexport function linearRing(flatCoordinates, offset, end, stride) {\n var twiceArea = 0;\n var x1 = flatCoordinates[end - stride];\n var y1 = flatCoordinates[end - stride + 1];\n for (; offset < end; offset += stride) {\n var x2 = flatCoordinates[offset];\n var y2 = flatCoordinates[offset + 1];\n twiceArea += y1 * x2 - x1 * y2;\n x1 = x2;\n y1 = y2;\n }\n return twiceArea / 2;\n}\n/**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {Array<number>} ends Ends.\n * @param {number} stride Stride.\n * @return {number} Area.\n */\nexport function linearRings(flatCoordinates, offset, ends, stride) {\n var area = 0;\n for (var i = 0, ii = ends.length; i < ii; ++i) {\n var end = ends[i];\n area += linearRing(flatCoordinates, offset, end, stride);\n offset = end;\n }\n return area;\n}\n/**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {Array<Array<number>>} endss Endss.\n * @param {number} stride Stride.\n * @return {number} Area.\n */\nexport function linearRingss(flatCoordinates, offset, endss, stride) {\n var area = 0;\n for (var i = 0, ii = endss.length; i < ii; ++i) {\n var ends = endss[i];\n area += linearRings(flatCoordinates, offset, ends, stride);\n offset = ends[ends.length - 1];\n }\n return area;\n}\n//# sourceMappingURL=area.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/geom/LinearRing\n */\nimport GeometryLayout from './GeometryLayout.js';\nimport GeometryType from './GeometryType.js';\nimport SimpleGeometry from './SimpleGeometry.js';\nimport { assignClosestPoint, maxSquaredDelta } from './flat/closest.js';\nimport { closestSquaredDistanceXY } from '../extent.js';\nimport { deflateCoordinates } from './flat/deflate.js';\nimport { douglasPeucker } from './flat/simplify.js';\nimport { inflateCoordinates } from './flat/inflate.js';\nimport { linearRing as linearRingArea } from './flat/area.js';\n/**\n * @classdesc\n * Linear ring geometry. Only used as part of polygon; cannot be rendered\n * on its own.\n *\n * @api\n */\nvar LinearRing = /** @class */ (function (_super) {\n __extends(LinearRing, _super);\n /**\n * @param {Array<import(\"../coordinate.js\").Coordinate>|Array<number>} coordinates Coordinates.\n * For internal use, flat coordinates in combination with `opt_layout` are also accepted.\n * @param {import(\"./GeometryLayout.js\").default} [opt_layout] Layout.\n */\n function LinearRing(coordinates, opt_layout) {\n var _this = _super.call(this) || this;\n /**\n * @private\n * @type {number}\n */\n _this.maxDelta_ = -1;\n /**\n * @private\n * @type {number}\n */\n _this.maxDeltaRevision_ = -1;\n if (opt_layout !== undefined && !Array.isArray(coordinates[0])) {\n _this.setFlatCoordinates(opt_layout, \n /** @type {Array<number>} */ (coordinates));\n }\n else {\n _this.setCoordinates(\n /** @type {Array<import(\"../coordinate.js\").Coordinate>} */ (coordinates), opt_layout);\n }\n return _this;\n }\n /**\n * Make a complete copy of the geometry.\n * @return {!LinearRing} Clone.\n * @api\n */\n LinearRing.prototype.clone = function () {\n return new LinearRing(this.flatCoordinates.slice(), this.layout);\n };\n /**\n * @param {number} x X.\n * @param {number} y Y.\n * @param {import(\"../coordinate.js\").Coordinate} closestPoint Closest point.\n * @param {number} minSquaredDistance Minimum squared distance.\n * @return {number} Minimum squared distance.\n */\n LinearRing.prototype.closestPointXY = function (x, y, closestPoint, minSquaredDistance) {\n if (minSquaredDistance < closestSquaredDistanceXY(this.getExtent(), x, y)) {\n return minSquaredDistance;\n }\n if (this.maxDeltaRevision_ != this.getRevision()) {\n this.maxDelta_ = Math.sqrt(maxSquaredDelta(this.flatCoordinates, 0, this.flatCoordinates.length, this.stride, 0));\n this.maxDeltaRevision_ = this.getRevision();\n }\n return assignClosestPoint(this.flatCoordinates, 0, this.flatCoordinates.length, this.stride, this.maxDelta_, true, x, y, closestPoint, minSquaredDistance);\n };\n /**\n * Return the area of the linear ring on projected plane.\n * @return {number} Area (on projected plane).\n * @api\n */\n LinearRing.prototype.getArea = function () {\n return linearRingArea(this.flatCoordinates, 0, this.flatCoordinates.length, this.stride);\n };\n /**\n * Return the coordinates of the linear ring.\n * @return {Array<import(\"../coordinate.js\").Coordinate>} Coordinates.\n * @api\n */\n LinearRing.prototype.getCoordinates = function () {\n return inflateCoordinates(this.flatCoordinates, 0, this.flatCoordinates.length, this.stride);\n };\n /**\n * @param {number} squaredTolerance Squared tolerance.\n * @return {LinearRing} Simplified LinearRing.\n * @protected\n */\n LinearRing.prototype.getSimplifiedGeometryInternal = function (squaredTolerance) {\n var simplifiedFlatCoordinates = [];\n simplifiedFlatCoordinates.length = douglasPeucker(this.flatCoordinates, 0, this.flatCoordinates.length, this.stride, squaredTolerance, simplifiedFlatCoordinates, 0);\n return new LinearRing(simplifiedFlatCoordinates, GeometryLayout.XY);\n };\n /**\n * Get the type of this geometry.\n * @return {import(\"./GeometryType.js\").default} Geometry type.\n * @api\n */\n LinearRing.prototype.getType = function () {\n return GeometryType.LINEAR_RING;\n };\n /**\n * Test if the geometry and the passed extent intersect.\n * @param {import(\"../extent.js\").Extent} extent Extent.\n * @return {boolean} `true` if the geometry and the extent intersect.\n * @api\n */\n LinearRing.prototype.intersectsExtent = function (extent) {\n return false;\n };\n /**\n * Set the coordinates of the linear ring.\n * @param {!Array<import(\"../coordinate.js\").Coordinate>} coordinates Coordinates.\n * @param {import(\"./GeometryLayout.js\").default} [opt_layout] Layout.\n * @api\n */\n LinearRing.prototype.setCoordinates = function (coordinates, opt_layout) {\n this.setLayout(opt_layout, coordinates, 1);\n if (!this.flatCoordinates) {\n this.flatCoordinates = [];\n }\n this.flatCoordinates.length = deflateCoordinates(this.flatCoordinates, 0, coordinates, this.stride);\n this.changed();\n };\n return LinearRing;\n}(SimpleGeometry));\nexport default LinearRing;\n//# sourceMappingURL=LinearRing.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/geom/MultiLineString\n */\nimport GeometryLayout from './GeometryLayout.js';\nimport GeometryType from './GeometryType.js';\nimport LineString from './LineString.js';\nimport SimpleGeometry from './SimpleGeometry.js';\nimport { arrayMaxSquaredDelta, assignClosestArrayPoint } from './flat/closest.js';\nimport { closestSquaredDistanceXY } from '../extent.js';\nimport { deflateCoordinatesArray } from './flat/deflate.js';\nimport { douglasPeuckerArray } from './flat/simplify.js';\nimport { extend } from '../array.js';\nimport { inflateCoordinatesArray } from './flat/inflate.js';\nimport { interpolatePoint, lineStringsCoordinateAtM, } from './flat/interpolate.js';\nimport { intersectsLineStringArray } from './flat/intersectsextent.js';\n/**\n * @classdesc\n * Multi-linestring geometry.\n *\n * @api\n */\nvar MultiLineString = /** @class */ (function (_super) {\n __extends(MultiLineString, _super);\n /**\n * @param {Array<Array<import(\"../coordinate.js\").Coordinate>|LineString>|Array<number>} coordinates\n * Coordinates or LineString geometries. (For internal use, flat coordinates in\n * combination with `opt_layout` and `opt_ends` are also accepted.)\n * @param {import(\"./GeometryLayout.js\").default} [opt_layout] Layout.\n * @param {Array<number>} [opt_ends] Flat coordinate ends for internal use.\n */\n function MultiLineString(coordinates, opt_layout, opt_ends) {\n var _this = _super.call(this) || this;\n /**\n * @type {Array<number>}\n * @private\n */\n _this.ends_ = [];\n /**\n * @private\n * @type {number}\n */\n _this.maxDelta_ = -1;\n /**\n * @private\n * @type {number}\n */\n _this.maxDeltaRevision_ = -1;\n if (Array.isArray(coordinates[0])) {\n _this.setCoordinates(\n /** @type {Array<Array<import(\"../coordinate.js\").Coordinate>>} */ (coordinates), opt_layout);\n }\n else if (opt_layout !== undefined && opt_ends) {\n _this.setFlatCoordinates(opt_layout, \n /** @type {Array<number>} */ (coordinates));\n _this.ends_ = opt_ends;\n }\n else {\n var layout = _this.getLayout();\n var lineStrings = /** @type {Array<LineString>} */ (coordinates);\n var flatCoordinates = [];\n var ends = [];\n for (var i = 0, ii = lineStrings.length; i < ii; ++i) {\n var lineString = lineStrings[i];\n if (i === 0) {\n layout = lineString.getLayout();\n }\n extend(flatCoordinates, lineString.getFlatCoordinates());\n ends.push(flatCoordinates.length);\n }\n _this.setFlatCoordinates(layout, flatCoordinates);\n _this.ends_ = ends;\n }\n return _this;\n }\n /**\n * Append the passed linestring to the multilinestring.\n * @param {LineString} lineString LineString.\n * @api\n */\n MultiLineString.prototype.appendLineString = function (lineString) {\n if (!this.flatCoordinates) {\n this.flatCoordinates = lineString.getFlatCoordinates().slice();\n }\n else {\n extend(this.flatCoordinates, lineString.getFlatCoordinates().slice());\n }\n this.ends_.push(this.flatCoordinates.length);\n this.changed();\n };\n /**\n * Make a complete copy of the geometry.\n * @return {!MultiLineString} Clone.\n * @api\n */\n MultiLineString.prototype.clone = function () {\n var multiLineString = new MultiLineString(this.flatCoordinates.slice(), this.layout, this.ends_.slice());\n multiLineString.applyProperties(this);\n return multiLineString;\n };\n /**\n * @param {number} x X.\n * @param {number} y Y.\n * @param {import(\"../coordinate.js\").Coordinate} closestPoint Closest point.\n * @param {number} minSquaredDistance Minimum squared distance.\n * @return {number} Minimum squared distance.\n */\n MultiLineString.prototype.closestPointXY = function (x, y, closestPoint, minSquaredDistance) {\n if (minSquaredDistance < closestSquaredDistanceXY(this.getExtent(), x, y)) {\n return minSquaredDistance;\n }\n if (this.maxDeltaRevision_ != this.getRevision()) {\n this.maxDelta_ = Math.sqrt(arrayMaxSquaredDelta(this.flatCoordinates, 0, this.ends_, this.stride, 0));\n this.maxDeltaRevision_ = this.getRevision();\n }\n return assignClosestArrayPoint(this.flatCoordinates, 0, this.ends_, this.stride, this.maxDelta_, false, x, y, closestPoint, minSquaredDistance);\n };\n /**\n * Returns the coordinate at `m` using linear interpolation, or `null` if no\n * such coordinate exists.\n *\n * `opt_extrapolate` controls extrapolation beyond the range of Ms in the\n * MultiLineString. If `opt_extrapolate` is `true` then Ms less than the first\n * M will return the first coordinate and Ms greater than the last M will\n * return the last coordinate.\n *\n * `opt_interpolate` controls interpolation between consecutive LineStrings\n * within the MultiLineString. If `opt_interpolate` is `true` the coordinates\n * will be linearly interpolated between the last coordinate of one LineString\n * and the first coordinate of the next LineString. If `opt_interpolate` is\n * `false` then the function will return `null` for Ms falling between\n * LineStrings.\n *\n * @param {number} m M.\n * @param {boolean} [opt_extrapolate] Extrapolate. Default is `false`.\n * @param {boolean} [opt_interpolate] Interpolate. Default is `false`.\n * @return {import(\"../coordinate.js\").Coordinate|null} Coordinate.\n * @api\n */\n MultiLineString.prototype.getCoordinateAtM = function (m, opt_extrapolate, opt_interpolate) {\n if ((this.layout != GeometryLayout.XYM &&\n this.layout != GeometryLayout.XYZM) ||\n this.flatCoordinates.length === 0) {\n return null;\n }\n var extrapolate = opt_extrapolate !== undefined ? opt_extrapolate : false;\n var interpolate = opt_interpolate !== undefined ? opt_interpolate : false;\n return lineStringsCoordinateAtM(this.flatCoordinates, 0, this.ends_, this.stride, m, extrapolate, interpolate);\n };\n /**\n * Return the coordinates of the multilinestring.\n * @return {Array<Array<import(\"../coordinate.js\").Coordinate>>} Coordinates.\n * @api\n */\n MultiLineString.prototype.getCoordinates = function () {\n return inflateCoordinatesArray(this.flatCoordinates, 0, this.ends_, this.stride);\n };\n /**\n * @return {Array<number>} Ends.\n */\n MultiLineString.prototype.getEnds = function () {\n return this.ends_;\n };\n /**\n * Return the linestring at the specified index.\n * @param {number} index Index.\n * @return {LineString} LineString.\n * @api\n */\n MultiLineString.prototype.getLineString = function (index) {\n if (index < 0 || this.ends_.length <= index) {\n return null;\n }\n return new LineString(this.flatCoordinates.slice(index === 0 ? 0 : this.ends_[index - 1], this.ends_[index]), this.layout);\n };\n /**\n * Return the linestrings of this multilinestring.\n * @return {Array<LineString>} LineStrings.\n * @api\n */\n MultiLineString.prototype.getLineStrings = function () {\n var flatCoordinates = this.flatCoordinates;\n var ends = this.ends_;\n var layout = this.layout;\n /** @type {Array<LineString>} */\n var lineStrings = [];\n var offset = 0;\n for (var i = 0, ii = ends.length; i < ii; ++i) {\n var end = ends[i];\n var lineString = new LineString(flatCoordinates.slice(offset, end), layout);\n lineStrings.push(lineString);\n offset = end;\n }\n return lineStrings;\n };\n /**\n * @return {Array<number>} Flat midpoints.\n */\n MultiLineString.prototype.getFlatMidpoints = function () {\n var midpoints = [];\n var flatCoordinates = this.flatCoordinates;\n var offset = 0;\n var ends = this.ends_;\n var stride = this.stride;\n for (var i = 0, ii = ends.length; i < ii; ++i) {\n var end = ends[i];\n var midpoint = interpolatePoint(flatCoordinates, offset, end, stride, 0.5);\n extend(midpoints, midpoint);\n offset = end;\n }\n return midpoints;\n };\n /**\n * @param {number} squaredTolerance Squared tolerance.\n * @return {MultiLineString} Simplified MultiLineString.\n * @protected\n */\n MultiLineString.prototype.getSimplifiedGeometryInternal = function (squaredTolerance) {\n var simplifiedFlatCoordinates = [];\n var simplifiedEnds = [];\n simplifiedFlatCoordinates.length = douglasPeuckerArray(this.flatCoordinates, 0, this.ends_, this.stride, squaredTolerance, simplifiedFlatCoordinates, 0, simplifiedEnds);\n return new MultiLineString(simplifiedFlatCoordinates, GeometryLayout.XY, simplifiedEnds);\n };\n /**\n * Get the type of this geometry.\n * @return {import(\"./GeometryType.js\").default} Geometry type.\n * @api\n */\n MultiLineString.prototype.getType = function () {\n return GeometryType.MULTI_LINE_STRING;\n };\n /**\n * Test if the geometry and the passed extent intersect.\n * @param {import(\"../extent.js\").Extent} extent Extent.\n * @return {boolean} `true` if the geometry and the extent intersect.\n * @api\n */\n MultiLineString.prototype.intersectsExtent = function (extent) {\n return intersectsLineStringArray(this.flatCoordinates, 0, this.ends_, this.stride, extent);\n };\n /**\n * Set the coordinates of the multilinestring.\n * @param {!Array<Array<import(\"../coordinate.js\").Coordinate>>} coordinates Coordinates.\n * @param {GeometryLayout} [opt_layout] Layout.\n * @api\n */\n MultiLineString.prototype.setCoordinates = function (coordinates, opt_layout) {\n this.setLayout(opt_layout, coordinates, 2);\n if (!this.flatCoordinates) {\n this.flatCoordinates = [];\n }\n var ends = deflateCoordinatesArray(this.flatCoordinates, 0, coordinates, this.stride, this.ends_);\n this.flatCoordinates.length = ends.length === 0 ? 0 : ends[ends.length - 1];\n this.changed();\n };\n return MultiLineString;\n}(SimpleGeometry));\nexport default MultiLineString;\n//# sourceMappingURL=MultiLineString.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/geom/Point\n */\nimport GeometryType from './GeometryType.js';\nimport SimpleGeometry from './SimpleGeometry.js';\nimport { containsXY, createOrUpdateFromCoordinate } from '../extent.js';\nimport { deflateCoordinate } from './flat/deflate.js';\nimport { squaredDistance as squaredDx } from '../math.js';\n/**\n * @classdesc\n * Point geometry.\n *\n * @api\n */\nvar Point = /** @class */ (function (_super) {\n __extends(Point, _super);\n /**\n * @param {import(\"../coordinate.js\").Coordinate} coordinates Coordinates.\n * @param {import(\"./GeometryLayout.js\").default} [opt_layout] Layout.\n */\n function Point(coordinates, opt_layout) {\n var _this = _super.call(this) || this;\n _this.setCoordinates(coordinates, opt_layout);\n return _this;\n }\n /**\n * Make a complete copy of the geometry.\n * @return {!Point} Clone.\n * @api\n */\n Point.prototype.clone = function () {\n var point = new Point(this.flatCoordinates.slice(), this.layout);\n point.applyProperties(this);\n return point;\n };\n /**\n * @param {number} x X.\n * @param {number} y Y.\n * @param {import(\"../coordinate.js\").Coordinate} closestPoint Closest point.\n * @param {number} minSquaredDistance Minimum squared distance.\n * @return {number} Minimum squared distance.\n */\n Point.prototype.closestPointXY = function (x, y, closestPoint, minSquaredDistance) {\n var flatCoordinates = this.flatCoordinates;\n var squaredDistance = squaredDx(x, y, flatCoordinates[0], flatCoordinates[1]);\n if (squaredDistance < minSquaredDistance) {\n var stride = this.stride;\n for (var i = 0; i < stride; ++i) {\n closestPoint[i] = flatCoordinates[i];\n }\n closestPoint.length = stride;\n return squaredDistance;\n }\n else {\n return minSquaredDistance;\n }\n };\n /**\n * Return the coordinate of the point.\n * @return {import(\"../coordinate.js\").Coordinate} Coordinates.\n * @api\n */\n Point.prototype.getCoordinates = function () {\n return !this.flatCoordinates ? [] : this.flatCoordinates.slice();\n };\n /**\n * @param {import(\"../extent.js\").Extent} extent Extent.\n * @protected\n * @return {import(\"../extent.js\").Extent} extent Extent.\n */\n Point.prototype.computeExtent = function (extent) {\n return createOrUpdateFromCoordinate(this.flatCoordinates, extent);\n };\n /**\n * Get the type of this geometry.\n * @return {import(\"./GeometryType.js\").default} Geometry type.\n * @api\n */\n Point.prototype.getType = function () {\n return GeometryType.POINT;\n };\n /**\n * Test if the geometry and the passed extent intersect.\n * @param {import(\"../extent.js\").Extent} extent Extent.\n * @return {boolean} `true` if the geometry and the extent intersect.\n * @api\n */\n Point.prototype.intersectsExtent = function (extent) {\n return containsXY(extent, this.flatCoordinates[0], this.flatCoordinates[1]);\n };\n /**\n * @param {!Array<*>} coordinates Coordinates.\n * @param {import(\"./GeometryLayout.js\").default} [opt_layout] Layout.\n * @api\n */\n Point.prototype.setCoordinates = function (coordinates, opt_layout) {\n this.setLayout(opt_layout, coordinates, 0);\n if (!this.flatCoordinates) {\n this.flatCoordinates = [];\n }\n this.flatCoordinates.length = deflateCoordinate(this.flatCoordinates, 0, coordinates, this.stride);\n this.changed();\n };\n return Point;\n}(SimpleGeometry));\nexport default Point;\n//# sourceMappingURL=Point.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/geom/MultiPoint\n */\nimport GeometryType from './GeometryType.js';\nimport Point from './Point.js';\nimport SimpleGeometry from './SimpleGeometry.js';\nimport { closestSquaredDistanceXY, containsXY } from '../extent.js';\nimport { deflateCoordinates } from './flat/deflate.js';\nimport { extend } from '../array.js';\nimport { inflateCoordinates } from './flat/inflate.js';\nimport { squaredDistance as squaredDx } from '../math.js';\n/**\n * @classdesc\n * Multi-point geometry.\n *\n * @api\n */\nvar MultiPoint = /** @class */ (function (_super) {\n __extends(MultiPoint, _super);\n /**\n * @param {Array<import(\"../coordinate.js\").Coordinate>|Array<number>} coordinates Coordinates.\n * For internal use, flat coordinates in combination with `opt_layout` are also accepted.\n * @param {import(\"./GeometryLayout.js\").default} [opt_layout] Layout.\n */\n function MultiPoint(coordinates, opt_layout) {\n var _this = _super.call(this) || this;\n if (opt_layout && !Array.isArray(coordinates[0])) {\n _this.setFlatCoordinates(opt_layout, \n /** @type {Array<number>} */ (coordinates));\n }\n else {\n _this.setCoordinates(\n /** @type {Array<import(\"../coordinate.js\").Coordinate>} */ (coordinates), opt_layout);\n }\n return _this;\n }\n /**\n * Append the passed point to this multipoint.\n * @param {Point} point Point.\n * @api\n */\n MultiPoint.prototype.appendPoint = function (point) {\n if (!this.flatCoordinates) {\n this.flatCoordinates = point.getFlatCoordinates().slice();\n }\n else {\n extend(this.flatCoordinates, point.getFlatCoordinates());\n }\n this.changed();\n };\n /**\n * Make a complete copy of the geometry.\n * @return {!MultiPoint} Clone.\n * @api\n */\n MultiPoint.prototype.clone = function () {\n var multiPoint = new MultiPoint(this.flatCoordinates.slice(), this.layout);\n multiPoint.applyProperties(this);\n return multiPoint;\n };\n /**\n * @param {number} x X.\n * @param {number} y Y.\n * @param {import(\"../coordinate.js\").Coordinate} closestPoint Closest point.\n * @param {number} minSquaredDistance Minimum squared distance.\n * @return {number} Minimum squared distance.\n */\n MultiPoint.prototype.closestPointXY = function (x, y, closestPoint, minSquaredDistance) {\n if (minSquaredDistance < closestSquaredDistanceXY(this.getExtent(), x, y)) {\n return minSquaredDistance;\n }\n var flatCoordinates = this.flatCoordinates;\n var stride = this.stride;\n for (var i = 0, ii = flatCoordinates.length; i < ii; i += stride) {\n var squaredDistance = squaredDx(x, y, flatCoordinates[i], flatCoordinates[i + 1]);\n if (squaredDistance < minSquaredDistance) {\n minSquaredDistance = squaredDistance;\n for (var j = 0; j < stride; ++j) {\n closestPoint[j] = flatCoordinates[i + j];\n }\n closestPoint.length = stride;\n }\n }\n return minSquaredDistance;\n };\n /**\n * Return the coordinates of the multipoint.\n * @return {Array<import(\"../coordinate.js\").Coordinate>} Coordinates.\n * @api\n */\n MultiPoint.prototype.getCoordinates = function () {\n return inflateCoordinates(this.flatCoordinates, 0, this.flatCoordinates.length, this.stride);\n };\n /**\n * Return the point at the specified index.\n * @param {number} index Index.\n * @return {Point} Point.\n * @api\n */\n MultiPoint.prototype.getPoint = function (index) {\n var n = !this.flatCoordinates\n ? 0\n : this.flatCoordinates.length / this.stride;\n if (index < 0 || n <= index) {\n return null;\n }\n return new Point(this.flatCoordinates.slice(index * this.stride, (index + 1) * this.stride), this.layout);\n };\n /**\n * Return the points of this multipoint.\n * @return {Array<Point>} Points.\n * @api\n */\n MultiPoint.prototype.getPoints = function () {\n var flatCoordinates = this.flatCoordinates;\n var layout = this.layout;\n var stride = this.stride;\n /** @type {Array<Point>} */\n var points = [];\n for (var i = 0, ii = flatCoordinates.length; i < ii; i += stride) {\n var point = new Point(flatCoordinates.slice(i, i + stride), layout);\n points.push(point);\n }\n return points;\n };\n /**\n * Get the type of this geometry.\n * @return {import(\"./GeometryType.js\").default} Geometry type.\n * @api\n */\n MultiPoint.prototype.getType = function () {\n return GeometryType.MULTI_POINT;\n };\n /**\n * Test if the geometry and the passed extent intersect.\n * @param {import(\"../extent.js\").Extent} extent Extent.\n * @return {boolean} `true` if the geometry and the extent intersect.\n * @api\n */\n MultiPoint.prototype.intersectsExtent = function (extent) {\n var flatCoordinates = this.flatCoordinates;\n var stride = this.stride;\n for (var i = 0, ii = flatCoordinates.length; i < ii; i += stride) {\n var x = flatCoordinates[i];\n var y = flatCoordinates[i + 1];\n if (containsXY(extent, x, y)) {\n return true;\n }\n }\n return false;\n };\n /**\n * Set the coordinates of the multipoint.\n * @param {!Array<import(\"../coordinate.js\").Coordinate>} coordinates Coordinates.\n * @param {import(\"./GeometryLayout.js\").default} [opt_layout] Layout.\n * @api\n */\n MultiPoint.prototype.setCoordinates = function (coordinates, opt_layout) {\n this.setLayout(opt_layout, coordinates, 1);\n if (!this.flatCoordinates) {\n this.flatCoordinates = [];\n }\n this.flatCoordinates.length = deflateCoordinates(this.flatCoordinates, 0, coordinates, this.stride);\n this.changed();\n };\n return MultiPoint;\n}(SimpleGeometry));\nexport default MultiPoint;\n//# sourceMappingURL=MultiPoint.js.map","/**\n * @module ol/geom/flat/interiorpoint\n */\nimport { linearRingsContainsXY } from './contains.js';\nimport { numberSafeCompareFunction } from '../../array.js';\n/**\n * Calculates a point that is likely to lie in the interior of the linear rings.\n * Inspired by JTS's com.vividsolutions.jts.geom.Geometry#getInteriorPoint.\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {Array<number>} ends Ends.\n * @param {number} stride Stride.\n * @param {Array<number>} flatCenters Flat centers.\n * @param {number} flatCentersOffset Flat center offset.\n * @param {Array<number>} [opt_dest] Destination.\n * @return {Array<number>} Destination point as XYM coordinate, where M is the\n * length of the horizontal intersection that the point belongs to.\n */\nexport function getInteriorPointOfArray(flatCoordinates, offset, ends, stride, flatCenters, flatCentersOffset, opt_dest) {\n var i, ii, x, x1, x2, y1, y2;\n var y = flatCenters[flatCentersOffset + 1];\n /** @type {Array<number>} */\n var intersections = [];\n // Calculate intersections with the horizontal line\n for (var r = 0, rr = ends.length; r < rr; ++r) {\n var end = ends[r];\n x1 = flatCoordinates[end - stride];\n y1 = flatCoordinates[end - stride + 1];\n for (i = offset; i < end; i += stride) {\n x2 = flatCoordinates[i];\n y2 = flatCoordinates[i + 1];\n if ((y <= y1 && y2 <= y) || (y1 <= y && y <= y2)) {\n x = ((y - y1) / (y2 - y1)) * (x2 - x1) + x1;\n intersections.push(x);\n }\n x1 = x2;\n y1 = y2;\n }\n }\n // Find the longest segment of the horizontal line that has its center point\n // inside the linear ring.\n var pointX = NaN;\n var maxSegmentLength = -Infinity;\n intersections.sort(numberSafeCompareFunction);\n x1 = intersections[0];\n for (i = 1, ii = intersections.length; i < ii; ++i) {\n x2 = intersections[i];\n var segmentLength = Math.abs(x2 - x1);\n if (segmentLength > maxSegmentLength) {\n x = (x1 + x2) / 2;\n if (linearRingsContainsXY(flatCoordinates, offset, ends, stride, x, y)) {\n pointX = x;\n maxSegmentLength = segmentLength;\n }\n }\n x1 = x2;\n }\n if (isNaN(pointX)) {\n // There is no horizontal line that has its center point inside the linear\n // ring. Use the center of the the linear ring's extent.\n pointX = flatCenters[flatCentersOffset];\n }\n if (opt_dest) {\n opt_dest.push(pointX, y, maxSegmentLength);\n return opt_dest;\n }\n else {\n return [pointX, y, maxSegmentLength];\n }\n}\n/**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {Array<Array<number>>} endss Endss.\n * @param {number} stride Stride.\n * @param {Array<number>} flatCenters Flat centers.\n * @return {Array<number>} Interior points as XYM coordinates, where M is the\n * length of the horizontal intersection that the point belongs to.\n */\nexport function getInteriorPointsOfMultiArray(flatCoordinates, offset, endss, stride, flatCenters) {\n var interiorPoints = [];\n for (var i = 0, ii = endss.length; i < ii; ++i) {\n var ends = endss[i];\n interiorPoints = getInteriorPointOfArray(flatCoordinates, offset, ends, stride, flatCenters, 2 * i, interiorPoints);\n offset = ends[ends.length - 1];\n }\n return interiorPoints;\n}\n//# sourceMappingURL=interiorpoint.js.map","/**\n * @module ol/geom/flat/reverse\n */\n/**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {number} end End.\n * @param {number} stride Stride.\n */\nexport function coordinates(flatCoordinates, offset, end, stride) {\n while (offset < end - stride) {\n for (var i = 0; i < stride; ++i) {\n var tmp = flatCoordinates[offset + i];\n flatCoordinates[offset + i] = flatCoordinates[end - stride + i];\n flatCoordinates[end - stride + i] = tmp;\n }\n offset += stride;\n end -= stride;\n }\n}\n//# sourceMappingURL=reverse.js.map","/**\n * @module ol/geom/flat/orient\n */\nimport { coordinates as reverseCoordinates } from './reverse.js';\n/**\n * Is the linear ring oriented clockwise in a coordinate system with a bottom-left\n * coordinate origin? For a coordinate system with a top-left coordinate origin,\n * the ring's orientation is clockwise when this function returns false.\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {number} end End.\n * @param {number} stride Stride.\n * @return {boolean} Is clockwise.\n */\nexport function linearRingIsClockwise(flatCoordinates, offset, end, stride) {\n // https://stackoverflow.com/q/1165647/clockwise-method#1165943\n // https://github.com/OSGeo/gdal/blob/master/gdal/ogr/ogrlinearring.cpp\n var edge = 0;\n var x1 = flatCoordinates[end - stride];\n var y1 = flatCoordinates[end - stride + 1];\n for (; offset < end; offset += stride) {\n var x2 = flatCoordinates[offset];\n var y2 = flatCoordinates[offset + 1];\n edge += (x2 - x1) * (y2 + y1);\n x1 = x2;\n y1 = y2;\n }\n return edge === 0 ? undefined : edge > 0;\n}\n/**\n * Determines if linear rings are oriented. By default, left-hand orientation\n * is tested (first ring must be clockwise, remaining rings counter-clockwise).\n * To test for right-hand orientation, use the `opt_right` argument.\n *\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {Array<number>} ends Array of end indexes.\n * @param {number} stride Stride.\n * @param {boolean} [opt_right] Test for right-hand orientation\n * (counter-clockwise exterior ring and clockwise interior rings).\n * @return {boolean} Rings are correctly oriented.\n */\nexport function linearRingsAreOriented(flatCoordinates, offset, ends, stride, opt_right) {\n var right = opt_right !== undefined ? opt_right : false;\n for (var i = 0, ii = ends.length; i < ii; ++i) {\n var end = ends[i];\n var isClockwise = linearRingIsClockwise(flatCoordinates, offset, end, stride);\n if (i === 0) {\n if ((right && isClockwise) || (!right && !isClockwise)) {\n return false;\n }\n }\n else {\n if ((right && !isClockwise) || (!right && isClockwise)) {\n return false;\n }\n }\n offset = end;\n }\n return true;\n}\n/**\n * Determines if linear rings are oriented. By default, left-hand orientation\n * is tested (first ring must be clockwise, remaining rings counter-clockwise).\n * To test for right-hand orientation, use the `opt_right` argument.\n *\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {Array<Array<number>>} endss Array of array of end indexes.\n * @param {number} stride Stride.\n * @param {boolean} [opt_right] Test for right-hand orientation\n * (counter-clockwise exterior ring and clockwise interior rings).\n * @return {boolean} Rings are correctly oriented.\n */\nexport function linearRingssAreOriented(flatCoordinates, offset, endss, stride, opt_right) {\n for (var i = 0, ii = endss.length; i < ii; ++i) {\n var ends = endss[i];\n if (!linearRingsAreOriented(flatCoordinates, offset, ends, stride, opt_right)) {\n return false;\n }\n if (ends.length) {\n offset = ends[ends.length - 1];\n }\n }\n return true;\n}\n/**\n * Orient coordinates in a flat array of linear rings. By default, rings\n * are oriented following the left-hand rule (clockwise for exterior and\n * counter-clockwise for interior rings). To orient according to the\n * right-hand rule, use the `opt_right` argument.\n *\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {Array<number>} ends Ends.\n * @param {number} stride Stride.\n * @param {boolean} [opt_right] Follow the right-hand rule for orientation.\n * @return {number} End.\n */\nexport function orientLinearRings(flatCoordinates, offset, ends, stride, opt_right) {\n var right = opt_right !== undefined ? opt_right : false;\n for (var i = 0, ii = ends.length; i < ii; ++i) {\n var end = ends[i];\n var isClockwise = linearRingIsClockwise(flatCoordinates, offset, end, stride);\n var reverse = i === 0\n ? (right && isClockwise) || (!right && !isClockwise)\n : (right && !isClockwise) || (!right && isClockwise);\n if (reverse) {\n reverseCoordinates(flatCoordinates, offset, end, stride);\n }\n offset = end;\n }\n return offset;\n}\n/**\n * Orient coordinates in a flat array of linear rings. By default, rings\n * are oriented following the left-hand rule (clockwise for exterior and\n * counter-clockwise for interior rings). To orient according to the\n * right-hand rule, use the `opt_right` argument.\n *\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {Array<Array<number>>} endss Array of array of end indexes.\n * @param {number} stride Stride.\n * @param {boolean} [opt_right] Follow the right-hand rule for orientation.\n * @return {number} End.\n */\nexport function orientLinearRingsArray(flatCoordinates, offset, endss, stride, opt_right) {\n for (var i = 0, ii = endss.length; i < ii; ++i) {\n offset = orientLinearRings(flatCoordinates, offset, endss[i], stride, opt_right);\n }\n return offset;\n}\n/**\n * Return a two-dimensional endss\n * @param {Array<number>} flatCoordinates Flat coordinates\n * @param {Array<number>} ends Linear ring end indexes\n * @return {Array<Array<number>>} Two dimensional endss array that can\n * be used to contruct a MultiPolygon\n */\nexport function inflateEnds(flatCoordinates, ends) {\n var endss = [];\n var offset = 0;\n var prevEndIndex = 0;\n for (var i = 0, ii = ends.length; i < ii; ++i) {\n var end = ends[i];\n // classifies an array of rings into polygons with outer rings and holes\n if (!linearRingIsClockwise(flatCoordinates, offset, end, 2)) {\n endss.push(ends.slice(prevEndIndex, i + 1));\n }\n else {\n if (endss.length === 0) {\n continue;\n }\n endss[endss.length - 1].push(ends[prevEndIndex]);\n }\n prevEndIndex = i + 1;\n offset = end;\n }\n return endss;\n}\n//# sourceMappingURL=orient.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/geom/Polygon\n */\nimport GeometryLayout from './GeometryLayout.js';\nimport GeometryType from './GeometryType.js';\nimport LinearRing from './LinearRing.js';\nimport Point from './Point.js';\nimport SimpleGeometry from './SimpleGeometry.js';\nimport { arrayMaxSquaredDelta, assignClosestArrayPoint } from './flat/closest.js';\nimport { closestSquaredDistanceXY, getCenter } from '../extent.js';\nimport { deflateCoordinatesArray } from './flat/deflate.js';\nimport { extend } from '../array.js';\nimport { getInteriorPointOfArray } from './flat/interiorpoint.js';\nimport { inflateCoordinatesArray } from './flat/inflate.js';\nimport { intersectsLinearRingArray } from './flat/intersectsextent.js';\nimport { linearRingsAreOriented, orientLinearRings } from './flat/orient.js';\nimport { linearRings as linearRingsArea } from './flat/area.js';\nimport { linearRingsContainsXY } from './flat/contains.js';\nimport { modulo } from '../math.js';\nimport { quantizeArray } from './flat/simplify.js';\nimport { offset as sphereOffset } from '../sphere.js';\n/**\n * @classdesc\n * Polygon geometry.\n *\n * @api\n */\nvar Polygon = /** @class */ (function (_super) {\n __extends(Polygon, _super);\n /**\n * @param {!Array<Array<import(\"../coordinate.js\").Coordinate>>|!Array<number>} coordinates\n * Array of linear rings that define the polygon. The first linear ring of the\n * array defines the outer-boundary or surface of the polygon. Each subsequent\n * linear ring defines a hole in the surface of the polygon. A linear ring is\n * an array of vertices' coordinates where the first coordinate and the last are\n * equivalent. (For internal use, flat coordinates in combination with\n * `opt_layout` and `opt_ends` are also accepted.)\n * @param {import(\"./GeometryLayout.js\").default} [opt_layout] Layout.\n * @param {Array<number>} [opt_ends] Ends (for internal use with flat coordinates).\n */\n function Polygon(coordinates, opt_layout, opt_ends) {\n var _this = _super.call(this) || this;\n /**\n * @type {Array<number>}\n * @private\n */\n _this.ends_ = [];\n /**\n * @private\n * @type {number}\n */\n _this.flatInteriorPointRevision_ = -1;\n /**\n * @private\n * @type {import(\"../coordinate.js\").Coordinate}\n */\n _this.flatInteriorPoint_ = null;\n /**\n * @private\n * @type {number}\n */\n _this.maxDelta_ = -1;\n /**\n * @private\n * @type {number}\n */\n _this.maxDeltaRevision_ = -1;\n /**\n * @private\n * @type {number}\n */\n _this.orientedRevision_ = -1;\n /**\n * @private\n * @type {Array<number>}\n */\n _this.orientedFlatCoordinates_ = null;\n if (opt_layout !== undefined && opt_ends) {\n _this.setFlatCoordinates(opt_layout, \n /** @type {Array<number>} */ (coordinates));\n _this.ends_ = opt_ends;\n }\n else {\n _this.setCoordinates(\n /** @type {Array<Array<import(\"../coordinate.js\").Coordinate>>} */ (coordinates), opt_layout);\n }\n return _this;\n }\n /**\n * Append the passed linear ring to this polygon.\n * @param {LinearRing} linearRing Linear ring.\n * @api\n */\n Polygon.prototype.appendLinearRing = function (linearRing) {\n if (!this.flatCoordinates) {\n this.flatCoordinates = linearRing.getFlatCoordinates().slice();\n }\n else {\n extend(this.flatCoordinates, linearRing.getFlatCoordinates());\n }\n this.ends_.push(this.flatCoordinates.length);\n this.changed();\n };\n /**\n * Make a complete copy of the geometry.\n * @return {!Polygon} Clone.\n * @api\n */\n Polygon.prototype.clone = function () {\n var polygon = new Polygon(this.flatCoordinates.slice(), this.layout, this.ends_.slice());\n polygon.applyProperties(this);\n return polygon;\n };\n /**\n * @param {number} x X.\n * @param {number} y Y.\n * @param {import(\"../coordinate.js\").Coordinate} closestPoint Closest point.\n * @param {number} minSquaredDistance Minimum squared distance.\n * @return {number} Minimum squared distance.\n */\n Polygon.prototype.closestPointXY = function (x, y, closestPoint, minSquaredDistance) {\n if (minSquaredDistance < closestSquaredDistanceXY(this.getExtent(), x, y)) {\n return minSquaredDistance;\n }\n if (this.maxDeltaRevision_ != this.getRevision()) {\n this.maxDelta_ = Math.sqrt(arrayMaxSquaredDelta(this.flatCoordinates, 0, this.ends_, this.stride, 0));\n this.maxDeltaRevision_ = this.getRevision();\n }\n return assignClosestArrayPoint(this.flatCoordinates, 0, this.ends_, this.stride, this.maxDelta_, true, x, y, closestPoint, minSquaredDistance);\n };\n /**\n * @param {number} x X.\n * @param {number} y Y.\n * @return {boolean} Contains (x, y).\n */\n Polygon.prototype.containsXY = function (x, y) {\n return linearRingsContainsXY(this.getOrientedFlatCoordinates(), 0, this.ends_, this.stride, x, y);\n };\n /**\n * Return the area of the polygon on projected plane.\n * @return {number} Area (on projected plane).\n * @api\n */\n Polygon.prototype.getArea = function () {\n return linearRingsArea(this.getOrientedFlatCoordinates(), 0, this.ends_, this.stride);\n };\n /**\n * Get the coordinate array for this geometry. This array has the structure\n * of a GeoJSON coordinate array for polygons.\n *\n * @param {boolean} [opt_right] Orient coordinates according to the right-hand\n * rule (counter-clockwise for exterior and clockwise for interior rings).\n * If `false`, coordinates will be oriented according to the left-hand rule\n * (clockwise for exterior and counter-clockwise for interior rings).\n * By default, coordinate orientation will depend on how the geometry was\n * constructed.\n * @return {Array<Array<import(\"../coordinate.js\").Coordinate>>} Coordinates.\n * @api\n */\n Polygon.prototype.getCoordinates = function (opt_right) {\n var flatCoordinates;\n if (opt_right !== undefined) {\n flatCoordinates = this.getOrientedFlatCoordinates().slice();\n orientLinearRings(flatCoordinates, 0, this.ends_, this.stride, opt_right);\n }\n else {\n flatCoordinates = this.flatCoordinates;\n }\n return inflateCoordinatesArray(flatCoordinates, 0, this.ends_, this.stride);\n };\n /**\n * @return {Array<number>} Ends.\n */\n Polygon.prototype.getEnds = function () {\n return this.ends_;\n };\n /**\n * @return {Array<number>} Interior point.\n */\n Polygon.prototype.getFlatInteriorPoint = function () {\n if (this.flatInteriorPointRevision_ != this.getRevision()) {\n var flatCenter = getCenter(this.getExtent());\n this.flatInteriorPoint_ = getInteriorPointOfArray(this.getOrientedFlatCoordinates(), 0, this.ends_, this.stride, flatCenter, 0);\n this.flatInteriorPointRevision_ = this.getRevision();\n }\n return this.flatInteriorPoint_;\n };\n /**\n * Return an interior point of the polygon.\n * @return {Point} Interior point as XYM coordinate, where M is the\n * length of the horizontal intersection that the point belongs to.\n * @api\n */\n Polygon.prototype.getInteriorPoint = function () {\n return new Point(this.getFlatInteriorPoint(), GeometryLayout.XYM);\n };\n /**\n * Return the number of rings of the polygon, this includes the exterior\n * ring and any interior rings.\n *\n * @return {number} Number of rings.\n * @api\n */\n Polygon.prototype.getLinearRingCount = function () {\n return this.ends_.length;\n };\n /**\n * Return the Nth linear ring of the polygon geometry. Return `null` if the\n * given index is out of range.\n * The exterior linear ring is available at index `0` and the interior rings\n * at index `1` and beyond.\n *\n * @param {number} index Index.\n * @return {LinearRing|null} Linear ring.\n * @api\n */\n Polygon.prototype.getLinearRing = function (index) {\n if (index < 0 || this.ends_.length <= index) {\n return null;\n }\n return new LinearRing(this.flatCoordinates.slice(index === 0 ? 0 : this.ends_[index - 1], this.ends_[index]), this.layout);\n };\n /**\n * Return the linear rings of the polygon.\n * @return {Array<LinearRing>} Linear rings.\n * @api\n */\n Polygon.prototype.getLinearRings = function () {\n var layout = this.layout;\n var flatCoordinates = this.flatCoordinates;\n var ends = this.ends_;\n var linearRings = [];\n var offset = 0;\n for (var i = 0, ii = ends.length; i < ii; ++i) {\n var end = ends[i];\n var linearRing = new LinearRing(flatCoordinates.slice(offset, end), layout);\n linearRings.push(linearRing);\n offset = end;\n }\n return linearRings;\n };\n /**\n * @return {Array<number>} Oriented flat coordinates.\n */\n Polygon.prototype.getOrientedFlatCoordinates = function () {\n if (this.orientedRevision_ != this.getRevision()) {\n var flatCoordinates = this.flatCoordinates;\n if (linearRingsAreOriented(flatCoordinates, 0, this.ends_, this.stride)) {\n this.orientedFlatCoordinates_ = flatCoordinates;\n }\n else {\n this.orientedFlatCoordinates_ = flatCoordinates.slice();\n this.orientedFlatCoordinates_.length = orientLinearRings(this.orientedFlatCoordinates_, 0, this.ends_, this.stride);\n }\n this.orientedRevision_ = this.getRevision();\n }\n return this.orientedFlatCoordinates_;\n };\n /**\n * @param {number} squaredTolerance Squared tolerance.\n * @return {Polygon} Simplified Polygon.\n * @protected\n */\n Polygon.prototype.getSimplifiedGeometryInternal = function (squaredTolerance) {\n var simplifiedFlatCoordinates = [];\n var simplifiedEnds = [];\n simplifiedFlatCoordinates.length = quantizeArray(this.flatCoordinates, 0, this.ends_, this.stride, Math.sqrt(squaredTolerance), simplifiedFlatCoordinates, 0, simplifiedEnds);\n return new Polygon(simplifiedFlatCoordinates, GeometryLayout.XY, simplifiedEnds);\n };\n /**\n * Get the type of this geometry.\n * @return {import(\"./GeometryType.js\").default} Geometry type.\n * @api\n */\n Polygon.prototype.getType = function () {\n return GeometryType.POLYGON;\n };\n /**\n * Test if the geometry and the passed extent intersect.\n * @param {import(\"../extent.js\").Extent} extent Extent.\n * @return {boolean} `true` if the geometry and the extent intersect.\n * @api\n */\n Polygon.prototype.intersectsExtent = function (extent) {\n return intersectsLinearRingArray(this.getOrientedFlatCoordinates(), 0, this.ends_, this.stride, extent);\n };\n /**\n * Set the coordinates of the polygon.\n * @param {!Array<Array<import(\"../coordinate.js\").Coordinate>>} coordinates Coordinates.\n * @param {import(\"./GeometryLayout.js\").default} [opt_layout] Layout.\n * @api\n */\n Polygon.prototype.setCoordinates = function (coordinates, opt_layout) {\n this.setLayout(opt_layout, coordinates, 2);\n if (!this.flatCoordinates) {\n this.flatCoordinates = [];\n }\n var ends = deflateCoordinatesArray(this.flatCoordinates, 0, coordinates, this.stride, this.ends_);\n this.flatCoordinates.length = ends.length === 0 ? 0 : ends[ends.length - 1];\n this.changed();\n };\n return Polygon;\n}(SimpleGeometry));\nexport default Polygon;\n/**\n * Create an approximation of a circle on the surface of a sphere.\n * @param {import(\"../coordinate.js\").Coordinate} center Center (`[lon, lat]` in degrees).\n * @param {number} radius The great-circle distance from the center to\n * the polygon vertices in meters.\n * @param {number} [opt_n] Optional number of vertices for the resulting\n * polygon. Default is `32`.\n * @param {number} [opt_sphereRadius] Optional radius for the sphere (defaults to\n * the Earth's mean radius using the WGS84 ellipsoid).\n * @return {Polygon} The \"circular\" polygon.\n * @api\n */\nexport function circular(center, radius, opt_n, opt_sphereRadius) {\n var n = opt_n ? opt_n : 32;\n /** @type {Array<number>} */\n var flatCoordinates = [];\n for (var i = 0; i < n; ++i) {\n extend(flatCoordinates, sphereOffset(center, radius, (2 * Math.PI * i) / n, opt_sphereRadius));\n }\n flatCoordinates.push(flatCoordinates[0], flatCoordinates[1]);\n return new Polygon(flatCoordinates, GeometryLayout.XY, [\n flatCoordinates.length,\n ]);\n}\n/**\n * Create a polygon from an extent. The layout used is `XY`.\n * @param {import(\"../extent.js\").Extent} extent The extent.\n * @return {Polygon} The polygon.\n * @api\n */\nexport function fromExtent(extent) {\n var minX = extent[0];\n var minY = extent[1];\n var maxX = extent[2];\n var maxY = extent[3];\n var flatCoordinates = [\n minX,\n minY,\n minX,\n maxY,\n maxX,\n maxY,\n maxX,\n minY,\n minX,\n minY,\n ];\n return new Polygon(flatCoordinates, GeometryLayout.XY, [\n flatCoordinates.length,\n ]);\n}\n/**\n * Create a regular polygon from a circle.\n * @param {import(\"./Circle.js\").default} circle Circle geometry.\n * @param {number} [opt_sides] Number of sides of the polygon. Default is 32.\n * @param {number} [opt_angle] Start angle for the first vertex of the polygon in\n * counter-clockwise radians. 0 means East. Default is 0.\n * @return {Polygon} Polygon geometry.\n * @api\n */\nexport function fromCircle(circle, opt_sides, opt_angle) {\n var sides = opt_sides ? opt_sides : 32;\n var stride = circle.getStride();\n var layout = circle.getLayout();\n var center = circle.getCenter();\n var arrayLength = stride * (sides + 1);\n var flatCoordinates = new Array(arrayLength);\n for (var i = 0; i < arrayLength; i += stride) {\n flatCoordinates[i] = 0;\n flatCoordinates[i + 1] = 0;\n for (var j = 2; j < stride; j++) {\n flatCoordinates[i + j] = center[j];\n }\n }\n var ends = [flatCoordinates.length];\n var polygon = new Polygon(flatCoordinates, layout, ends);\n makeRegular(polygon, center, circle.getRadius(), opt_angle);\n return polygon;\n}\n/**\n * Modify the coordinates of a polygon to make it a regular polygon.\n * @param {Polygon} polygon Polygon geometry.\n * @param {import(\"../coordinate.js\").Coordinate} center Center of the regular polygon.\n * @param {number} radius Radius of the regular polygon.\n * @param {number} [opt_angle] Start angle for the first vertex of the polygon in\n * counter-clockwise radians. 0 means East. Default is 0.\n */\nexport function makeRegular(polygon, center, radius, opt_angle) {\n var flatCoordinates = polygon.getFlatCoordinates();\n var stride = polygon.getStride();\n var sides = flatCoordinates.length / stride - 1;\n var startAngle = opt_angle ? opt_angle : 0;\n for (var i = 0; i <= sides; ++i) {\n var offset = i * stride;\n var angle = startAngle + (modulo(i, sides) * 2 * Math.PI) / sides;\n flatCoordinates[offset] = center[0] + radius * Math.cos(angle);\n flatCoordinates[offset + 1] = center[1] + radius * Math.sin(angle);\n }\n polygon.changed();\n}\n//# sourceMappingURL=Polygon.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/geom/MultiPolygon\n */\nimport GeometryLayout from './GeometryLayout.js';\nimport GeometryType from './GeometryType.js';\nimport MultiPoint from './MultiPoint.js';\nimport Polygon from './Polygon.js';\nimport SimpleGeometry from './SimpleGeometry.js';\nimport { assignClosestMultiArrayPoint, multiArrayMaxSquaredDelta, } from './flat/closest.js';\nimport { closestSquaredDistanceXY } from '../extent.js';\nimport { deflateMultiCoordinatesArray } from './flat/deflate.js';\nimport { extend } from '../array.js';\nimport { getInteriorPointsOfMultiArray } from './flat/interiorpoint.js';\nimport { inflateMultiCoordinatesArray } from './flat/inflate.js';\nimport { intersectsLinearRingMultiArray } from './flat/intersectsextent.js';\nimport { linearRingssAreOriented, orientLinearRingsArray, } from './flat/orient.js';\nimport { linearRingss as linearRingssArea } from './flat/area.js';\nimport { linearRingss as linearRingssCenter } from './flat/center.js';\nimport { linearRingssContainsXY } from './flat/contains.js';\nimport { quantizeMultiArray } from './flat/simplify.js';\n/**\n * @classdesc\n * Multi-polygon geometry.\n *\n * @api\n */\nvar MultiPolygon = /** @class */ (function (_super) {\n __extends(MultiPolygon, _super);\n /**\n * @param {Array<Array<Array<import(\"../coordinate.js\").Coordinate>>|Polygon>|Array<number>} coordinates Coordinates.\n * For internal use, flat coordinates in combination with `opt_layout` and `opt_endss` are also accepted.\n * @param {import(\"./GeometryLayout.js\").default} [opt_layout] Layout.\n * @param {Array<Array<number>>} [opt_endss] Array of ends for internal use with flat coordinates.\n */\n function MultiPolygon(coordinates, opt_layout, opt_endss) {\n var _this = _super.call(this) || this;\n /**\n * @type {Array<Array<number>>}\n * @private\n */\n _this.endss_ = [];\n /**\n * @private\n * @type {number}\n */\n _this.flatInteriorPointsRevision_ = -1;\n /**\n * @private\n * @type {Array<number>}\n */\n _this.flatInteriorPoints_ = null;\n /**\n * @private\n * @type {number}\n */\n _this.maxDelta_ = -1;\n /**\n * @private\n * @type {number}\n */\n _this.maxDeltaRevision_ = -1;\n /**\n * @private\n * @type {number}\n */\n _this.orientedRevision_ = -1;\n /**\n * @private\n * @type {Array<number>}\n */\n _this.orientedFlatCoordinates_ = null;\n if (!opt_endss && !Array.isArray(coordinates[0])) {\n var layout = _this.getLayout();\n var polygons = /** @type {Array<Polygon>} */ (coordinates);\n var flatCoordinates = [];\n var endss = [];\n for (var i = 0, ii = polygons.length; i < ii; ++i) {\n var polygon = polygons[i];\n if (i === 0) {\n layout = polygon.getLayout();\n }\n var offset = flatCoordinates.length;\n var ends = polygon.getEnds();\n for (var j = 0, jj = ends.length; j < jj; ++j) {\n ends[j] += offset;\n }\n extend(flatCoordinates, polygon.getFlatCoordinates());\n endss.push(ends);\n }\n opt_layout = layout;\n coordinates = flatCoordinates;\n opt_endss = endss;\n }\n if (opt_layout !== undefined && opt_endss) {\n _this.setFlatCoordinates(opt_layout, \n /** @type {Array<number>} */ (coordinates));\n _this.endss_ = opt_endss;\n }\n else {\n _this.setCoordinates(\n /** @type {Array<Array<Array<import(\"../coordinate.js\").Coordinate>>>} */ (coordinates), opt_layout);\n }\n return _this;\n }\n /**\n * Append the passed polygon to this multipolygon.\n * @param {Polygon} polygon Polygon.\n * @api\n */\n MultiPolygon.prototype.appendPolygon = function (polygon) {\n /** @type {Array<number>} */\n var ends;\n if (!this.flatCoordinates) {\n this.flatCoordinates = polygon.getFlatCoordinates().slice();\n ends = polygon.getEnds().slice();\n this.endss_.push();\n }\n else {\n var offset = this.flatCoordinates.length;\n extend(this.flatCoordinates, polygon.getFlatCoordinates());\n ends = polygon.getEnds().slice();\n for (var i = 0, ii = ends.length; i < ii; ++i) {\n ends[i] += offset;\n }\n }\n this.endss_.push(ends);\n this.changed();\n };\n /**\n * Make a complete copy of the geometry.\n * @return {!MultiPolygon} Clone.\n * @api\n */\n MultiPolygon.prototype.clone = function () {\n var len = this.endss_.length;\n var newEndss = new Array(len);\n for (var i = 0; i < len; ++i) {\n newEndss[i] = this.endss_[i].slice();\n }\n var multiPolygon = new MultiPolygon(this.flatCoordinates.slice(), this.layout, newEndss);\n multiPolygon.applyProperties(this);\n return multiPolygon;\n };\n /**\n * @param {number} x X.\n * @param {number} y Y.\n * @param {import(\"../coordinate.js\").Coordinate} closestPoint Closest point.\n * @param {number} minSquaredDistance Minimum squared distance.\n * @return {number} Minimum squared distance.\n */\n MultiPolygon.prototype.closestPointXY = function (x, y, closestPoint, minSquaredDistance) {\n if (minSquaredDistance < closestSquaredDistanceXY(this.getExtent(), x, y)) {\n return minSquaredDistance;\n }\n if (this.maxDeltaRevision_ != this.getRevision()) {\n this.maxDelta_ = Math.sqrt(multiArrayMaxSquaredDelta(this.flatCoordinates, 0, this.endss_, this.stride, 0));\n this.maxDeltaRevision_ = this.getRevision();\n }\n return assignClosestMultiArrayPoint(this.getOrientedFlatCoordinates(), 0, this.endss_, this.stride, this.maxDelta_, true, x, y, closestPoint, minSquaredDistance);\n };\n /**\n * @param {number} x X.\n * @param {number} y Y.\n * @return {boolean} Contains (x, y).\n */\n MultiPolygon.prototype.containsXY = function (x, y) {\n return linearRingssContainsXY(this.getOrientedFlatCoordinates(), 0, this.endss_, this.stride, x, y);\n };\n /**\n * Return the area of the multipolygon on projected plane.\n * @return {number} Area (on projected plane).\n * @api\n */\n MultiPolygon.prototype.getArea = function () {\n return linearRingssArea(this.getOrientedFlatCoordinates(), 0, this.endss_, this.stride);\n };\n /**\n * Get the coordinate array for this geometry. This array has the structure\n * of a GeoJSON coordinate array for multi-polygons.\n *\n * @param {boolean} [opt_right] Orient coordinates according to the right-hand\n * rule (counter-clockwise for exterior and clockwise for interior rings).\n * If `false`, coordinates will be oriented according to the left-hand rule\n * (clockwise for exterior and counter-clockwise for interior rings).\n * By default, coordinate orientation will depend on how the geometry was\n * constructed.\n * @return {Array<Array<Array<import(\"../coordinate.js\").Coordinate>>>} Coordinates.\n * @api\n */\n MultiPolygon.prototype.getCoordinates = function (opt_right) {\n var flatCoordinates;\n if (opt_right !== undefined) {\n flatCoordinates = this.getOrientedFlatCoordinates().slice();\n orientLinearRingsArray(flatCoordinates, 0, this.endss_, this.stride, opt_right);\n }\n else {\n flatCoordinates = this.flatCoordinates;\n }\n return inflateMultiCoordinatesArray(flatCoordinates, 0, this.endss_, this.stride);\n };\n /**\n * @return {Array<Array<number>>} Endss.\n */\n MultiPolygon.prototype.getEndss = function () {\n return this.endss_;\n };\n /**\n * @return {Array<number>} Flat interior points.\n */\n MultiPolygon.prototype.getFlatInteriorPoints = function () {\n if (this.flatInteriorPointsRevision_ != this.getRevision()) {\n var flatCenters = linearRingssCenter(this.flatCoordinates, 0, this.endss_, this.stride);\n this.flatInteriorPoints_ = getInteriorPointsOfMultiArray(this.getOrientedFlatCoordinates(), 0, this.endss_, this.stride, flatCenters);\n this.flatInteriorPointsRevision_ = this.getRevision();\n }\n return this.flatInteriorPoints_;\n };\n /**\n * Return the interior points as {@link module:ol/geom/MultiPoint~MultiPoint multipoint}.\n * @return {MultiPoint} Interior points as XYM coordinates, where M is\n * the length of the horizontal intersection that the point belongs to.\n * @api\n */\n MultiPolygon.prototype.getInteriorPoints = function () {\n return new MultiPoint(this.getFlatInteriorPoints().slice(), GeometryLayout.XYM);\n };\n /**\n * @return {Array<number>} Oriented flat coordinates.\n */\n MultiPolygon.prototype.getOrientedFlatCoordinates = function () {\n if (this.orientedRevision_ != this.getRevision()) {\n var flatCoordinates = this.flatCoordinates;\n if (linearRingssAreOriented(flatCoordinates, 0, this.endss_, this.stride)) {\n this.orientedFlatCoordinates_ = flatCoordinates;\n }\n else {\n this.orientedFlatCoordinates_ = flatCoordinates.slice();\n this.orientedFlatCoordinates_.length = orientLinearRingsArray(this.orientedFlatCoordinates_, 0, this.endss_, this.stride);\n }\n this.orientedRevision_ = this.getRevision();\n }\n return this.orientedFlatCoordinates_;\n };\n /**\n * @param {number} squaredTolerance Squared tolerance.\n * @return {MultiPolygon} Simplified MultiPolygon.\n * @protected\n */\n MultiPolygon.prototype.getSimplifiedGeometryInternal = function (squaredTolerance) {\n var simplifiedFlatCoordinates = [];\n var simplifiedEndss = [];\n simplifiedFlatCoordinates.length = quantizeMultiArray(this.flatCoordinates, 0, this.endss_, this.stride, Math.sqrt(squaredTolerance), simplifiedFlatCoordinates, 0, simplifiedEndss);\n return new MultiPolygon(simplifiedFlatCoordinates, GeometryLayout.XY, simplifiedEndss);\n };\n /**\n * Return the polygon at the specified index.\n * @param {number} index Index.\n * @return {Polygon} Polygon.\n * @api\n */\n MultiPolygon.prototype.getPolygon = function (index) {\n if (index < 0 || this.endss_.length <= index) {\n return null;\n }\n var offset;\n if (index === 0) {\n offset = 0;\n }\n else {\n var prevEnds = this.endss_[index - 1];\n offset = prevEnds[prevEnds.length - 1];\n }\n var ends = this.endss_[index].slice();\n var end = ends[ends.length - 1];\n if (offset !== 0) {\n for (var i = 0, ii = ends.length; i < ii; ++i) {\n ends[i] -= offset;\n }\n }\n return new Polygon(this.flatCoordinates.slice(offset, end), this.layout, ends);\n };\n /**\n * Return the polygons of this multipolygon.\n * @return {Array<Polygon>} Polygons.\n * @api\n */\n MultiPolygon.prototype.getPolygons = function () {\n var layout = this.layout;\n var flatCoordinates = this.flatCoordinates;\n var endss = this.endss_;\n var polygons = [];\n var offset = 0;\n for (var i = 0, ii = endss.length; i < ii; ++i) {\n var ends = endss[i].slice();\n var end = ends[ends.length - 1];\n if (offset !== 0) {\n for (var j = 0, jj = ends.length; j < jj; ++j) {\n ends[j] -= offset;\n }\n }\n var polygon = new Polygon(flatCoordinates.slice(offset, end), layout, ends);\n polygons.push(polygon);\n offset = end;\n }\n return polygons;\n };\n /**\n * Get the type of this geometry.\n * @return {import(\"./GeometryType.js\").default} Geometry type.\n * @api\n */\n MultiPolygon.prototype.getType = function () {\n return GeometryType.MULTI_POLYGON;\n };\n /**\n * Test if the geometry and the passed extent intersect.\n * @param {import(\"../extent.js\").Extent} extent Extent.\n * @return {boolean} `true` if the geometry and the extent intersect.\n * @api\n */\n MultiPolygon.prototype.intersectsExtent = function (extent) {\n return intersectsLinearRingMultiArray(this.getOrientedFlatCoordinates(), 0, this.endss_, this.stride, extent);\n };\n /**\n * Set the coordinates of the multipolygon.\n * @param {!Array<Array<Array<import(\"../coordinate.js\").Coordinate>>>} coordinates Coordinates.\n * @param {import(\"./GeometryLayout.js\").default} [opt_layout] Layout.\n * @api\n */\n MultiPolygon.prototype.setCoordinates = function (coordinates, opt_layout) {\n this.setLayout(opt_layout, coordinates, 3);\n if (!this.flatCoordinates) {\n this.flatCoordinates = [];\n }\n var endss = deflateMultiCoordinatesArray(this.flatCoordinates, 0, coordinates, this.stride, this.endss_);\n if (endss.length === 0) {\n this.flatCoordinates.length = 0;\n }\n else {\n var lastEnds = endss[endss.length - 1];\n this.flatCoordinates.length =\n lastEnds.length === 0 ? 0 : lastEnds[lastEnds.length - 1];\n }\n this.changed();\n };\n return MultiPolygon;\n}(SimpleGeometry));\nexport default MultiPolygon;\n//# sourceMappingURL=MultiPolygon.js.map","/**\n * @module ol/geom/flat/center\n */\nimport { createEmpty, createOrUpdateFromFlatCoordinates } from '../../extent.js';\n/**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {Array<Array<number>>} endss Endss.\n * @param {number} stride Stride.\n * @return {Array<number>} Flat centers.\n */\nexport function linearRingss(flatCoordinates, offset, endss, stride) {\n var flatCenters = [];\n var extent = createEmpty();\n for (var i = 0, ii = endss.length; i < ii; ++i) {\n var ends = endss[i];\n extent = createOrUpdateFromFlatCoordinates(flatCoordinates, offset, ends[0], stride);\n flatCenters.push((extent[0] + extent[2]) / 2, (extent[1] + extent[3]) / 2);\n offset = ends[ends.length - 1];\n }\n return flatCenters;\n}\n//# sourceMappingURL=center.js.map","/**\n * @module ol/layer/TileProperty\n */\n/**\n * @enum {string}\n */\nexport default {\n PRELOAD: 'preload',\n USE_INTERIM_TILES_ON_ERROR: 'useInterimTilesOnError',\n};\n//# sourceMappingURL=TileProperty.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/layer/BaseTile\n */\nimport Layer from './Layer.js';\nimport TileProperty from './TileProperty.js';\nimport { assign } from '../obj.js';\n/***\n * @template Return\n * @typedef {import(\"../Observable\").OnSignature<import(\"../Observable\").EventTypes, import(\"../events/Event.js\").default, Return> &\n * import(\"../Observable\").OnSignature<import(\"./Base\").BaseLayerObjectEventTypes|\n * 'change:source'|'change:preload'|'change:useInterimTilesOnError', import(\"../Object\").ObjectEvent, Return> &\n * import(\"../Observable\").OnSignature<import(\"../render/EventType\").LayerRenderEventTypes, import(\"../render/Event\").default, Return> &\n * import(\"../Observable\").CombinedOnSignature<import(\"../Observable\").EventTypes|import(\"./Base\").BaseLayerObjectEventTypes|\n * 'change:source'|'change:preload'|'change:useInterimTilesOnError'|import(\"../render/EventType\").LayerRenderEventTypes, Return>} BaseTileLayerOnSignature\n */\n/**\n * @template {import(\"../source/Tile.js\").default} TileSourceType\n * @typedef {Object} Options\n * @property {string} [className='ol-layer'] A CSS class name to set to the layer element.\n * @property {number} [opacity=1] Opacity (0, 1).\n * @property {boolean} [visible=true] Visibility.\n * @property {import(\"../extent.js\").Extent} [extent] The bounding extent for layer rendering. The layer will not be\n * rendered outside of this extent.\n * @property {number} [zIndex] The z-index for layer rendering. At rendering time, the layers\n * will be ordered, first by Z-index and then by position. When `undefined`, a `zIndex` of 0 is assumed\n * for layers that are added to the map's `layers` collection, or `Infinity` when the layer's `setMap()`\n * method was used.\n * @property {number} [minResolution] The minimum resolution (inclusive) at which this layer will be\n * visible.\n * @property {number} [maxResolution] The maximum resolution (exclusive) below which this layer will\n * be visible.\n * @property {number} [minZoom] The minimum view zoom level (exclusive) above which this layer will be\n * visible.\n * @property {number} [maxZoom] The maximum view zoom level (inclusive) at which this layer will\n * be visible.\n * @property {number} [preload=0] Preload. Load low-resolution tiles up to `preload` levels. `0`\n * means no preloading.\n * @property {TileSourceType} [source] Source for this layer.\n * @property {import(\"../PluggableMap.js\").default} [map] Sets the layer as overlay on a map. The map will not manage\n * this layer in its layers collection, and the layer will be rendered on top. This is useful for\n * temporary layers. The standard way to add a layer to a map and have it managed by the map is to\n * use {@link import(\"../PluggableMap.js\").default#addLayer map.addLayer()}.\n * @property {boolean} [useInterimTilesOnError=true] Use interim tiles on error.\n * @property {Object<string, *>} [properties] Arbitrary observable properties. Can be accessed with `#get()` and `#set()`.\n */\n/**\n * @classdesc\n * For layer sources that provide pre-rendered, tiled images in grids that are\n * organized by zoom levels for specific resolutions.\n * Note that any property set in the options is set as a {@link module:ol/Object~BaseObject}\n * property on the layer object; for example, setting `title: 'My Title'` in the\n * options means that `title` is observable, and has get/set accessors.\n *\n * @template {import(\"../source/Tile.js\").default} TileSourceType\n * @template {import(\"../renderer/Layer.js\").default} RendererType\n * @extends {Layer<TileSourceType, RendererType>}\n * @api\n */\nvar BaseTileLayer = /** @class */ (function (_super) {\n __extends(BaseTileLayer, _super);\n /**\n * @param {Options<TileSourceType>} [opt_options] Tile layer options.\n */\n function BaseTileLayer(opt_options) {\n var _this = this;\n var options = opt_options ? opt_options : {};\n var baseOptions = assign({}, options);\n delete baseOptions.preload;\n delete baseOptions.useInterimTilesOnError;\n _this = _super.call(this, baseOptions) || this;\n /***\n * @type {BaseTileLayerOnSignature<import(\"../events\").EventsKey>}\n */\n _this.on;\n /***\n * @type {BaseTileLayerOnSignature<import(\"../events\").EventsKey>}\n */\n _this.once;\n /***\n * @type {BaseTileLayerOnSignature<void>}\n */\n _this.un;\n _this.setPreload(options.preload !== undefined ? options.preload : 0);\n _this.setUseInterimTilesOnError(options.useInterimTilesOnError !== undefined\n ? options.useInterimTilesOnError\n : true);\n return _this;\n }\n /**\n * Return the level as number to which we will preload tiles up to.\n * @return {number} The level to preload tiles up to.\n * @observable\n * @api\n */\n BaseTileLayer.prototype.getPreload = function () {\n return /** @type {number} */ (this.get(TileProperty.PRELOAD));\n };\n /**\n * Set the level as number to which we will preload tiles up to.\n * @param {number} preload The level to preload tiles up to.\n * @observable\n * @api\n */\n BaseTileLayer.prototype.setPreload = function (preload) {\n this.set(TileProperty.PRELOAD, preload);\n };\n /**\n * Whether we use interim tiles on error.\n * @return {boolean} Use interim tiles on error.\n * @observable\n * @api\n */\n BaseTileLayer.prototype.getUseInterimTilesOnError = function () {\n return /** @type {boolean} */ (this.get(TileProperty.USE_INTERIM_TILES_ON_ERROR));\n };\n /**\n * Set whether we use interim tiles on error.\n * @param {boolean} useInterimTilesOnError Use interim tiles on error.\n * @observable\n * @api\n */\n BaseTileLayer.prototype.setUseInterimTilesOnError = function (useInterimTilesOnError) {\n this.set(TileProperty.USE_INTERIM_TILES_ON_ERROR, useInterimTilesOnError);\n };\n /**\n * Get data for a pixel location. The return type depends on the source data. For image tiles,\n * a four element RGBA array will be returned. For data tiles, the array length will match the\n * number of bands in the dataset. For requests outside the layer extent, `null` will be returned.\n * Data for a image tiles can only be retrieved if the source's `crossOrigin` property is set.\n *\n * ```js\n * // display layer data on every pointer move\n * map.on('pointermove', (event) => {\n * console.log(layer.getData(event.pixel));\n * });\n * ```\n * @param {import(\"../pixel\").Pixel} pixel Pixel.\n * @return {Uint8ClampedArray|Uint8Array|Float32Array|DataView|null} Pixel data.\n * @api\n */\n BaseTileLayer.prototype.getData = function (pixel) {\n return _super.prototype.getData.call(this, pixel);\n };\n return BaseTileLayer;\n}(Layer));\nexport default BaseTileLayer;\n//# sourceMappingURL=BaseTile.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/renderer/Layer\n */\nimport EventType from '../events/EventType.js';\nimport ImageState from '../ImageState.js';\nimport Observable from '../Observable.js';\nimport SourceState from '../source/State.js';\nimport { abstract } from '../util.js';\n/**\n * @template {import(\"../layer/Layer.js\").default} LayerType\n */\nvar LayerRenderer = /** @class */ (function (_super) {\n __extends(LayerRenderer, _super);\n /**\n * @param {LayerType} layer Layer.\n */\n function LayerRenderer(layer) {\n var _this = _super.call(this) || this;\n /**\n * The renderer is initialized and ready to render.\n * @type {boolean}\n */\n _this.ready = true;\n /** @private */\n _this.boundHandleImageChange_ = _this.handleImageChange_.bind(_this);\n /**\n * @protected\n * @type {LayerType}\n */\n _this.layer_ = layer;\n /**\n * @type {import(\"../render/canvas/ExecutorGroup\").default}\n */\n _this.declutterExecutorGroup = null;\n return _this;\n }\n /**\n * Asynchronous layer level hit detection.\n * @param {import(\"../pixel.js\").Pixel} pixel Pixel.\n * @return {Promise<Array<import(\"../Feature\").default>>} Promise that resolves with\n * an array of features.\n */\n LayerRenderer.prototype.getFeatures = function (pixel) {\n return abstract();\n };\n /**\n * @param {import(\"../pixel.js\").Pixel} pixel Pixel.\n * @return {Uint8ClampedArray|Uint8Array|Float32Array|DataView|null} Pixel data.\n */\n LayerRenderer.prototype.getData = function (pixel) {\n return null;\n };\n /**\n * Determine whether render should be called.\n * @abstract\n * @param {import(\"../PluggableMap.js\").FrameState} frameState Frame state.\n * @return {boolean} Layer is ready to be rendered.\n */\n LayerRenderer.prototype.prepareFrame = function (frameState) {\n return abstract();\n };\n /**\n * Render the layer.\n * @abstract\n * @param {import(\"../PluggableMap.js\").FrameState} frameState Frame state.\n * @param {HTMLElement} target Target that may be used to render content to.\n * @return {HTMLElement} The rendered element.\n */\n LayerRenderer.prototype.renderFrame = function (frameState, target) {\n return abstract();\n };\n /**\n * @param {Object<number, Object<string, import(\"../Tile.js\").default>>} tiles Lookup of loaded tiles by zoom level.\n * @param {number} zoom Zoom level.\n * @param {import(\"../Tile.js\").default} tile Tile.\n * @return {boolean|void} If `false`, the tile will not be considered loaded.\n */\n LayerRenderer.prototype.loadedTileCallback = function (tiles, zoom, tile) {\n if (!tiles[zoom]) {\n tiles[zoom] = {};\n }\n tiles[zoom][tile.tileCoord.toString()] = tile;\n return undefined;\n };\n /**\n * Create a function that adds loaded tiles to the tile lookup.\n * @param {import(\"../source/Tile.js\").default} source Tile source.\n * @param {import(\"../proj/Projection.js\").default} projection Projection of the tiles.\n * @param {Object<number, Object<string, import(\"../Tile.js\").default>>} tiles Lookup of loaded tiles by zoom level.\n * @return {function(number, import(\"../TileRange.js\").default):boolean} A function that can be\n * called with a zoom level and a tile range to add loaded tiles to the lookup.\n * @protected\n */\n LayerRenderer.prototype.createLoadedTileFinder = function (source, projection, tiles) {\n return (\n /**\n * @param {number} zoom Zoom level.\n * @param {import(\"../TileRange.js\").default} tileRange Tile range.\n * @return {boolean} The tile range is fully loaded.\n * @this {LayerRenderer}\n */\n function (zoom, tileRange) {\n var callback = this.loadedTileCallback.bind(this, tiles, zoom);\n return source.forEachLoadedTile(projection, zoom, tileRange, callback);\n }.bind(this));\n };\n /**\n * @abstract\n * @param {import(\"../coordinate.js\").Coordinate} coordinate Coordinate.\n * @param {import(\"../PluggableMap.js\").FrameState} frameState Frame state.\n * @param {number} hitTolerance Hit tolerance in pixels.\n * @param {import(\"./vector.js\").FeatureCallback<T>} callback Feature callback.\n * @param {Array<import(\"./Map.js\").HitMatch<T>>} matches The hit detected matches with tolerance.\n * @return {T|undefined} Callback result.\n * @template T\n */\n LayerRenderer.prototype.forEachFeatureAtCoordinate = function (coordinate, frameState, hitTolerance, callback, matches) {\n return undefined;\n };\n /**\n * @abstract\n * @param {import(\"../pixel.js\").Pixel} pixel Pixel.\n * @param {import(\"../PluggableMap.js\").FrameState} frameState FrameState.\n * @param {number} hitTolerance Hit tolerance in pixels.\n * @return {Uint8ClampedArray|Uint8Array} The result. If there is no data at the pixel\n * location, null will be returned. If there is data, but pixel values cannot be\n * returned, and empty array will be returned.\n */\n LayerRenderer.prototype.getDataAtPixel = function (pixel, frameState, hitTolerance) {\n return null;\n };\n /**\n * @return {LayerType} Layer.\n */\n LayerRenderer.prototype.getLayer = function () {\n return this.layer_;\n };\n /**\n * Perform action necessary to get the layer rendered after new fonts have loaded\n * @abstract\n */\n LayerRenderer.prototype.handleFontsChanged = function () { };\n /**\n * Handle changes in image state.\n * @param {import(\"../events/Event.js\").default} event Image change event.\n * @private\n */\n LayerRenderer.prototype.handleImageChange_ = function (event) {\n var image = /** @type {import(\"../Image.js\").default} */ (event.target);\n if (image.getState() === ImageState.LOADED) {\n this.renderIfReadyAndVisible();\n }\n };\n /**\n * Load the image if not already loaded, and register the image change\n * listener if needed.\n * @param {import(\"../ImageBase.js\").default} image Image.\n * @return {boolean} `true` if the image is already loaded, `false` otherwise.\n * @protected\n */\n LayerRenderer.prototype.loadImage = function (image) {\n var imageState = image.getState();\n if (imageState != ImageState.LOADED && imageState != ImageState.ERROR) {\n image.addEventListener(EventType.CHANGE, this.boundHandleImageChange_);\n }\n if (imageState == ImageState.IDLE) {\n image.load();\n imageState = image.getState();\n }\n return imageState == ImageState.LOADED;\n };\n /**\n * @protected\n */\n LayerRenderer.prototype.renderIfReadyAndVisible = function () {\n var layer = this.getLayer();\n if (layer.getVisible() && layer.getSourceState() == SourceState.READY) {\n layer.changed();\n }\n };\n /**\n * Clean up.\n */\n LayerRenderer.prototype.disposeInternal = function () {\n delete this.layer_;\n _super.prototype.disposeInternal.call(this);\n };\n return LayerRenderer;\n}(Observable));\nexport default LayerRenderer;\n//# sourceMappingURL=Layer.js.map","/**\n * @module ol/ImageState\n */\n/**\n * @enum {number}\n */\nexport default {\n IDLE: 0,\n LOADING: 1,\n LOADED: 2,\n ERROR: 3,\n EMPTY: 4,\n};\n//# sourceMappingURL=ImageState.js.map","/**\n * @module ol/render/Event\n */\nvar __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\nimport Event from '../events/Event.js';\nvar RenderEvent = /** @class */ (function (_super) {\n __extends(RenderEvent, _super);\n /**\n * @param {import(\"./EventType.js\").default} type Type.\n * @param {import(\"../transform.js\").Transform} [opt_inversePixelTransform] Transform for\n * CSS pixels to rendered pixels.\n * @param {import(\"../PluggableMap.js\").FrameState} [opt_frameState] Frame state.\n * @param {?(CanvasRenderingContext2D|WebGLRenderingContext)} [opt_context] Context.\n */\n function RenderEvent(type, opt_inversePixelTransform, opt_frameState, opt_context) {\n var _this = _super.call(this, type) || this;\n /**\n * Transform from CSS pixels (relative to the top-left corner of the map viewport)\n * to rendered pixels on this event's `context`. Only available when a Canvas renderer is used, null otherwise.\n * @type {import(\"../transform.js\").Transform|undefined}\n * @api\n */\n _this.inversePixelTransform = opt_inversePixelTransform;\n /**\n * An object representing the current render frame state.\n * @type {import(\"../PluggableMap.js\").FrameState|undefined}\n * @api\n */\n _this.frameState = opt_frameState;\n /**\n * Canvas context. Not available when the event is dispatched by the map. For Canvas 2D layers,\n * the context will be the 2D rendering context. For WebGL layers, the context will be the WebGL\n * context.\n * @type {CanvasRenderingContext2D|WebGLRenderingContext|undefined}\n * @api\n */\n _this.context = opt_context;\n return _this;\n }\n return RenderEvent;\n}(Event));\nexport default RenderEvent;\n//# sourceMappingURL=Event.js.map","/**\n * @module ol/color\n */\nimport { assert } from './asserts.js';\nimport { clamp } from './math.js';\n/**\n * A color represented as a short array [red, green, blue, alpha].\n * red, green, and blue should be integers in the range 0..255 inclusive.\n * alpha should be a float in the range 0..1 inclusive. If no alpha value is\n * given then `1` will be used.\n * @typedef {Array<number>} Color\n * @api\n */\n/**\n * This RegExp matches # followed by 3, 4, 6, or 8 hex digits.\n * @const\n * @type {RegExp}\n * @private\n */\nvar HEX_COLOR_RE_ = /^#([a-f0-9]{3}|[a-f0-9]{4}(?:[a-f0-9]{2}){0,2})$/i;\n/**\n * Regular expression for matching potential named color style strings.\n * @const\n * @type {RegExp}\n * @private\n */\nvar NAMED_COLOR_RE_ = /^([a-z]*)$|^hsla?\\(.*\\)$/i;\n/**\n * Return the color as an rgba string.\n * @param {Color|string} color Color.\n * @return {string} Rgba string.\n * @api\n */\nexport function asString(color) {\n if (typeof color === 'string') {\n return color;\n }\n else {\n return toString(color);\n }\n}\n/**\n * Return named color as an rgba string.\n * @param {string} color Named color.\n * @return {string} Rgb string.\n */\nfunction fromNamed(color) {\n var el = document.createElement('div');\n el.style.color = color;\n if (el.style.color !== '') {\n document.body.appendChild(el);\n var rgb = getComputedStyle(el).color;\n document.body.removeChild(el);\n return rgb;\n }\n else {\n return '';\n }\n}\n/**\n * @param {string} s String.\n * @return {Color} Color.\n */\nexport var fromString = (function () {\n // We maintain a small cache of parsed strings. To provide cheap LRU-like\n // semantics, whenever the cache grows too large we simply delete an\n // arbitrary 25% of the entries.\n /**\n * @const\n * @type {number}\n */\n var MAX_CACHE_SIZE = 1024;\n /**\n * @type {Object<string, Color>}\n */\n var cache = {};\n /**\n * @type {number}\n */\n var cacheSize = 0;\n return (\n /**\n * @param {string} s String.\n * @return {Color} Color.\n */\n function (s) {\n var color;\n if (cache.hasOwnProperty(s)) {\n color = cache[s];\n }\n else {\n if (cacheSize >= MAX_CACHE_SIZE) {\n var i = 0;\n for (var key in cache) {\n if ((i++ & 3) === 0) {\n delete cache[key];\n --cacheSize;\n }\n }\n }\n color = fromStringInternal_(s);\n cache[s] = color;\n ++cacheSize;\n }\n return color;\n });\n})();\n/**\n * Return the color as an array. This function maintains a cache of calculated\n * arrays which means the result should not be modified.\n * @param {Color|string} color Color.\n * @return {Color} Color.\n * @api\n */\nexport function asArray(color) {\n if (Array.isArray(color)) {\n return color;\n }\n else {\n return fromString(color);\n }\n}\n/**\n * @param {string} s String.\n * @private\n * @return {Color} Color.\n */\nfunction fromStringInternal_(s) {\n var r, g, b, a, color;\n if (NAMED_COLOR_RE_.exec(s)) {\n s = fromNamed(s);\n }\n if (HEX_COLOR_RE_.exec(s)) {\n // hex\n var n = s.length - 1; // number of hex digits\n var d = // number of digits per channel\n void 0; // number of digits per channel\n if (n <= 4) {\n d = 1;\n }\n else {\n d = 2;\n }\n var hasAlpha = n === 4 || n === 8;\n r = parseInt(s.substr(1 + 0 * d, d), 16);\n g = parseInt(s.substr(1 + 1 * d, d), 16);\n b = parseInt(s.substr(1 + 2 * d, d), 16);\n if (hasAlpha) {\n a = parseInt(s.substr(1 + 3 * d, d), 16);\n }\n else {\n a = 255;\n }\n if (d == 1) {\n r = (r << 4) + r;\n g = (g << 4) + g;\n b = (b << 4) + b;\n if (hasAlpha) {\n a = (a << 4) + a;\n }\n }\n color = [r, g, b, a / 255];\n }\n else if (s.indexOf('rgba(') == 0) {\n // rgba()\n color = s.slice(5, -1).split(',').map(Number);\n normalize(color);\n }\n else if (s.indexOf('rgb(') == 0) {\n // rgb()\n color = s.slice(4, -1).split(',').map(Number);\n color.push(1);\n normalize(color);\n }\n else {\n assert(false, 14); // Invalid color\n }\n return color;\n}\n/**\n * TODO this function is only used in the test, we probably shouldn't export it\n * @param {Color} color Color.\n * @return {Color} Clamped color.\n */\nexport function normalize(color) {\n color[0] = clamp((color[0] + 0.5) | 0, 0, 255);\n color[1] = clamp((color[1] + 0.5) | 0, 0, 255);\n color[2] = clamp((color[2] + 0.5) | 0, 0, 255);\n color[3] = clamp(color[3], 0, 1);\n return color;\n}\n/**\n * @param {Color} color Color.\n * @return {string} String.\n */\nexport function toString(color) {\n var r = color[0];\n if (r != (r | 0)) {\n r = (r + 0.5) | 0;\n }\n var g = color[1];\n if (g != (g | 0)) {\n g = (g + 0.5) | 0;\n }\n var b = color[2];\n if (b != (b | 0)) {\n b = (b + 0.5) | 0;\n }\n var a = color[3] === undefined ? 1 : Math.round(color[3] * 100) / 100;\n return 'rgba(' + r + ',' + g + ',' + b + ',' + a + ')';\n}\n/**\n * @param {string} s String.\n * @return {boolean} Whether the string is actually a valid color\n */\nexport function isStringColor(s) {\n if (NAMED_COLOR_RE_.test(s)) {\n s = fromNamed(s);\n }\n return (HEX_COLOR_RE_.test(s) || s.indexOf('rgba(') === 0 || s.indexOf('rgb(') === 0);\n}\n//# sourceMappingURL=color.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/renderer/canvas/Layer\n */\nimport LayerRenderer from '../Layer.js';\nimport RenderEvent from '../../render/Event.js';\nimport RenderEventType from '../../render/EventType.js';\nimport { apply as applyTransform, compose as composeTransform, create as createTransform, } from '../../transform.js';\nimport { asArray } from '../../color.js';\nimport { containsCoordinate, getBottomLeft, getBottomRight, getTopLeft, getTopRight, } from '../../extent.js';\nimport { createCanvasContext2D } from '../../dom.js';\nimport { equals } from '../../array.js';\n/**\n * @type {CanvasRenderingContext2D}\n */\nvar pixelContext = null;\nfunction createPixelContext() {\n var canvas = document.createElement('canvas');\n canvas.width = 1;\n canvas.height = 1;\n pixelContext = canvas.getContext('2d');\n}\n/**\n * @abstract\n * @template {import(\"../../layer/Layer.js\").default} LayerType\n * @extends {LayerRenderer<LayerType>}\n */\nvar CanvasLayerRenderer = /** @class */ (function (_super) {\n __extends(CanvasLayerRenderer, _super);\n /**\n * @param {LayerType} layer Layer.\n */\n function CanvasLayerRenderer(layer) {\n var _this = _super.call(this, layer) || this;\n /**\n * @protected\n * @type {HTMLElement}\n */\n _this.container = null;\n /**\n * @protected\n * @type {number}\n */\n _this.renderedResolution;\n /**\n * A temporary transform. The values in this transform should only be used in a\n * function that sets the values.\n * @protected\n * @type {import(\"../../transform.js\").Transform}\n */\n _this.tempTransform = createTransform();\n /**\n * The transform for rendered pixels to viewport CSS pixels. This transform must\n * be set when rendering a frame and may be used by other functions after rendering.\n * @protected\n * @type {import(\"../../transform.js\").Transform}\n */\n _this.pixelTransform = createTransform();\n /**\n * The transform for viewport CSS pixels to rendered pixels. This transform must\n * be set when rendering a frame and may be used by other functions after rendering.\n * @protected\n * @type {import(\"../../transform.js\").Transform}\n */\n _this.inversePixelTransform = createTransform();\n /**\n * @type {CanvasRenderingContext2D}\n */\n _this.context = null;\n /**\n * @type {boolean}\n */\n _this.containerReused = false;\n /**\n * @private\n * @type {CanvasRenderingContext2D}\n */\n _this.pixelContext_ = null;\n /**\n * @protected\n * @type {import(\"../../PluggableMap.js\").FrameState|null}\n */\n _this.frameState = null;\n return _this;\n }\n /**\n * @param {HTMLCanvasElement|HTMLImageElement|HTMLVideoElement} image Image.\n * @param {number} col The column index.\n * @param {number} row The row index.\n * @return {Uint8ClampedArray|null} The image data.\n */\n CanvasLayerRenderer.prototype.getImageData = function (image, col, row) {\n if (!pixelContext) {\n createPixelContext();\n }\n pixelContext.clearRect(0, 0, 1, 1);\n var data;\n try {\n pixelContext.drawImage(image, col, row, 1, 1, 0, 0, 1, 1);\n data = pixelContext.getImageData(0, 0, 1, 1).data;\n }\n catch (err) {\n return null;\n }\n return data;\n };\n /**\n * @param {import('../../PluggableMap.js').FrameState} frameState Frame state.\n * @return {string} Background color.\n */\n CanvasLayerRenderer.prototype.getBackground = function (frameState) {\n var layer = this.getLayer();\n var background = layer.getBackground();\n if (typeof background === 'function') {\n background = background(frameState.viewState.resolution);\n }\n return background || undefined;\n };\n /**\n * Get a rendering container from an existing target, if compatible.\n * @param {HTMLElement} target Potential render target.\n * @param {string} transform CSS Transform.\n * @param {number} opacity Opacity.\n * @param {string} [opt_backgroundColor] Background color.\n */\n CanvasLayerRenderer.prototype.useContainer = function (target, transform, opacity, opt_backgroundColor) {\n var layerClassName = this.getLayer().getClassName();\n var container, context;\n if (target &&\n target.className === layerClassName &&\n target.style.opacity === '' &&\n opacity === 1 &&\n (!opt_backgroundColor ||\n (target.style.backgroundColor &&\n equals(asArray(target.style.backgroundColor), asArray(opt_backgroundColor))))) {\n var canvas = target.firstElementChild;\n if (canvas instanceof HTMLCanvasElement) {\n context = canvas.getContext('2d');\n }\n }\n if (context && context.canvas.style.transform === transform) {\n // Container of the previous layer renderer can be used.\n this.container = target;\n this.context = context;\n this.containerReused = true;\n }\n else if (this.containerReused) {\n // Previously reused container cannot be used any more.\n this.container = null;\n this.context = null;\n this.containerReused = false;\n }\n if (!this.container) {\n container = document.createElement('div');\n container.className = layerClassName;\n var style = container.style;\n style.position = 'absolute';\n style.width = '100%';\n style.height = '100%';\n if (opt_backgroundColor) {\n style.backgroundColor = opt_backgroundColor;\n }\n context = createCanvasContext2D();\n var canvas = context.canvas;\n container.appendChild(canvas);\n style = canvas.style;\n style.position = 'absolute';\n style.left = '0';\n style.transformOrigin = 'top left';\n this.container = container;\n this.context = context;\n }\n };\n /**\n * @param {CanvasRenderingContext2D} context Context.\n * @param {import(\"../../PluggableMap.js\").FrameState} frameState Frame state.\n * @param {import(\"../../extent.js\").Extent} extent Clip extent.\n * @protected\n */\n CanvasLayerRenderer.prototype.clipUnrotated = function (context, frameState, extent) {\n var topLeft = getTopLeft(extent);\n var topRight = getTopRight(extent);\n var bottomRight = getBottomRight(extent);\n var bottomLeft = getBottomLeft(extent);\n applyTransform(frameState.coordinateToPixelTransform, topLeft);\n applyTransform(frameState.coordinateToPixelTransform, topRight);\n applyTransform(frameState.coordinateToPixelTransform, bottomRight);\n applyTransform(frameState.coordinateToPixelTransform, bottomLeft);\n var inverted = this.inversePixelTransform;\n applyTransform(inverted, topLeft);\n applyTransform(inverted, topRight);\n applyTransform(inverted, bottomRight);\n applyTransform(inverted, bottomLeft);\n context.save();\n context.beginPath();\n context.moveTo(Math.round(topLeft[0]), Math.round(topLeft[1]));\n context.lineTo(Math.round(topRight[0]), Math.round(topRight[1]));\n context.lineTo(Math.round(bottomRight[0]), Math.round(bottomRight[1]));\n context.lineTo(Math.round(bottomLeft[0]), Math.round(bottomLeft[1]));\n context.clip();\n };\n /**\n * @param {import(\"../../render/EventType.js\").default} type Event type.\n * @param {CanvasRenderingContext2D} context Context.\n * @param {import(\"../../PluggableMap.js\").FrameState} frameState Frame state.\n * @private\n */\n CanvasLayerRenderer.prototype.dispatchRenderEvent_ = function (type, context, frameState) {\n var layer = this.getLayer();\n if (layer.hasListener(type)) {\n var event_1 = new RenderEvent(type, this.inversePixelTransform, frameState, context);\n layer.dispatchEvent(event_1);\n }\n };\n /**\n * @param {CanvasRenderingContext2D} context Context.\n * @param {import(\"../../PluggableMap.js\").FrameState} frameState Frame state.\n * @protected\n */\n CanvasLayerRenderer.prototype.preRender = function (context, frameState) {\n this.frameState = frameState;\n this.dispatchRenderEvent_(RenderEventType.PRERENDER, context, frameState);\n };\n /**\n * @param {CanvasRenderingContext2D} context Context.\n * @param {import(\"../../PluggableMap.js\").FrameState} frameState Frame state.\n * @protected\n */\n CanvasLayerRenderer.prototype.postRender = function (context, frameState) {\n this.dispatchRenderEvent_(RenderEventType.POSTRENDER, context, frameState);\n };\n /**\n * Creates a transform for rendering to an element that will be rotated after rendering.\n * @param {import(\"../../coordinate.js\").Coordinate} center Center.\n * @param {number} resolution Resolution.\n * @param {number} rotation Rotation.\n * @param {number} pixelRatio Pixel ratio.\n * @param {number} width Width of the rendered element (in pixels).\n * @param {number} height Height of the rendered element (in pixels).\n * @param {number} offsetX Offset on the x-axis in view coordinates.\n * @protected\n * @return {!import(\"../../transform.js\").Transform} Transform.\n */\n CanvasLayerRenderer.prototype.getRenderTransform = function (center, resolution, rotation, pixelRatio, width, height, offsetX) {\n var dx1 = width / 2;\n var dy1 = height / 2;\n var sx = pixelRatio / resolution;\n var sy = -sx;\n var dx2 = -center[0] + offsetX;\n var dy2 = -center[1];\n return composeTransform(this.tempTransform, dx1, dy1, sx, sy, -rotation, dx2, dy2);\n };\n /**\n * @param {import(\"../../pixel.js\").Pixel} pixel Pixel.\n * @param {import(\"../../PluggableMap.js\").FrameState} frameState FrameState.\n * @param {number} hitTolerance Hit tolerance in pixels.\n * @return {Uint8ClampedArray|Uint8Array} The result. If there is no data at the pixel\n * location, null will be returned. If there is data, but pixel values cannot be\n * returned, and empty array will be returned.\n */\n CanvasLayerRenderer.prototype.getDataAtPixel = function (pixel, frameState, hitTolerance) {\n var renderPixel = applyTransform(this.inversePixelTransform, pixel.slice());\n var context = this.context;\n var layer = this.getLayer();\n var layerExtent = layer.getExtent();\n if (layerExtent) {\n var renderCoordinate = applyTransform(frameState.pixelToCoordinateTransform, pixel.slice());\n /** get only data inside of the layer extent */\n if (!containsCoordinate(layerExtent, renderCoordinate)) {\n return null;\n }\n }\n var x = Math.round(renderPixel[0]);\n var y = Math.round(renderPixel[1]);\n var pixelContext = this.pixelContext_;\n if (!pixelContext) {\n var pixelCanvas = document.createElement('canvas');\n pixelCanvas.width = 1;\n pixelCanvas.height = 1;\n pixelContext = pixelCanvas.getContext('2d');\n this.pixelContext_ = pixelContext;\n }\n pixelContext.clearRect(0, 0, 1, 1);\n var data;\n try {\n pixelContext.drawImage(context.canvas, x, y, 1, 1, 0, 0, 1, 1);\n data = pixelContext.getImageData(0, 0, 1, 1).data;\n }\n catch (err) {\n if (err.name === 'SecurityError') {\n // tainted canvas, we assume there is data at the given pixel (although there might not be)\n this.pixelContext_ = null;\n return new Uint8Array();\n }\n return data;\n }\n if (data[3] === 0) {\n return null;\n }\n return data;\n };\n /**\n * Clean up.\n */\n CanvasLayerRenderer.prototype.disposeInternal = function () {\n delete this.frameState;\n _super.prototype.disposeInternal.call(this);\n };\n return CanvasLayerRenderer;\n}(LayerRenderer));\nexport default CanvasLayerRenderer;\n//# sourceMappingURL=Layer.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/Tile\n */\nimport EventTarget from './events/Target.js';\nimport EventType from './events/EventType.js';\nimport TileState from './TileState.js';\nimport { abstract } from './util.js';\nimport { easeIn } from './easing.js';\n/**\n * A function that takes an {@link module:ol/Tile~Tile} for the tile and a\n * `{string}` for the url as arguments. The default is\n * ```js\n * source.setTileLoadFunction(function(tile, src) {\n * tile.getImage().src = src;\n * });\n * ```\n * For more fine grained control, the load function can use fetch or XMLHttpRequest and involve\n * error handling:\n *\n * ```js\n * import TileState from 'ol/TileState';\n *\n * source.setTileLoadFunction(function(tile, src) {\n * var xhr = new XMLHttpRequest();\n * xhr.responseType = 'blob';\n * xhr.addEventListener('loadend', function (evt) {\n * var data = this.response;\n * if (data !== undefined) {\n * tile.getImage().src = URL.createObjectURL(data);\n * } else {\n * tile.setState(TileState.ERROR);\n * }\n * });\n * xhr.addEventListener('error', function () {\n * tile.setState(TileState.ERROR);\n * });\n * xhr.open('GET', src);\n * xhr.send();\n * });\n * ```\n *\n * @typedef {function(Tile, string): void} LoadFunction\n * @api\n */\n/**\n * {@link module:ol/source/Tile~TileSource} sources use a function of this type to get\n * the url that provides a tile for a given tile coordinate.\n *\n * This function takes an {@link module:ol/tilecoord~TileCoord} for the tile\n * coordinate, a `{number}` representing the pixel ratio and a\n * {@link module:ol/proj/Projection~Projection} for the projection as arguments\n * and returns a `{string}` representing the tile URL, or undefined if no tile\n * should be requested for the passed tile coordinate.\n *\n * @typedef {function(import(\"./tilecoord.js\").TileCoord, number,\n * import(\"./proj/Projection.js\").default): (string|undefined)} UrlFunction\n * @api\n */\n/**\n * @typedef {Object} Options\n * @property {number} [transition=250] A duration for tile opacity\n * transitions in milliseconds. A duration of 0 disables the opacity transition.\n * @property {boolean} [interpolate=false] Use interpolated values when resampling. By default,\n * the nearest neighbor is used when resampling.\n * @api\n */\n/**\n * @classdesc\n * Base class for tiles.\n *\n * @abstract\n */\nvar Tile = /** @class */ (function (_super) {\n __extends(Tile, _super);\n /**\n * @param {import(\"./tilecoord.js\").TileCoord} tileCoord Tile coordinate.\n * @param {import(\"./TileState.js\").default} state State.\n * @param {Options} [opt_options] Tile options.\n */\n function Tile(tileCoord, state, opt_options) {\n var _this = _super.call(this) || this;\n var options = opt_options ? opt_options : {};\n /**\n * @type {import(\"./tilecoord.js\").TileCoord}\n */\n _this.tileCoord = tileCoord;\n /**\n * @protected\n * @type {import(\"./TileState.js\").default}\n */\n _this.state = state;\n /**\n * An \"interim\" tile for this tile. The interim tile may be used while this\n * one is loading, for \"smooth\" transitions when changing params/dimensions\n * on the source.\n * @type {Tile}\n */\n _this.interimTile = null;\n /**\n * A key assigned to the tile. This is used by the tile source to determine\n * if this tile can effectively be used, or if a new tile should be created\n * and this one be used as an interim tile for this new tile.\n * @type {string}\n */\n _this.key = '';\n /**\n * The duration for the opacity transition.\n * @type {number}\n */\n _this.transition_ =\n options.transition === undefined ? 250 : options.transition;\n /**\n * Lookup of start times for rendering transitions. If the start time is\n * equal to -1, the transition is complete.\n * @type {Object<string, number>}\n */\n _this.transitionStarts_ = {};\n /**\n * @type {boolean}\n */\n _this.interpolate = !!options.interpolate;\n return _this;\n }\n /**\n * @protected\n */\n Tile.prototype.changed = function () {\n this.dispatchEvent(EventType.CHANGE);\n };\n /**\n * Called by the tile cache when the tile is removed from the cache due to expiry\n */\n Tile.prototype.release = function () { };\n /**\n * @return {string} Key.\n */\n Tile.prototype.getKey = function () {\n return this.key + '/' + this.tileCoord;\n };\n /**\n * Get the interim tile most suitable for rendering using the chain of interim\n * tiles. This corresponds to the most recent tile that has been loaded, if no\n * such tile exists, the original tile is returned.\n * @return {!Tile} Best tile for rendering.\n */\n Tile.prototype.getInterimTile = function () {\n if (!this.interimTile) {\n //empty chain\n return this;\n }\n var tile = this.interimTile;\n // find the first loaded tile and return it. Since the chain is sorted in\n // decreasing order of creation time, there is no need to search the remainder\n // of the list (all those tiles correspond to older requests and will be\n // cleaned up by refreshInterimChain)\n do {\n if (tile.getState() == TileState.LOADED) {\n // Show tile immediately instead of fading it in after loading, because\n // the interim tile is in place already\n this.transition_ = 0;\n return tile;\n }\n tile = tile.interimTile;\n } while (tile);\n // we can not find a better tile\n return this;\n };\n /**\n * Goes through the chain of interim tiles and discards sections of the chain\n * that are no longer relevant.\n */\n Tile.prototype.refreshInterimChain = function () {\n if (!this.interimTile) {\n return;\n }\n var tile = this.interimTile;\n /**\n * @type {Tile}\n */\n var prev = this;\n do {\n if (tile.getState() == TileState.LOADED) {\n //we have a loaded tile, we can discard the rest of the list\n //we would could abort any LOADING tile request\n //older than this tile (i.e. any LOADING tile following this entry in the chain)\n tile.interimTile = null;\n break;\n }\n else if (tile.getState() == TileState.LOADING) {\n //keep this LOADING tile any loaded tiles later in the chain are\n //older than this tile, so we're still interested in the request\n prev = tile;\n }\n else if (tile.getState() == TileState.IDLE) {\n //the head of the list is the most current tile, we don't need\n //to start any other requests for this chain\n prev.interimTile = tile.interimTile;\n }\n else {\n prev = tile;\n }\n tile = prev.interimTile;\n } while (tile);\n };\n /**\n * Get the tile coordinate for this tile.\n * @return {import(\"./tilecoord.js\").TileCoord} The tile coordinate.\n * @api\n */\n Tile.prototype.getTileCoord = function () {\n return this.tileCoord;\n };\n /**\n * @return {import(\"./TileState.js\").default} State.\n */\n Tile.prototype.getState = function () {\n return this.state;\n };\n /**\n * Sets the state of this tile. If you write your own {@link module:ol/Tile~LoadFunction tileLoadFunction} ,\n * it is important to set the state correctly to {@link module:ol/TileState~ERROR}\n * when the tile cannot be loaded. Otherwise the tile cannot be removed from\n * the tile queue and will block other requests.\n * @param {import(\"./TileState.js\").default} state State.\n * @api\n */\n Tile.prototype.setState = function (state) {\n if (this.state !== TileState.ERROR && this.state > state) {\n throw new Error('Tile load sequence violation');\n }\n this.state = state;\n this.changed();\n };\n /**\n * Load the image or retry if loading previously failed.\n * Loading is taken care of by the tile queue, and calling this method is\n * only needed for preloading or for reloading in case of an error.\n * @abstract\n * @api\n */\n Tile.prototype.load = function () {\n abstract();\n };\n /**\n * Get the alpha value for rendering.\n * @param {string} id An id for the renderer.\n * @param {number} time The render frame time.\n * @return {number} A number between 0 and 1.\n */\n Tile.prototype.getAlpha = function (id, time) {\n if (!this.transition_) {\n return 1;\n }\n var start = this.transitionStarts_[id];\n if (!start) {\n start = time;\n this.transitionStarts_[id] = start;\n }\n else if (start === -1) {\n return 1;\n }\n var delta = time - start + 1000 / 60; // avoid rendering at 0\n if (delta >= this.transition_) {\n return 1;\n }\n return easeIn(delta / this.transition_);\n };\n /**\n * Determine if a tile is in an alpha transition. A tile is considered in\n * transition if tile.getAlpha() has not yet been called or has been called\n * and returned 1.\n * @param {string} id An id for the renderer.\n * @return {boolean} The tile is in transition.\n */\n Tile.prototype.inTransition = function (id) {\n if (!this.transition_) {\n return false;\n }\n return this.transitionStarts_[id] !== -1;\n };\n /**\n * Mark a transition as complete.\n * @param {string} id An id for the renderer.\n */\n Tile.prototype.endTransition = function (id) {\n if (this.transition_) {\n this.transitionStarts_[id] = -1;\n }\n };\n return Tile;\n}(EventTarget));\nexport default Tile;\n//# sourceMappingURL=Tile.js.map","/**\n * @module ol/TileState\n */\n/**\n * @enum {number}\n */\nexport default {\n IDLE: 0,\n LOADING: 1,\n LOADED: 2,\n /**\n * Indicates that tile loading failed\n * @type {number}\n */\n ERROR: 3,\n EMPTY: 4,\n};\n//# sourceMappingURL=TileState.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/ImageBase\n */\nimport EventTarget from './events/Target.js';\nimport EventType from './events/EventType.js';\nimport { abstract } from './util.js';\n/**\n * @abstract\n */\nvar ImageBase = /** @class */ (function (_super) {\n __extends(ImageBase, _super);\n /**\n * @param {import(\"./extent.js\").Extent} extent Extent.\n * @param {number|undefined} resolution Resolution.\n * @param {number} pixelRatio Pixel ratio.\n * @param {import(\"./ImageState.js\").default} state State.\n */\n function ImageBase(extent, resolution, pixelRatio, state) {\n var _this = _super.call(this) || this;\n /**\n * @protected\n * @type {import(\"./extent.js\").Extent}\n */\n _this.extent = extent;\n /**\n * @private\n * @type {number}\n */\n _this.pixelRatio_ = pixelRatio;\n /**\n * @protected\n * @type {number|undefined}\n */\n _this.resolution = resolution;\n /**\n * @protected\n * @type {import(\"./ImageState.js\").default}\n */\n _this.state = state;\n return _this;\n }\n /**\n * @protected\n */\n ImageBase.prototype.changed = function () {\n this.dispatchEvent(EventType.CHANGE);\n };\n /**\n * @return {import(\"./extent.js\").Extent} Extent.\n */\n ImageBase.prototype.getExtent = function () {\n return this.extent;\n };\n /**\n * @abstract\n * @return {HTMLCanvasElement|HTMLImageElement|HTMLVideoElement} Image.\n */\n ImageBase.prototype.getImage = function () {\n return abstract();\n };\n /**\n * @return {number} PixelRatio.\n */\n ImageBase.prototype.getPixelRatio = function () {\n return this.pixelRatio_;\n };\n /**\n * @return {number} Resolution.\n */\n ImageBase.prototype.getResolution = function () {\n return /** @type {number} */ (this.resolution);\n };\n /**\n * @return {import(\"./ImageState.js\").default} State.\n */\n ImageBase.prototype.getState = function () {\n return this.state;\n };\n /**\n * Load not yet loaded URI.\n * @abstract\n */\n ImageBase.prototype.load = function () {\n abstract();\n };\n return ImageBase;\n}(EventTarget));\nexport default ImageBase;\n//# sourceMappingURL=ImageBase.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/Image\n */\nimport EventType from './events/EventType.js';\nimport ImageBase from './ImageBase.js';\nimport ImageState from './ImageState.js';\nimport { IMAGE_DECODE } from './has.js';\nimport { getHeight } from './extent.js';\nimport { listenOnce, unlistenByKey } from './events.js';\n/**\n * A function that takes an {@link module:ol/Image~ImageWrapper} for the image and a\n * `{string}` for the src as arguments. It is supposed to make it so the\n * underlying image {@link module:ol/Image~ImageWrapper#getImage} is assigned the\n * content specified by the src. If not specified, the default is\n *\n * function(image, src) {\n * image.getImage().src = src;\n * }\n *\n * Providing a custom `imageLoadFunction` can be useful to load images with\n * post requests or - in general - through XHR requests, where the src of the\n * image element would be set to a data URI when the content is loaded.\n *\n * @typedef {function(ImageWrapper, string): void} LoadFunction\n * @api\n */\nvar ImageWrapper = /** @class */ (function (_super) {\n __extends(ImageWrapper, _super);\n /**\n * @param {import(\"./extent.js\").Extent} extent Extent.\n * @param {number|undefined} resolution Resolution.\n * @param {number} pixelRatio Pixel ratio.\n * @param {string} src Image source URI.\n * @param {?string} crossOrigin Cross origin.\n * @param {LoadFunction} imageLoadFunction Image load function.\n */\n function ImageWrapper(extent, resolution, pixelRatio, src, crossOrigin, imageLoadFunction) {\n var _this = _super.call(this, extent, resolution, pixelRatio, ImageState.IDLE) || this;\n /**\n * @private\n * @type {string}\n */\n _this.src_ = src;\n /**\n * @private\n * @type {HTMLCanvasElement|HTMLImageElement|HTMLVideoElement}\n */\n _this.image_ = new Image();\n if (crossOrigin !== null) {\n _this.image_.crossOrigin = crossOrigin;\n }\n /**\n * @private\n * @type {?function():void}\n */\n _this.unlisten_ = null;\n /**\n * @protected\n * @type {import(\"./ImageState.js\").default}\n */\n _this.state = ImageState.IDLE;\n /**\n * @private\n * @type {LoadFunction}\n */\n _this.imageLoadFunction_ = imageLoadFunction;\n return _this;\n }\n /**\n * @return {HTMLCanvasElement|HTMLImageElement|HTMLVideoElement} Image.\n * @api\n */\n ImageWrapper.prototype.getImage = function () {\n return this.image_;\n };\n /**\n * Tracks loading or read errors.\n *\n * @private\n */\n ImageWrapper.prototype.handleImageError_ = function () {\n this.state = ImageState.ERROR;\n this.unlistenImage_();\n this.changed();\n };\n /**\n * Tracks successful image load.\n *\n * @private\n */\n ImageWrapper.prototype.handleImageLoad_ = function () {\n if (this.resolution === undefined) {\n this.resolution = getHeight(this.extent) / this.image_.height;\n }\n this.state = ImageState.LOADED;\n this.unlistenImage_();\n this.changed();\n };\n /**\n * Load the image or retry if loading previously failed.\n * Loading is taken care of by the tile queue, and calling this method is\n * only needed for preloading or for reloading in case of an error.\n * @api\n */\n ImageWrapper.prototype.load = function () {\n if (this.state == ImageState.IDLE || this.state == ImageState.ERROR) {\n this.state = ImageState.LOADING;\n this.changed();\n this.imageLoadFunction_(this, this.src_);\n this.unlisten_ = listenImage(this.image_, this.handleImageLoad_.bind(this), this.handleImageError_.bind(this));\n }\n };\n /**\n * @param {HTMLCanvasElement|HTMLImageElement|HTMLVideoElement} image Image.\n */\n ImageWrapper.prototype.setImage = function (image) {\n this.image_ = image;\n this.resolution = getHeight(this.extent) / this.image_.height;\n };\n /**\n * Discards event handlers which listen for load completion or errors.\n *\n * @private\n */\n ImageWrapper.prototype.unlistenImage_ = function () {\n if (this.unlisten_) {\n this.unlisten_();\n this.unlisten_ = null;\n }\n };\n return ImageWrapper;\n}(ImageBase));\n/**\n * @param {HTMLCanvasElement|HTMLImageElement|HTMLVideoElement} image Image element.\n * @param {function():any} loadHandler Load callback function.\n * @param {function():any} errorHandler Error callback function.\n * @return {function():void} Callback to stop listening.\n */\nexport function listenImage(image, loadHandler, errorHandler) {\n var img = /** @type {HTMLImageElement} */ (image);\n var listening = true;\n var decoding = false;\n var loaded = false;\n var listenerKeys = [\n listenOnce(img, EventType.LOAD, function () {\n loaded = true;\n if (!decoding) {\n loadHandler();\n }\n }),\n ];\n if (img.src && IMAGE_DECODE) {\n decoding = true;\n img\n .decode()\n .then(function () {\n if (listening) {\n loadHandler();\n }\n })\n .catch(function (error) {\n if (listening) {\n if (loaded) {\n loadHandler();\n }\n else {\n errorHandler();\n }\n }\n });\n }\n else {\n listenerKeys.push(listenOnce(img, EventType.ERROR, errorHandler));\n }\n return function unlisten() {\n listening = false;\n listenerKeys.forEach(unlistenByKey);\n };\n}\nexport default ImageWrapper;\n//# sourceMappingURL=Image.js.map","/**\n * @module ol/reproj\n */\nimport { IMAGE_SMOOTHING_DISABLED } from './renderer/canvas/common.js';\nimport { assign } from './obj.js';\nimport { containsCoordinate, createEmpty, extend, forEachCorner, getCenter, getHeight, getTopLeft, getWidth, } from './extent.js';\nimport { createCanvasContext2D } from './dom.js';\nimport { getPointResolution, transform } from './proj.js';\nimport { solveLinearSystem } from './math.js';\nvar brokenDiagonalRendering_;\n/**\n * This draws a small triangle into a canvas by setting the triangle as the clip region\n * and then drawing a (too large) rectangle\n *\n * @param {CanvasRenderingContext2D} ctx The context in which to draw the triangle\n * @param {number} u1 The x-coordinate of the second point. The first point is 0,0.\n * @param {number} v1 The y-coordinate of the second point.\n * @param {number} u2 The x-coordinate of the third point.\n * @param {number} v2 The y-coordinate of the third point.\n */\nfunction drawTestTriangle(ctx, u1, v1, u2, v2) {\n ctx.beginPath();\n ctx.moveTo(0, 0);\n ctx.lineTo(u1, v1);\n ctx.lineTo(u2, v2);\n ctx.closePath();\n ctx.save();\n ctx.clip();\n ctx.fillRect(0, 0, Math.max(u1, u2) + 1, Math.max(v1, v2));\n ctx.restore();\n}\n/**\n * Given the data from getImageData, see if the right values appear at the provided offset.\n * Returns true if either the color or transparency is off\n *\n * @param {Uint8ClampedArray} data The data returned from getImageData\n * @param {number} offset The pixel offset from the start of data.\n * @return {boolean} true if the diagonal rendering is broken\n */\nfunction verifyBrokenDiagonalRendering(data, offset) {\n // the values ought to be close to the rgba(210, 0, 0, 0.75)\n return (Math.abs(data[offset * 4] - 210) > 2 ||\n Math.abs(data[offset * 4 + 3] - 0.75 * 255) > 2);\n}\n/**\n * Determines if the current browser configuration can render triangular clip regions correctly.\n * This value is cached so the function is only expensive the first time called.\n * Firefox on Windows (as of now) does not if HWA is enabled. See https://bugzilla.mozilla.org/show_bug.cgi?id=1606976\n * IE also doesn't. Chrome works, and everything seems to work on OSX and Android. This function caches the\n * result. I suppose that it is conceivably possible that a browser might flip modes while the app is\n * running, but lets hope not.\n *\n * @return {boolean} true if the Diagonal Rendering is broken.\n */\nfunction isBrokenDiagonalRendering() {\n if (brokenDiagonalRendering_ === undefined) {\n var ctx = document.createElement('canvas').getContext('2d');\n ctx.globalCompositeOperation = 'lighter';\n ctx.fillStyle = 'rgba(210, 0, 0, 0.75)';\n drawTestTriangle(ctx, 4, 5, 4, 0);\n drawTestTriangle(ctx, 4, 5, 0, 5);\n var data = ctx.getImageData(0, 0, 3, 3).data;\n brokenDiagonalRendering_ =\n verifyBrokenDiagonalRendering(data, 0) ||\n verifyBrokenDiagonalRendering(data, 4) ||\n verifyBrokenDiagonalRendering(data, 8);\n }\n return brokenDiagonalRendering_;\n}\n/**\n * Calculates ideal resolution to use from the source in order to achieve\n * pixel mapping as close as possible to 1:1 during reprojection.\n * The resolution is calculated regardless of what resolutions\n * are actually available in the dataset (TileGrid, Image, ...).\n *\n * @param {import(\"./proj/Projection.js\").default} sourceProj Source projection.\n * @param {import(\"./proj/Projection.js\").default} targetProj Target projection.\n * @param {import(\"./coordinate.js\").Coordinate} targetCenter Target center.\n * @param {number} targetResolution Target resolution.\n * @return {number} The best resolution to use. Can be +-Infinity, NaN or 0.\n */\nexport function calculateSourceResolution(sourceProj, targetProj, targetCenter, targetResolution) {\n var sourceCenter = transform(targetCenter, targetProj, sourceProj);\n // calculate the ideal resolution of the source data\n var sourceResolution = getPointResolution(targetProj, targetResolution, targetCenter);\n var targetMetersPerUnit = targetProj.getMetersPerUnit();\n if (targetMetersPerUnit !== undefined) {\n sourceResolution *= targetMetersPerUnit;\n }\n var sourceMetersPerUnit = sourceProj.getMetersPerUnit();\n if (sourceMetersPerUnit !== undefined) {\n sourceResolution /= sourceMetersPerUnit;\n }\n // Based on the projection properties, the point resolution at the specified\n // coordinates may be slightly different. We need to reverse-compensate this\n // in order to achieve optimal results.\n var sourceExtent = sourceProj.getExtent();\n if (!sourceExtent || containsCoordinate(sourceExtent, sourceCenter)) {\n var compensationFactor = getPointResolution(sourceProj, sourceResolution, sourceCenter) /\n sourceResolution;\n if (isFinite(compensationFactor) && compensationFactor > 0) {\n sourceResolution /= compensationFactor;\n }\n }\n return sourceResolution;\n}\n/**\n * Calculates ideal resolution to use from the source in order to achieve\n * pixel mapping as close as possible to 1:1 during reprojection.\n * The resolution is calculated regardless of what resolutions\n * are actually available in the dataset (TileGrid, Image, ...).\n *\n * @param {import(\"./proj/Projection.js\").default} sourceProj Source projection.\n * @param {import(\"./proj/Projection.js\").default} targetProj Target projection.\n * @param {import(\"./extent.js\").Extent} targetExtent Target extent\n * @param {number} targetResolution Target resolution.\n * @return {number} The best resolution to use. Can be +-Infinity, NaN or 0.\n */\nexport function calculateSourceExtentResolution(sourceProj, targetProj, targetExtent, targetResolution) {\n var targetCenter = getCenter(targetExtent);\n var sourceResolution = calculateSourceResolution(sourceProj, targetProj, targetCenter, targetResolution);\n if (!isFinite(sourceResolution) || sourceResolution <= 0) {\n forEachCorner(targetExtent, function (corner) {\n sourceResolution = calculateSourceResolution(sourceProj, targetProj, corner, targetResolution);\n return isFinite(sourceResolution) && sourceResolution > 0;\n });\n }\n return sourceResolution;\n}\n/**\n * @typedef {Object} ImageExtent\n * @property {import(\"./extent.js\").Extent} extent Extent.\n * @property {HTMLCanvasElement|HTMLImageElement|HTMLVideoElement} image Image.\n */\n/**\n * Renders the source data into new canvas based on the triangulation.\n *\n * @param {number} width Width of the canvas.\n * @param {number} height Height of the canvas.\n * @param {number} pixelRatio Pixel ratio.\n * @param {number} sourceResolution Source resolution.\n * @param {import(\"./extent.js\").Extent} sourceExtent Extent of the data source.\n * @param {number} targetResolution Target resolution.\n * @param {import(\"./extent.js\").Extent} targetExtent Target extent.\n * @param {import(\"./reproj/Triangulation.js\").default} triangulation Calculated triangulation.\n * @param {Array<ImageExtent>} sources Array of sources.\n * @param {number} gutter Gutter of the sources.\n * @param {boolean} [opt_renderEdges] Render reprojection edges.\n * @param {object} [opt_interpolate] Use linear interpolation when resampling.\n * @return {HTMLCanvasElement} Canvas with reprojected data.\n */\nexport function render(width, height, pixelRatio, sourceResolution, sourceExtent, targetResolution, targetExtent, triangulation, sources, gutter, opt_renderEdges, opt_interpolate) {\n var context = createCanvasContext2D(Math.round(pixelRatio * width), Math.round(pixelRatio * height));\n if (!opt_interpolate) {\n assign(context, IMAGE_SMOOTHING_DISABLED);\n }\n if (sources.length === 0) {\n return context.canvas;\n }\n context.scale(pixelRatio, pixelRatio);\n function pixelRound(value) {\n return Math.round(value * pixelRatio) / pixelRatio;\n }\n context.globalCompositeOperation = 'lighter';\n var sourceDataExtent = createEmpty();\n sources.forEach(function (src, i, arr) {\n extend(sourceDataExtent, src.extent);\n });\n var canvasWidthInUnits = getWidth(sourceDataExtent);\n var canvasHeightInUnits = getHeight(sourceDataExtent);\n var stitchContext = createCanvasContext2D(Math.round((pixelRatio * canvasWidthInUnits) / sourceResolution), Math.round((pixelRatio * canvasHeightInUnits) / sourceResolution));\n if (!opt_interpolate) {\n assign(stitchContext, IMAGE_SMOOTHING_DISABLED);\n }\n var stitchScale = pixelRatio / sourceResolution;\n sources.forEach(function (src, i, arr) {\n var xPos = src.extent[0] - sourceDataExtent[0];\n var yPos = -(src.extent[3] - sourceDataExtent[3]);\n var srcWidth = getWidth(src.extent);\n var srcHeight = getHeight(src.extent);\n // This test should never fail -- but it does. Need to find a fix the upstream condition\n if (src.image.width > 0 && src.image.height > 0) {\n stitchContext.drawImage(src.image, gutter, gutter, src.image.width - 2 * gutter, src.image.height - 2 * gutter, xPos * stitchScale, yPos * stitchScale, srcWidth * stitchScale, srcHeight * stitchScale);\n }\n });\n var targetTopLeft = getTopLeft(targetExtent);\n triangulation.getTriangles().forEach(function (triangle, i, arr) {\n /* Calculate affine transform (src -> dst)\n * Resulting matrix can be used to transform coordinate\n * from `sourceProjection` to destination pixels.\n *\n * To optimize number of context calls and increase numerical stability,\n * we also do the following operations:\n * trans(-topLeftExtentCorner), scale(1 / targetResolution), scale(1, -1)\n * here before solving the linear system so [ui, vi] are pixel coordinates.\n *\n * Src points: xi, yi\n * Dst points: ui, vi\n * Affine coefficients: aij\n *\n * | x0 y0 1 0 0 0 | |a00| |u0|\n * | x1 y1 1 0 0 0 | |a01| |u1|\n * | x2 y2 1 0 0 0 | x |a02| = |u2|\n * | 0 0 0 x0 y0 1 | |a10| |v0|\n * | 0 0 0 x1 y1 1 | |a11| |v1|\n * | 0 0 0 x2 y2 1 | |a12| |v2|\n */\n var source = triangle.source;\n var target = triangle.target;\n var x0 = source[0][0], y0 = source[0][1];\n var x1 = source[1][0], y1 = source[1][1];\n var x2 = source[2][0], y2 = source[2][1];\n // Make sure that everything is on pixel boundaries\n var u0 = pixelRound((target[0][0] - targetTopLeft[0]) / targetResolution);\n var v0 = pixelRound(-(target[0][1] - targetTopLeft[1]) / targetResolution);\n var u1 = pixelRound((target[1][0] - targetTopLeft[0]) / targetResolution);\n var v1 = pixelRound(-(target[1][1] - targetTopLeft[1]) / targetResolution);\n var u2 = pixelRound((target[2][0] - targetTopLeft[0]) / targetResolution);\n var v2 = pixelRound(-(target[2][1] - targetTopLeft[1]) / targetResolution);\n // Shift all the source points to improve numerical stability\n // of all the subsequent calculations. The [x0, y0] is used here.\n // This is also used to simplify the linear system.\n var sourceNumericalShiftX = x0;\n var sourceNumericalShiftY = y0;\n x0 = 0;\n y0 = 0;\n x1 -= sourceNumericalShiftX;\n y1 -= sourceNumericalShiftY;\n x2 -= sourceNumericalShiftX;\n y2 -= sourceNumericalShiftY;\n var augmentedMatrix = [\n [x1, y1, 0, 0, u1 - u0],\n [x2, y2, 0, 0, u2 - u0],\n [0, 0, x1, y1, v1 - v0],\n [0, 0, x2, y2, v2 - v0],\n ];\n var affineCoefs = solveLinearSystem(augmentedMatrix);\n if (!affineCoefs) {\n return;\n }\n context.save();\n context.beginPath();\n if (isBrokenDiagonalRendering() || !opt_interpolate) {\n // Make sure that all lines are horizontal or vertical\n context.moveTo(u1, v1);\n // This is the diagonal line. Do it in 4 steps\n var steps = 4;\n var ud = u0 - u1;\n var vd = v0 - v1;\n for (var step = 0; step < steps; step++) {\n // Go horizontally\n context.lineTo(u1 + pixelRound(((step + 1) * ud) / steps), v1 + pixelRound((step * vd) / (steps - 1)));\n // Go vertically\n if (step != steps - 1) {\n context.lineTo(u1 + pixelRound(((step + 1) * ud) / steps), v1 + pixelRound(((step + 1) * vd) / (steps - 1)));\n }\n }\n // We are almost at u0r, v0r\n context.lineTo(u2, v2);\n }\n else {\n context.moveTo(u1, v1);\n context.lineTo(u0, v0);\n context.lineTo(u2, v2);\n }\n context.clip();\n context.transform(affineCoefs[0], affineCoefs[2], affineCoefs[1], affineCoefs[3], u0, v0);\n context.translate(sourceDataExtent[0] - sourceNumericalShiftX, sourceDataExtent[3] - sourceNumericalShiftY);\n context.scale(sourceResolution / pixelRatio, -sourceResolution / pixelRatio);\n context.drawImage(stitchContext.canvas, 0, 0);\n context.restore();\n });\n if (opt_renderEdges) {\n context.save();\n context.globalCompositeOperation = 'source-over';\n context.strokeStyle = 'black';\n context.lineWidth = 1;\n triangulation.getTriangles().forEach(function (triangle, i, arr) {\n var target = triangle.target;\n var u0 = (target[0][0] - targetTopLeft[0]) / targetResolution;\n var v0 = -(target[0][1] - targetTopLeft[1]) / targetResolution;\n var u1 = (target[1][0] - targetTopLeft[0]) / targetResolution;\n var v1 = -(target[1][1] - targetTopLeft[1]) / targetResolution;\n var u2 = (target[2][0] - targetTopLeft[0]) / targetResolution;\n var v2 = -(target[2][1] - targetTopLeft[1]) / targetResolution;\n context.beginPath();\n context.moveTo(u1, v1);\n context.lineTo(u0, v0);\n context.lineTo(u2, v2);\n context.closePath();\n context.stroke();\n });\n context.restore();\n }\n return context.canvas;\n}\n//# sourceMappingURL=reproj.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/ImageTile\n */\nimport Tile from './Tile.js';\nimport TileState from './TileState.js';\nimport { createCanvasContext2D } from './dom.js';\nimport { listenImage } from './Image.js';\nvar ImageTile = /** @class */ (function (_super) {\n __extends(ImageTile, _super);\n /**\n * @param {import(\"./tilecoord.js\").TileCoord} tileCoord Tile coordinate.\n * @param {import(\"./TileState.js\").default} state State.\n * @param {string} src Image source URI.\n * @param {?string} crossOrigin Cross origin.\n * @param {import(\"./Tile.js\").LoadFunction} tileLoadFunction Tile load function.\n * @param {import(\"./Tile.js\").Options} [opt_options] Tile options.\n */\n function ImageTile(tileCoord, state, src, crossOrigin, tileLoadFunction, opt_options) {\n var _this = _super.call(this, tileCoord, state, opt_options) || this;\n /**\n * @private\n * @type {?string}\n */\n _this.crossOrigin_ = crossOrigin;\n /**\n * Image URI\n *\n * @private\n * @type {string}\n */\n _this.src_ = src;\n _this.key = src;\n /**\n * @private\n * @type {HTMLImageElement|HTMLCanvasElement}\n */\n _this.image_ = new Image();\n if (crossOrigin !== null) {\n _this.image_.crossOrigin = crossOrigin;\n }\n /**\n * @private\n * @type {?function():void}\n */\n _this.unlisten_ = null;\n /**\n * @private\n * @type {import(\"./Tile.js\").LoadFunction}\n */\n _this.tileLoadFunction_ = tileLoadFunction;\n return _this;\n }\n /**\n * Get the HTML image element for this tile (may be a Canvas, Image, or Video).\n * @return {HTMLCanvasElement|HTMLImageElement|HTMLVideoElement} Image.\n * @api\n */\n ImageTile.prototype.getImage = function () {\n return this.image_;\n };\n /**\n * Sets an HTML image element for this tile (may be a Canvas or preloaded Image).\n * @param {HTMLCanvasElement|HTMLImageElement} element Element.\n */\n ImageTile.prototype.setImage = function (element) {\n this.image_ = element;\n this.state = TileState.LOADED;\n this.unlistenImage_();\n this.changed();\n };\n /**\n * Tracks loading or read errors.\n *\n * @private\n */\n ImageTile.prototype.handleImageError_ = function () {\n this.state = TileState.ERROR;\n this.unlistenImage_();\n this.image_ = getBlankImage();\n this.changed();\n };\n /**\n * Tracks successful image load.\n *\n * @private\n */\n ImageTile.prototype.handleImageLoad_ = function () {\n var image = /** @type {HTMLImageElement} */ (this.image_);\n if (image.naturalWidth && image.naturalHeight) {\n this.state = TileState.LOADED;\n }\n else {\n this.state = TileState.EMPTY;\n }\n this.unlistenImage_();\n this.changed();\n };\n /**\n * Load not yet loaded URI.\n * @api\n */\n ImageTile.prototype.load = function () {\n if (this.state == TileState.ERROR) {\n this.state = TileState.IDLE;\n this.image_ = new Image();\n if (this.crossOrigin_ !== null) {\n this.image_.crossOrigin = this.crossOrigin_;\n }\n }\n if (this.state == TileState.IDLE) {\n this.state = TileState.LOADING;\n this.changed();\n this.tileLoadFunction_(this, this.src_);\n this.unlisten_ = listenImage(this.image_, this.handleImageLoad_.bind(this), this.handleImageError_.bind(this));\n }\n };\n /**\n * Discards event handlers which listen for load completion or errors.\n *\n * @private\n */\n ImageTile.prototype.unlistenImage_ = function () {\n if (this.unlisten_) {\n this.unlisten_();\n this.unlisten_ = null;\n }\n };\n return ImageTile;\n}(Tile));\n/**\n * Get a 1-pixel blank image.\n * @return {HTMLCanvasElement} Blank image.\n */\nfunction getBlankImage() {\n var ctx = createCanvasContext2D(1, 1);\n ctx.fillStyle = 'rgba(0,0,0,0)';\n ctx.fillRect(0, 0, 1, 1);\n return ctx.canvas;\n}\nexport default ImageTile;\n//# sourceMappingURL=ImageTile.js.map","/**\n * @module ol/reproj/Triangulation\n */\nimport { boundingExtent, createEmpty, extendCoordinate, getArea, getBottomLeft, getBottomRight, getTopLeft, getTopRight, getWidth, intersects, } from '../extent.js';\nimport { getTransform } from '../proj.js';\nimport { log2, modulo } from '../math.js';\n/**\n * Single triangle; consists of 3 source points and 3 target points.\n * @typedef {Object} Triangle\n * @property {Array<import(\"../coordinate.js\").Coordinate>} source Source.\n * @property {Array<import(\"../coordinate.js\").Coordinate>} target Target.\n */\n/**\n * Maximum number of subdivision steps during raster reprojection triangulation.\n * Prevents high memory usage and large number of proj4 calls (for certain\n * transformations and areas). At most `2*(2^this)` triangles are created for\n * each triangulated extent (tile/image).\n * @type {number}\n */\nvar MAX_SUBDIVISION = 10;\n/**\n * Maximum allowed size of triangle relative to world width. When transforming\n * corners of world extent between certain projections, the resulting\n * triangulation seems to have zero error and no subdivision is performed. If\n * the triangle width is more than this (relative to world width; 0-1),\n * subdivison is forced (up to `MAX_SUBDIVISION`). Default is `0.25`.\n * @type {number}\n */\nvar MAX_TRIANGLE_WIDTH = 0.25;\n/**\n * @classdesc\n * Class containing triangulation of the given target extent.\n * Used for determining source data and the reprojection itself.\n */\nvar Triangulation = /** @class */ (function () {\n /**\n * @param {import(\"../proj/Projection.js\").default} sourceProj Source projection.\n * @param {import(\"../proj/Projection.js\").default} targetProj Target projection.\n * @param {import(\"../extent.js\").Extent} targetExtent Target extent to triangulate.\n * @param {import(\"../extent.js\").Extent} maxSourceExtent Maximal source extent that can be used.\n * @param {number} errorThreshold Acceptable error (in source units).\n * @param {?number} opt_destinationResolution The (optional) resolution of the destination.\n */\n function Triangulation(sourceProj, targetProj, targetExtent, maxSourceExtent, errorThreshold, opt_destinationResolution) {\n /**\n * @type {import(\"../proj/Projection.js\").default}\n * @private\n */\n this.sourceProj_ = sourceProj;\n /**\n * @type {import(\"../proj/Projection.js\").default}\n * @private\n */\n this.targetProj_ = targetProj;\n /** @type {!Object<string, import(\"../coordinate.js\").Coordinate>} */\n var transformInvCache = {};\n var transformInv = getTransform(this.targetProj_, this.sourceProj_);\n /**\n * @param {import(\"../coordinate.js\").Coordinate} c A coordinate.\n * @return {import(\"../coordinate.js\").Coordinate} Transformed coordinate.\n * @private\n */\n this.transformInv_ = function (c) {\n var key = c[0] + '/' + c[1];\n if (!transformInvCache[key]) {\n transformInvCache[key] = transformInv(c);\n }\n return transformInvCache[key];\n };\n /**\n * @type {import(\"../extent.js\").Extent}\n * @private\n */\n this.maxSourceExtent_ = maxSourceExtent;\n /**\n * @type {number}\n * @private\n */\n this.errorThresholdSquared_ = errorThreshold * errorThreshold;\n /**\n * @type {Array<Triangle>}\n * @private\n */\n this.triangles_ = [];\n /**\n * Indicates that the triangulation crosses edge of the source projection.\n * @type {boolean}\n * @private\n */\n this.wrapsXInSource_ = false;\n /**\n * @type {boolean}\n * @private\n */\n this.canWrapXInSource_ =\n this.sourceProj_.canWrapX() &&\n !!maxSourceExtent &&\n !!this.sourceProj_.getExtent() &&\n getWidth(maxSourceExtent) == getWidth(this.sourceProj_.getExtent());\n /**\n * @type {?number}\n * @private\n */\n this.sourceWorldWidth_ = this.sourceProj_.getExtent()\n ? getWidth(this.sourceProj_.getExtent())\n : null;\n /**\n * @type {?number}\n * @private\n */\n this.targetWorldWidth_ = this.targetProj_.getExtent()\n ? getWidth(this.targetProj_.getExtent())\n : null;\n var destinationTopLeft = getTopLeft(targetExtent);\n var destinationTopRight = getTopRight(targetExtent);\n var destinationBottomRight = getBottomRight(targetExtent);\n var destinationBottomLeft = getBottomLeft(targetExtent);\n var sourceTopLeft = this.transformInv_(destinationTopLeft);\n var sourceTopRight = this.transformInv_(destinationTopRight);\n var sourceBottomRight = this.transformInv_(destinationBottomRight);\n var sourceBottomLeft = this.transformInv_(destinationBottomLeft);\n /*\n * The maxSubdivision controls how many splittings of the target area can\n * be done. The idea here is to do a linear mapping of the target areas\n * but the actual overal reprojection (can be) extremely non-linear. The\n * default value of MAX_SUBDIVISION was chosen based on mapping a 256x256\n * tile size. However this function is also called to remap canvas rendered\n * layers which can be much larger. This calculation increases the maxSubdivision\n * value by the right factor so that each 256x256 pixel area has\n * MAX_SUBDIVISION divisions.\n */\n var maxSubdivision = MAX_SUBDIVISION +\n (opt_destinationResolution\n ? Math.max(0, Math.ceil(log2(getArea(targetExtent) /\n (opt_destinationResolution *\n opt_destinationResolution *\n 256 *\n 256))))\n : 0);\n this.addQuad_(destinationTopLeft, destinationTopRight, destinationBottomRight, destinationBottomLeft, sourceTopLeft, sourceTopRight, sourceBottomRight, sourceBottomLeft, maxSubdivision);\n if (this.wrapsXInSource_) {\n var leftBound_1 = Infinity;\n this.triangles_.forEach(function (triangle, i, arr) {\n leftBound_1 = Math.min(leftBound_1, triangle.source[0][0], triangle.source[1][0], triangle.source[2][0]);\n });\n // Shift triangles to be as close to `leftBound` as possible\n // (if the distance is more than `worldWidth / 2` it can be closer.\n this.triangles_.forEach(function (triangle) {\n if (Math.max(triangle.source[0][0], triangle.source[1][0], triangle.source[2][0]) -\n leftBound_1 >\n this.sourceWorldWidth_ / 2) {\n var newTriangle = [\n [triangle.source[0][0], triangle.source[0][1]],\n [triangle.source[1][0], triangle.source[1][1]],\n [triangle.source[2][0], triangle.source[2][1]],\n ];\n if (newTriangle[0][0] - leftBound_1 > this.sourceWorldWidth_ / 2) {\n newTriangle[0][0] -= this.sourceWorldWidth_;\n }\n if (newTriangle[1][0] - leftBound_1 > this.sourceWorldWidth_ / 2) {\n newTriangle[1][0] -= this.sourceWorldWidth_;\n }\n if (newTriangle[2][0] - leftBound_1 > this.sourceWorldWidth_ / 2) {\n newTriangle[2][0] -= this.sourceWorldWidth_;\n }\n // Rarely (if the extent contains both the dateline and prime meridian)\n // the shift can in turn break some triangles.\n // Detect this here and don't shift in such cases.\n var minX = Math.min(newTriangle[0][0], newTriangle[1][0], newTriangle[2][0]);\n var maxX = Math.max(newTriangle[0][0], newTriangle[1][0], newTriangle[2][0]);\n if (maxX - minX < this.sourceWorldWidth_ / 2) {\n triangle.source = newTriangle;\n }\n }\n }.bind(this));\n }\n transformInvCache = {};\n }\n /**\n * Adds triangle to the triangulation.\n * @param {import(\"../coordinate.js\").Coordinate} a The target a coordinate.\n * @param {import(\"../coordinate.js\").Coordinate} b The target b coordinate.\n * @param {import(\"../coordinate.js\").Coordinate} c The target c coordinate.\n * @param {import(\"../coordinate.js\").Coordinate} aSrc The source a coordinate.\n * @param {import(\"../coordinate.js\").Coordinate} bSrc The source b coordinate.\n * @param {import(\"../coordinate.js\").Coordinate} cSrc The source c coordinate.\n * @private\n */\n Triangulation.prototype.addTriangle_ = function (a, b, c, aSrc, bSrc, cSrc) {\n this.triangles_.push({\n source: [aSrc, bSrc, cSrc],\n target: [a, b, c],\n });\n };\n /**\n * Adds quad (points in clock-wise order) to the triangulation\n * (and reprojects the vertices) if valid.\n * Performs quad subdivision if needed to increase precision.\n *\n * @param {import(\"../coordinate.js\").Coordinate} a The target a coordinate.\n * @param {import(\"../coordinate.js\").Coordinate} b The target b coordinate.\n * @param {import(\"../coordinate.js\").Coordinate} c The target c coordinate.\n * @param {import(\"../coordinate.js\").Coordinate} d The target d coordinate.\n * @param {import(\"../coordinate.js\").Coordinate} aSrc The source a coordinate.\n * @param {import(\"../coordinate.js\").Coordinate} bSrc The source b coordinate.\n * @param {import(\"../coordinate.js\").Coordinate} cSrc The source c coordinate.\n * @param {import(\"../coordinate.js\").Coordinate} dSrc The source d coordinate.\n * @param {number} maxSubdivision Maximal allowed subdivision of the quad.\n * @private\n */\n Triangulation.prototype.addQuad_ = function (a, b, c, d, aSrc, bSrc, cSrc, dSrc, maxSubdivision) {\n var sourceQuadExtent = boundingExtent([aSrc, bSrc, cSrc, dSrc]);\n var sourceCoverageX = this.sourceWorldWidth_\n ? getWidth(sourceQuadExtent) / this.sourceWorldWidth_\n : null;\n var sourceWorldWidth = /** @type {number} */ (this.sourceWorldWidth_);\n // when the quad is wrapped in the source projection\n // it covers most of the projection extent, but not fully\n var wrapsX = this.sourceProj_.canWrapX() &&\n sourceCoverageX > 0.5 &&\n sourceCoverageX < 1;\n var needsSubdivision = false;\n if (maxSubdivision > 0) {\n if (this.targetProj_.isGlobal() && this.targetWorldWidth_) {\n var targetQuadExtent = boundingExtent([a, b, c, d]);\n var targetCoverageX = getWidth(targetQuadExtent) / this.targetWorldWidth_;\n needsSubdivision =\n targetCoverageX > MAX_TRIANGLE_WIDTH || needsSubdivision;\n }\n if (!wrapsX && this.sourceProj_.isGlobal() && sourceCoverageX) {\n needsSubdivision =\n sourceCoverageX > MAX_TRIANGLE_WIDTH || needsSubdivision;\n }\n }\n if (!needsSubdivision && this.maxSourceExtent_) {\n if (isFinite(sourceQuadExtent[0]) &&\n isFinite(sourceQuadExtent[1]) &&\n isFinite(sourceQuadExtent[2]) &&\n isFinite(sourceQuadExtent[3])) {\n if (!intersects(sourceQuadExtent, this.maxSourceExtent_)) {\n // whole quad outside source projection extent -> ignore\n return;\n }\n }\n }\n var isNotFinite = 0;\n if (!needsSubdivision) {\n if (!isFinite(aSrc[0]) ||\n !isFinite(aSrc[1]) ||\n !isFinite(bSrc[0]) ||\n !isFinite(bSrc[1]) ||\n !isFinite(cSrc[0]) ||\n !isFinite(cSrc[1]) ||\n !isFinite(dSrc[0]) ||\n !isFinite(dSrc[1])) {\n if (maxSubdivision > 0) {\n needsSubdivision = true;\n }\n else {\n // It might be the case that only 1 of the points is infinite. In this case\n // we can draw a single triangle with the other three points\n isNotFinite =\n (!isFinite(aSrc[0]) || !isFinite(aSrc[1]) ? 8 : 0) +\n (!isFinite(bSrc[0]) || !isFinite(bSrc[1]) ? 4 : 0) +\n (!isFinite(cSrc[0]) || !isFinite(cSrc[1]) ? 2 : 0) +\n (!isFinite(dSrc[0]) || !isFinite(dSrc[1]) ? 1 : 0);\n if (isNotFinite != 1 &&\n isNotFinite != 2 &&\n isNotFinite != 4 &&\n isNotFinite != 8) {\n return;\n }\n }\n }\n }\n if (maxSubdivision > 0) {\n if (!needsSubdivision) {\n var center = [(a[0] + c[0]) / 2, (a[1] + c[1]) / 2];\n var centerSrc = this.transformInv_(center);\n var dx = void 0;\n if (wrapsX) {\n var centerSrcEstimX = (modulo(aSrc[0], sourceWorldWidth) +\n modulo(cSrc[0], sourceWorldWidth)) /\n 2;\n dx = centerSrcEstimX - modulo(centerSrc[0], sourceWorldWidth);\n }\n else {\n dx = (aSrc[0] + cSrc[0]) / 2 - centerSrc[0];\n }\n var dy = (aSrc[1] + cSrc[1]) / 2 - centerSrc[1];\n var centerSrcErrorSquared = dx * dx + dy * dy;\n needsSubdivision = centerSrcErrorSquared > this.errorThresholdSquared_;\n }\n if (needsSubdivision) {\n if (Math.abs(a[0] - c[0]) <= Math.abs(a[1] - c[1])) {\n // split horizontally (top & bottom)\n var bc = [(b[0] + c[0]) / 2, (b[1] + c[1]) / 2];\n var bcSrc = this.transformInv_(bc);\n var da = [(d[0] + a[0]) / 2, (d[1] + a[1]) / 2];\n var daSrc = this.transformInv_(da);\n this.addQuad_(a, b, bc, da, aSrc, bSrc, bcSrc, daSrc, maxSubdivision - 1);\n this.addQuad_(da, bc, c, d, daSrc, bcSrc, cSrc, dSrc, maxSubdivision - 1);\n }\n else {\n // split vertically (left & right)\n var ab = [(a[0] + b[0]) / 2, (a[1] + b[1]) / 2];\n var abSrc = this.transformInv_(ab);\n var cd = [(c[0] + d[0]) / 2, (c[1] + d[1]) / 2];\n var cdSrc = this.transformInv_(cd);\n this.addQuad_(a, ab, cd, d, aSrc, abSrc, cdSrc, dSrc, maxSubdivision - 1);\n this.addQuad_(ab, b, c, cd, abSrc, bSrc, cSrc, cdSrc, maxSubdivision - 1);\n }\n return;\n }\n }\n if (wrapsX) {\n if (!this.canWrapXInSource_) {\n return;\n }\n this.wrapsXInSource_ = true;\n }\n // Exactly zero or one of *Src is not finite\n // The triangles must have the diagonal line as the first side\n // This is to allow easy code in reproj.s to make it straight for broken\n // browsers that can't handle diagonal clipping\n if ((isNotFinite & 0xb) == 0) {\n this.addTriangle_(a, c, d, aSrc, cSrc, dSrc);\n }\n if ((isNotFinite & 0xe) == 0) {\n this.addTriangle_(a, c, b, aSrc, cSrc, bSrc);\n }\n if (isNotFinite) {\n // Try the other two triangles\n if ((isNotFinite & 0xd) == 0) {\n this.addTriangle_(b, d, a, bSrc, dSrc, aSrc);\n }\n if ((isNotFinite & 0x7) == 0) {\n this.addTriangle_(b, d, c, bSrc, dSrc, cSrc);\n }\n }\n };\n /**\n * Calculates extent of the `source` coordinates from all the triangles.\n *\n * @return {import(\"../extent.js\").Extent} Calculated extent.\n */\n Triangulation.prototype.calculateSourceExtent = function () {\n var extent = createEmpty();\n this.triangles_.forEach(function (triangle, i, arr) {\n var src = triangle.source;\n extendCoordinate(extent, src[0]);\n extendCoordinate(extent, src[1]);\n extendCoordinate(extent, src[2]);\n });\n return extent;\n };\n /**\n * @return {Array<Triangle>} Array of the calculated triangles.\n */\n Triangulation.prototype.getTriangles = function () {\n return this.triangles_;\n };\n return Triangulation;\n}());\nexport default Triangulation;\n//# sourceMappingURL=Triangulation.js.map","/**\n * @module ol/renderer/canvas/common\n */\n/**\n * Context options to disable image smoothing.\n * @type {Object}\n */\nexport var IMAGE_SMOOTHING_DISABLED = {\n imageSmoothingEnabled: false,\n msImageSmoothingEnabled: false,\n};\n/**\n * Context options to enable image smoothing.\n * @type {Object}\n */\nexport var IMAGE_SMOOTHING_ENABLED = {\n imageSmoothingEnabled: true,\n msImageSmoothingEnabled: true,\n};\n//# sourceMappingURL=common.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/reproj/Tile\n */\nimport { ERROR_THRESHOLD } from './common.js';\nimport EventType from '../events/EventType.js';\nimport Tile from '../Tile.js';\nimport TileState from '../TileState.js';\nimport Triangulation from './Triangulation.js';\nimport { calculateSourceExtentResolution, render as renderReprojected, } from '../reproj.js';\nimport { clamp } from '../math.js';\nimport { getArea, getIntersection } from '../extent.js';\nimport { listen, unlistenByKey } from '../events.js';\n/**\n * @typedef {function(number, number, number, number) : import(\"../Tile.js\").default} FunctionType\n */\n/**\n * @classdesc\n * Class encapsulating single reprojected tile.\n * See {@link module:ol/source/TileImage~TileImage}.\n *\n */\nvar ReprojTile = /** @class */ (function (_super) {\n __extends(ReprojTile, _super);\n /**\n * @param {import(\"../proj/Projection.js\").default} sourceProj Source projection.\n * @param {import(\"../tilegrid/TileGrid.js\").default} sourceTileGrid Source tile grid.\n * @param {import(\"../proj/Projection.js\").default} targetProj Target projection.\n * @param {import(\"../tilegrid/TileGrid.js\").default} targetTileGrid Target tile grid.\n * @param {import(\"../tilecoord.js\").TileCoord} tileCoord Coordinate of the tile.\n * @param {import(\"../tilecoord.js\").TileCoord} wrappedTileCoord Coordinate of the tile wrapped in X.\n * @param {number} pixelRatio Pixel ratio.\n * @param {number} gutter Gutter of the source tiles.\n * @param {FunctionType} getTileFunction\n * Function returning source tiles (z, x, y, pixelRatio).\n * @param {number} [opt_errorThreshold] Acceptable reprojection error (in px).\n * @param {boolean} [opt_renderEdges] Render reprojection edges.\n * @param {boolean} [opt_interpolate] Use linear interpolation when resampling.\n */\n function ReprojTile(sourceProj, sourceTileGrid, targetProj, targetTileGrid, tileCoord, wrappedTileCoord, pixelRatio, gutter, getTileFunction, opt_errorThreshold, opt_renderEdges, opt_interpolate) {\n var _this = _super.call(this, tileCoord, TileState.IDLE, { interpolate: !!opt_interpolate }) || this;\n /**\n * @private\n * @type {boolean}\n */\n _this.renderEdges_ = opt_renderEdges !== undefined ? opt_renderEdges : false;\n /**\n * @private\n * @type {number}\n */\n _this.pixelRatio_ = pixelRatio;\n /**\n * @private\n * @type {number}\n */\n _this.gutter_ = gutter;\n /**\n * @private\n * @type {HTMLCanvasElement}\n */\n _this.canvas_ = null;\n /**\n * @private\n * @type {import(\"../tilegrid/TileGrid.js\").default}\n */\n _this.sourceTileGrid_ = sourceTileGrid;\n /**\n * @private\n * @type {import(\"../tilegrid/TileGrid.js\").default}\n */\n _this.targetTileGrid_ = targetTileGrid;\n /**\n * @private\n * @type {import(\"../tilecoord.js\").TileCoord}\n */\n _this.wrappedTileCoord_ = wrappedTileCoord ? wrappedTileCoord : tileCoord;\n /**\n * @private\n * @type {!Array<import(\"../Tile.js\").default>}\n */\n _this.sourceTiles_ = [];\n /**\n * @private\n * @type {?Array<import(\"../events.js\").EventsKey>}\n */\n _this.sourcesListenerKeys_ = null;\n /**\n * @private\n * @type {number}\n */\n _this.sourceZ_ = 0;\n var targetExtent = targetTileGrid.getTileCoordExtent(_this.wrappedTileCoord_);\n var maxTargetExtent = _this.targetTileGrid_.getExtent();\n var maxSourceExtent = _this.sourceTileGrid_.getExtent();\n var limitedTargetExtent = maxTargetExtent\n ? getIntersection(targetExtent, maxTargetExtent)\n : targetExtent;\n if (getArea(limitedTargetExtent) === 0) {\n // Tile is completely outside range -> EMPTY\n // TODO: is it actually correct that the source even creates the tile ?\n _this.state = TileState.EMPTY;\n return _this;\n }\n var sourceProjExtent = sourceProj.getExtent();\n if (sourceProjExtent) {\n if (!maxSourceExtent) {\n maxSourceExtent = sourceProjExtent;\n }\n else {\n maxSourceExtent = getIntersection(maxSourceExtent, sourceProjExtent);\n }\n }\n var targetResolution = targetTileGrid.getResolution(_this.wrappedTileCoord_[0]);\n var sourceResolution = calculateSourceExtentResolution(sourceProj, targetProj, limitedTargetExtent, targetResolution);\n if (!isFinite(sourceResolution) || sourceResolution <= 0) {\n // invalid sourceResolution -> EMPTY\n // probably edges of the projections when no extent is defined\n _this.state = TileState.EMPTY;\n return _this;\n }\n var errorThresholdInPixels = opt_errorThreshold !== undefined ? opt_errorThreshold : ERROR_THRESHOLD;\n /**\n * @private\n * @type {!import(\"./Triangulation.js\").default}\n */\n _this.triangulation_ = new Triangulation(sourceProj, targetProj, limitedTargetExtent, maxSourceExtent, sourceResolution * errorThresholdInPixels, targetResolution);\n if (_this.triangulation_.getTriangles().length === 0) {\n // no valid triangles -> EMPTY\n _this.state = TileState.EMPTY;\n return _this;\n }\n _this.sourceZ_ = sourceTileGrid.getZForResolution(sourceResolution);\n var sourceExtent = _this.triangulation_.calculateSourceExtent();\n if (maxSourceExtent) {\n if (sourceProj.canWrapX()) {\n sourceExtent[1] = clamp(sourceExtent[1], maxSourceExtent[1], maxSourceExtent[3]);\n sourceExtent[3] = clamp(sourceExtent[3], maxSourceExtent[1], maxSourceExtent[3]);\n }\n else {\n sourceExtent = getIntersection(sourceExtent, maxSourceExtent);\n }\n }\n if (!getArea(sourceExtent)) {\n _this.state = TileState.EMPTY;\n }\n else {\n var sourceRange = sourceTileGrid.getTileRangeForExtentAndZ(sourceExtent, _this.sourceZ_);\n for (var srcX = sourceRange.minX; srcX <= sourceRange.maxX; srcX++) {\n for (var srcY = sourceRange.minY; srcY <= sourceRange.maxY; srcY++) {\n var tile = getTileFunction(_this.sourceZ_, srcX, srcY, pixelRatio);\n if (tile) {\n _this.sourceTiles_.push(tile);\n }\n }\n }\n if (_this.sourceTiles_.length === 0) {\n _this.state = TileState.EMPTY;\n }\n }\n return _this;\n }\n /**\n * Get the HTML Canvas element for this tile.\n * @return {HTMLCanvasElement} Canvas.\n */\n ReprojTile.prototype.getImage = function () {\n return this.canvas_;\n };\n /**\n * @private\n */\n ReprojTile.prototype.reproject_ = function () {\n var sources = [];\n this.sourceTiles_.forEach(function (tile, i, arr) {\n if (tile && tile.getState() == TileState.LOADED) {\n sources.push({\n extent: this.sourceTileGrid_.getTileCoordExtent(tile.tileCoord),\n image: tile.getImage(),\n });\n }\n }.bind(this));\n this.sourceTiles_.length = 0;\n if (sources.length === 0) {\n this.state = TileState.ERROR;\n }\n else {\n var z = this.wrappedTileCoord_[0];\n var size = this.targetTileGrid_.getTileSize(z);\n var width = typeof size === 'number' ? size : size[0];\n var height = typeof size === 'number' ? size : size[1];\n var targetResolution = this.targetTileGrid_.getResolution(z);\n var sourceResolution = this.sourceTileGrid_.getResolution(this.sourceZ_);\n var targetExtent = this.targetTileGrid_.getTileCoordExtent(this.wrappedTileCoord_);\n this.canvas_ = renderReprojected(width, height, this.pixelRatio_, sourceResolution, this.sourceTileGrid_.getExtent(), targetResolution, targetExtent, this.triangulation_, sources, this.gutter_, this.renderEdges_, this.interpolate);\n this.state = TileState.LOADED;\n }\n this.changed();\n };\n /**\n * Load not yet loaded URI.\n */\n ReprojTile.prototype.load = function () {\n if (this.state == TileState.IDLE) {\n this.state = TileState.LOADING;\n this.changed();\n var leftToLoad_1 = 0;\n this.sourcesListenerKeys_ = [];\n this.sourceTiles_.forEach(function (tile, i, arr) {\n var state = tile.getState();\n if (state == TileState.IDLE || state == TileState.LOADING) {\n leftToLoad_1++;\n var sourceListenKey_1 = listen(tile, EventType.CHANGE, function (e) {\n var state = tile.getState();\n if (state == TileState.LOADED ||\n state == TileState.ERROR ||\n state == TileState.EMPTY) {\n unlistenByKey(sourceListenKey_1);\n leftToLoad_1--;\n if (leftToLoad_1 === 0) {\n this.unlistenSources_();\n this.reproject_();\n }\n }\n }, this);\n this.sourcesListenerKeys_.push(sourceListenKey_1);\n }\n }.bind(this));\n if (leftToLoad_1 === 0) {\n setTimeout(this.reproject_.bind(this), 0);\n }\n else {\n this.sourceTiles_.forEach(function (tile, i, arr) {\n var state = tile.getState();\n if (state == TileState.IDLE) {\n tile.load();\n }\n });\n }\n }\n };\n /**\n * @private\n */\n ReprojTile.prototype.unlistenSources_ = function () {\n this.sourcesListenerKeys_.forEach(unlistenByKey);\n this.sourcesListenerKeys_ = null;\n };\n return ReprojTile;\n}(Tile));\nexport default ReprojTile;\n//# sourceMappingURL=Tile.js.map","/**\n * @module ol/reproj/common\n */\n/**\n * Default maximum allowed threshold (in pixels) for reprojection\n * triangulation.\n * @type {number}\n */\nexport var ERROR_THRESHOLD = 0.5;\n/**\n * Enable automatic reprojection of raster sources. Default is `true`.\n * TODO: decide if we want to expose this as a build flag or remove it\n * @type {boolean}\n */\nexport var ENABLE_RASTER_REPROJECTION = true;\n//# sourceMappingURL=common.js.map","/**\n * @module ol/TileRange\n */\n/**\n * A representation of a contiguous block of tiles. A tile range is specified\n * by its min/max tile coordinates and is inclusive of coordinates.\n */\nvar TileRange = /** @class */ (function () {\n /**\n * @param {number} minX Minimum X.\n * @param {number} maxX Maximum X.\n * @param {number} minY Minimum Y.\n * @param {number} maxY Maximum Y.\n */\n function TileRange(minX, maxX, minY, maxY) {\n /**\n * @type {number}\n */\n this.minX = minX;\n /**\n * @type {number}\n */\n this.maxX = maxX;\n /**\n * @type {number}\n */\n this.minY = minY;\n /**\n * @type {number}\n */\n this.maxY = maxY;\n }\n /**\n * @param {import(\"./tilecoord.js\").TileCoord} tileCoord Tile coordinate.\n * @return {boolean} Contains tile coordinate.\n */\n TileRange.prototype.contains = function (tileCoord) {\n return this.containsXY(tileCoord[1], tileCoord[2]);\n };\n /**\n * @param {TileRange} tileRange Tile range.\n * @return {boolean} Contains.\n */\n TileRange.prototype.containsTileRange = function (tileRange) {\n return (this.minX <= tileRange.minX &&\n tileRange.maxX <= this.maxX &&\n this.minY <= tileRange.minY &&\n tileRange.maxY <= this.maxY);\n };\n /**\n * @param {number} x Tile coordinate x.\n * @param {number} y Tile coordinate y.\n * @return {boolean} Contains coordinate.\n */\n TileRange.prototype.containsXY = function (x, y) {\n return this.minX <= x && x <= this.maxX && this.minY <= y && y <= this.maxY;\n };\n /**\n * @param {TileRange} tileRange Tile range.\n * @return {boolean} Equals.\n */\n TileRange.prototype.equals = function (tileRange) {\n return (this.minX == tileRange.minX &&\n this.minY == tileRange.minY &&\n this.maxX == tileRange.maxX &&\n this.maxY == tileRange.maxY);\n };\n /**\n * @param {TileRange} tileRange Tile range.\n */\n TileRange.prototype.extend = function (tileRange) {\n if (tileRange.minX < this.minX) {\n this.minX = tileRange.minX;\n }\n if (tileRange.maxX > this.maxX) {\n this.maxX = tileRange.maxX;\n }\n if (tileRange.minY < this.minY) {\n this.minY = tileRange.minY;\n }\n if (tileRange.maxY > this.maxY) {\n this.maxY = tileRange.maxY;\n }\n };\n /**\n * @return {number} Height.\n */\n TileRange.prototype.getHeight = function () {\n return this.maxY - this.minY + 1;\n };\n /**\n * @return {import(\"./size.js\").Size} Size.\n */\n TileRange.prototype.getSize = function () {\n return [this.getWidth(), this.getHeight()];\n };\n /**\n * @return {number} Width.\n */\n TileRange.prototype.getWidth = function () {\n return this.maxX - this.minX + 1;\n };\n /**\n * @param {TileRange} tileRange Tile range.\n * @return {boolean} Intersects.\n */\n TileRange.prototype.intersects = function (tileRange) {\n return (this.minX <= tileRange.maxX &&\n this.maxX >= tileRange.minX &&\n this.minY <= tileRange.maxY &&\n this.maxY >= tileRange.minY);\n };\n return TileRange;\n}());\n/**\n * @param {number} minX Minimum X.\n * @param {number} maxX Maximum X.\n * @param {number} minY Minimum Y.\n * @param {number} maxY Maximum Y.\n * @param {TileRange} [tileRange] TileRange.\n * @return {TileRange} Tile range.\n */\nexport function createOrUpdate(minX, maxX, minY, maxY, tileRange) {\n if (tileRange !== undefined) {\n tileRange.minX = minX;\n tileRange.maxX = maxX;\n tileRange.minY = minY;\n tileRange.maxY = maxY;\n return tileRange;\n }\n else {\n return new TileRange(minX, maxX, minY, maxY);\n }\n}\nexport default TileRange;\n//# sourceMappingURL=TileRange.js.map","/**\n * @module ol/size\n */\n/**\n * An array of numbers representing a size: `[width, height]`.\n * @typedef {Array<number>} Size\n * @api\n */\n/**\n * Returns a buffered size.\n * @param {Size} size Size.\n * @param {number} num The amount by which to buffer.\n * @param {Size} [opt_size] Optional reusable size array.\n * @return {Size} The buffered size.\n */\nexport function buffer(size, num, opt_size) {\n if (opt_size === undefined) {\n opt_size = [0, 0];\n }\n opt_size[0] = size[0] + 2 * num;\n opt_size[1] = size[1] + 2 * num;\n return opt_size;\n}\n/**\n * Determines if a size has a positive area.\n * @param {Size} size The size to test.\n * @return {boolean} The size has a positive area.\n */\nexport function hasArea(size) {\n return size[0] > 0 && size[1] > 0;\n}\n/**\n * Returns a size scaled by a ratio. The result will be an array of integers.\n * @param {Size} size Size.\n * @param {number} ratio Ratio.\n * @param {Size} [opt_size] Optional reusable size array.\n * @return {Size} The scaled size.\n */\nexport function scale(size, ratio, opt_size) {\n if (opt_size === undefined) {\n opt_size = [0, 0];\n }\n opt_size[0] = (size[0] * ratio + 0.5) | 0;\n opt_size[1] = (size[1] * ratio + 0.5) | 0;\n return opt_size;\n}\n/**\n * Returns an `Size` array for the passed in number (meaning: square) or\n * `Size` array.\n * (meaning: non-square),\n * @param {number|Size} size Width and height.\n * @param {Size} [opt_size] Optional reusable size array.\n * @return {Size} Size.\n * @api\n */\nexport function toSize(size, opt_size) {\n if (Array.isArray(size)) {\n return size;\n }\n else {\n if (opt_size === undefined) {\n opt_size = [size, size];\n }\n else {\n opt_size[0] = size;\n opt_size[1] = size;\n }\n return opt_size;\n }\n}\n//# sourceMappingURL=size.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/renderer/canvas/TileLayer\n */\nimport CanvasLayerRenderer from './Layer.js';\nimport ImageTile from '../../ImageTile.js';\nimport ReprojTile from '../../reproj/Tile.js';\nimport TileRange from '../../TileRange.js';\nimport TileState from '../../TileState.js';\nimport { IMAGE_SMOOTHING_DISABLED, IMAGE_SMOOTHING_ENABLED } from './common.js';\nimport { apply as applyTransform, compose as composeTransform, makeInverse, toString as toTransformString, } from '../../transform.js';\nimport { assign } from '../../obj.js';\nimport { containsCoordinate, createEmpty, equals, getIntersection, getTopLeft, intersects, } from '../../extent.js';\nimport { cssOpacity } from '../../css.js';\nimport { fromUserExtent } from '../../proj.js';\nimport { getUid } from '../../util.js';\nimport { numberSafeCompareFunction } from '../../array.js';\nimport { toSize } from '../../size.js';\n/**\n * @classdesc\n * Canvas renderer for tile layers.\n * @api\n * @template {import(\"../../layer/Tile.js\").default<import(\"../../source/Tile.js\").default>|import(\"../../layer/VectorTile.js\").default} [LayerType=import(\"../../layer/Tile.js\").default<import(\"../../source/Tile.js\").default>|import(\"../../layer/VectorTile.js\").default]\n * @extends {CanvasLayerRenderer<LayerType>}\n */\nvar CanvasTileLayerRenderer = /** @class */ (function (_super) {\n __extends(CanvasTileLayerRenderer, _super);\n /**\n * @param {LayerType} tileLayer Tile layer.\n */\n function CanvasTileLayerRenderer(tileLayer) {\n var _this = _super.call(this, tileLayer) || this;\n /**\n * Rendered extent has changed since the previous `renderFrame()` call\n * @type {boolean}\n */\n _this.extentChanged = true;\n /**\n * @private\n * @type {?import(\"../../extent.js\").Extent}\n */\n _this.renderedExtent_ = null;\n /**\n * @protected\n * @type {number}\n */\n _this.renderedPixelRatio;\n /**\n * @protected\n * @type {import(\"../../proj/Projection.js\").default}\n */\n _this.renderedProjection = null;\n /**\n * @protected\n * @type {number}\n */\n _this.renderedRevision;\n /**\n * @protected\n * @type {!Array<import(\"../../Tile.js\").default>}\n */\n _this.renderedTiles = [];\n /**\n * @private\n * @type {boolean}\n */\n _this.newTiles_ = false;\n /**\n * @protected\n * @type {import(\"../../extent.js\").Extent}\n */\n _this.tmpExtent = createEmpty();\n /**\n * @private\n * @type {import(\"../../TileRange.js\").default}\n */\n _this.tmpTileRange_ = new TileRange(0, 0, 0, 0);\n return _this;\n }\n /**\n * @protected\n * @param {import(\"../../Tile.js\").default} tile Tile.\n * @return {boolean} Tile is drawable.\n */\n CanvasTileLayerRenderer.prototype.isDrawableTile = function (tile) {\n var tileLayer = this.getLayer();\n var tileState = tile.getState();\n var useInterimTilesOnError = tileLayer.getUseInterimTilesOnError();\n return (tileState == TileState.LOADED ||\n tileState == TileState.EMPTY ||\n (tileState == TileState.ERROR && !useInterimTilesOnError));\n };\n /**\n * @param {number} z Tile coordinate z.\n * @param {number} x Tile coordinate x.\n * @param {number} y Tile coordinate y.\n * @param {import(\"../../PluggableMap.js\").FrameState} frameState Frame state.\n * @return {!import(\"../../Tile.js\").default} Tile.\n */\n CanvasTileLayerRenderer.prototype.getTile = function (z, x, y, frameState) {\n var pixelRatio = frameState.pixelRatio;\n var projection = frameState.viewState.projection;\n var tileLayer = this.getLayer();\n var tileSource = tileLayer.getSource();\n var tile = tileSource.getTile(z, x, y, pixelRatio, projection);\n if (tile.getState() == TileState.ERROR) {\n if (!tileLayer.getUseInterimTilesOnError()) {\n // When useInterimTilesOnError is false, we consider the error tile as loaded.\n tile.setState(TileState.LOADED);\n }\n else if (tileLayer.getPreload() > 0) {\n // Preloaded tiles for lower resolutions might have finished loading.\n this.newTiles_ = true;\n }\n }\n if (!this.isDrawableTile(tile)) {\n tile = tile.getInterimTile();\n }\n return tile;\n };\n /**\n * @param {import(\"../../pixel.js\").Pixel} pixel Pixel.\n * @return {Uint8ClampedArray} Data at the pixel location.\n */\n CanvasTileLayerRenderer.prototype.getData = function (pixel) {\n var frameState = this.frameState;\n if (!frameState) {\n return null;\n }\n var layer = this.getLayer();\n var coordinate = applyTransform(frameState.pixelToCoordinateTransform, pixel.slice());\n var layerExtent = layer.getExtent();\n if (layerExtent) {\n if (!containsCoordinate(layerExtent, coordinate)) {\n return null;\n }\n }\n var pixelRatio = frameState.pixelRatio;\n var projection = frameState.viewState.projection;\n var viewState = frameState.viewState;\n var source = layer.getRenderSource();\n var tileGrid = source.getTileGridForProjection(viewState.projection);\n var tilePixelRatio = source.getTilePixelRatio(frameState.pixelRatio);\n for (var z = tileGrid.getZForResolution(viewState.resolution); z >= tileGrid.getMinZoom(); --z) {\n var tileCoord = tileGrid.getTileCoordForCoordAndZ(coordinate, z);\n var tile = source.getTile(z, tileCoord[1], tileCoord[2], pixelRatio, projection);\n if (!(tile instanceof ImageTile || tile instanceof ReprojTile)) {\n return null;\n }\n if (tile.getState() !== TileState.LOADED) {\n continue;\n }\n var tileOrigin = tileGrid.getOrigin(z);\n var tileSize = toSize(tileGrid.getTileSize(z));\n var tileResolution = tileGrid.getResolution(z);\n var col = Math.floor(tilePixelRatio *\n ((coordinate[0] - tileOrigin[0]) / tileResolution -\n tileCoord[1] * tileSize[0]));\n var row = Math.floor(tilePixelRatio *\n ((tileOrigin[1] - coordinate[1]) / tileResolution -\n tileCoord[2] * tileSize[1]));\n return this.getImageData(tile.getImage(), col, row);\n }\n return null;\n };\n /**\n * @param {Object<number, Object<string, import(\"../../Tile.js\").default>>} tiles Lookup of loaded tiles by zoom level.\n * @param {number} zoom Zoom level.\n * @param {import(\"../../Tile.js\").default} tile Tile.\n * @return {boolean|void} If `false`, the tile will not be considered loaded.\n */\n CanvasTileLayerRenderer.prototype.loadedTileCallback = function (tiles, zoom, tile) {\n if (this.isDrawableTile(tile)) {\n return _super.prototype.loadedTileCallback.call(this, tiles, zoom, tile);\n }\n return false;\n };\n /**\n * Determine whether render should be called.\n * @param {import(\"../../PluggableMap.js\").FrameState} frameState Frame state.\n * @return {boolean} Layer is ready to be rendered.\n */\n CanvasTileLayerRenderer.prototype.prepareFrame = function (frameState) {\n return !!this.getLayer().getSource();\n };\n /**\n * Render the layer.\n * @param {import(\"../../PluggableMap.js\").FrameState} frameState Frame state.\n * @param {HTMLElement} target Target that may be used to render content to.\n * @return {HTMLElement} The rendered element.\n */\n CanvasTileLayerRenderer.prototype.renderFrame = function (frameState, target) {\n var layerState = frameState.layerStatesArray[frameState.layerIndex];\n var viewState = frameState.viewState;\n var projection = viewState.projection;\n var viewResolution = viewState.resolution;\n var viewCenter = viewState.center;\n var rotation = viewState.rotation;\n var pixelRatio = frameState.pixelRatio;\n var tileLayer = this.getLayer();\n var tileSource = tileLayer.getSource();\n var sourceRevision = tileSource.getRevision();\n var tileGrid = tileSource.getTileGridForProjection(projection);\n var z = tileGrid.getZForResolution(viewResolution, tileSource.zDirection);\n var tileResolution = tileGrid.getResolution(z);\n var extent = frameState.extent;\n var layerExtent = layerState.extent && fromUserExtent(layerState.extent, projection);\n if (layerExtent) {\n extent = getIntersection(extent, fromUserExtent(layerState.extent, projection));\n }\n var tilePixelRatio = tileSource.getTilePixelRatio(pixelRatio);\n // desired dimensions of the canvas in pixels\n var width = Math.round(frameState.size[0] * tilePixelRatio);\n var height = Math.round(frameState.size[1] * tilePixelRatio);\n if (rotation) {\n var size = Math.round(Math.sqrt(width * width + height * height));\n width = size;\n height = size;\n }\n var dx = (tileResolution * width) / 2 / tilePixelRatio;\n var dy = (tileResolution * height) / 2 / tilePixelRatio;\n var canvasExtent = [\n viewCenter[0] - dx,\n viewCenter[1] - dy,\n viewCenter[0] + dx,\n viewCenter[1] + dy,\n ];\n var tileRange = tileGrid.getTileRangeForExtentAndZ(extent, z);\n /**\n * @type {Object<number, Object<string, import(\"../../Tile.js\").default>>}\n */\n var tilesToDrawByZ = {};\n tilesToDrawByZ[z] = {};\n var findLoadedTiles = this.createLoadedTileFinder(tileSource, projection, tilesToDrawByZ);\n var tmpExtent = this.tmpExtent;\n var tmpTileRange = this.tmpTileRange_;\n this.newTiles_ = false;\n for (var x = tileRange.minX; x <= tileRange.maxX; ++x) {\n for (var y = tileRange.minY; y <= tileRange.maxY; ++y) {\n var tile = this.getTile(z, x, y, frameState);\n if (this.isDrawableTile(tile)) {\n var uid = getUid(this);\n if (tile.getState() == TileState.LOADED) {\n tilesToDrawByZ[z][tile.tileCoord.toString()] = tile;\n var inTransition = tile.inTransition(uid);\n if (!this.newTiles_ &&\n (inTransition || this.renderedTiles.indexOf(tile) === -1)) {\n this.newTiles_ = true;\n }\n }\n if (tile.getAlpha(uid, frameState.time) === 1) {\n // don't look for alt tiles if alpha is 1\n continue;\n }\n }\n var childTileRange = tileGrid.getTileCoordChildTileRange(tile.tileCoord, tmpTileRange, tmpExtent);\n var covered = false;\n if (childTileRange) {\n covered = findLoadedTiles(z + 1, childTileRange);\n }\n if (!covered) {\n tileGrid.forEachTileCoordParentTileRange(tile.tileCoord, findLoadedTiles, tmpTileRange, tmpExtent);\n }\n }\n }\n var canvasScale = tileResolution / viewResolution;\n // set forward and inverse pixel transforms\n composeTransform(this.pixelTransform, frameState.size[0] / 2, frameState.size[1] / 2, 1 / tilePixelRatio, 1 / tilePixelRatio, rotation, -width / 2, -height / 2);\n var canvasTransform = toTransformString(this.pixelTransform);\n this.useContainer(target, canvasTransform, layerState.opacity, this.getBackground(frameState));\n var context = this.context;\n var canvas = context.canvas;\n makeInverse(this.inversePixelTransform, this.pixelTransform);\n // set scale transform for calculating tile positions on the canvas\n composeTransform(this.tempTransform, width / 2, height / 2, canvasScale, canvasScale, 0, -width / 2, -height / 2);\n if (canvas.width != width || canvas.height != height) {\n canvas.width = width;\n canvas.height = height;\n }\n else if (!this.containerReused) {\n context.clearRect(0, 0, width, height);\n }\n if (layerExtent) {\n this.clipUnrotated(context, frameState, layerExtent);\n }\n if (!tileSource.getInterpolate()) {\n assign(context, IMAGE_SMOOTHING_DISABLED);\n }\n this.preRender(context, frameState);\n this.renderedTiles.length = 0;\n /** @type {Array<number>} */\n var zs = Object.keys(tilesToDrawByZ).map(Number);\n zs.sort(numberSafeCompareFunction);\n var clips, clipZs, currentClip;\n if (layerState.opacity === 1 &&\n (!this.containerReused ||\n tileSource.getOpaque(frameState.viewState.projection))) {\n zs = zs.reverse();\n }\n else {\n clips = [];\n clipZs = [];\n }\n for (var i = zs.length - 1; i >= 0; --i) {\n var currentZ = zs[i];\n var currentTilePixelSize = tileSource.getTilePixelSize(currentZ, pixelRatio, projection);\n var currentResolution = tileGrid.getResolution(currentZ);\n var currentScale = currentResolution / tileResolution;\n var dx_1 = currentTilePixelSize[0] * currentScale * canvasScale;\n var dy_1 = currentTilePixelSize[1] * currentScale * canvasScale;\n var originTileCoord = tileGrid.getTileCoordForCoordAndZ(getTopLeft(canvasExtent), currentZ);\n var originTileExtent = tileGrid.getTileCoordExtent(originTileCoord);\n var origin_1 = applyTransform(this.tempTransform, [\n (tilePixelRatio * (originTileExtent[0] - canvasExtent[0])) /\n tileResolution,\n (tilePixelRatio * (canvasExtent[3] - originTileExtent[3])) /\n tileResolution,\n ]);\n var tileGutter = tilePixelRatio * tileSource.getGutterForProjection(projection);\n var tilesToDraw = tilesToDrawByZ[currentZ];\n for (var tileCoordKey in tilesToDraw) {\n var tile = /** @type {import(\"../../ImageTile.js\").default} */ (tilesToDraw[tileCoordKey]);\n var tileCoord = tile.tileCoord;\n // Calculate integer positions and sizes so that tiles align\n var xIndex = originTileCoord[1] - tileCoord[1];\n var nextX = Math.round(origin_1[0] - (xIndex - 1) * dx_1);\n var yIndex = originTileCoord[2] - tileCoord[2];\n var nextY = Math.round(origin_1[1] - (yIndex - 1) * dy_1);\n var x = Math.round(origin_1[0] - xIndex * dx_1);\n var y = Math.round(origin_1[1] - yIndex * dy_1);\n var w = nextX - x;\n var h = nextY - y;\n var transition = z === currentZ;\n var inTransition = transition && tile.getAlpha(getUid(this), frameState.time) !== 1;\n var contextSaved = false;\n if (!inTransition) {\n if (clips) {\n // Clip mask for regions in this tile that already filled by a higher z tile\n currentClip = [x, y, x + w, y, x + w, y + h, x, y + h];\n for (var i_1 = 0, ii = clips.length; i_1 < ii; ++i_1) {\n if (z !== currentZ && currentZ < clipZs[i_1]) {\n var clip = clips[i_1];\n if (intersects([x, y, x + w, y + h], [clip[0], clip[3], clip[4], clip[7]])) {\n if (!contextSaved) {\n context.save();\n contextSaved = true;\n }\n context.beginPath();\n // counter-clockwise (outer ring) for current tile\n context.moveTo(currentClip[0], currentClip[1]);\n context.lineTo(currentClip[2], currentClip[3]);\n context.lineTo(currentClip[4], currentClip[5]);\n context.lineTo(currentClip[6], currentClip[7]);\n // clockwise (inner ring) for higher z tile\n context.moveTo(clip[6], clip[7]);\n context.lineTo(clip[4], clip[5]);\n context.lineTo(clip[2], clip[3]);\n context.lineTo(clip[0], clip[1]);\n context.clip();\n }\n }\n }\n clips.push(currentClip);\n clipZs.push(currentZ);\n }\n else {\n context.clearRect(x, y, w, h);\n }\n }\n this.drawTileImage(tile, frameState, x, y, w, h, tileGutter, transition);\n if (clips && !inTransition) {\n if (contextSaved) {\n context.restore();\n }\n this.renderedTiles.unshift(tile);\n }\n else {\n this.renderedTiles.push(tile);\n }\n this.updateUsedTiles(frameState.usedTiles, tileSource, tile);\n }\n }\n this.renderedRevision = sourceRevision;\n this.renderedResolution = tileResolution;\n this.extentChanged =\n !this.renderedExtent_ || !equals(this.renderedExtent_, canvasExtent);\n this.renderedExtent_ = canvasExtent;\n this.renderedPixelRatio = pixelRatio;\n this.renderedProjection = projection;\n this.manageTilePyramid(frameState, tileSource, tileGrid, pixelRatio, projection, extent, z, tileLayer.getPreload());\n this.scheduleExpireCache(frameState, tileSource);\n this.postRender(context, frameState);\n if (layerState.extent) {\n context.restore();\n }\n assign(context, IMAGE_SMOOTHING_ENABLED);\n if (canvasTransform !== canvas.style.transform) {\n canvas.style.transform = canvasTransform;\n }\n var opacity = cssOpacity(layerState.opacity);\n var container = this.container;\n if (opacity !== container.style.opacity) {\n container.style.opacity = opacity;\n }\n return this.container;\n };\n /**\n * @param {import(\"../../ImageTile.js\").default} tile Tile.\n * @param {import(\"../../PluggableMap.js\").FrameState} frameState Frame state.\n * @param {number} x Left of the tile.\n * @param {number} y Top of the tile.\n * @param {number} w Width of the tile.\n * @param {number} h Height of the tile.\n * @param {number} gutter Tile gutter.\n * @param {boolean} transition Apply an alpha transition.\n */\n CanvasTileLayerRenderer.prototype.drawTileImage = function (tile, frameState, x, y, w, h, gutter, transition) {\n var image = this.getTileImage(tile);\n if (!image) {\n return;\n }\n var uid = getUid(this);\n var alpha = transition ? tile.getAlpha(uid, frameState.time) : 1;\n var alphaChanged = alpha !== this.context.globalAlpha;\n if (alphaChanged) {\n this.context.save();\n this.context.globalAlpha = alpha;\n }\n this.context.drawImage(image, gutter, gutter, image.width - 2 * gutter, image.height - 2 * gutter, x, y, w, h);\n if (alphaChanged) {\n this.context.restore();\n }\n if (alpha !== 1) {\n frameState.animate = true;\n }\n else if (transition) {\n tile.endTransition(uid);\n }\n };\n /**\n * @return {HTMLCanvasElement} Image\n */\n CanvasTileLayerRenderer.prototype.getImage = function () {\n var context = this.context;\n return context ? context.canvas : null;\n };\n /**\n * Get the image from a tile.\n * @param {import(\"../../ImageTile.js\").default} tile Tile.\n * @return {HTMLCanvasElement|HTMLImageElement|HTMLVideoElement} Image.\n * @protected\n */\n CanvasTileLayerRenderer.prototype.getTileImage = function (tile) {\n return tile.getImage();\n };\n /**\n * @param {import(\"../../PluggableMap.js\").FrameState} frameState Frame state.\n * @param {import(\"../../source/Tile.js\").default} tileSource Tile source.\n * @protected\n */\n CanvasTileLayerRenderer.prototype.scheduleExpireCache = function (frameState, tileSource) {\n if (tileSource.canExpireCache()) {\n /**\n * @param {import(\"../../source/Tile.js\").default} tileSource Tile source.\n * @param {import(\"../../PluggableMap.js\").default} map Map.\n * @param {import(\"../../PluggableMap.js\").FrameState} frameState Frame state.\n */\n var postRenderFunction = function (tileSource, map, frameState) {\n var tileSourceKey = getUid(tileSource);\n if (tileSourceKey in frameState.usedTiles) {\n tileSource.expireCache(frameState.viewState.projection, frameState.usedTiles[tileSourceKey]);\n }\n }.bind(null, tileSource);\n frameState.postRenderFunctions.push(\n /** @type {import(\"../../PluggableMap.js\").PostRenderFunction} */ (postRenderFunction));\n }\n };\n /**\n * @param {!Object<string, !Object<string, boolean>>} usedTiles Used tiles.\n * @param {import(\"../../source/Tile.js\").default} tileSource Tile source.\n * @param {import('../../Tile.js').default} tile Tile.\n * @protected\n */\n CanvasTileLayerRenderer.prototype.updateUsedTiles = function (usedTiles, tileSource, tile) {\n // FIXME should we use tilesToDrawByZ instead?\n var tileSourceKey = getUid(tileSource);\n if (!(tileSourceKey in usedTiles)) {\n usedTiles[tileSourceKey] = {};\n }\n usedTiles[tileSourceKey][tile.getKey()] = true;\n };\n /**\n * Manage tile pyramid.\n * This function performs a number of functions related to the tiles at the\n * current zoom and lower zoom levels:\n * - registers idle tiles in frameState.wantedTiles so that they are not\n * discarded by the tile queue\n * - enqueues missing tiles\n * @param {import(\"../../PluggableMap.js\").FrameState} frameState Frame state.\n * @param {import(\"../../source/Tile.js\").default} tileSource Tile source.\n * @param {import(\"../../tilegrid/TileGrid.js\").default} tileGrid Tile grid.\n * @param {number} pixelRatio Pixel ratio.\n * @param {import(\"../../proj/Projection.js\").default} projection Projection.\n * @param {import(\"../../extent.js\").Extent} extent Extent.\n * @param {number} currentZ Current Z.\n * @param {number} preload Load low resolution tiles up to `preload` levels.\n * @param {function(import(\"../../Tile.js\").default):void} [opt_tileCallback] Tile callback.\n * @protected\n */\n CanvasTileLayerRenderer.prototype.manageTilePyramid = function (frameState, tileSource, tileGrid, pixelRatio, projection, extent, currentZ, preload, opt_tileCallback) {\n var tileSourceKey = getUid(tileSource);\n if (!(tileSourceKey in frameState.wantedTiles)) {\n frameState.wantedTiles[tileSourceKey] = {};\n }\n var wantedTiles = frameState.wantedTiles[tileSourceKey];\n var tileQueue = frameState.tileQueue;\n var minZoom = tileGrid.getMinZoom();\n var tileCount = 0;\n var tile, tileRange, tileResolution, x, y, z;\n for (z = minZoom; z <= currentZ; ++z) {\n tileRange = tileGrid.getTileRangeForExtentAndZ(extent, z, tileRange);\n tileResolution = tileGrid.getResolution(z);\n for (x = tileRange.minX; x <= tileRange.maxX; ++x) {\n for (y = tileRange.minY; y <= tileRange.maxY; ++y) {\n if (currentZ - z <= preload) {\n ++tileCount;\n tile = tileSource.getTile(z, x, y, pixelRatio, projection);\n if (tile.getState() == TileState.IDLE) {\n wantedTiles[tile.getKey()] = true;\n if (!tileQueue.isKeyQueued(tile.getKey())) {\n tileQueue.enqueue([\n tile,\n tileSourceKey,\n tileGrid.getTileCoordCenter(tile.tileCoord),\n tileResolution,\n ]);\n }\n }\n if (opt_tileCallback !== undefined) {\n opt_tileCallback(tile);\n }\n }\n else {\n tileSource.useTile(z, x, y, projection);\n }\n }\n }\n }\n tileSource.updateCacheSize(tileCount, projection);\n };\n return CanvasTileLayerRenderer;\n}(CanvasLayerRenderer));\nexport default CanvasTileLayerRenderer;\n//# sourceMappingURL=TileLayer.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/layer/Tile\n */\nimport BaseTileLayer from './BaseTile.js';\nimport CanvasTileLayerRenderer from '../renderer/canvas/TileLayer.js';\n/**\n * @classdesc\n * For layer sources that provide pre-rendered, tiled images in grids that are\n * organized by zoom levels for specific resolutions.\n * Note that any property set in the options is set as a {@link module:ol/Object~BaseObject}\n * property on the layer object; for example, setting `title: 'My Title'` in the\n * options means that `title` is observable, and has get/set accessors.\n *\n * @template {import(\"../source/Tile.js\").default} TileSourceType\n * @extends BaseTileLayer<TileSourceType, CanvasTileLayerRenderer>\n * @api\n */\nvar TileLayer = /** @class */ (function (_super) {\n __extends(TileLayer, _super);\n /**\n * @param {import(\"./BaseTile.js\").Options<TileSourceType>} [opt_options] Tile layer options.\n */\n function TileLayer(opt_options) {\n return _super.call(this, opt_options) || this;\n }\n TileLayer.prototype.createRenderer = function () {\n return new CanvasTileLayerRenderer(this);\n };\n return TileLayer;\n}(BaseTileLayer));\nexport default TileLayer;\n//# sourceMappingURL=Tile.js.map","/**\n * @module ol/style/Image\n */\nimport { abstract } from '../util.js';\nimport { toSize } from '../size.js';\n/**\n * @typedef {Object} Options\n * @property {number} opacity Opacity.\n * @property {boolean} rotateWithView If the image should get rotated with the view.\n * @property {number} rotation Rotation.\n * @property {number|import(\"../size.js\").Size} scale Scale.\n * @property {Array<number>} displacement Displacement.\n */\n/**\n * @classdesc\n * A base class used for creating subclasses and not instantiated in\n * apps. Base class for {@link module:ol/style/Icon~Icon}, {@link module:ol/style/Circle~CircleStyle} and\n * {@link module:ol/style/RegularShape~RegularShape}.\n * @abstract\n * @api\n */\nvar ImageStyle = /** @class */ (function () {\n /**\n * @param {Options} options Options.\n */\n function ImageStyle(options) {\n /**\n * @private\n * @type {number}\n */\n this.opacity_ = options.opacity;\n /**\n * @private\n * @type {boolean}\n */\n this.rotateWithView_ = options.rotateWithView;\n /**\n * @private\n * @type {number}\n */\n this.rotation_ = options.rotation;\n /**\n * @private\n * @type {number|import(\"../size.js\").Size}\n */\n this.scale_ = options.scale;\n /**\n * @private\n * @type {import(\"../size.js\").Size}\n */\n this.scaleArray_ = toSize(options.scale);\n /**\n * @private\n * @type {Array<number>}\n */\n this.displacement_ = options.displacement;\n }\n /**\n * Clones the style.\n * @return {ImageStyle} The cloned style.\n * @api\n */\n ImageStyle.prototype.clone = function () {\n var scale = this.getScale();\n return new ImageStyle({\n opacity: this.getOpacity(),\n scale: Array.isArray(scale) ? scale.slice() : scale,\n rotation: this.getRotation(),\n rotateWithView: this.getRotateWithView(),\n displacement: this.getDisplacement().slice(),\n });\n };\n /**\n * Get the symbolizer opacity.\n * @return {number} Opacity.\n * @api\n */\n ImageStyle.prototype.getOpacity = function () {\n return this.opacity_;\n };\n /**\n * Determine whether the symbolizer rotates with the map.\n * @return {boolean} Rotate with map.\n * @api\n */\n ImageStyle.prototype.getRotateWithView = function () {\n return this.rotateWithView_;\n };\n /**\n * Get the symoblizer rotation.\n * @return {number} Rotation.\n * @api\n */\n ImageStyle.prototype.getRotation = function () {\n return this.rotation_;\n };\n /**\n * Get the symbolizer scale.\n * @return {number|import(\"../size.js\").Size} Scale.\n * @api\n */\n ImageStyle.prototype.getScale = function () {\n return this.scale_;\n };\n /**\n * Get the symbolizer scale array.\n * @return {import(\"../size.js\").Size} Scale array.\n */\n ImageStyle.prototype.getScaleArray = function () {\n return this.scaleArray_;\n };\n /**\n * Get the displacement of the shape\n * @return {Array<number>} Shape's center displacement\n * @api\n */\n ImageStyle.prototype.getDisplacement = function () {\n return this.displacement_;\n };\n /**\n * Get the anchor point in pixels. The anchor determines the center point for the\n * symbolizer.\n * @abstract\n * @return {Array<number>} Anchor.\n */\n ImageStyle.prototype.getAnchor = function () {\n return abstract();\n };\n /**\n * Get the image element for the symbolizer.\n * @abstract\n * @param {number} pixelRatio Pixel ratio.\n * @return {HTMLCanvasElement|HTMLVideoElement|HTMLImageElement} Image element.\n */\n ImageStyle.prototype.getImage = function (pixelRatio) {\n return abstract();\n };\n /**\n * @abstract\n * @return {HTMLCanvasElement|HTMLVideoElement|HTMLImageElement} Image element.\n */\n ImageStyle.prototype.getHitDetectionImage = function () {\n return abstract();\n };\n /**\n * Get the image pixel ratio.\n * @param {number} pixelRatio Pixel ratio.\n * @return {number} Pixel ratio.\n */\n ImageStyle.prototype.getPixelRatio = function (pixelRatio) {\n return 1;\n };\n /**\n * @abstract\n * @return {import(\"../ImageState.js\").default} Image state.\n */\n ImageStyle.prototype.getImageState = function () {\n return abstract();\n };\n /**\n * @abstract\n * @return {import(\"../size.js\").Size} Image size.\n */\n ImageStyle.prototype.getImageSize = function () {\n return abstract();\n };\n /**\n * Get the origin of the symbolizer.\n * @abstract\n * @return {Array<number>} Origin.\n */\n ImageStyle.prototype.getOrigin = function () {\n return abstract();\n };\n /**\n * Get the size of the symbolizer (in pixels).\n * @abstract\n * @return {import(\"../size.js\").Size} Size.\n */\n ImageStyle.prototype.getSize = function () {\n return abstract();\n };\n /**\n * Set the displacement.\n *\n * @param {Array<number>} displacement Displacement.\n * @api\n */\n ImageStyle.prototype.setDisplacement = function (displacement) {\n this.displacement_ = displacement;\n };\n /**\n * Set the opacity.\n *\n * @param {number} opacity Opacity.\n * @api\n */\n ImageStyle.prototype.setOpacity = function (opacity) {\n this.opacity_ = opacity;\n };\n /**\n * Set whether to rotate the style with the view.\n *\n * @param {boolean} rotateWithView Rotate with map.\n * @api\n */\n ImageStyle.prototype.setRotateWithView = function (rotateWithView) {\n this.rotateWithView_ = rotateWithView;\n };\n /**\n * Set the rotation.\n *\n * @param {number} rotation Rotation.\n * @api\n */\n ImageStyle.prototype.setRotation = function (rotation) {\n this.rotation_ = rotation;\n };\n /**\n * Set the scale.\n *\n * @param {number|import(\"../size.js\").Size} scale Scale.\n * @api\n */\n ImageStyle.prototype.setScale = function (scale) {\n this.scale_ = scale;\n this.scaleArray_ = toSize(scale);\n };\n /**\n * @abstract\n * @param {function(import(\"../events/Event.js\").default): void} listener Listener function.\n */\n ImageStyle.prototype.listenImageChange = function (listener) {\n abstract();\n };\n /**\n * Load not yet loaded URI.\n * @abstract\n */\n ImageStyle.prototype.load = function () {\n abstract();\n };\n /**\n * @abstract\n * @param {function(import(\"../events/Event.js\").default): void} listener Listener function.\n */\n ImageStyle.prototype.unlistenImageChange = function (listener) {\n abstract();\n };\n return ImageStyle;\n}());\nexport default ImageStyle;\n//# sourceMappingURL=Image.js.map","/**\n * @module ol/colorlike\n */\nimport { toString } from './color.js';\n/**\n * A type accepted by CanvasRenderingContext2D.fillStyle\n * or CanvasRenderingContext2D.strokeStyle.\n * Represents a color, pattern, or gradient. The origin for patterns and\n * gradients as fill style is an increment of 512 css pixels from map coordinate\n * `[0, 0]`. For seamless repeat patterns, width and height of the pattern image\n * must be a factor of two (2, 4, 8, ..., 512).\n *\n * @typedef {string|CanvasPattern|CanvasGradient} ColorLike\n * @api\n */\n/**\n * @param {import(\"./color.js\").Color|ColorLike} color Color.\n * @return {ColorLike} The color as an {@link ol/colorlike~ColorLike}.\n * @api\n */\nexport function asColorLike(color) {\n if (Array.isArray(color)) {\n return toString(color);\n }\n else {\n return color;\n }\n}\n//# sourceMappingURL=colorlike.js.map","/**\n * @module ol/render/canvas\n */\nimport BaseObject from '../Object.js';\nimport EventTarget from '../events/Target.js';\nimport { WORKER_OFFSCREEN_CANVAS } from '../has.js';\nimport { clear } from '../obj.js';\nimport { createCanvasContext2D } from '../dom.js';\nimport { getFontParameters } from '../css.js';\n/**\n * @typedef {Object} FillState\n * @property {import(\"../colorlike.js\").ColorLike} fillStyle FillStyle.\n */\n/**\n * @typedef Label\n * @property {number} width Width.\n * @property {number} height Height.\n * @property {Array<string|number>} contextInstructions ContextInstructions.\n */\n/**\n * @typedef {Object} FillStrokeState\n * @property {import(\"../colorlike.js\").ColorLike} [currentFillStyle] Current FillStyle.\n * @property {import(\"../colorlike.js\").ColorLike} [currentStrokeStyle] Current StrokeStyle.\n * @property {CanvasLineCap} [currentLineCap] Current LineCap.\n * @property {Array<number>} currentLineDash Current LineDash.\n * @property {number} [currentLineDashOffset] Current LineDashOffset.\n * @property {CanvasLineJoin} [currentLineJoin] Current LineJoin.\n * @property {number} [currentLineWidth] Current LineWidth.\n * @property {number} [currentMiterLimit] Current MiterLimit.\n * @property {number} [lastStroke] Last stroke.\n * @property {import(\"../colorlike.js\").ColorLike} [fillStyle] FillStyle.\n * @property {import(\"../colorlike.js\").ColorLike} [strokeStyle] StrokeStyle.\n * @property {CanvasLineCap} [lineCap] LineCap.\n * @property {Array<number>} lineDash LineDash.\n * @property {number} [lineDashOffset] LineDashOffset.\n * @property {CanvasLineJoin} [lineJoin] LineJoin.\n * @property {number} [lineWidth] LineWidth.\n * @property {number} [miterLimit] MiterLimit.\n */\n/**\n * @typedef {Object} StrokeState\n * @property {CanvasLineCap} lineCap LineCap.\n * @property {Array<number>} lineDash LineDash.\n * @property {number} lineDashOffset LineDashOffset.\n * @property {CanvasLineJoin} lineJoin LineJoin.\n * @property {number} lineWidth LineWidth.\n * @property {number} miterLimit MiterLimit.\n * @property {import(\"../colorlike.js\").ColorLike} strokeStyle StrokeStyle.\n */\n/**\n * @typedef {Object} TextState\n * @property {string} font Font.\n * @property {string} [textAlign] TextAlign.\n * @property {string} textBaseline TextBaseline.\n * @property {string} [placement] Placement.\n * @property {number} [maxAngle] MaxAngle.\n * @property {boolean} [overflow] Overflow.\n * @property {import(\"../style/Fill.js\").default} [backgroundFill] BackgroundFill.\n * @property {import(\"../style/Stroke.js\").default} [backgroundStroke] BackgroundStroke.\n * @property {import(\"../size.js\").Size} [scale] Scale.\n * @property {Array<number>} [padding] Padding.\n */\n/**\n * @typedef {Object} SerializableInstructions\n * @property {Array<*>} instructions The rendering instructions.\n * @property {Array<*>} hitDetectionInstructions The rendering hit detection instructions.\n * @property {Array<number>} coordinates The array of all coordinates.\n * @property {!Object<string, TextState>} [textStates] The text states (decluttering).\n * @property {!Object<string, FillState>} [fillStates] The fill states (decluttering).\n * @property {!Object<string, StrokeState>} [strokeStates] The stroke states (decluttering).\n */\n/**\n * @typedef {Object<number, import(\"./canvas/Executor.js\").ReplayImageOrLabelArgs>} DeclutterImageWithText\n */\n/**\n * @const\n * @type {string}\n */\nexport var defaultFont = '10px sans-serif';\n/**\n * @const\n * @type {import(\"../colorlike.js\").ColorLike}\n */\nexport var defaultFillStyle = '#000';\n/**\n * @const\n * @type {CanvasLineCap}\n */\nexport var defaultLineCap = 'round';\n/**\n * @const\n * @type {Array<number>}\n */\nexport var defaultLineDash = [];\n/**\n * @const\n * @type {number}\n */\nexport var defaultLineDashOffset = 0;\n/**\n * @const\n * @type {CanvasLineJoin}\n */\nexport var defaultLineJoin = 'round';\n/**\n * @const\n * @type {number}\n */\nexport var defaultMiterLimit = 10;\n/**\n * @const\n * @type {import(\"../colorlike.js\").ColorLike}\n */\nexport var defaultStrokeStyle = '#000';\n/**\n * @const\n * @type {string}\n */\nexport var defaultTextAlign = 'center';\n/**\n * @const\n * @type {string}\n */\nexport var defaultTextBaseline = 'middle';\n/**\n * @const\n * @type {Array<number>}\n */\nexport var defaultPadding = [0, 0, 0, 0];\n/**\n * @const\n * @type {number}\n */\nexport var defaultLineWidth = 1;\n/**\n * @type {BaseObject}\n */\nexport var checkedFonts = new BaseObject();\n/**\n * The label cache for text rendering. To change the default cache size of 2048\n * entries, use {@link module:ol/structs/LRUCache~LRUCache#setSize cache.setSize()}.\n * Deprecated - there is no label cache any more.\n * @type {?}\n * @api\n * @deprecated\n */\nexport var labelCache = new EventTarget();\nlabelCache.setSize = function () {\n console.warn('labelCache is deprecated.'); //eslint-disable-line\n};\n/**\n * @type {CanvasRenderingContext2D}\n */\nvar measureContext = null;\n/**\n * @type {string}\n */\nvar measureFont;\n/**\n * @type {!Object<string, number>}\n */\nexport var textHeights = {};\n/**\n * Clears the label cache when a font becomes available.\n * @param {string} fontSpec CSS font spec.\n */\nexport var registerFont = (function () {\n var retries = 100;\n var size = '32px ';\n var referenceFonts = ['monospace', 'serif'];\n var len = referenceFonts.length;\n var text = 'wmytzilWMYTZIL@#/&?$%10\\uF013';\n var interval, referenceWidth;\n /**\n * @param {string} fontStyle Css font-style\n * @param {string} fontWeight Css font-weight\n * @param {*} fontFamily Css font-family\n * @return {boolean} Font with style and weight is available\n */\n function isAvailable(fontStyle, fontWeight, fontFamily) {\n var available = true;\n for (var i = 0; i < len; ++i) {\n var referenceFont = referenceFonts[i];\n referenceWidth = measureTextWidth(fontStyle + ' ' + fontWeight + ' ' + size + referenceFont, text);\n if (fontFamily != referenceFont) {\n var width = measureTextWidth(fontStyle +\n ' ' +\n fontWeight +\n ' ' +\n size +\n fontFamily +\n ',' +\n referenceFont, text);\n // If width and referenceWidth are the same, then the fallback was used\n // instead of the font we wanted, so the font is not available.\n available = available && width != referenceWidth;\n }\n }\n if (available) {\n return true;\n }\n return false;\n }\n function check() {\n var done = true;\n var fonts = checkedFonts.getKeys();\n for (var i = 0, ii = fonts.length; i < ii; ++i) {\n var font = fonts[i];\n if (checkedFonts.get(font) < retries) {\n if (isAvailable.apply(this, font.split('\\n'))) {\n clear(textHeights);\n // Make sure that loaded fonts are picked up by Safari\n measureContext = null;\n measureFont = undefined;\n checkedFonts.set(font, retries);\n }\n else {\n checkedFonts.set(font, checkedFonts.get(font) + 1, true);\n done = false;\n }\n }\n }\n if (done) {\n clearInterval(interval);\n interval = undefined;\n }\n }\n return function (fontSpec) {\n var font = getFontParameters(fontSpec);\n if (!font) {\n return;\n }\n var families = font.families;\n for (var i = 0, ii = families.length; i < ii; ++i) {\n var family = families[i];\n var key = font.style + '\\n' + font.weight + '\\n' + family;\n if (checkedFonts.get(key) === undefined) {\n checkedFonts.set(key, retries, true);\n if (!isAvailable(font.style, font.weight, family)) {\n checkedFonts.set(key, 0, true);\n if (interval === undefined) {\n interval = setInterval(check, 32);\n }\n }\n }\n }\n };\n})();\n/**\n * @param {string} font Font to use for measuring.\n * @return {import(\"../size.js\").Size} Measurement.\n */\nexport var measureTextHeight = (function () {\n /**\n * @type {HTMLDivElement}\n */\n var measureElement;\n return function (fontSpec) {\n var height = textHeights[fontSpec];\n if (height == undefined) {\n if (WORKER_OFFSCREEN_CANVAS) {\n var font = getFontParameters(fontSpec);\n var metrics = measureText(fontSpec, 'Žg');\n var lineHeight = isNaN(Number(font.lineHeight))\n ? 1.2\n : Number(font.lineHeight);\n height =\n lineHeight *\n (metrics.actualBoundingBoxAscent + metrics.actualBoundingBoxDescent);\n }\n else {\n if (!measureElement) {\n measureElement = document.createElement('div');\n measureElement.innerHTML = 'M';\n measureElement.style.minHeight = '0';\n measureElement.style.maxHeight = 'none';\n measureElement.style.height = 'auto';\n measureElement.style.padding = '0';\n measureElement.style.border = 'none';\n measureElement.style.position = 'absolute';\n measureElement.style.display = 'block';\n measureElement.style.left = '-99999px';\n }\n measureElement.style.font = fontSpec;\n document.body.appendChild(measureElement);\n height = measureElement.offsetHeight;\n document.body.removeChild(measureElement);\n }\n textHeights[fontSpec] = height;\n }\n return height;\n };\n})();\n/**\n * @param {string} font Font.\n * @param {string} text Text.\n * @return {TextMetrics} Text metrics.\n */\nfunction measureText(font, text) {\n if (!measureContext) {\n measureContext = createCanvasContext2D(1, 1);\n }\n if (font != measureFont) {\n measureContext.font = font;\n measureFont = measureContext.font;\n }\n return measureContext.measureText(text);\n}\n/**\n * @param {string} font Font.\n * @param {string} text Text.\n * @return {number} Width.\n */\nexport function measureTextWidth(font, text) {\n return measureText(font, text).width;\n}\n/**\n * Measure text width using a cache.\n * @param {string} font The font.\n * @param {string} text The text to measure.\n * @param {Object<string, number>} cache A lookup of cached widths by text.\n * @return {number} The text width.\n */\nexport function measureAndCacheTextWidth(font, text, cache) {\n if (text in cache) {\n return cache[text];\n }\n var width = measureTextWidth(font, text);\n cache[text] = width;\n return width;\n}\n/**\n * @param {TextState} baseStyle Base style.\n * @param {Array<string>} chunks Text chunks to measure.\n * @return {{width: number, height: number, widths: Array<number>, heights: Array<number>, lineWidths: Array<number>}}} Text metrics.\n */\nexport function getTextDimensions(baseStyle, chunks) {\n var widths = [];\n var heights = [];\n var lineWidths = [];\n var width = 0;\n var lineWidth = 0;\n var height = 0;\n var lineHeight = 0;\n for (var i = 0, ii = chunks.length; i <= ii; i += 2) {\n var text = chunks[i];\n if (text === '\\n' || i === ii) {\n width = Math.max(width, lineWidth);\n lineWidths.push(lineWidth);\n lineWidth = 0;\n height += lineHeight;\n continue;\n }\n var font = chunks[i + 1] || baseStyle.font;\n var currentWidth = measureTextWidth(font, text);\n widths.push(currentWidth);\n lineWidth += currentWidth;\n var currentHeight = measureTextHeight(font);\n heights.push(currentHeight);\n lineHeight = Math.max(lineHeight, currentHeight);\n }\n return { width: width, height: height, widths: widths, heights: heights, lineWidths: lineWidths };\n}\n/**\n * @param {CanvasRenderingContext2D} context Context.\n * @param {number} rotation Rotation.\n * @param {number} offsetX X offset.\n * @param {number} offsetY Y offset.\n */\nexport function rotateAtOffset(context, rotation, offsetX, offsetY) {\n if (rotation !== 0) {\n context.translate(offsetX, offsetY);\n context.rotate(rotation);\n context.translate(-offsetX, -offsetY);\n }\n}\n/**\n * @param {CanvasRenderingContext2D} context Context.\n * @param {import(\"../transform.js\").Transform|null} transform Transform.\n * @param {number} opacity Opacity.\n * @param {Label|HTMLCanvasElement|HTMLImageElement|HTMLVideoElement} labelOrImage Label.\n * @param {number} originX Origin X.\n * @param {number} originY Origin Y.\n * @param {number} w Width.\n * @param {number} h Height.\n * @param {number} x X.\n * @param {number} y Y.\n * @param {import(\"../size.js\").Size} scale Scale.\n */\nexport function drawImageOrLabel(context, transform, opacity, labelOrImage, originX, originY, w, h, x, y, scale) {\n context.save();\n if (opacity !== 1) {\n context.globalAlpha *= opacity;\n }\n if (transform) {\n context.setTransform.apply(context, transform);\n }\n if ( /** @type {*} */(labelOrImage).contextInstructions) {\n // label\n context.translate(x, y);\n context.scale(scale[0], scale[1]);\n executeLabelInstructions(/** @type {Label} */ (labelOrImage), context);\n }\n else if (scale[0] < 0 || scale[1] < 0) {\n // flipped image\n context.translate(x, y);\n context.scale(scale[0], scale[1]);\n context.drawImage(\n /** @type {HTMLCanvasElement|HTMLImageElement|HTMLVideoElement} */ (labelOrImage), originX, originY, w, h, 0, 0, w, h);\n }\n else {\n // if image not flipped translate and scale can be avoided\n context.drawImage(\n /** @type {HTMLCanvasElement|HTMLImageElement|HTMLVideoElement} */ (labelOrImage), originX, originY, w, h, x, y, w * scale[0], h * scale[1]);\n }\n context.restore();\n}\n/**\n * @param {Label} label Label.\n * @param {CanvasRenderingContext2D} context Context.\n */\nfunction executeLabelInstructions(label, context) {\n var contextInstructions = label.contextInstructions;\n for (var i = 0, ii = contextInstructions.length; i < ii; i += 2) {\n if (Array.isArray(contextInstructions[i + 1])) {\n context[contextInstructions[i]].apply(context, contextInstructions[i + 1]);\n }\n else {\n context[contextInstructions[i]] = contextInstructions[i + 1];\n }\n }\n}\n//# sourceMappingURL=canvas.js.map","/**\n * @module ol/style/RegularShape\n */\nvar __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\nimport ImageState from '../ImageState.js';\nimport ImageStyle from './Image.js';\nimport { asArray } from '../color.js';\nimport { asColorLike } from '../colorlike.js';\nimport { createCanvasContext2D } from '../dom.js';\nimport { defaultFillStyle, defaultLineJoin, defaultLineWidth, defaultMiterLimit, defaultStrokeStyle, } from '../render/canvas.js';\n/**\n * Specify radius for regular polygons, or radius1 and radius2 for stars.\n * @typedef {Object} Options\n * @property {import(\"./Fill.js\").default} [fill] Fill style.\n * @property {number} points Number of points for stars and regular polygons. In case of a polygon, the number of points\n * is the number of sides.\n * @property {number} [radius] Radius of a regular polygon.\n * @property {number} [radius1] First radius of a star. Ignored if radius is set.\n * @property {number} [radius2] Second radius of a star.\n * @property {number} [angle=0] Shape's angle in radians. A value of 0 will have one of the shape's point facing up.\n * @property {Array<number>} [displacement=[0,0]] Displacement of the shape\n * @property {import(\"./Stroke.js\").default} [stroke] Stroke style.\n * @property {number} [rotation=0] Rotation in radians (positive rotation clockwise).\n * @property {boolean} [rotateWithView=false] Whether to rotate the shape with the view.\n * @property {number|import(\"../size.js\").Size} [scale=1] Scale. Unless two dimensional scaling is required a better\n * result may be obtained with appropriate settings for `radius`, `radius1` and `radius2`.\n */\n/**\n * @typedef {Object} RenderOptions\n * @property {import(\"../colorlike.js\").ColorLike} [strokeStyle] StrokeStyle.\n * @property {number} strokeWidth StrokeWidth.\n * @property {number} size Size.\n * @property {Array<number>} lineDash LineDash.\n * @property {number} lineDashOffset LineDashOffset.\n * @property {CanvasLineJoin} lineJoin LineJoin.\n * @property {number} miterLimit MiterLimit.\n */\n/**\n * @classdesc\n * Set regular shape style for vector features. The resulting shape will be\n * a regular polygon when `radius` is provided, or a star when `radius1` and\n * `radius2` are provided.\n * @api\n */\nvar RegularShape = /** @class */ (function (_super) {\n __extends(RegularShape, _super);\n /**\n * @param {Options} options Options.\n */\n function RegularShape(options) {\n var _this = this;\n /**\n * @type {boolean}\n */\n var rotateWithView = options.rotateWithView !== undefined ? options.rotateWithView : false;\n _this = _super.call(this, {\n opacity: 1,\n rotateWithView: rotateWithView,\n rotation: options.rotation !== undefined ? options.rotation : 0,\n scale: options.scale !== undefined ? options.scale : 1,\n displacement: options.displacement !== undefined ? options.displacement : [0, 0],\n }) || this;\n /**\n * @private\n * @type {Object<number, HTMLCanvasElement>}\n */\n _this.canvas_ = undefined;\n /**\n * @private\n * @type {HTMLCanvasElement}\n */\n _this.hitDetectionCanvas_ = null;\n /**\n * @private\n * @type {import(\"./Fill.js\").default}\n */\n _this.fill_ = options.fill !== undefined ? options.fill : null;\n /**\n * @private\n * @type {Array<number>}\n */\n _this.origin_ = [0, 0];\n /**\n * @private\n * @type {number}\n */\n _this.points_ = options.points;\n /**\n * @protected\n * @type {number}\n */\n _this.radius_ =\n options.radius !== undefined ? options.radius : options.radius1;\n /**\n * @private\n * @type {number|undefined}\n */\n _this.radius2_ = options.radius2;\n /**\n * @private\n * @type {number}\n */\n _this.angle_ = options.angle !== undefined ? options.angle : 0;\n /**\n * @private\n * @type {import(\"./Stroke.js\").default}\n */\n _this.stroke_ = options.stroke !== undefined ? options.stroke : null;\n /**\n * @private\n * @type {import(\"../size.js\").Size}\n */\n _this.size_ = null;\n /**\n * @private\n * @type {RenderOptions}\n */\n _this.renderOptions_ = null;\n _this.render();\n return _this;\n }\n /**\n * Clones the style.\n * @return {RegularShape} The cloned style.\n * @api\n */\n RegularShape.prototype.clone = function () {\n var scale = this.getScale();\n var style = new RegularShape({\n fill: this.getFill() ? this.getFill().clone() : undefined,\n points: this.getPoints(),\n radius: this.getRadius(),\n radius2: this.getRadius2(),\n angle: this.getAngle(),\n stroke: this.getStroke() ? this.getStroke().clone() : undefined,\n rotation: this.getRotation(),\n rotateWithView: this.getRotateWithView(),\n scale: Array.isArray(scale) ? scale.slice() : scale,\n displacement: this.getDisplacement().slice(),\n });\n style.setOpacity(this.getOpacity());\n return style;\n };\n /**\n * Get the anchor point in pixels. The anchor determines the center point for the\n * symbolizer.\n * @return {Array<number>} Anchor.\n * @api\n */\n RegularShape.prototype.getAnchor = function () {\n var size = this.size_;\n if (!size) {\n return null;\n }\n var displacement = this.getDisplacement();\n return [size[0] / 2 - displacement[0], size[1] / 2 + displacement[1]];\n };\n /**\n * Get the angle used in generating the shape.\n * @return {number} Shape's rotation in radians.\n * @api\n */\n RegularShape.prototype.getAngle = function () {\n return this.angle_;\n };\n /**\n * Get the fill style for the shape.\n * @return {import(\"./Fill.js\").default} Fill style.\n * @api\n */\n RegularShape.prototype.getFill = function () {\n return this.fill_;\n };\n /**\n * @return {HTMLCanvasElement} Image element.\n */\n RegularShape.prototype.getHitDetectionImage = function () {\n if (!this.hitDetectionCanvas_) {\n this.createHitDetectionCanvas_(this.renderOptions_);\n }\n return this.hitDetectionCanvas_;\n };\n /**\n * Get the image icon.\n * @param {number} pixelRatio Pixel ratio.\n * @return {HTMLCanvasElement} Image or Canvas element.\n * @api\n */\n RegularShape.prototype.getImage = function (pixelRatio) {\n var image = this.canvas_[pixelRatio];\n if (!image) {\n var renderOptions = this.renderOptions_;\n var context = createCanvasContext2D(renderOptions.size * pixelRatio, renderOptions.size * pixelRatio);\n this.draw_(renderOptions, context, pixelRatio);\n image = context.canvas;\n this.canvas_[pixelRatio] = image;\n }\n return image;\n };\n /**\n * Get the image pixel ratio.\n * @param {number} pixelRatio Pixel ratio.\n * @return {number} Pixel ratio.\n */\n RegularShape.prototype.getPixelRatio = function (pixelRatio) {\n return pixelRatio;\n };\n /**\n * @return {import(\"../size.js\").Size} Image size.\n */\n RegularShape.prototype.getImageSize = function () {\n return this.size_;\n };\n /**\n * @return {import(\"../ImageState.js\").default} Image state.\n */\n RegularShape.prototype.getImageState = function () {\n return ImageState.LOADED;\n };\n /**\n * Get the origin of the symbolizer.\n * @return {Array<number>} Origin.\n * @api\n */\n RegularShape.prototype.getOrigin = function () {\n return this.origin_;\n };\n /**\n * Get the number of points for generating the shape.\n * @return {number} Number of points for stars and regular polygons.\n * @api\n */\n RegularShape.prototype.getPoints = function () {\n return this.points_;\n };\n /**\n * Get the (primary) radius for the shape.\n * @return {number} Radius.\n * @api\n */\n RegularShape.prototype.getRadius = function () {\n return this.radius_;\n };\n /**\n * Get the secondary radius for the shape.\n * @return {number|undefined} Radius2.\n * @api\n */\n RegularShape.prototype.getRadius2 = function () {\n return this.radius2_;\n };\n /**\n * Get the size of the symbolizer (in pixels).\n * @return {import(\"../size.js\").Size} Size.\n * @api\n */\n RegularShape.prototype.getSize = function () {\n return this.size_;\n };\n /**\n * Get the stroke style for the shape.\n * @return {import(\"./Stroke.js\").default} Stroke style.\n * @api\n */\n RegularShape.prototype.getStroke = function () {\n return this.stroke_;\n };\n /**\n * @param {function(import(\"../events/Event.js\").default): void} listener Listener function.\n */\n RegularShape.prototype.listenImageChange = function (listener) { };\n /**\n * Load not yet loaded URI.\n */\n RegularShape.prototype.load = function () { };\n /**\n * @param {function(import(\"../events/Event.js\").default): void} listener Listener function.\n */\n RegularShape.prototype.unlistenImageChange = function (listener) { };\n /**\n * Calculate additional canvas size needed for the miter.\n * @param {string} lineJoin Line join\n * @param {number} strokeWidth Stroke width\n * @param {number} miterLimit Miter limit\n * @return {number} Additional canvas size needed\n * @private\n */\n RegularShape.prototype.calculateLineJoinSize_ = function (lineJoin, strokeWidth, miterLimit) {\n if (strokeWidth === 0 ||\n this.points_ === Infinity ||\n (lineJoin !== 'bevel' && lineJoin !== 'miter')) {\n return strokeWidth;\n }\n // m | ^\n // i | |\\ .\n // t >| #\\\n // e | |\\ \\ .\n // r \\s\\\n // | \\t\\ . .\n // \\r\\ . .\n // | \\o\\ . . . . .\n // e \\k\\ . . . .\n // | \\e\\ . . . . .\n // d \\ \\ . . . .\n // | _ _a_ _\\# . . .\n // r1 / ` . .\n // | . .\n // b / . .\n // | . .\n // / r2 . .\n // | . .\n // / . .\n // |α . .\n // / . .\n // ° center\n var r1 = this.radius_;\n var r2 = this.radius2_ === undefined ? r1 : this.radius2_;\n if (r1 < r2) {\n var tmp = r1;\n r1 = r2;\n r2 = tmp;\n }\n var points = this.radius2_ === undefined ? this.points_ : this.points_ * 2;\n var alpha = (2 * Math.PI) / points;\n var a = r2 * Math.sin(alpha);\n var b = Math.sqrt(r2 * r2 - a * a);\n var d = r1 - b;\n var e = Math.sqrt(a * a + d * d);\n var miterRatio = e / a;\n if (lineJoin === 'miter' && miterRatio <= miterLimit) {\n return miterRatio * strokeWidth;\n }\n // Calculate the distnce from center to the stroke corner where\n // it was cut short because of the miter limit.\n // l\n // ----+---- <= distance from center to here is maxr\n // /####|k ##\\\n // /#####^#####\\\n // /#### /+\\# s #\\\n // /### h/+++\\# t #\\\n // /### t/+++++\\# r #\\\n // /### a/+++++++\\# o #\\\n // /### p/++ fill +\\# k #\\\n ///#### /+++++^+++++\\# e #\\\n //#####/+++++/+\\+++++\\#####\\\n var k = strokeWidth / 2 / miterRatio;\n var l = (strokeWidth / 2) * (d / e);\n var maxr = Math.sqrt((r1 + k) * (r1 + k) + l * l);\n var bevelAdd = maxr - r1;\n if (this.radius2_ === undefined || lineJoin === 'bevel') {\n return bevelAdd * 2;\n }\n // If outer miter is over the miter limit the inner miter may reach through the\n // center and be longer than the bevel, same calculation as above but swap r1 / r2.\n var aa = r1 * Math.sin(alpha);\n var bb = Math.sqrt(r1 * r1 - aa * aa);\n var dd = r2 - bb;\n var ee = Math.sqrt(aa * aa + dd * dd);\n var innerMiterRatio = ee / aa;\n if (innerMiterRatio <= miterLimit) {\n var innerLength = (innerMiterRatio * strokeWidth) / 2 - r2 - r1;\n return 2 * Math.max(bevelAdd, innerLength);\n }\n return bevelAdd * 2;\n };\n /**\n * @return {RenderOptions} The render options\n * @protected\n */\n RegularShape.prototype.createRenderOptions = function () {\n var lineJoin = defaultLineJoin;\n var miterLimit = 0;\n var lineDash = null;\n var lineDashOffset = 0;\n var strokeStyle;\n var strokeWidth = 0;\n if (this.stroke_) {\n strokeStyle = this.stroke_.getColor();\n if (strokeStyle === null) {\n strokeStyle = defaultStrokeStyle;\n }\n strokeStyle = asColorLike(strokeStyle);\n strokeWidth = this.stroke_.getWidth();\n if (strokeWidth === undefined) {\n strokeWidth = defaultLineWidth;\n }\n lineDash = this.stroke_.getLineDash();\n lineDashOffset = this.stroke_.getLineDashOffset();\n lineJoin = this.stroke_.getLineJoin();\n if (lineJoin === undefined) {\n lineJoin = defaultLineJoin;\n }\n miterLimit = this.stroke_.getMiterLimit();\n if (miterLimit === undefined) {\n miterLimit = defaultMiterLimit;\n }\n }\n var add = this.calculateLineJoinSize_(lineJoin, strokeWidth, miterLimit);\n var maxRadius = Math.max(this.radius_, this.radius2_ || 0);\n var size = Math.ceil(2 * maxRadius + add);\n return {\n strokeStyle: strokeStyle,\n strokeWidth: strokeWidth,\n size: size,\n lineDash: lineDash,\n lineDashOffset: lineDashOffset,\n lineJoin: lineJoin,\n miterLimit: miterLimit,\n };\n };\n /**\n * @protected\n */\n RegularShape.prototype.render = function () {\n this.renderOptions_ = this.createRenderOptions();\n var size = this.renderOptions_.size;\n this.canvas_ = {};\n this.size_ = [size, size];\n };\n /**\n * @private\n * @param {RenderOptions} renderOptions Render options.\n * @param {CanvasRenderingContext2D} context The rendering context.\n * @param {number} pixelRatio The pixel ratio.\n */\n RegularShape.prototype.draw_ = function (renderOptions, context, pixelRatio) {\n context.scale(pixelRatio, pixelRatio);\n // set origin to canvas center\n context.translate(renderOptions.size / 2, renderOptions.size / 2);\n this.createPath_(context);\n if (this.fill_) {\n var color = this.fill_.getColor();\n if (color === null) {\n color = defaultFillStyle;\n }\n context.fillStyle = asColorLike(color);\n context.fill();\n }\n if (this.stroke_) {\n context.strokeStyle = renderOptions.strokeStyle;\n context.lineWidth = renderOptions.strokeWidth;\n if (context.setLineDash && renderOptions.lineDash) {\n context.setLineDash(renderOptions.lineDash);\n context.lineDashOffset = renderOptions.lineDashOffset;\n }\n context.lineJoin = renderOptions.lineJoin;\n context.miterLimit = renderOptions.miterLimit;\n context.stroke();\n }\n };\n /**\n * @private\n * @param {RenderOptions} renderOptions Render options.\n */\n RegularShape.prototype.createHitDetectionCanvas_ = function (renderOptions) {\n if (this.fill_) {\n var color = this.fill_.getColor();\n // determine if fill is transparent (or pattern or gradient)\n var opacity = 0;\n if (typeof color === 'string') {\n color = asArray(color);\n }\n if (color === null) {\n opacity = 1;\n }\n else if (Array.isArray(color)) {\n opacity = color.length === 4 ? color[3] : 1;\n }\n if (opacity === 0) {\n // if a transparent fill style is set, create an extra hit-detection image\n // with a default fill style\n var context = createCanvasContext2D(renderOptions.size, renderOptions.size);\n this.hitDetectionCanvas_ = context.canvas;\n this.drawHitDetectionCanvas_(renderOptions, context);\n }\n }\n if (!this.hitDetectionCanvas_) {\n this.hitDetectionCanvas_ = this.getImage(1);\n }\n };\n /**\n * @private\n * @param {CanvasRenderingContext2D} context The context to draw in.\n */\n RegularShape.prototype.createPath_ = function (context) {\n var points = this.points_;\n var radius = this.radius_;\n if (points === Infinity) {\n context.arc(0, 0, radius, 0, 2 * Math.PI);\n }\n else {\n var radius2 = this.radius2_ === undefined ? radius : this.radius2_;\n if (this.radius2_ !== undefined) {\n points *= 2;\n }\n var startAngle = this.angle_ - Math.PI / 2;\n var step = (2 * Math.PI) / points;\n for (var i = 0; i < points; i++) {\n var angle0 = startAngle + i * step;\n var radiusC = i % 2 === 0 ? radius : radius2;\n context.lineTo(radiusC * Math.cos(angle0), radiusC * Math.sin(angle0));\n }\n context.closePath();\n }\n };\n /**\n * @private\n * @param {RenderOptions} renderOptions Render options.\n * @param {CanvasRenderingContext2D} context The context.\n */\n RegularShape.prototype.drawHitDetectionCanvas_ = function (renderOptions, context) {\n // set origin to canvas center\n context.translate(renderOptions.size / 2, renderOptions.size / 2);\n this.createPath_(context);\n context.fillStyle = defaultFillStyle;\n context.fill();\n if (this.stroke_) {\n context.strokeStyle = renderOptions.strokeStyle;\n context.lineWidth = renderOptions.strokeWidth;\n if (renderOptions.lineDash) {\n context.setLineDash(renderOptions.lineDash);\n context.lineDashOffset = renderOptions.lineDashOffset;\n }\n context.lineJoin = renderOptions.lineJoin;\n context.miterLimit = renderOptions.miterLimit;\n context.stroke();\n }\n };\n return RegularShape;\n}(ImageStyle));\nexport default RegularShape;\n//# sourceMappingURL=RegularShape.js.map","/**\n * @module ol/style/Circle\n */\nvar __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\nimport RegularShape from './RegularShape.js';\n/**\n * @typedef {Object} Options\n * @property {import(\"./Fill.js\").default} [fill] Fill style.\n * @property {number} radius Circle radius.\n * @property {import(\"./Stroke.js\").default} [stroke] Stroke style.\n * @property {Array<number>} [displacement=[0,0]] displacement\n * @property {number|import(\"../size.js\").Size} [scale=1] Scale. A two dimensional scale will produce an ellipse.\n * Unless two dimensional scaling is required a better result may be obtained with an appropriate setting for `radius`.\n * @property {number} [rotation=0] Rotation in radians\n * (positive rotation clockwise, meaningful only when used in conjunction with a two dimensional scale).\n * @property {boolean} [rotateWithView=false] Whether to rotate the shape with the view\n * (meaningful only when used in conjunction with a two dimensional scale).\n */\n/**\n * @classdesc\n * Set circle style for vector features.\n * @api\n */\nvar CircleStyle = /** @class */ (function (_super) {\n __extends(CircleStyle, _super);\n /**\n * @param {Options} [opt_options] Options.\n */\n function CircleStyle(opt_options) {\n var options = opt_options ? opt_options : {};\n return _super.call(this, {\n points: Infinity,\n fill: options.fill,\n radius: options.radius,\n stroke: options.stroke,\n scale: options.scale !== undefined ? options.scale : 1,\n rotation: options.rotation !== undefined ? options.rotation : 0,\n rotateWithView: options.rotateWithView !== undefined ? options.rotateWithView : false,\n displacement: options.displacement !== undefined ? options.displacement : [0, 0],\n }) || this;\n }\n /**\n * Clones the style.\n * @return {CircleStyle} The cloned style.\n * @api\n */\n CircleStyle.prototype.clone = function () {\n var scale = this.getScale();\n var style = new CircleStyle({\n fill: this.getFill() ? this.getFill().clone() : undefined,\n stroke: this.getStroke() ? this.getStroke().clone() : undefined,\n radius: this.getRadius(),\n scale: Array.isArray(scale) ? scale.slice() : scale,\n rotation: this.getRotation(),\n rotateWithView: this.getRotateWithView(),\n displacement: this.getDisplacement().slice(),\n });\n style.setOpacity(this.getOpacity());\n return style;\n };\n /**\n * Set the circle radius.\n *\n * @param {number} radius Circle radius.\n * @api\n */\n CircleStyle.prototype.setRadius = function (radius) {\n this.radius_ = radius;\n this.render();\n };\n return CircleStyle;\n}(RegularShape));\nexport default CircleStyle;\n//# sourceMappingURL=Circle.js.map","/**\n * @module ol/style/Fill\n */\n/**\n * @typedef {Object} Options\n * @property {import(\"../color.js\").Color|import(\"../colorlike.js\").ColorLike|null} [color=null] A color, gradient or pattern.\n * See {@link module:ol/color~Color} and {@link module:ol/colorlike~ColorLike} for possible formats.\n * Default null; if null, the Canvas/renderer default black will be used.\n */\n/**\n * @classdesc\n * Set fill style for vector features.\n * @api\n */\nvar Fill = /** @class */ (function () {\n /**\n * @param {Options} [opt_options] Options.\n */\n function Fill(opt_options) {\n var options = opt_options || {};\n /**\n * @private\n * @type {import(\"../color.js\").Color|import(\"../colorlike.js\").ColorLike|null}\n */\n this.color_ = options.color !== undefined ? options.color : null;\n }\n /**\n * Clones the style. The color is not cloned if it is an {@link module:ol/colorlike~ColorLike}.\n * @return {Fill} The cloned style.\n * @api\n */\n Fill.prototype.clone = function () {\n var color = this.getColor();\n return new Fill({\n color: Array.isArray(color) ? color.slice() : color || undefined,\n });\n };\n /**\n * Get the fill color.\n * @return {import(\"../color.js\").Color|import(\"../colorlike.js\").ColorLike|null} Color.\n * @api\n */\n Fill.prototype.getColor = function () {\n return this.color_;\n };\n /**\n * Set the color.\n *\n * @param {import(\"../color.js\").Color|import(\"../colorlike.js\").ColorLike|null} color Color.\n * @api\n */\n Fill.prototype.setColor = function (color) {\n this.color_ = color;\n };\n return Fill;\n}());\nexport default Fill;\n//# sourceMappingURL=Fill.js.map","/**\n * @module ol/style/Stroke\n */\n/**\n * @typedef {Object} Options\n * @property {import(\"../color.js\").Color|import(\"../colorlike.js\").ColorLike} [color] A color, gradient or pattern.\n * See {@link module:ol/color~Color} and {@link module:ol/colorlike~ColorLike} for possible formats.\n * Default null; if null, the Canvas/renderer default black will be used.\n * @property {CanvasLineCap} [lineCap='round'] Line cap style: `butt`, `round`, or `square`.\n * @property {CanvasLineJoin} [lineJoin='round'] Line join style: `bevel`, `round`, or `miter`.\n * @property {Array<number>} [lineDash] Line dash pattern. Default is `null` (no dash).\n * Please note that Internet Explorer 10 and lower do not support the `setLineDash` method on\n * the `CanvasRenderingContext2D` and therefore this option will have no visual effect in these browsers.\n * @property {number} [lineDashOffset=0] Line dash offset.\n * @property {number} [miterLimit=10] Miter limit.\n * @property {number} [width] Width.\n */\n/**\n * @classdesc\n * Set stroke style for vector features.\n * Note that the defaults given are the Canvas defaults, which will be used if\n * option is not defined. The `get` functions return whatever was entered in\n * the options; they will not return the default.\n * @api\n */\nvar Stroke = /** @class */ (function () {\n /**\n * @param {Options} [opt_options] Options.\n */\n function Stroke(opt_options) {\n var options = opt_options || {};\n /**\n * @private\n * @type {import(\"../color.js\").Color|import(\"../colorlike.js\").ColorLike}\n */\n this.color_ = options.color !== undefined ? options.color : null;\n /**\n * @private\n * @type {CanvasLineCap|undefined}\n */\n this.lineCap_ = options.lineCap;\n /**\n * @private\n * @type {Array<number>}\n */\n this.lineDash_ = options.lineDash !== undefined ? options.lineDash : null;\n /**\n * @private\n * @type {number|undefined}\n */\n this.lineDashOffset_ = options.lineDashOffset;\n /**\n * @private\n * @type {CanvasLineJoin|undefined}\n */\n this.lineJoin_ = options.lineJoin;\n /**\n * @private\n * @type {number|undefined}\n */\n this.miterLimit_ = options.miterLimit;\n /**\n * @private\n * @type {number|undefined}\n */\n this.width_ = options.width;\n }\n /**\n * Clones the style.\n * @return {Stroke} The cloned style.\n * @api\n */\n Stroke.prototype.clone = function () {\n var color = this.getColor();\n return new Stroke({\n color: Array.isArray(color) ? color.slice() : color || undefined,\n lineCap: this.getLineCap(),\n lineDash: this.getLineDash() ? this.getLineDash().slice() : undefined,\n lineDashOffset: this.getLineDashOffset(),\n lineJoin: this.getLineJoin(),\n miterLimit: this.getMiterLimit(),\n width: this.getWidth(),\n });\n };\n /**\n * Get the stroke color.\n * @return {import(\"../color.js\").Color|import(\"../colorlike.js\").ColorLike} Color.\n * @api\n */\n Stroke.prototype.getColor = function () {\n return this.color_;\n };\n /**\n * Get the line cap type for the stroke.\n * @return {CanvasLineCap|undefined} Line cap.\n * @api\n */\n Stroke.prototype.getLineCap = function () {\n return this.lineCap_;\n };\n /**\n * Get the line dash style for the stroke.\n * @return {Array<number>} Line dash.\n * @api\n */\n Stroke.prototype.getLineDash = function () {\n return this.lineDash_;\n };\n /**\n * Get the line dash offset for the stroke.\n * @return {number|undefined} Line dash offset.\n * @api\n */\n Stroke.prototype.getLineDashOffset = function () {\n return this.lineDashOffset_;\n };\n /**\n * Get the line join type for the stroke.\n * @return {CanvasLineJoin|undefined} Line join.\n * @api\n */\n Stroke.prototype.getLineJoin = function () {\n return this.lineJoin_;\n };\n /**\n * Get the miter limit for the stroke.\n * @return {number|undefined} Miter limit.\n * @api\n */\n Stroke.prototype.getMiterLimit = function () {\n return this.miterLimit_;\n };\n /**\n * Get the stroke width.\n * @return {number|undefined} Width.\n * @api\n */\n Stroke.prototype.getWidth = function () {\n return this.width_;\n };\n /**\n * Set the color.\n *\n * @param {import(\"../color.js\").Color|import(\"../colorlike.js\").ColorLike} color Color.\n * @api\n */\n Stroke.prototype.setColor = function (color) {\n this.color_ = color;\n };\n /**\n * Set the line cap.\n *\n * @param {CanvasLineCap|undefined} lineCap Line cap.\n * @api\n */\n Stroke.prototype.setLineCap = function (lineCap) {\n this.lineCap_ = lineCap;\n };\n /**\n * Set the line dash.\n *\n * Please note that Internet Explorer 10 and lower [do not support][mdn] the\n * `setLineDash` method on the `CanvasRenderingContext2D` and therefore this\n * property will have no visual effect in these browsers.\n *\n * [mdn]: https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D/setLineDash#Browser_compatibility\n *\n * @param {Array<number>} lineDash Line dash.\n * @api\n */\n Stroke.prototype.setLineDash = function (lineDash) {\n this.lineDash_ = lineDash;\n };\n /**\n * Set the line dash offset.\n *\n * @param {number|undefined} lineDashOffset Line dash offset.\n * @api\n */\n Stroke.prototype.setLineDashOffset = function (lineDashOffset) {\n this.lineDashOffset_ = lineDashOffset;\n };\n /**\n * Set the line join.\n *\n * @param {CanvasLineJoin|undefined} lineJoin Line join.\n * @api\n */\n Stroke.prototype.setLineJoin = function (lineJoin) {\n this.lineJoin_ = lineJoin;\n };\n /**\n * Set the miter limit.\n *\n * @param {number|undefined} miterLimit Miter limit.\n * @api\n */\n Stroke.prototype.setMiterLimit = function (miterLimit) {\n this.miterLimit_ = miterLimit;\n };\n /**\n * Set the width.\n *\n * @param {number|undefined} width Width.\n * @api\n */\n Stroke.prototype.setWidth = function (width) {\n this.width_ = width;\n };\n return Stroke;\n}());\nexport default Stroke;\n//# sourceMappingURL=Stroke.js.map","/**\n * @module ol/style/Style\n */\nimport CircleStyle from './Circle.js';\nimport Fill from './Fill.js';\nimport GeometryType from '../geom/GeometryType.js';\nimport Stroke from './Stroke.js';\nimport { assert } from '../asserts.js';\n/**\n * A function that takes an {@link module:ol/Feature~Feature} and a `{number}`\n * representing the view's resolution. The function should return a\n * {@link module:ol/style/Style~Style} or an array of them. This way e.g. a\n * vector layer can be styled. If the function returns `undefined`, the\n * feature will not be rendered.\n *\n * @typedef {function(import(\"../Feature.js\").FeatureLike, number):(Style|Array<Style>|void)} StyleFunction\n */\n/**\n * A {@link Style}, an array of {@link Style}, or a {@link StyleFunction}.\n * @typedef {Style|Array<Style>|StyleFunction} StyleLike\n */\n/**\n * A function that takes an {@link module:ol/Feature~Feature} as argument and returns an\n * {@link module:ol/geom/Geometry~Geometry} that will be rendered and styled for the feature.\n *\n * @typedef {function(import(\"../Feature.js\").FeatureLike):\n * (import(\"../geom/Geometry.js\").default|import(\"../render/Feature.js\").default|undefined)} GeometryFunction\n */\n/**\n * Custom renderer function. Takes two arguments:\n *\n * 1. The pixel coordinates of the geometry in GeoJSON notation.\n * 2. The {@link module:ol/render~State} of the layer renderer.\n *\n * @typedef {function((import(\"../coordinate.js\").Coordinate|Array<import(\"../coordinate.js\").Coordinate>|Array<Array<import(\"../coordinate.js\").Coordinate>>),import(\"../render.js\").State): void}\n * RenderFunction\n */\n/**\n * @typedef {Object} Options\n * @property {string|import(\"../geom/Geometry.js\").default|GeometryFunction} [geometry] Feature property or geometry\n * or function returning a geometry to render for this style.\n * @property {import(\"./Fill.js\").default} [fill] Fill style.\n * @property {import(\"./Image.js\").default} [image] Image style.\n * @property {RenderFunction} [renderer] Custom renderer. When configured, `fill`, `stroke` and `image` will be\n * ignored, and the provided function will be called with each render frame for each geometry.\n * @property {RenderFunction} [hitDetectionRenderer] Custom renderer for hit detection. If provided will be used\n * in hit detection rendering.\n * @property {import(\"./Stroke.js\").default} [stroke] Stroke style.\n * @property {import(\"./Text.js\").default} [text] Text style.\n * @property {number} [zIndex] Z index.\n */\n/**\n * @classdesc\n * Container for vector feature rendering styles. Any changes made to the style\n * or its children through `set*()` methods will not take effect until the\n * feature or layer that uses the style is re-rendered.\n *\n * ## Feature styles\n *\n * If no style is defined, the following default style is used:\n * ```js\n * import {Circle, Fill, Stroke, Style} from 'ol/style';\n *\n * const fill = new Fill({\n * color: 'rgba(255,255,255,0.4)',\n * });\n * const stroke = new Stroke({\n * color: '#3399CC',\n * width: 1.25,\n * });\n * const styles = [\n * new Style({\n * image: new Circle({\n * fill: fill,\n * stroke: stroke,\n * radius: 5,\n * }),\n * fill: fill,\n * stroke: stroke,\n * }),\n * ];\n * ```\n *\n * A separate editing style has the following defaults:\n * ```js\n * import GeometryType from 'ol/geom/GeometryType';\n * import {Circle, Fill, Stroke, Style} from 'ol/style';\n *\n * const styles = {};\n * const white = [255, 255, 255, 1];\n * const blue = [0, 153, 255, 1];\n * const width = 3;\n * styles[GeometryType.POLYGON] = [\n * new Style({\n * fill: new Fill({\n * color: [255, 255, 255, 0.5],\n * }),\n * }),\n * ];\n * styles[GeometryType.MULTI_POLYGON] = styles[GeometryType.POLYGON];\n *\n * styles[GeometryType.LINE_STRING] = [\n * new Style({\n * stroke: new Stroke({\n * color: white,\n * width: width + 2,\n * }),\n * }),\n * new Style({\n * stroke: new Stroke({\n * color: blue,\n * width: width,\n * }),\n * }),\n * ];\n * styles[GeometryType.MULTI_LINE_STRING] = styles[GeometryType.LINE_STRING];\n *\n * styles[GeometryType.CIRCLE] = styles[GeometryType.POLYGON].concat(\n * styles[GeometryType.LINE_STRING]\n * );\n *\n * styles[GeometryType.POINT] = [\n * new Style({\n * image: new Circle({\n * radius: width * 2,\n * fill: new Fill({\n * color: blue,\n * }),\n * stroke: new Stroke({\n * color: white,\n * width: width / 2,\n * }),\n * }),\n * zIndex: Infinity,\n * }),\n * ];\n * styles[GeometryType.MULTI_POINT] = styles[GeometryType.POINT];\n *\n * styles[GeometryType.GEOMETRY_COLLECTION] = styles[\n * GeometryType.POLYGON\n * ].concat(styles[GeometryType.LINE_STRING], styles[GeometryType.POINT]);\n * ```\n *\n * @api\n */\nvar Style = /** @class */ (function () {\n /**\n * @param {Options} [opt_options] Style options.\n */\n function Style(opt_options) {\n var options = opt_options || {};\n /**\n * @private\n * @type {string|import(\"../geom/Geometry.js\").default|GeometryFunction}\n */\n this.geometry_ = null;\n /**\n * @private\n * @type {!GeometryFunction}\n */\n this.geometryFunction_ = defaultGeometryFunction;\n if (options.geometry !== undefined) {\n this.setGeometry(options.geometry);\n }\n /**\n * @private\n * @type {import(\"./Fill.js\").default}\n */\n this.fill_ = options.fill !== undefined ? options.fill : null;\n /**\n * @private\n * @type {import(\"./Image.js\").default}\n */\n this.image_ = options.image !== undefined ? options.image : null;\n /**\n * @private\n * @type {RenderFunction|null}\n */\n this.renderer_ = options.renderer !== undefined ? options.renderer : null;\n /**\n * @private\n * @type {RenderFunction|null}\n */\n this.hitDetectionRenderer_ =\n options.hitDetectionRenderer !== undefined\n ? options.hitDetectionRenderer\n : null;\n /**\n * @private\n * @type {import(\"./Stroke.js\").default}\n */\n this.stroke_ = options.stroke !== undefined ? options.stroke : null;\n /**\n * @private\n * @type {import(\"./Text.js\").default}\n */\n this.text_ = options.text !== undefined ? options.text : null;\n /**\n * @private\n * @type {number|undefined}\n */\n this.zIndex_ = options.zIndex;\n }\n /**\n * Clones the style.\n * @return {Style} The cloned style.\n * @api\n */\n Style.prototype.clone = function () {\n var geometry = this.getGeometry();\n if (geometry && typeof geometry === 'object') {\n geometry = /** @type {import(\"../geom/Geometry.js\").default} */ (geometry).clone();\n }\n return new Style({\n geometry: geometry,\n fill: this.getFill() ? this.getFill().clone() : undefined,\n image: this.getImage() ? this.getImage().clone() : undefined,\n renderer: this.getRenderer(),\n stroke: this.getStroke() ? this.getStroke().clone() : undefined,\n text: this.getText() ? this.getText().clone() : undefined,\n zIndex: this.getZIndex(),\n });\n };\n /**\n * Get the custom renderer function that was configured with\n * {@link #setRenderer} or the `renderer` constructor option.\n * @return {RenderFunction|null} Custom renderer function.\n * @api\n */\n Style.prototype.getRenderer = function () {\n return this.renderer_;\n };\n /**\n * Sets a custom renderer function for this style. When set, `fill`, `stroke`\n * and `image` options of the style will be ignored.\n * @param {RenderFunction|null} renderer Custom renderer function.\n * @api\n */\n Style.prototype.setRenderer = function (renderer) {\n this.renderer_ = renderer;\n };\n /**\n * Sets a custom renderer function for this style used\n * in hit detection.\n * @param {RenderFunction|null} renderer Custom renderer function.\n * @api\n */\n Style.prototype.setHitDetectionRenderer = function (renderer) {\n this.hitDetectionRenderer_ = renderer;\n };\n /**\n * Get the custom renderer function that was configured with\n * {@link #setHitDetectionRenderer} or the `hitDetectionRenderer` constructor option.\n * @return {RenderFunction|null} Custom renderer function.\n * @api\n */\n Style.prototype.getHitDetectionRenderer = function () {\n return this.hitDetectionRenderer_;\n };\n /**\n * Get the geometry to be rendered.\n * @return {string|import(\"../geom/Geometry.js\").default|GeometryFunction}\n * Feature property or geometry or function that returns the geometry that will\n * be rendered with this style.\n * @api\n */\n Style.prototype.getGeometry = function () {\n return this.geometry_;\n };\n /**\n * Get the function used to generate a geometry for rendering.\n * @return {!GeometryFunction} Function that is called with a feature\n * and returns the geometry to render instead of the feature's geometry.\n * @api\n */\n Style.prototype.getGeometryFunction = function () {\n return this.geometryFunction_;\n };\n /**\n * Get the fill style.\n * @return {import(\"./Fill.js\").default} Fill style.\n * @api\n */\n Style.prototype.getFill = function () {\n return this.fill_;\n };\n /**\n * Set the fill style.\n * @param {import(\"./Fill.js\").default} fill Fill style.\n * @api\n */\n Style.prototype.setFill = function (fill) {\n this.fill_ = fill;\n };\n /**\n * Get the image style.\n * @return {import(\"./Image.js\").default} Image style.\n * @api\n */\n Style.prototype.getImage = function () {\n return this.image_;\n };\n /**\n * Set the image style.\n * @param {import(\"./Image.js\").default} image Image style.\n * @api\n */\n Style.prototype.setImage = function (image) {\n this.image_ = image;\n };\n /**\n * Get the stroke style.\n * @return {import(\"./Stroke.js\").default} Stroke style.\n * @api\n */\n Style.prototype.getStroke = function () {\n return this.stroke_;\n };\n /**\n * Set the stroke style.\n * @param {import(\"./Stroke.js\").default} stroke Stroke style.\n * @api\n */\n Style.prototype.setStroke = function (stroke) {\n this.stroke_ = stroke;\n };\n /**\n * Get the text style.\n * @return {import(\"./Text.js\").default} Text style.\n * @api\n */\n Style.prototype.getText = function () {\n return this.text_;\n };\n /**\n * Set the text style.\n * @param {import(\"./Text.js\").default} text Text style.\n * @api\n */\n Style.prototype.setText = function (text) {\n this.text_ = text;\n };\n /**\n * Get the z-index for the style.\n * @return {number|undefined} ZIndex.\n * @api\n */\n Style.prototype.getZIndex = function () {\n return this.zIndex_;\n };\n /**\n * Set a geometry that is rendered instead of the feature's geometry.\n *\n * @param {string|import(\"../geom/Geometry.js\").default|GeometryFunction} geometry\n * Feature property or geometry or function returning a geometry to render\n * for this style.\n * @api\n */\n Style.prototype.setGeometry = function (geometry) {\n if (typeof geometry === 'function') {\n this.geometryFunction_ = geometry;\n }\n else if (typeof geometry === 'string') {\n this.geometryFunction_ = function (feature) {\n return /** @type {import(\"../geom/Geometry.js\").default} */ (feature.get(geometry));\n };\n }\n else if (!geometry) {\n this.geometryFunction_ = defaultGeometryFunction;\n }\n else if (geometry !== undefined) {\n this.geometryFunction_ = function () {\n return /** @type {import(\"../geom/Geometry.js\").default} */ (geometry);\n };\n }\n this.geometry_ = geometry;\n };\n /**\n * Set the z-index.\n *\n * @param {number|undefined} zIndex ZIndex.\n * @api\n */\n Style.prototype.setZIndex = function (zIndex) {\n this.zIndex_ = zIndex;\n };\n return Style;\n}());\n/**\n * Convert the provided object into a style function. Functions passed through\n * unchanged. Arrays of Style or single style objects wrapped in a\n * new style function.\n * @param {StyleFunction|Array<Style>|Style} obj\n * A style function, a single style, or an array of styles.\n * @return {StyleFunction} A style function.\n */\nexport function toFunction(obj) {\n var styleFunction;\n if (typeof obj === 'function') {\n styleFunction = obj;\n }\n else {\n /**\n * @type {Array<Style>}\n */\n var styles_1;\n if (Array.isArray(obj)) {\n styles_1 = obj;\n }\n else {\n assert(typeof ( /** @type {?} */(obj).getZIndex) === 'function', 41); // Expected an `Style` or an array of `Style`\n var style = /** @type {Style} */ (obj);\n styles_1 = [style];\n }\n styleFunction = function () {\n return styles_1;\n };\n }\n return styleFunction;\n}\n/**\n * @type {Array<Style>|null}\n */\nvar defaultStyles = null;\n/**\n * @param {import(\"../Feature.js\").FeatureLike} feature Feature.\n * @param {number} resolution Resolution.\n * @return {Array<Style>} Style.\n */\nexport function createDefaultStyle(feature, resolution) {\n // We don't use an immediately-invoked function\n // and a closure so we don't get an error at script evaluation time in\n // browsers that do not support Canvas. (import(\"./Circle.js\").CircleStyle does\n // canvas.getContext('2d') at construction time, which will cause an.error\n // in such browsers.)\n if (!defaultStyles) {\n var fill = new Fill({\n color: 'rgba(255,255,255,0.4)',\n });\n var stroke = new Stroke({\n color: '#3399CC',\n width: 1.25,\n });\n defaultStyles = [\n new Style({\n image: new CircleStyle({\n fill: fill,\n stroke: stroke,\n radius: 5,\n }),\n fill: fill,\n stroke: stroke,\n }),\n ];\n }\n return defaultStyles;\n}\n/**\n * Default styles for editing features.\n * @return {Object<import(\"../geom/GeometryType.js\").default, Array<Style>>} Styles\n */\nexport function createEditingStyle() {\n /** @type {Object<import(\"../geom/GeometryType.js\").default, Array<Style>>} */\n var styles = {};\n var white = [255, 255, 255, 1];\n var blue = [0, 153, 255, 1];\n var width = 3;\n styles[GeometryType.POLYGON] = [\n new Style({\n fill: new Fill({\n color: [255, 255, 255, 0.5],\n }),\n }),\n ];\n styles[GeometryType.MULTI_POLYGON] = styles[GeometryType.POLYGON];\n styles[GeometryType.LINE_STRING] = [\n new Style({\n stroke: new Stroke({\n color: white,\n width: width + 2,\n }),\n }),\n new Style({\n stroke: new Stroke({\n color: blue,\n width: width,\n }),\n }),\n ];\n styles[GeometryType.MULTI_LINE_STRING] = styles[GeometryType.LINE_STRING];\n styles[GeometryType.CIRCLE] = styles[GeometryType.POLYGON].concat(styles[GeometryType.LINE_STRING]);\n styles[GeometryType.POINT] = [\n new Style({\n image: new CircleStyle({\n radius: width * 2,\n fill: new Fill({\n color: blue,\n }),\n stroke: new Stroke({\n color: white,\n width: width / 2,\n }),\n }),\n zIndex: Infinity,\n }),\n ];\n styles[GeometryType.MULTI_POINT] = styles[GeometryType.POINT];\n styles[GeometryType.GEOMETRY_COLLECTION] = styles[GeometryType.POLYGON].concat(styles[GeometryType.LINE_STRING], styles[GeometryType.POINT]);\n return styles;\n}\n/**\n * Function that is called with a feature and returns its default geometry.\n * @param {import(\"../Feature.js\").FeatureLike} feature Feature to get the geometry for.\n * @return {import(\"../geom/Geometry.js\").default|import(\"../render/Feature.js\").default|undefined} Geometry to render.\n */\nfunction defaultGeometryFunction(feature) {\n return feature.getGeometry();\n}\nexport default Style;\n//# sourceMappingURL=Style.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/layer/BaseVector\n */\nimport Layer from './Layer.js';\nimport RBush from 'rbush';\nimport { assign } from '../obj.js';\nimport { createDefaultStyle, toFunction as toStyleFunction, } from '../style/Style.js';\n/**\n * @template {import(\"../source/Vector.js\").default|import(\"../source/VectorTile.js\").default} VectorSourceType\n * @typedef {Object} Options\n * @property {string} [className='ol-layer'] A CSS class name to set to the layer element.\n * @property {number} [opacity=1] Opacity (0, 1).\n * @property {boolean} [visible=true] Visibility.\n * @property {import(\"../extent.js\").Extent} [extent] The bounding extent for layer rendering. The layer will not be\n * rendered outside of this extent.\n * @property {number} [zIndex] The z-index for layer rendering. At rendering time, the layers\n * will be ordered, first by Z-index and then by position. When `undefined`, a `zIndex` of 0 is assumed\n * for layers that are added to the map's `layers` collection, or `Infinity` when the layer's `setMap()`\n * method was used.\n * @property {number} [minResolution] The minimum resolution (inclusive) at which this layer will be\n * visible.\n * @property {number} [maxResolution] The maximum resolution (exclusive) below which this layer will\n * be visible.\n * @property {number} [minZoom] The minimum view zoom level (exclusive) above which this layer will be\n * visible.\n * @property {number} [maxZoom] The maximum view zoom level (inclusive) at which this layer will\n * be visible.\n * @property {import(\"../render.js\").OrderFunction} [renderOrder] Render order. Function to be used when sorting\n * features before rendering. By default features are drawn in the order that they are created. Use\n * `null` to avoid the sort, but get an undefined draw order.\n * @property {number} [renderBuffer=100] The buffer in pixels around the viewport extent used by the\n * renderer when getting features from the vector source for the rendering or hit-detection.\n * Recommended value: the size of the largest symbol, line width or label.\n * @property {VectorSourceType} [source] Source.\n * @property {import(\"../PluggableMap.js\").default} [map] Sets the layer as overlay on a map. The map will not manage\n * this layer in its layers collection, and the layer will be rendered on top. This is useful for\n * temporary layers. The standard way to add a layer to a map and have it managed by the map is to\n * use {@link import(\"../PluggableMap.js\").default#addLayer map.addLayer()}.\n * @property {boolean} [declutter=false] Declutter images and text. Decluttering is applied to all\n * image and text styles of all Vector and VectorTile layers that have set this to `true`. The priority\n * is defined by the z-index of the layer, the `zIndex` of the style and the render order of features.\n * Higher z-index means higher priority. Within the same z-index, a feature rendered before another has\n * higher priority.\n *\n * As an optimization decluttered features from layers with the same `className` are rendered above\n * the fill and stroke styles of all of those layers regardless of z-index. To opt out of this\n * behavior and place declutterd features with their own layer configure the layer with a `className`\n * other than `ol-layer`.\n * @property {import(\"../style/Style.js\").StyleLike|null} [style] Layer style. When set to `null`, only\n * features that have their own style will be rendered. See {@link module:ol/style/Style~Style} for the default style\n * which will be used if this is not set.\n * @property {import(\"./Base.js\").BackgroundColor} [background] Background color for the layer. If not specified, no background\n * will be rendered.\n * @property {boolean} [updateWhileAnimating=false] When set to `true`, feature batches will\n * be recreated during animations. This means that no vectors will be shown clipped, but the\n * setting will have a performance impact for large amounts of vector data. When set to `false`,\n * batches will be recreated when no animation is active.\n * @property {boolean} [updateWhileInteracting=false] When set to `true`, feature batches will\n * be recreated during interactions. See also `updateWhileAnimating`.\n * @property {Object<string, *>} [properties] Arbitrary observable properties. Can be accessed with `#get()` and `#set()`.\n */\n/**\n * @enum {string}\n * @private\n */\nvar Property = {\n RENDER_ORDER: 'renderOrder',\n};\n/**\n * @classdesc\n * Vector data that is rendered client-side.\n * Note that any property set in the options is set as a {@link module:ol/Object~BaseObject}\n * property on the layer object; for example, setting `title: 'My Title'` in the\n * options means that `title` is observable, and has get/set accessors.\n *\n * @template {import(\"../source/Vector.js\").default|import(\"../source/VectorTile.js\").default} VectorSourceType\n * @template {import(\"../renderer/canvas/VectorLayer.js\").default|import(\"../renderer/canvas/VectorTileLayer.js\").default|import(\"../renderer/canvas/VectorImageLayer.js\").default|import(\"../renderer/webgl/PointsLayer.js\").default} RendererType\n * @extends {Layer<VectorSourceType, RendererType>}\n * @api\n */\nvar BaseVectorLayer = /** @class */ (function (_super) {\n __extends(BaseVectorLayer, _super);\n /**\n * @param {Options<VectorSourceType>} [opt_options] Options.\n */\n function BaseVectorLayer(opt_options) {\n var _this = this;\n var options = opt_options ? opt_options : {};\n var baseOptions = assign({}, options);\n delete baseOptions.style;\n delete baseOptions.renderBuffer;\n delete baseOptions.updateWhileAnimating;\n delete baseOptions.updateWhileInteracting;\n _this = _super.call(this, baseOptions) || this;\n /**\n * @private\n * @type {boolean}\n */\n _this.declutter_ =\n options.declutter !== undefined ? options.declutter : false;\n /**\n * @type {number}\n * @private\n */\n _this.renderBuffer_ =\n options.renderBuffer !== undefined ? options.renderBuffer : 100;\n /**\n * User provided style.\n * @type {import(\"../style/Style.js\").StyleLike}\n * @private\n */\n _this.style_ = null;\n /**\n * Style function for use within the library.\n * @type {import(\"../style/Style.js\").StyleFunction|undefined}\n * @private\n */\n _this.styleFunction_ = undefined;\n _this.setStyle(options.style);\n /**\n * @type {boolean}\n * @private\n */\n _this.updateWhileAnimating_ =\n options.updateWhileAnimating !== undefined\n ? options.updateWhileAnimating\n : false;\n /**\n * @type {boolean}\n * @private\n */\n _this.updateWhileInteracting_ =\n options.updateWhileInteracting !== undefined\n ? options.updateWhileInteracting\n : false;\n return _this;\n }\n /**\n * @return {boolean} Declutter.\n */\n BaseVectorLayer.prototype.getDeclutter = function () {\n return this.declutter_;\n };\n /**\n * Get the topmost feature that intersects the given pixel on the viewport. Returns a promise\n * that resolves with an array of features. The array will either contain the topmost feature\n * when a hit was detected, or it will be empty.\n *\n * The hit detection algorithm used for this method is optimized for performance, but is less\n * accurate than the one used in {@link import(\"../PluggableMap.js\").default#getFeaturesAtPixel}: Text\n * is not considered, and icons are only represented by their bounding box instead of the exact\n * image.\n *\n * @param {import(\"../pixel.js\").Pixel} pixel Pixel.\n * @return {Promise<Array<import(\"../Feature\").default>>} Promise that resolves with an array of features.\n * @api\n */\n BaseVectorLayer.prototype.getFeatures = function (pixel) {\n return _super.prototype.getFeatures.call(this, pixel);\n };\n /**\n * @return {number|undefined} Render buffer.\n */\n BaseVectorLayer.prototype.getRenderBuffer = function () {\n return this.renderBuffer_;\n };\n /**\n * @return {function(import(\"../Feature.js\").default, import(\"../Feature.js\").default): number|null|undefined} Render\n * order.\n */\n BaseVectorLayer.prototype.getRenderOrder = function () {\n return /** @type {import(\"../render.js\").OrderFunction|null|undefined} */ (this.get(Property.RENDER_ORDER));\n };\n /**\n * Get the style for features. This returns whatever was passed to the `style`\n * option at construction or to the `setStyle` method.\n * @return {import(\"../style/Style.js\").StyleLike|null|undefined} Layer style.\n * @api\n */\n BaseVectorLayer.prototype.getStyle = function () {\n return this.style_;\n };\n /**\n * Get the style function.\n * @return {import(\"../style/Style.js\").StyleFunction|undefined} Layer style function.\n * @api\n */\n BaseVectorLayer.prototype.getStyleFunction = function () {\n return this.styleFunction_;\n };\n /**\n * @return {boolean} Whether the rendered layer should be updated while\n * animating.\n */\n BaseVectorLayer.prototype.getUpdateWhileAnimating = function () {\n return this.updateWhileAnimating_;\n };\n /**\n * @return {boolean} Whether the rendered layer should be updated while\n * interacting.\n */\n BaseVectorLayer.prototype.getUpdateWhileInteracting = function () {\n return this.updateWhileInteracting_;\n };\n /**\n * Render declutter items for this layer\n * @param {import(\"../PluggableMap.js\").FrameState} frameState Frame state.\n */\n BaseVectorLayer.prototype.renderDeclutter = function (frameState) {\n if (!frameState.declutterTree) {\n frameState.declutterTree = new RBush(9);\n }\n /** @type {*} */ (this.getRenderer()).renderDeclutter(frameState);\n };\n /**\n * @param {import(\"../render.js\").OrderFunction|null|undefined} renderOrder\n * Render order.\n */\n BaseVectorLayer.prototype.setRenderOrder = function (renderOrder) {\n this.set(Property.RENDER_ORDER, renderOrder);\n };\n /**\n * Set the style for features. This can be a single style object, an array\n * of styles, or a function that takes a feature and resolution and returns\n * an array of styles. If set to `null`, the layer has no style (a `null` style),\n * so only features that have their own styles will be rendered in the layer. Call\n * `setStyle()` without arguments to reset to the default style. See\n * {@link module:ol/style/Style~Style} for information on the default style.\n * @param {import(\"../style/Style.js\").StyleLike|null} [opt_style] Layer style.\n * @api\n */\n BaseVectorLayer.prototype.setStyle = function (opt_style) {\n this.style_ = opt_style !== undefined ? opt_style : createDefaultStyle;\n this.styleFunction_ =\n opt_style === null ? undefined : toStyleFunction(this.style_);\n this.changed();\n };\n return BaseVectorLayer;\n}(Layer));\nexport default BaseVectorLayer;\n//# sourceMappingURL=BaseVector.js.map","/**\n * @module ol/render/canvas/Instruction\n */\n/**\n * @enum {number}\n */\nvar Instruction = {\n BEGIN_GEOMETRY: 0,\n BEGIN_PATH: 1,\n CIRCLE: 2,\n CLOSE_PATH: 3,\n CUSTOM: 4,\n DRAW_CHARS: 5,\n DRAW_IMAGE: 6,\n END_GEOMETRY: 7,\n FILL: 8,\n MOVE_TO_LINE_TO: 9,\n SET_FILL_STYLE: 10,\n SET_STROKE_STYLE: 11,\n STROKE: 12,\n};\n/**\n * @type {Array<Instruction>}\n */\nexport var fillInstruction = [Instruction.FILL];\n/**\n * @type {Array<Instruction>}\n */\nexport var strokeInstruction = [Instruction.STROKE];\n/**\n * @type {Array<Instruction>}\n */\nexport var beginPathInstruction = [Instruction.BEGIN_PATH];\n/**\n * @type {Array<Instruction>}\n */\nexport var closePathInstruction = [Instruction.CLOSE_PATH];\nexport default Instruction;\n//# sourceMappingURL=Instruction.js.map","/**\n * @module ol/render/VectorContext\n */\n/**\n * @classdesc\n * Context for drawing geometries. A vector context is available on render\n * events and does not need to be constructed directly.\n * @api\n */\nvar VectorContext = /** @class */ (function () {\n function VectorContext() {\n }\n /**\n * Render a geometry with a custom renderer.\n *\n * @param {import(\"../geom/SimpleGeometry.js\").default} geometry Geometry.\n * @param {import(\"../Feature.js\").FeatureLike} feature Feature.\n * @param {Function} renderer Renderer.\n * @param {Function} hitDetectionRenderer Renderer.\n */\n VectorContext.prototype.drawCustom = function (geometry, feature, renderer, hitDetectionRenderer) { };\n /**\n * Render a geometry.\n *\n * @param {import(\"../geom/Geometry.js\").default} geometry The geometry to render.\n */\n VectorContext.prototype.drawGeometry = function (geometry) { };\n /**\n * Set the rendering style.\n *\n * @param {import(\"../style/Style.js\").default} style The rendering style.\n */\n VectorContext.prototype.setStyle = function (style) { };\n /**\n * @param {import(\"../geom/Circle.js\").default} circleGeometry Circle geometry.\n * @param {import(\"../Feature.js\").default} feature Feature.\n */\n VectorContext.prototype.drawCircle = function (circleGeometry, feature) { };\n /**\n * @param {import(\"../Feature.js\").default} feature Feature.\n * @param {import(\"../style/Style.js\").default} style Style.\n */\n VectorContext.prototype.drawFeature = function (feature, style) { };\n /**\n * @param {import(\"../geom/GeometryCollection.js\").default} geometryCollectionGeometry Geometry collection.\n * @param {import(\"../Feature.js\").default} feature Feature.\n */\n VectorContext.prototype.drawGeometryCollection = function (geometryCollectionGeometry, feature) { };\n /**\n * @param {import(\"../geom/LineString.js\").default|import(\"./Feature.js\").default} lineStringGeometry Line string geometry.\n * @param {import(\"../Feature.js\").FeatureLike} feature Feature.\n */\n VectorContext.prototype.drawLineString = function (lineStringGeometry, feature) { };\n /**\n * @param {import(\"../geom/MultiLineString.js\").default|import(\"./Feature.js\").default} multiLineStringGeometry MultiLineString geometry.\n * @param {import(\"../Feature.js\").FeatureLike} feature Feature.\n */\n VectorContext.prototype.drawMultiLineString = function (multiLineStringGeometry, feature) { };\n /**\n * @param {import(\"../geom/MultiPoint.js\").default|import(\"./Feature.js\").default} multiPointGeometry MultiPoint geometry.\n * @param {import(\"../Feature.js\").FeatureLike} feature Feature.\n */\n VectorContext.prototype.drawMultiPoint = function (multiPointGeometry, feature) { };\n /**\n * @param {import(\"../geom/MultiPolygon.js\").default} multiPolygonGeometry MultiPolygon geometry.\n * @param {import(\"../Feature.js\").FeatureLike} feature Feature.\n */\n VectorContext.prototype.drawMultiPolygon = function (multiPolygonGeometry, feature) { };\n /**\n * @param {import(\"../geom/Point.js\").default|import(\"./Feature.js\").default} pointGeometry Point geometry.\n * @param {import(\"../Feature.js\").FeatureLike} feature Feature.\n */\n VectorContext.prototype.drawPoint = function (pointGeometry, feature) { };\n /**\n * @param {import(\"../geom/Polygon.js\").default|import(\"./Feature.js\").default} polygonGeometry Polygon geometry.\n * @param {import(\"../Feature.js\").FeatureLike} feature Feature.\n */\n VectorContext.prototype.drawPolygon = function (polygonGeometry, feature) { };\n /**\n * @param {import(\"../geom/SimpleGeometry.js\").default|import(\"./Feature.js\").default} geometry Geometry.\n * @param {import(\"../Feature.js\").FeatureLike} feature Feature.\n */\n VectorContext.prototype.drawText = function (geometry, feature) { };\n /**\n * @param {import(\"../style/Fill.js\").default} fillStyle Fill style.\n * @param {import(\"../style/Stroke.js\").default} strokeStyle Stroke style.\n */\n VectorContext.prototype.setFillStrokeStyle = function (fillStyle, strokeStyle) { };\n /**\n * @param {import(\"../style/Image.js\").default} imageStyle Image style.\n * @param {import(\"../render/canvas.js\").DeclutterImageWithText} [opt_declutterImageWithText] Shared data for combined decluttering with a text style.\n */\n VectorContext.prototype.setImageStyle = function (imageStyle, opt_declutterImageWithText) { };\n /**\n * @param {import(\"../style/Text.js\").default} textStyle Text style.\n * @param {import(\"../render/canvas.js\").DeclutterImageWithText} [opt_declutterImageWithText] Shared data for combined decluttering with an image style.\n */\n VectorContext.prototype.setTextStyle = function (textStyle, opt_declutterImageWithText) { };\n return VectorContext;\n}());\nexport default VectorContext;\n//# sourceMappingURL=VectorContext.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/render/canvas/Builder\n */\nimport CanvasInstruction from './Instruction.js';\nimport GeometryType from '../../geom/GeometryType.js';\nimport Relationship from '../../extent/Relationship.js';\nimport VectorContext from '../VectorContext.js';\nimport { asColorLike } from '../../colorlike.js';\nimport { buffer, clone, containsCoordinate, coordinateRelationship, } from '../../extent.js';\nimport { defaultFillStyle, defaultLineCap, defaultLineDash, defaultLineDashOffset, defaultLineJoin, defaultLineWidth, defaultMiterLimit, defaultStrokeStyle, } from '../canvas.js';\nimport { equals, reverseSubArray } from '../../array.js';\nimport { inflateCoordinates, inflateCoordinatesArray, inflateMultiCoordinatesArray, } from '../../geom/flat/inflate.js';\nvar CanvasBuilder = /** @class */ (function (_super) {\n __extends(CanvasBuilder, _super);\n /**\n * @param {number} tolerance Tolerance.\n * @param {import(\"../../extent.js\").Extent} maxExtent Maximum extent.\n * @param {number} resolution Resolution.\n * @param {number} pixelRatio Pixel ratio.\n */\n function CanvasBuilder(tolerance, maxExtent, resolution, pixelRatio) {\n var _this = _super.call(this) || this;\n /**\n * @protected\n * @type {number}\n */\n _this.tolerance = tolerance;\n /**\n * @protected\n * @const\n * @type {import(\"../../extent.js\").Extent}\n */\n _this.maxExtent = maxExtent;\n /**\n * @protected\n * @type {number}\n */\n _this.pixelRatio = pixelRatio;\n /**\n * @protected\n * @type {number}\n */\n _this.maxLineWidth = 0;\n /**\n * @protected\n * @const\n * @type {number}\n */\n _this.resolution = resolution;\n /**\n * @private\n * @type {Array<*>}\n */\n _this.beginGeometryInstruction1_ = null;\n /**\n * @private\n * @type {Array<*>}\n */\n _this.beginGeometryInstruction2_ = null;\n /**\n * @private\n * @type {import(\"../../extent.js\").Extent}\n */\n _this.bufferedMaxExtent_ = null;\n /**\n * @protected\n * @type {Array<*>}\n */\n _this.instructions = [];\n /**\n * @protected\n * @type {Array<number>}\n */\n _this.coordinates = [];\n /**\n * @private\n * @type {import(\"../../coordinate.js\").Coordinate}\n */\n _this.tmpCoordinate_ = [];\n /**\n * @protected\n * @type {Array<*>}\n */\n _this.hitDetectionInstructions = [];\n /**\n * @protected\n * @type {import(\"../canvas.js\").FillStrokeState}\n */\n _this.state = /** @type {import(\"../canvas.js\").FillStrokeState} */ ({});\n return _this;\n }\n /**\n * @protected\n * @param {Array<number>} dashArray Dash array.\n * @return {Array<number>} Dash array with pixel ratio applied\n */\n CanvasBuilder.prototype.applyPixelRatio = function (dashArray) {\n var pixelRatio = this.pixelRatio;\n return pixelRatio == 1\n ? dashArray\n : dashArray.map(function (dash) {\n return dash * pixelRatio;\n });\n };\n /**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} stride Stride.\n * @protected\n * @return {number} My end\n */\n CanvasBuilder.prototype.appendFlatPointCoordinates = function (flatCoordinates, stride) {\n var extent = this.getBufferedMaxExtent();\n var tmpCoord = this.tmpCoordinate_;\n var coordinates = this.coordinates;\n var myEnd = coordinates.length;\n for (var i = 0, ii = flatCoordinates.length; i < ii; i += stride) {\n tmpCoord[0] = flatCoordinates[i];\n tmpCoord[1] = flatCoordinates[i + 1];\n if (containsCoordinate(extent, tmpCoord)) {\n coordinates[myEnd++] = tmpCoord[0];\n coordinates[myEnd++] = tmpCoord[1];\n }\n }\n return myEnd;\n };\n /**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {number} end End.\n * @param {number} stride Stride.\n * @param {boolean} closed Last input coordinate equals first.\n * @param {boolean} skipFirst Skip first coordinate.\n * @protected\n * @return {number} My end.\n */\n CanvasBuilder.prototype.appendFlatLineCoordinates = function (flatCoordinates, offset, end, stride, closed, skipFirst) {\n var coordinates = this.coordinates;\n var myEnd = coordinates.length;\n var extent = this.getBufferedMaxExtent();\n if (skipFirst) {\n offset += stride;\n }\n var lastXCoord = flatCoordinates[offset];\n var lastYCoord = flatCoordinates[offset + 1];\n var nextCoord = this.tmpCoordinate_;\n var skipped = true;\n var i, lastRel, nextRel;\n for (i = offset + stride; i < end; i += stride) {\n nextCoord[0] = flatCoordinates[i];\n nextCoord[1] = flatCoordinates[i + 1];\n nextRel = coordinateRelationship(extent, nextCoord);\n if (nextRel !== lastRel) {\n if (skipped) {\n coordinates[myEnd++] = lastXCoord;\n coordinates[myEnd++] = lastYCoord;\n skipped = false;\n }\n coordinates[myEnd++] = nextCoord[0];\n coordinates[myEnd++] = nextCoord[1];\n }\n else if (nextRel === Relationship.INTERSECTING) {\n coordinates[myEnd++] = nextCoord[0];\n coordinates[myEnd++] = nextCoord[1];\n skipped = false;\n }\n else {\n skipped = true;\n }\n lastXCoord = nextCoord[0];\n lastYCoord = nextCoord[1];\n lastRel = nextRel;\n }\n // Last coordinate equals first or only one point to append:\n if ((closed && skipped) || i === offset + stride) {\n coordinates[myEnd++] = lastXCoord;\n coordinates[myEnd++] = lastYCoord;\n }\n return myEnd;\n };\n /**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {Array<number>} ends Ends.\n * @param {number} stride Stride.\n * @param {Array<number>} builderEnds Builder ends.\n * @return {number} Offset.\n */\n CanvasBuilder.prototype.drawCustomCoordinates_ = function (flatCoordinates, offset, ends, stride, builderEnds) {\n for (var i = 0, ii = ends.length; i < ii; ++i) {\n var end = ends[i];\n var builderEnd = this.appendFlatLineCoordinates(flatCoordinates, offset, end, stride, false, false);\n builderEnds.push(builderEnd);\n offset = end;\n }\n return offset;\n };\n /**\n * @param {import(\"../../geom/SimpleGeometry.js\").default} geometry Geometry.\n * @param {import(\"../../Feature.js\").FeatureLike} feature Feature.\n * @param {Function} renderer Renderer.\n * @param {Function} hitDetectionRenderer Renderer.\n */\n CanvasBuilder.prototype.drawCustom = function (geometry, feature, renderer, hitDetectionRenderer) {\n this.beginGeometry(geometry, feature);\n var type = geometry.getType();\n var stride = geometry.getStride();\n var builderBegin = this.coordinates.length;\n var flatCoordinates, builderEnd, builderEnds, builderEndss;\n var offset;\n switch (type) {\n case GeometryType.MULTI_POLYGON:\n flatCoordinates =\n /** @type {import(\"../../geom/MultiPolygon.js\").default} */ (geometry).getOrientedFlatCoordinates();\n builderEndss = [];\n var endss = \n /** @type {import(\"../../geom/MultiPolygon.js\").default} */ (geometry).getEndss();\n offset = 0;\n for (var i = 0, ii = endss.length; i < ii; ++i) {\n var myEnds = [];\n offset = this.drawCustomCoordinates_(flatCoordinates, offset, endss[i], stride, myEnds);\n builderEndss.push(myEnds);\n }\n this.instructions.push([\n CanvasInstruction.CUSTOM,\n builderBegin,\n builderEndss,\n geometry,\n renderer,\n inflateMultiCoordinatesArray,\n ]);\n this.hitDetectionInstructions.push([\n CanvasInstruction.CUSTOM,\n builderBegin,\n builderEndss,\n geometry,\n hitDetectionRenderer || renderer,\n inflateMultiCoordinatesArray,\n ]);\n break;\n case GeometryType.POLYGON:\n case GeometryType.MULTI_LINE_STRING:\n builderEnds = [];\n flatCoordinates =\n type == GeometryType.POLYGON\n ? /** @type {import(\"../../geom/Polygon.js\").default} */ (geometry).getOrientedFlatCoordinates()\n : geometry.getFlatCoordinates();\n offset = this.drawCustomCoordinates_(flatCoordinates, 0, \n /** @type {import(\"../../geom/Polygon.js\").default|import(\"../../geom/MultiLineString.js\").default} */ (geometry).getEnds(), stride, builderEnds);\n this.instructions.push([\n CanvasInstruction.CUSTOM,\n builderBegin,\n builderEnds,\n geometry,\n renderer,\n inflateCoordinatesArray,\n ]);\n this.hitDetectionInstructions.push([\n CanvasInstruction.CUSTOM,\n builderBegin,\n builderEnds,\n geometry,\n hitDetectionRenderer || renderer,\n inflateCoordinatesArray,\n ]);\n break;\n case GeometryType.LINE_STRING:\n case GeometryType.CIRCLE:\n flatCoordinates = geometry.getFlatCoordinates();\n builderEnd = this.appendFlatLineCoordinates(flatCoordinates, 0, flatCoordinates.length, stride, false, false);\n this.instructions.push([\n CanvasInstruction.CUSTOM,\n builderBegin,\n builderEnd,\n geometry,\n renderer,\n inflateCoordinates,\n ]);\n this.hitDetectionInstructions.push([\n CanvasInstruction.CUSTOM,\n builderBegin,\n builderEnd,\n geometry,\n hitDetectionRenderer || renderer,\n inflateCoordinates,\n ]);\n break;\n case GeometryType.MULTI_POINT:\n flatCoordinates = geometry.getFlatCoordinates();\n builderEnd = this.appendFlatPointCoordinates(flatCoordinates, stride);\n if (builderEnd > builderBegin) {\n this.instructions.push([\n CanvasInstruction.CUSTOM,\n builderBegin,\n builderEnd,\n geometry,\n renderer,\n inflateCoordinates,\n ]);\n this.hitDetectionInstructions.push([\n CanvasInstruction.CUSTOM,\n builderBegin,\n builderEnd,\n geometry,\n hitDetectionRenderer || renderer,\n inflateCoordinates,\n ]);\n }\n break;\n case GeometryType.POINT:\n flatCoordinates = geometry.getFlatCoordinates();\n this.coordinates.push(flatCoordinates[0], flatCoordinates[1]);\n builderEnd = this.coordinates.length;\n this.instructions.push([\n CanvasInstruction.CUSTOM,\n builderBegin,\n builderEnd,\n geometry,\n renderer,\n ]);\n this.hitDetectionInstructions.push([\n CanvasInstruction.CUSTOM,\n builderBegin,\n builderEnd,\n geometry,\n hitDetectionRenderer || renderer,\n ]);\n break;\n default:\n }\n this.endGeometry(feature);\n };\n /**\n * @protected\n * @param {import(\"../../geom/Geometry\").default|import(\"../Feature.js\").default} geometry The geometry.\n * @param {import(\"../../Feature.js\").FeatureLike} feature Feature.\n */\n CanvasBuilder.prototype.beginGeometry = function (geometry, feature) {\n this.beginGeometryInstruction1_ = [\n CanvasInstruction.BEGIN_GEOMETRY,\n feature,\n 0,\n geometry,\n ];\n this.instructions.push(this.beginGeometryInstruction1_);\n this.beginGeometryInstruction2_ = [\n CanvasInstruction.BEGIN_GEOMETRY,\n feature,\n 0,\n geometry,\n ];\n this.hitDetectionInstructions.push(this.beginGeometryInstruction2_);\n };\n /**\n * @return {import(\"../canvas.js\").SerializableInstructions} the serializable instructions.\n */\n CanvasBuilder.prototype.finish = function () {\n return {\n instructions: this.instructions,\n hitDetectionInstructions: this.hitDetectionInstructions,\n coordinates: this.coordinates,\n };\n };\n /**\n * Reverse the hit detection instructions.\n */\n CanvasBuilder.prototype.reverseHitDetectionInstructions = function () {\n var hitDetectionInstructions = this.hitDetectionInstructions;\n // step 1 - reverse array\n hitDetectionInstructions.reverse();\n // step 2 - reverse instructions within geometry blocks\n var i;\n var n = hitDetectionInstructions.length;\n var instruction;\n var type;\n var begin = -1;\n for (i = 0; i < n; ++i) {\n instruction = hitDetectionInstructions[i];\n type = /** @type {import(\"./Instruction.js\").default} */ (instruction[0]);\n if (type == CanvasInstruction.END_GEOMETRY) {\n begin = i;\n }\n else if (type == CanvasInstruction.BEGIN_GEOMETRY) {\n instruction[2] = i;\n reverseSubArray(this.hitDetectionInstructions, begin, i);\n begin = -1;\n }\n }\n };\n /**\n * @param {import(\"../../style/Fill.js\").default} fillStyle Fill style.\n * @param {import(\"../../style/Stroke.js\").default} strokeStyle Stroke style.\n */\n CanvasBuilder.prototype.setFillStrokeStyle = function (fillStyle, strokeStyle) {\n var state = this.state;\n if (fillStyle) {\n var fillStyleColor = fillStyle.getColor();\n state.fillStyle = asColorLike(fillStyleColor ? fillStyleColor : defaultFillStyle);\n }\n else {\n state.fillStyle = undefined;\n }\n if (strokeStyle) {\n var strokeStyleColor = strokeStyle.getColor();\n state.strokeStyle = asColorLike(strokeStyleColor ? strokeStyleColor : defaultStrokeStyle);\n var strokeStyleLineCap = strokeStyle.getLineCap();\n state.lineCap =\n strokeStyleLineCap !== undefined ? strokeStyleLineCap : defaultLineCap;\n var strokeStyleLineDash = strokeStyle.getLineDash();\n state.lineDash = strokeStyleLineDash\n ? strokeStyleLineDash.slice()\n : defaultLineDash;\n var strokeStyleLineDashOffset = strokeStyle.getLineDashOffset();\n state.lineDashOffset = strokeStyleLineDashOffset\n ? strokeStyleLineDashOffset\n : defaultLineDashOffset;\n var strokeStyleLineJoin = strokeStyle.getLineJoin();\n state.lineJoin =\n strokeStyleLineJoin !== undefined\n ? strokeStyleLineJoin\n : defaultLineJoin;\n var strokeStyleWidth = strokeStyle.getWidth();\n state.lineWidth =\n strokeStyleWidth !== undefined ? strokeStyleWidth : defaultLineWidth;\n var strokeStyleMiterLimit = strokeStyle.getMiterLimit();\n state.miterLimit =\n strokeStyleMiterLimit !== undefined\n ? strokeStyleMiterLimit\n : defaultMiterLimit;\n if (state.lineWidth > this.maxLineWidth) {\n this.maxLineWidth = state.lineWidth;\n // invalidate the buffered max extent cache\n this.bufferedMaxExtent_ = null;\n }\n }\n else {\n state.strokeStyle = undefined;\n state.lineCap = undefined;\n state.lineDash = null;\n state.lineDashOffset = undefined;\n state.lineJoin = undefined;\n state.lineWidth = undefined;\n state.miterLimit = undefined;\n }\n };\n /**\n * @param {import(\"../canvas.js\").FillStrokeState} state State.\n * @return {Array<*>} Fill instruction.\n */\n CanvasBuilder.prototype.createFill = function (state) {\n var fillStyle = state.fillStyle;\n /** @type {Array<*>} */\n var fillInstruction = [CanvasInstruction.SET_FILL_STYLE, fillStyle];\n if (typeof fillStyle !== 'string') {\n // Fill is a pattern or gradient - align it!\n fillInstruction.push(true);\n }\n return fillInstruction;\n };\n /**\n * @param {import(\"../canvas.js\").FillStrokeState} state State.\n */\n CanvasBuilder.prototype.applyStroke = function (state) {\n this.instructions.push(this.createStroke(state));\n };\n /**\n * @param {import(\"../canvas.js\").FillStrokeState} state State.\n * @return {Array<*>} Stroke instruction.\n */\n CanvasBuilder.prototype.createStroke = function (state) {\n return [\n CanvasInstruction.SET_STROKE_STYLE,\n state.strokeStyle,\n state.lineWidth * this.pixelRatio,\n state.lineCap,\n state.lineJoin,\n state.miterLimit,\n this.applyPixelRatio(state.lineDash),\n state.lineDashOffset * this.pixelRatio,\n ];\n };\n /**\n * @param {import(\"../canvas.js\").FillStrokeState} state State.\n * @param {function(this:CanvasBuilder, import(\"../canvas.js\").FillStrokeState):Array<*>} createFill Create fill.\n */\n CanvasBuilder.prototype.updateFillStyle = function (state, createFill) {\n var fillStyle = state.fillStyle;\n if (typeof fillStyle !== 'string' || state.currentFillStyle != fillStyle) {\n if (fillStyle !== undefined) {\n this.instructions.push(createFill.call(this, state));\n }\n state.currentFillStyle = fillStyle;\n }\n };\n /**\n * @param {import(\"../canvas.js\").FillStrokeState} state State.\n * @param {function(this:CanvasBuilder, import(\"../canvas.js\").FillStrokeState): void} applyStroke Apply stroke.\n */\n CanvasBuilder.prototype.updateStrokeStyle = function (state, applyStroke) {\n var strokeStyle = state.strokeStyle;\n var lineCap = state.lineCap;\n var lineDash = state.lineDash;\n var lineDashOffset = state.lineDashOffset;\n var lineJoin = state.lineJoin;\n var lineWidth = state.lineWidth;\n var miterLimit = state.miterLimit;\n if (state.currentStrokeStyle != strokeStyle ||\n state.currentLineCap != lineCap ||\n (lineDash != state.currentLineDash &&\n !equals(state.currentLineDash, lineDash)) ||\n state.currentLineDashOffset != lineDashOffset ||\n state.currentLineJoin != lineJoin ||\n state.currentLineWidth != lineWidth ||\n state.currentMiterLimit != miterLimit) {\n if (strokeStyle !== undefined) {\n applyStroke.call(this, state);\n }\n state.currentStrokeStyle = strokeStyle;\n state.currentLineCap = lineCap;\n state.currentLineDash = lineDash;\n state.currentLineDashOffset = lineDashOffset;\n state.currentLineJoin = lineJoin;\n state.currentLineWidth = lineWidth;\n state.currentMiterLimit = miterLimit;\n }\n };\n /**\n * @param {import(\"../../Feature.js\").FeatureLike} feature Feature.\n */\n CanvasBuilder.prototype.endGeometry = function (feature) {\n this.beginGeometryInstruction1_[2] = this.instructions.length;\n this.beginGeometryInstruction1_ = null;\n this.beginGeometryInstruction2_[2] = this.hitDetectionInstructions.length;\n this.beginGeometryInstruction2_ = null;\n var endGeometryInstruction = [CanvasInstruction.END_GEOMETRY, feature];\n this.instructions.push(endGeometryInstruction);\n this.hitDetectionInstructions.push(endGeometryInstruction);\n };\n /**\n * Get the buffered rendering extent. Rendering will be clipped to the extent\n * provided to the constructor. To account for symbolizers that may intersect\n * this extent, we calculate a buffered extent (e.g. based on stroke width).\n * @return {import(\"../../extent.js\").Extent} The buffered rendering extent.\n * @protected\n */\n CanvasBuilder.prototype.getBufferedMaxExtent = function () {\n if (!this.bufferedMaxExtent_) {\n this.bufferedMaxExtent_ = clone(this.maxExtent);\n if (this.maxLineWidth > 0) {\n var width = (this.resolution * (this.maxLineWidth + 1)) / 2;\n buffer(this.bufferedMaxExtent_, width, this.bufferedMaxExtent_);\n }\n }\n return this.bufferedMaxExtent_;\n };\n return CanvasBuilder;\n}(VectorContext));\nexport default CanvasBuilder;\n//# sourceMappingURL=Builder.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/render/canvas/ImageBuilder\n */\nimport CanvasBuilder from './Builder.js';\nimport CanvasInstruction from './Instruction.js';\nvar CanvasImageBuilder = /** @class */ (function (_super) {\n __extends(CanvasImageBuilder, _super);\n /**\n * @param {number} tolerance Tolerance.\n * @param {import(\"../../extent.js\").Extent} maxExtent Maximum extent.\n * @param {number} resolution Resolution.\n * @param {number} pixelRatio Pixel ratio.\n */\n function CanvasImageBuilder(tolerance, maxExtent, resolution, pixelRatio) {\n var _this = _super.call(this, tolerance, maxExtent, resolution, pixelRatio) || this;\n /**\n * @private\n * @type {HTMLCanvasElement|HTMLVideoElement|HTMLImageElement}\n */\n _this.hitDetectionImage_ = null;\n /**\n * @private\n * @type {HTMLCanvasElement|HTMLVideoElement|HTMLImageElement}\n */\n _this.image_ = null;\n /**\n * @private\n * @type {number|undefined}\n */\n _this.imagePixelRatio_ = undefined;\n /**\n * @private\n * @type {number|undefined}\n */\n _this.anchorX_ = undefined;\n /**\n * @private\n * @type {number|undefined}\n */\n _this.anchorY_ = undefined;\n /**\n * @private\n * @type {number|undefined}\n */\n _this.height_ = undefined;\n /**\n * @private\n * @type {number|undefined}\n */\n _this.opacity_ = undefined;\n /**\n * @private\n * @type {number|undefined}\n */\n _this.originX_ = undefined;\n /**\n * @private\n * @type {number|undefined}\n */\n _this.originY_ = undefined;\n /**\n * @private\n * @type {boolean|undefined}\n */\n _this.rotateWithView_ = undefined;\n /**\n * @private\n * @type {number|undefined}\n */\n _this.rotation_ = undefined;\n /**\n * @private\n * @type {import(\"../../size.js\").Size|undefined}\n */\n _this.scale_ = undefined;\n /**\n * @private\n * @type {number|undefined}\n */\n _this.width_ = undefined;\n /**\n * Data shared with a text builder for combined decluttering.\n * @private\n * @type {import(\"../canvas.js\").DeclutterImageWithText}\n */\n _this.declutterImageWithText_ = undefined;\n return _this;\n }\n /**\n * @param {import(\"../../geom/Point.js\").default|import(\"../Feature.js\").default} pointGeometry Point geometry.\n * @param {import(\"../../Feature.js\").FeatureLike} feature Feature.\n */\n CanvasImageBuilder.prototype.drawPoint = function (pointGeometry, feature) {\n if (!this.image_) {\n return;\n }\n this.beginGeometry(pointGeometry, feature);\n var flatCoordinates = pointGeometry.getFlatCoordinates();\n var stride = pointGeometry.getStride();\n var myBegin = this.coordinates.length;\n var myEnd = this.appendFlatPointCoordinates(flatCoordinates, stride);\n this.instructions.push([\n CanvasInstruction.DRAW_IMAGE,\n myBegin,\n myEnd,\n this.image_,\n // Remaining arguments to DRAW_IMAGE are in alphabetical order\n this.anchorX_ * this.imagePixelRatio_,\n this.anchorY_ * this.imagePixelRatio_,\n Math.ceil(this.height_ * this.imagePixelRatio_),\n this.opacity_,\n this.originX_,\n this.originY_,\n this.rotateWithView_,\n this.rotation_,\n [\n (this.scale_[0] * this.pixelRatio) / this.imagePixelRatio_,\n (this.scale_[1] * this.pixelRatio) / this.imagePixelRatio_,\n ],\n Math.ceil(this.width_ * this.imagePixelRatio_),\n this.declutterImageWithText_,\n ]);\n this.hitDetectionInstructions.push([\n CanvasInstruction.DRAW_IMAGE,\n myBegin,\n myEnd,\n this.hitDetectionImage_,\n // Remaining arguments to DRAW_IMAGE are in alphabetical order\n this.anchorX_,\n this.anchorY_,\n this.height_,\n this.opacity_,\n this.originX_,\n this.originY_,\n this.rotateWithView_,\n this.rotation_,\n this.scale_,\n this.width_,\n this.declutterImageWithText_,\n ]);\n this.endGeometry(feature);\n };\n /**\n * @param {import(\"../../geom/MultiPoint.js\").default|import(\"../Feature.js\").default} multiPointGeometry MultiPoint geometry.\n * @param {import(\"../../Feature.js\").FeatureLike} feature Feature.\n */\n CanvasImageBuilder.prototype.drawMultiPoint = function (multiPointGeometry, feature) {\n if (!this.image_) {\n return;\n }\n this.beginGeometry(multiPointGeometry, feature);\n var flatCoordinates = multiPointGeometry.getFlatCoordinates();\n var stride = multiPointGeometry.getStride();\n var myBegin = this.coordinates.length;\n var myEnd = this.appendFlatPointCoordinates(flatCoordinates, stride);\n this.instructions.push([\n CanvasInstruction.DRAW_IMAGE,\n myBegin,\n myEnd,\n this.image_,\n // Remaining arguments to DRAW_IMAGE are in alphabetical order\n this.anchorX_ * this.imagePixelRatio_,\n this.anchorY_ * this.imagePixelRatio_,\n Math.ceil(this.height_ * this.imagePixelRatio_),\n this.opacity_,\n this.originX_,\n this.originY_,\n this.rotateWithView_,\n this.rotation_,\n [\n (this.scale_[0] * this.pixelRatio) / this.imagePixelRatio_,\n (this.scale_[1] * this.pixelRatio) / this.imagePixelRatio_,\n ],\n Math.ceil(this.width_ * this.imagePixelRatio_),\n this.declutterImageWithText_,\n ]);\n this.hitDetectionInstructions.push([\n CanvasInstruction.DRAW_IMAGE,\n myBegin,\n myEnd,\n this.hitDetectionImage_,\n // Remaining arguments to DRAW_IMAGE are in alphabetical order\n this.anchorX_,\n this.anchorY_,\n this.height_,\n this.opacity_,\n this.originX_,\n this.originY_,\n this.rotateWithView_,\n this.rotation_,\n this.scale_,\n this.width_,\n this.declutterImageWithText_,\n ]);\n this.endGeometry(feature);\n };\n /**\n * @return {import(\"../canvas.js\").SerializableInstructions} the serializable instructions.\n */\n CanvasImageBuilder.prototype.finish = function () {\n this.reverseHitDetectionInstructions();\n // FIXME this doesn't really protect us against further calls to draw*Geometry\n this.anchorX_ = undefined;\n this.anchorY_ = undefined;\n this.hitDetectionImage_ = null;\n this.image_ = null;\n this.imagePixelRatio_ = undefined;\n this.height_ = undefined;\n this.scale_ = undefined;\n this.opacity_ = undefined;\n this.originX_ = undefined;\n this.originY_ = undefined;\n this.rotateWithView_ = undefined;\n this.rotation_ = undefined;\n this.width_ = undefined;\n return _super.prototype.finish.call(this);\n };\n /**\n * @param {import(\"../../style/Image.js\").default} imageStyle Image style.\n * @param {Object} [opt_sharedData] Shared data.\n */\n CanvasImageBuilder.prototype.setImageStyle = function (imageStyle, opt_sharedData) {\n var anchor = imageStyle.getAnchor();\n var size = imageStyle.getSize();\n var hitDetectionImage = imageStyle.getHitDetectionImage();\n var image = imageStyle.getImage(this.pixelRatio);\n var origin = imageStyle.getOrigin();\n this.imagePixelRatio_ = imageStyle.getPixelRatio(this.pixelRatio);\n this.anchorX_ = anchor[0];\n this.anchorY_ = anchor[1];\n this.hitDetectionImage_ = hitDetectionImage;\n this.image_ = image;\n this.height_ = size[1];\n this.opacity_ = imageStyle.getOpacity();\n this.originX_ = origin[0] * this.imagePixelRatio_;\n this.originY_ = origin[1] * this.imagePixelRatio_;\n this.rotateWithView_ = imageStyle.getRotateWithView();\n this.rotation_ = imageStyle.getRotation();\n this.scale_ = imageStyle.getScaleArray();\n this.width_ = size[0];\n this.declutterImageWithText_ = opt_sharedData;\n };\n return CanvasImageBuilder;\n}(CanvasBuilder));\nexport default CanvasImageBuilder;\n//# sourceMappingURL=ImageBuilder.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/render/canvas/LineStringBuilder\n */\nimport CanvasBuilder from './Builder.js';\nimport CanvasInstruction, { beginPathInstruction, strokeInstruction, } from './Instruction.js';\nimport { defaultLineDash, defaultLineDashOffset } from '../canvas.js';\nvar CanvasLineStringBuilder = /** @class */ (function (_super) {\n __extends(CanvasLineStringBuilder, _super);\n /**\n * @param {number} tolerance Tolerance.\n * @param {import(\"../../extent.js\").Extent} maxExtent Maximum extent.\n * @param {number} resolution Resolution.\n * @param {number} pixelRatio Pixel ratio.\n */\n function CanvasLineStringBuilder(tolerance, maxExtent, resolution, pixelRatio) {\n return _super.call(this, tolerance, maxExtent, resolution, pixelRatio) || this;\n }\n /**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {number} end End.\n * @param {number} stride Stride.\n * @private\n * @return {number} end.\n */\n CanvasLineStringBuilder.prototype.drawFlatCoordinates_ = function (flatCoordinates, offset, end, stride) {\n var myBegin = this.coordinates.length;\n var myEnd = this.appendFlatLineCoordinates(flatCoordinates, offset, end, stride, false, false);\n var moveToLineToInstruction = [\n CanvasInstruction.MOVE_TO_LINE_TO,\n myBegin,\n myEnd,\n ];\n this.instructions.push(moveToLineToInstruction);\n this.hitDetectionInstructions.push(moveToLineToInstruction);\n return end;\n };\n /**\n * @param {import(\"../../geom/LineString.js\").default|import(\"../Feature.js\").default} lineStringGeometry Line string geometry.\n * @param {import(\"../../Feature.js\").FeatureLike} feature Feature.\n */\n CanvasLineStringBuilder.prototype.drawLineString = function (lineStringGeometry, feature) {\n var state = this.state;\n var strokeStyle = state.strokeStyle;\n var lineWidth = state.lineWidth;\n if (strokeStyle === undefined || lineWidth === undefined) {\n return;\n }\n this.updateStrokeStyle(state, this.applyStroke);\n this.beginGeometry(lineStringGeometry, feature);\n this.hitDetectionInstructions.push([\n CanvasInstruction.SET_STROKE_STYLE,\n state.strokeStyle,\n state.lineWidth,\n state.lineCap,\n state.lineJoin,\n state.miterLimit,\n defaultLineDash,\n defaultLineDashOffset,\n ], beginPathInstruction);\n var flatCoordinates = lineStringGeometry.getFlatCoordinates();\n var stride = lineStringGeometry.getStride();\n this.drawFlatCoordinates_(flatCoordinates, 0, flatCoordinates.length, stride);\n this.hitDetectionInstructions.push(strokeInstruction);\n this.endGeometry(feature);\n };\n /**\n * @param {import(\"../../geom/MultiLineString.js\").default|import(\"../Feature.js\").default} multiLineStringGeometry MultiLineString geometry.\n * @param {import(\"../../Feature.js\").FeatureLike} feature Feature.\n */\n CanvasLineStringBuilder.prototype.drawMultiLineString = function (multiLineStringGeometry, feature) {\n var state = this.state;\n var strokeStyle = state.strokeStyle;\n var lineWidth = state.lineWidth;\n if (strokeStyle === undefined || lineWidth === undefined) {\n return;\n }\n this.updateStrokeStyle(state, this.applyStroke);\n this.beginGeometry(multiLineStringGeometry, feature);\n this.hitDetectionInstructions.push([\n CanvasInstruction.SET_STROKE_STYLE,\n state.strokeStyle,\n state.lineWidth,\n state.lineCap,\n state.lineJoin,\n state.miterLimit,\n state.lineDash,\n state.lineDashOffset,\n ], beginPathInstruction);\n var ends = multiLineStringGeometry.getEnds();\n var flatCoordinates = multiLineStringGeometry.getFlatCoordinates();\n var stride = multiLineStringGeometry.getStride();\n var offset = 0;\n for (var i = 0, ii = ends.length; i < ii; ++i) {\n offset = this.drawFlatCoordinates_(flatCoordinates, offset, \n /** @type {number} */ (ends[i]), stride);\n }\n this.hitDetectionInstructions.push(strokeInstruction);\n this.endGeometry(feature);\n };\n /**\n * @return {import(\"../canvas.js\").SerializableInstructions} the serializable instructions.\n */\n CanvasLineStringBuilder.prototype.finish = function () {\n var state = this.state;\n if (state.lastStroke != undefined &&\n state.lastStroke != this.coordinates.length) {\n this.instructions.push(strokeInstruction);\n }\n this.reverseHitDetectionInstructions();\n this.state = null;\n return _super.prototype.finish.call(this);\n };\n /**\n * @param {import(\"../canvas.js\").FillStrokeState} state State.\n */\n CanvasLineStringBuilder.prototype.applyStroke = function (state) {\n if (state.lastStroke != undefined &&\n state.lastStroke != this.coordinates.length) {\n this.instructions.push(strokeInstruction);\n state.lastStroke = this.coordinates.length;\n }\n state.lastStroke = 0;\n _super.prototype.applyStroke.call(this, state);\n this.instructions.push(beginPathInstruction);\n };\n return CanvasLineStringBuilder;\n}(CanvasBuilder));\nexport default CanvasLineStringBuilder;\n//# sourceMappingURL=LineStringBuilder.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/render/canvas/PolygonBuilder\n */\nimport CanvasBuilder from './Builder.js';\nimport CanvasInstruction, { beginPathInstruction, closePathInstruction, fillInstruction, strokeInstruction, } from './Instruction.js';\nimport { defaultFillStyle } from '../canvas.js';\nimport { snap } from '../../geom/flat/simplify.js';\nvar CanvasPolygonBuilder = /** @class */ (function (_super) {\n __extends(CanvasPolygonBuilder, _super);\n /**\n * @param {number} tolerance Tolerance.\n * @param {import(\"../../extent.js\").Extent} maxExtent Maximum extent.\n * @param {number} resolution Resolution.\n * @param {number} pixelRatio Pixel ratio.\n */\n function CanvasPolygonBuilder(tolerance, maxExtent, resolution, pixelRatio) {\n return _super.call(this, tolerance, maxExtent, resolution, pixelRatio) || this;\n }\n /**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {Array<number>} ends Ends.\n * @param {number} stride Stride.\n * @private\n * @return {number} End.\n */\n CanvasPolygonBuilder.prototype.drawFlatCoordinatess_ = function (flatCoordinates, offset, ends, stride) {\n var state = this.state;\n var fill = state.fillStyle !== undefined;\n var stroke = state.strokeStyle !== undefined;\n var numEnds = ends.length;\n this.instructions.push(beginPathInstruction);\n this.hitDetectionInstructions.push(beginPathInstruction);\n for (var i = 0; i < numEnds; ++i) {\n var end = ends[i];\n var myBegin = this.coordinates.length;\n var myEnd = this.appendFlatLineCoordinates(flatCoordinates, offset, end, stride, true, !stroke);\n var moveToLineToInstruction = [\n CanvasInstruction.MOVE_TO_LINE_TO,\n myBegin,\n myEnd,\n ];\n this.instructions.push(moveToLineToInstruction);\n this.hitDetectionInstructions.push(moveToLineToInstruction);\n if (stroke) {\n // Performance optimization: only call closePath() when we have a stroke.\n // Otherwise the ring is closed already (see appendFlatLineCoordinates above).\n this.instructions.push(closePathInstruction);\n this.hitDetectionInstructions.push(closePathInstruction);\n }\n offset = end;\n }\n if (fill) {\n this.instructions.push(fillInstruction);\n this.hitDetectionInstructions.push(fillInstruction);\n }\n if (stroke) {\n this.instructions.push(strokeInstruction);\n this.hitDetectionInstructions.push(strokeInstruction);\n }\n return offset;\n };\n /**\n * @param {import(\"../../geom/Circle.js\").default} circleGeometry Circle geometry.\n * @param {import(\"../../Feature.js\").default} feature Feature.\n */\n CanvasPolygonBuilder.prototype.drawCircle = function (circleGeometry, feature) {\n var state = this.state;\n var fillStyle = state.fillStyle;\n var strokeStyle = state.strokeStyle;\n if (fillStyle === undefined && strokeStyle === undefined) {\n return;\n }\n this.setFillStrokeStyles_();\n this.beginGeometry(circleGeometry, feature);\n if (state.fillStyle !== undefined) {\n this.hitDetectionInstructions.push([\n CanvasInstruction.SET_FILL_STYLE,\n defaultFillStyle,\n ]);\n }\n if (state.strokeStyle !== undefined) {\n this.hitDetectionInstructions.push([\n CanvasInstruction.SET_STROKE_STYLE,\n state.strokeStyle,\n state.lineWidth,\n state.lineCap,\n state.lineJoin,\n state.miterLimit,\n state.lineDash,\n state.lineDashOffset,\n ]);\n }\n var flatCoordinates = circleGeometry.getFlatCoordinates();\n var stride = circleGeometry.getStride();\n var myBegin = this.coordinates.length;\n this.appendFlatLineCoordinates(flatCoordinates, 0, flatCoordinates.length, stride, false, false);\n var circleInstruction = [CanvasInstruction.CIRCLE, myBegin];\n this.instructions.push(beginPathInstruction, circleInstruction);\n this.hitDetectionInstructions.push(beginPathInstruction, circleInstruction);\n if (state.fillStyle !== undefined) {\n this.instructions.push(fillInstruction);\n this.hitDetectionInstructions.push(fillInstruction);\n }\n if (state.strokeStyle !== undefined) {\n this.instructions.push(strokeInstruction);\n this.hitDetectionInstructions.push(strokeInstruction);\n }\n this.endGeometry(feature);\n };\n /**\n * @param {import(\"../../geom/Polygon.js\").default|import(\"../Feature.js\").default} polygonGeometry Polygon geometry.\n * @param {import(\"../../Feature.js\").FeatureLike} feature Feature.\n */\n CanvasPolygonBuilder.prototype.drawPolygon = function (polygonGeometry, feature) {\n var state = this.state;\n var fillStyle = state.fillStyle;\n var strokeStyle = state.strokeStyle;\n if (fillStyle === undefined && strokeStyle === undefined) {\n return;\n }\n this.setFillStrokeStyles_();\n this.beginGeometry(polygonGeometry, feature);\n if (state.fillStyle !== undefined) {\n this.hitDetectionInstructions.push([\n CanvasInstruction.SET_FILL_STYLE,\n defaultFillStyle,\n ]);\n }\n if (state.strokeStyle !== undefined) {\n this.hitDetectionInstructions.push([\n CanvasInstruction.SET_STROKE_STYLE,\n state.strokeStyle,\n state.lineWidth,\n state.lineCap,\n state.lineJoin,\n state.miterLimit,\n state.lineDash,\n state.lineDashOffset,\n ]);\n }\n var ends = polygonGeometry.getEnds();\n var flatCoordinates = polygonGeometry.getOrientedFlatCoordinates();\n var stride = polygonGeometry.getStride();\n this.drawFlatCoordinatess_(flatCoordinates, 0, \n /** @type {Array<number>} */ (ends), stride);\n this.endGeometry(feature);\n };\n /**\n * @param {import(\"../../geom/MultiPolygon.js\").default} multiPolygonGeometry MultiPolygon geometry.\n * @param {import(\"../../Feature.js\").FeatureLike} feature Feature.\n */\n CanvasPolygonBuilder.prototype.drawMultiPolygon = function (multiPolygonGeometry, feature) {\n var state = this.state;\n var fillStyle = state.fillStyle;\n var strokeStyle = state.strokeStyle;\n if (fillStyle === undefined && strokeStyle === undefined) {\n return;\n }\n this.setFillStrokeStyles_();\n this.beginGeometry(multiPolygonGeometry, feature);\n if (state.fillStyle !== undefined) {\n this.hitDetectionInstructions.push([\n CanvasInstruction.SET_FILL_STYLE,\n defaultFillStyle,\n ]);\n }\n if (state.strokeStyle !== undefined) {\n this.hitDetectionInstructions.push([\n CanvasInstruction.SET_STROKE_STYLE,\n state.strokeStyle,\n state.lineWidth,\n state.lineCap,\n state.lineJoin,\n state.miterLimit,\n state.lineDash,\n state.lineDashOffset,\n ]);\n }\n var endss = multiPolygonGeometry.getEndss();\n var flatCoordinates = multiPolygonGeometry.getOrientedFlatCoordinates();\n var stride = multiPolygonGeometry.getStride();\n var offset = 0;\n for (var i = 0, ii = endss.length; i < ii; ++i) {\n offset = this.drawFlatCoordinatess_(flatCoordinates, offset, endss[i], stride);\n }\n this.endGeometry(feature);\n };\n /**\n * @return {import(\"../canvas.js\").SerializableInstructions} the serializable instructions.\n */\n CanvasPolygonBuilder.prototype.finish = function () {\n this.reverseHitDetectionInstructions();\n this.state = null;\n // We want to preserve topology when drawing polygons. Polygons are\n // simplified using quantization and point elimination. However, we might\n // have received a mix of quantized and non-quantized geometries, so ensure\n // that all are quantized by quantizing all coordinates in the batch.\n var tolerance = this.tolerance;\n if (tolerance !== 0) {\n var coordinates = this.coordinates;\n for (var i = 0, ii = coordinates.length; i < ii; ++i) {\n coordinates[i] = snap(coordinates[i], tolerance);\n }\n }\n return _super.prototype.finish.call(this);\n };\n /**\n * @private\n */\n CanvasPolygonBuilder.prototype.setFillStrokeStyles_ = function () {\n var state = this.state;\n var fillStyle = state.fillStyle;\n if (fillStyle !== undefined) {\n this.updateFillStyle(state, this.createFill);\n }\n if (state.strokeStyle !== undefined) {\n this.updateStrokeStyle(state, this.applyStroke);\n }\n };\n return CanvasPolygonBuilder;\n}(CanvasBuilder));\nexport default CanvasPolygonBuilder;\n//# sourceMappingURL=PolygonBuilder.js.map","/**\n * @module ol/geom/flat/straightchunk\n */\n/**\n * @param {number} maxAngle Maximum acceptable angle delta between segments.\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {number} end End.\n * @param {number} stride Stride.\n * @return {Array<number>} Start and end of the first suitable chunk of the\n * given `flatCoordinates`.\n */\nexport function matchingChunk(maxAngle, flatCoordinates, offset, end, stride) {\n var chunkStart = offset;\n var chunkEnd = offset;\n var chunkM = 0;\n var m = 0;\n var start = offset;\n var acos, i, m12, m23, x1, y1, x12, y12, x23, y23;\n for (i = offset; i < end; i += stride) {\n var x2 = flatCoordinates[i];\n var y2 = flatCoordinates[i + 1];\n if (x1 !== undefined) {\n x23 = x2 - x1;\n y23 = y2 - y1;\n m23 = Math.sqrt(x23 * x23 + y23 * y23);\n if (x12 !== undefined) {\n m += m12;\n acos = Math.acos((x12 * x23 + y12 * y23) / (m12 * m23));\n if (acos > maxAngle) {\n if (m > chunkM) {\n chunkM = m;\n chunkStart = start;\n chunkEnd = i;\n }\n m = 0;\n start = i - stride;\n }\n }\n m12 = m23;\n x12 = x23;\n y12 = y23;\n }\n x1 = x2;\n y1 = y2;\n }\n m += m23;\n return m > chunkM ? [start, i] : [chunkStart, chunkEnd];\n}\n//# sourceMappingURL=straightchunk.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/render/canvas/TextBuilder\n */\nimport CanvasBuilder from './Builder.js';\nimport CanvasInstruction from './Instruction.js';\nimport GeometryType from '../../geom/GeometryType.js';\nimport TextPlacement from '../../style/TextPlacement.js';\nimport { asColorLike } from '../../colorlike.js';\nimport { defaultFillStyle, defaultFont, defaultLineCap, defaultLineDash, defaultLineDashOffset, defaultLineJoin, defaultLineWidth, defaultMiterLimit, defaultPadding, defaultStrokeStyle, defaultTextAlign, defaultTextBaseline, registerFont, } from '../canvas.js';\nimport { getUid } from '../../util.js';\nimport { intersects } from '../../extent.js';\nimport { matchingChunk } from '../../geom/flat/straightchunk.js';\n/**\n * @const\n * @enum {number}\n */\nexport var TEXT_ALIGN = {\n 'left': 0,\n 'end': 0,\n 'center': 0.5,\n 'right': 1,\n 'start': 1,\n 'top': 0,\n 'middle': 0.5,\n 'hanging': 0.2,\n 'alphabetic': 0.8,\n 'ideographic': 0.8,\n 'bottom': 1,\n};\nvar CanvasTextBuilder = /** @class */ (function (_super) {\n __extends(CanvasTextBuilder, _super);\n /**\n * @param {number} tolerance Tolerance.\n * @param {import(\"../../extent.js\").Extent} maxExtent Maximum extent.\n * @param {number} resolution Resolution.\n * @param {number} pixelRatio Pixel ratio.\n */\n function CanvasTextBuilder(tolerance, maxExtent, resolution, pixelRatio) {\n var _this = _super.call(this, tolerance, maxExtent, resolution, pixelRatio) || this;\n /**\n * @private\n * @type {Array<HTMLCanvasElement>}\n */\n _this.labels_ = null;\n /**\n * @private\n * @type {string|Array<string>}\n */\n _this.text_ = '';\n /**\n * @private\n * @type {number}\n */\n _this.textOffsetX_ = 0;\n /**\n * @private\n * @type {number}\n */\n _this.textOffsetY_ = 0;\n /**\n * @private\n * @type {boolean|undefined}\n */\n _this.textRotateWithView_ = undefined;\n /**\n * @private\n * @type {number}\n */\n _this.textRotation_ = 0;\n /**\n * @private\n * @type {?import(\"../canvas.js\").FillState}\n */\n _this.textFillState_ = null;\n /**\n * @type {!Object<string, import(\"../canvas.js\").FillState>}\n */\n _this.fillStates = {};\n /**\n * @private\n * @type {?import(\"../canvas.js\").StrokeState}\n */\n _this.textStrokeState_ = null;\n /**\n * @type {!Object<string, import(\"../canvas.js\").StrokeState>}\n */\n _this.strokeStates = {};\n /**\n * @private\n * @type {import(\"../canvas.js\").TextState}\n */\n _this.textState_ = /** @type {import(\"../canvas.js\").TextState} */ ({});\n /**\n * @type {!Object<string, import(\"../canvas.js\").TextState>}\n */\n _this.textStates = {};\n /**\n * @private\n * @type {string}\n */\n _this.textKey_ = '';\n /**\n * @private\n * @type {string}\n */\n _this.fillKey_ = '';\n /**\n * @private\n * @type {string}\n */\n _this.strokeKey_ = '';\n /**\n * Data shared with an image builder for combined decluttering.\n * @private\n * @type {import(\"../canvas.js\").DeclutterImageWithText}\n */\n _this.declutterImageWithText_ = undefined;\n return _this;\n }\n /**\n * @return {import(\"../canvas.js\").SerializableInstructions} the serializable instructions.\n */\n CanvasTextBuilder.prototype.finish = function () {\n var instructions = _super.prototype.finish.call(this);\n instructions.textStates = this.textStates;\n instructions.fillStates = this.fillStates;\n instructions.strokeStates = this.strokeStates;\n return instructions;\n };\n /**\n * @param {import(\"../../geom/SimpleGeometry.js\").default|import(\"../Feature.js\").default} geometry Geometry.\n * @param {import(\"../../Feature.js\").FeatureLike} feature Feature.\n */\n CanvasTextBuilder.prototype.drawText = function (geometry, feature) {\n var fillState = this.textFillState_;\n var strokeState = this.textStrokeState_;\n var textState = this.textState_;\n if (this.text_ === '' || !textState || (!fillState && !strokeState)) {\n return;\n }\n var coordinates = this.coordinates;\n var begin = coordinates.length;\n var geometryType = geometry.getType();\n var flatCoordinates = null;\n var stride = geometry.getStride();\n if (textState.placement === TextPlacement.LINE &&\n (geometryType == GeometryType.LINE_STRING ||\n geometryType == GeometryType.MULTI_LINE_STRING ||\n geometryType == GeometryType.POLYGON ||\n geometryType == GeometryType.MULTI_POLYGON)) {\n if (!intersects(this.getBufferedMaxExtent(), geometry.getExtent())) {\n return;\n }\n var ends = void 0;\n flatCoordinates = geometry.getFlatCoordinates();\n if (geometryType == GeometryType.LINE_STRING) {\n ends = [flatCoordinates.length];\n }\n else if (geometryType == GeometryType.MULTI_LINE_STRING) {\n ends = /** @type {import(\"../../geom/MultiLineString.js\").default} */ (geometry).getEnds();\n }\n else if (geometryType == GeometryType.POLYGON) {\n ends = /** @type {import(\"../../geom/Polygon.js\").default} */ (geometry)\n .getEnds()\n .slice(0, 1);\n }\n else if (geometryType == GeometryType.MULTI_POLYGON) {\n var endss = \n /** @type {import(\"../../geom/MultiPolygon.js\").default} */ (geometry).getEndss();\n ends = [];\n for (var i = 0, ii = endss.length; i < ii; ++i) {\n ends.push(endss[i][0]);\n }\n }\n this.beginGeometry(geometry, feature);\n var textAlign = textState.textAlign;\n var flatOffset = 0;\n var flatEnd = void 0;\n for (var o = 0, oo = ends.length; o < oo; ++o) {\n if (textAlign == undefined) {\n var range = matchingChunk(textState.maxAngle, flatCoordinates, flatOffset, ends[o], stride);\n flatOffset = range[0];\n flatEnd = range[1];\n }\n else {\n flatEnd = ends[o];\n }\n for (var i = flatOffset; i < flatEnd; i += stride) {\n coordinates.push(flatCoordinates[i], flatCoordinates[i + 1]);\n }\n var end = coordinates.length;\n flatOffset = ends[o];\n this.drawChars_(begin, end);\n begin = end;\n }\n this.endGeometry(feature);\n }\n else {\n var geometryWidths = textState.overflow ? null : [];\n switch (geometryType) {\n case GeometryType.POINT:\n case GeometryType.MULTI_POINT:\n flatCoordinates =\n /** @type {import(\"../../geom/MultiPoint.js\").default} */ (geometry).getFlatCoordinates();\n break;\n case GeometryType.LINE_STRING:\n flatCoordinates =\n /** @type {import(\"../../geom/LineString.js\").default} */ (geometry).getFlatMidpoint();\n break;\n case GeometryType.CIRCLE:\n flatCoordinates =\n /** @type {import(\"../../geom/Circle.js\").default} */ (geometry).getCenter();\n break;\n case GeometryType.MULTI_LINE_STRING:\n flatCoordinates =\n /** @type {import(\"../../geom/MultiLineString.js\").default} */ (geometry).getFlatMidpoints();\n stride = 2;\n break;\n case GeometryType.POLYGON:\n flatCoordinates =\n /** @type {import(\"../../geom/Polygon.js\").default} */ (geometry).getFlatInteriorPoint();\n if (!textState.overflow) {\n geometryWidths.push(flatCoordinates[2] / this.resolution);\n }\n stride = 3;\n break;\n case GeometryType.MULTI_POLYGON:\n var interiorPoints = \n /** @type {import(\"../../geom/MultiPolygon.js\").default} */ (geometry).getFlatInteriorPoints();\n flatCoordinates = [];\n for (var i = 0, ii = interiorPoints.length; i < ii; i += 3) {\n if (!textState.overflow) {\n geometryWidths.push(interiorPoints[i + 2] / this.resolution);\n }\n flatCoordinates.push(interiorPoints[i], interiorPoints[i + 1]);\n }\n if (flatCoordinates.length === 0) {\n return;\n }\n stride = 2;\n break;\n default:\n }\n var end = this.appendFlatPointCoordinates(flatCoordinates, stride);\n if (end === begin) {\n return;\n }\n if (geometryWidths &&\n (end - begin) / 2 !== flatCoordinates.length / stride) {\n var beg_1 = begin / 2;\n geometryWidths = geometryWidths.filter(function (w, i) {\n var keep = coordinates[(beg_1 + i) * 2] === flatCoordinates[i * stride] &&\n coordinates[(beg_1 + i) * 2 + 1] === flatCoordinates[i * stride + 1];\n if (!keep) {\n --beg_1;\n }\n return keep;\n });\n }\n this.saveTextStates_();\n if (textState.backgroundFill || textState.backgroundStroke) {\n this.setFillStrokeStyle(textState.backgroundFill, textState.backgroundStroke);\n if (textState.backgroundFill) {\n this.updateFillStyle(this.state, this.createFill);\n this.hitDetectionInstructions.push(this.createFill(this.state));\n }\n if (textState.backgroundStroke) {\n this.updateStrokeStyle(this.state, this.applyStroke);\n this.hitDetectionInstructions.push(this.createStroke(this.state));\n }\n }\n this.beginGeometry(geometry, feature);\n // adjust padding for negative scale\n var padding = textState.padding;\n if (padding != defaultPadding &&\n (textState.scale[0] < 0 || textState.scale[1] < 0)) {\n var p0 = textState.padding[0];\n var p1 = textState.padding[1];\n var p2 = textState.padding[2];\n var p3 = textState.padding[3];\n if (textState.scale[0] < 0) {\n p1 = -p1;\n p3 = -p3;\n }\n if (textState.scale[1] < 0) {\n p0 = -p0;\n p2 = -p2;\n }\n padding = [p0, p1, p2, p3];\n }\n // The image is unknown at this stage so we pass null; it will be computed at render time.\n // For clarity, we pass NaN for offsetX, offsetY, width and height, which will be computed at\n // render time.\n var pixelRatio_1 = this.pixelRatio;\n this.instructions.push([\n CanvasInstruction.DRAW_IMAGE,\n begin,\n end,\n null,\n NaN,\n NaN,\n NaN,\n 1,\n 0,\n 0,\n this.textRotateWithView_,\n this.textRotation_,\n [1, 1],\n NaN,\n this.declutterImageWithText_,\n padding == defaultPadding\n ? defaultPadding\n : padding.map(function (p) {\n return p * pixelRatio_1;\n }),\n !!textState.backgroundFill,\n !!textState.backgroundStroke,\n this.text_,\n this.textKey_,\n this.strokeKey_,\n this.fillKey_,\n this.textOffsetX_,\n this.textOffsetY_,\n geometryWidths,\n ]);\n var scale = 1 / pixelRatio_1;\n this.hitDetectionInstructions.push([\n CanvasInstruction.DRAW_IMAGE,\n begin,\n end,\n null,\n NaN,\n NaN,\n NaN,\n 1,\n 0,\n 0,\n this.textRotateWithView_,\n this.textRotation_,\n [scale, scale],\n NaN,\n this.declutterImageWithText_,\n padding,\n !!textState.backgroundFill,\n !!textState.backgroundStroke,\n this.text_,\n this.textKey_,\n this.strokeKey_,\n this.fillKey_,\n this.textOffsetX_,\n this.textOffsetY_,\n geometryWidths,\n ]);\n this.endGeometry(feature);\n }\n };\n /**\n * @private\n */\n CanvasTextBuilder.prototype.saveTextStates_ = function () {\n var strokeState = this.textStrokeState_;\n var textState = this.textState_;\n var fillState = this.textFillState_;\n var strokeKey = this.strokeKey_;\n if (strokeState) {\n if (!(strokeKey in this.strokeStates)) {\n this.strokeStates[strokeKey] = {\n strokeStyle: strokeState.strokeStyle,\n lineCap: strokeState.lineCap,\n lineDashOffset: strokeState.lineDashOffset,\n lineWidth: strokeState.lineWidth,\n lineJoin: strokeState.lineJoin,\n miterLimit: strokeState.miterLimit,\n lineDash: strokeState.lineDash,\n };\n }\n }\n var textKey = this.textKey_;\n if (!(textKey in this.textStates)) {\n this.textStates[textKey] = {\n font: textState.font,\n textAlign: textState.textAlign || defaultTextAlign,\n textBaseline: textState.textBaseline || defaultTextBaseline,\n scale: textState.scale,\n };\n }\n var fillKey = this.fillKey_;\n if (fillState) {\n if (!(fillKey in this.fillStates)) {\n this.fillStates[fillKey] = {\n fillStyle: fillState.fillStyle,\n };\n }\n }\n };\n /**\n * @private\n * @param {number} begin Begin.\n * @param {number} end End.\n */\n CanvasTextBuilder.prototype.drawChars_ = function (begin, end) {\n var strokeState = this.textStrokeState_;\n var textState = this.textState_;\n var strokeKey = this.strokeKey_;\n var textKey = this.textKey_;\n var fillKey = this.fillKey_;\n this.saveTextStates_();\n var pixelRatio = this.pixelRatio;\n var baseline = TEXT_ALIGN[textState.textBaseline];\n var offsetY = this.textOffsetY_ * pixelRatio;\n var text = this.text_;\n var strokeWidth = strokeState\n ? (strokeState.lineWidth * Math.abs(textState.scale[0])) / 2\n : 0;\n this.instructions.push([\n CanvasInstruction.DRAW_CHARS,\n begin,\n end,\n baseline,\n textState.overflow,\n fillKey,\n textState.maxAngle,\n pixelRatio,\n offsetY,\n strokeKey,\n strokeWidth * pixelRatio,\n text,\n textKey,\n 1,\n ]);\n this.hitDetectionInstructions.push([\n CanvasInstruction.DRAW_CHARS,\n begin,\n end,\n baseline,\n textState.overflow,\n fillKey,\n textState.maxAngle,\n 1,\n offsetY,\n strokeKey,\n strokeWidth,\n text,\n textKey,\n 1 / pixelRatio,\n ]);\n };\n /**\n * @param {import(\"../../style/Text.js\").default} textStyle Text style.\n * @param {Object} [opt_sharedData] Shared data.\n */\n CanvasTextBuilder.prototype.setTextStyle = function (textStyle, opt_sharedData) {\n var textState, fillState, strokeState;\n if (!textStyle) {\n this.text_ = '';\n }\n else {\n var textFillStyle = textStyle.getFill();\n if (!textFillStyle) {\n fillState = null;\n this.textFillState_ = fillState;\n }\n else {\n fillState = this.textFillState_;\n if (!fillState) {\n fillState = /** @type {import(\"../canvas.js\").FillState} */ ({});\n this.textFillState_ = fillState;\n }\n fillState.fillStyle = asColorLike(textFillStyle.getColor() || defaultFillStyle);\n }\n var textStrokeStyle = textStyle.getStroke();\n if (!textStrokeStyle) {\n strokeState = null;\n this.textStrokeState_ = strokeState;\n }\n else {\n strokeState = this.textStrokeState_;\n if (!strokeState) {\n strokeState = /** @type {import(\"../canvas.js\").StrokeState} */ ({});\n this.textStrokeState_ = strokeState;\n }\n var lineDash = textStrokeStyle.getLineDash();\n var lineDashOffset = textStrokeStyle.getLineDashOffset();\n var lineWidth = textStrokeStyle.getWidth();\n var miterLimit = textStrokeStyle.getMiterLimit();\n strokeState.lineCap = textStrokeStyle.getLineCap() || defaultLineCap;\n strokeState.lineDash = lineDash ? lineDash.slice() : defaultLineDash;\n strokeState.lineDashOffset =\n lineDashOffset === undefined ? defaultLineDashOffset : lineDashOffset;\n strokeState.lineJoin = textStrokeStyle.getLineJoin() || defaultLineJoin;\n strokeState.lineWidth =\n lineWidth === undefined ? defaultLineWidth : lineWidth;\n strokeState.miterLimit =\n miterLimit === undefined ? defaultMiterLimit : miterLimit;\n strokeState.strokeStyle = asColorLike(textStrokeStyle.getColor() || defaultStrokeStyle);\n }\n textState = this.textState_;\n var font = textStyle.getFont() || defaultFont;\n registerFont(font);\n var textScale = textStyle.getScaleArray();\n textState.overflow = textStyle.getOverflow();\n textState.font = font;\n textState.maxAngle = textStyle.getMaxAngle();\n textState.placement = textStyle.getPlacement();\n textState.textAlign = textStyle.getTextAlign();\n textState.textBaseline =\n textStyle.getTextBaseline() || defaultTextBaseline;\n textState.backgroundFill = textStyle.getBackgroundFill();\n textState.backgroundStroke = textStyle.getBackgroundStroke();\n textState.padding = textStyle.getPadding() || defaultPadding;\n textState.scale = textScale === undefined ? [1, 1] : textScale;\n var textOffsetX = textStyle.getOffsetX();\n var textOffsetY = textStyle.getOffsetY();\n var textRotateWithView = textStyle.getRotateWithView();\n var textRotation = textStyle.getRotation();\n this.text_ = textStyle.getText() || '';\n this.textOffsetX_ = textOffsetX === undefined ? 0 : textOffsetX;\n this.textOffsetY_ = textOffsetY === undefined ? 0 : textOffsetY;\n this.textRotateWithView_ =\n textRotateWithView === undefined ? false : textRotateWithView;\n this.textRotation_ = textRotation === undefined ? 0 : textRotation;\n this.strokeKey_ = strokeState\n ? (typeof strokeState.strokeStyle == 'string'\n ? strokeState.strokeStyle\n : getUid(strokeState.strokeStyle)) +\n strokeState.lineCap +\n strokeState.lineDashOffset +\n '|' +\n strokeState.lineWidth +\n strokeState.lineJoin +\n strokeState.miterLimit +\n '[' +\n strokeState.lineDash.join() +\n ']'\n : '';\n this.textKey_ =\n textState.font +\n textState.scale +\n (textState.textAlign || '?') +\n (textState.textBaseline || '?');\n this.fillKey_ = fillState\n ? typeof fillState.fillStyle == 'string'\n ? fillState.fillStyle\n : '|' + getUid(fillState.fillStyle)\n : '';\n }\n this.declutterImageWithText_ = opt_sharedData;\n };\n return CanvasTextBuilder;\n}(CanvasBuilder));\nexport default CanvasTextBuilder;\n//# sourceMappingURL=TextBuilder.js.map","/**\n * @module ol/style/TextPlacement\n */\n/**\n * Text placement. One of `'point'`, `'line'`. Default is `'point'`. Note that\n * `'line'` requires the underlying geometry to be a {@link module:ol/geom/LineString~LineString},\n * {@link module:ol/geom/Polygon~Polygon}, {@link module:ol/geom/MultiLineString~MultiLineString} or\n * {@link module:ol/geom/MultiPolygon~MultiPolygon}.\n * @enum {string}\n */\nexport default {\n POINT: 'point',\n LINE: 'line',\n};\n//# sourceMappingURL=TextPlacement.js.map","/**\n * @module ol/render/canvas/BuilderGroup\n */\nimport Builder from './Builder.js';\nimport ImageBuilder from './ImageBuilder.js';\nimport LineStringBuilder from './LineStringBuilder.js';\nimport PolygonBuilder from './PolygonBuilder.js';\nimport TextBuilder from './TextBuilder.js';\n/**\n * @type {Object<import(\"./BuilderType\").default, typeof Builder>}\n */\nvar BATCH_CONSTRUCTORS = {\n 'Circle': PolygonBuilder,\n 'Default': Builder,\n 'Image': ImageBuilder,\n 'LineString': LineStringBuilder,\n 'Polygon': PolygonBuilder,\n 'Text': TextBuilder,\n};\nvar BuilderGroup = /** @class */ (function () {\n /**\n * @param {number} tolerance Tolerance.\n * @param {import(\"../../extent.js\").Extent} maxExtent Max extent.\n * @param {number} resolution Resolution.\n * @param {number} pixelRatio Pixel ratio.\n */\n function BuilderGroup(tolerance, maxExtent, resolution, pixelRatio) {\n /**\n * @private\n * @type {number}\n */\n this.tolerance_ = tolerance;\n /**\n * @private\n * @type {import(\"../../extent.js\").Extent}\n */\n this.maxExtent_ = maxExtent;\n /**\n * @private\n * @type {number}\n */\n this.pixelRatio_ = pixelRatio;\n /**\n * @private\n * @type {number}\n */\n this.resolution_ = resolution;\n /**\n * @private\n * @type {!Object<string, !Object<import(\"./BuilderType\").default, Builder>>}\n */\n this.buildersByZIndex_ = {};\n }\n /**\n * @return {!Object<string, !Object<import(\"./BuilderType\").default, import(\"./Builder.js\").SerializableInstructions>>} The serializable instructions\n */\n BuilderGroup.prototype.finish = function () {\n var builderInstructions = {};\n for (var zKey in this.buildersByZIndex_) {\n builderInstructions[zKey] = builderInstructions[zKey] || {};\n var builders = this.buildersByZIndex_[zKey];\n for (var builderKey in builders) {\n var builderInstruction = builders[builderKey].finish();\n builderInstructions[zKey][builderKey] = builderInstruction;\n }\n }\n return builderInstructions;\n };\n /**\n * @param {number|undefined} zIndex Z index.\n * @param {import(\"./BuilderType.js\").default} builderType Replay type.\n * @return {import(\"../VectorContext.js\").default} Replay.\n */\n BuilderGroup.prototype.getBuilder = function (zIndex, builderType) {\n var zIndexKey = zIndex !== undefined ? zIndex.toString() : '0';\n var replays = this.buildersByZIndex_[zIndexKey];\n if (replays === undefined) {\n replays = {};\n this.buildersByZIndex_[zIndexKey] = replays;\n }\n var replay = replays[builderType];\n if (replay === undefined) {\n var Constructor = BATCH_CONSTRUCTORS[builderType];\n replay = new Constructor(this.tolerance_, this.maxExtent_, this.resolution_, this.pixelRatio_);\n replays[builderType] = replay;\n }\n return replay;\n };\n return BuilderGroup;\n}());\nexport default BuilderGroup;\n//# sourceMappingURL=BuilderGroup.js.map","/**\n * @module ol/render/canvas/BuilderType\n */\n/**\n * @enum {string}\n */\nexport default {\n CIRCLE: 'Circle',\n DEFAULT: 'Default',\n IMAGE: 'Image',\n LINE_STRING: 'LineString',\n POLYGON: 'Polygon',\n TEXT: 'Text',\n};\n//# sourceMappingURL=BuilderType.js.map","/**\n * @module ol/geom/flat/textpath\n */\nimport { lerp } from '../../math.js';\nimport { rotate } from './transform.js';\n/**\n * @param {Array<number>} flatCoordinates Path to put text on.\n * @param {number} offset Start offset of the `flatCoordinates`.\n * @param {number} end End offset of the `flatCoordinates`.\n * @param {number} stride Stride.\n * @param {string} text Text to place on the path.\n * @param {number} startM m along the path where the text starts.\n * @param {number} maxAngle Max angle between adjacent chars in radians.\n * @param {number} scale The product of the text scale and the device pixel ratio.\n * @param {function(string, string, Object<string, number>):number} measureAndCacheTextWidth Measure and cache text width.\n * @param {string} font The font.\n * @param {Object<string, number>} cache A cache of measured widths.\n * @param {number} rotation Rotation to apply to the flatCoordinates to determine whether text needs to be reversed.\n * @return {Array<Array<*>>|null} The result array (or null if `maxAngle` was\n * exceeded). Entries of the array are x, y, anchorX, angle, chunk.\n */\nexport function drawTextOnPath(flatCoordinates, offset, end, stride, text, startM, maxAngle, scale, measureAndCacheTextWidth, font, cache, rotation) {\n var x2 = flatCoordinates[offset];\n var y2 = flatCoordinates[offset + 1];\n var x1 = 0;\n var y1 = 0;\n var segmentLength = 0;\n var segmentM = 0;\n function advance() {\n x1 = x2;\n y1 = y2;\n offset += stride;\n x2 = flatCoordinates[offset];\n y2 = flatCoordinates[offset + 1];\n segmentM += segmentLength;\n segmentLength = Math.sqrt((x2 - x1) * (x2 - x1) + (y2 - y1) * (y2 - y1));\n }\n do {\n advance();\n } while (offset < end - stride && segmentM + segmentLength < startM);\n var interpolate = segmentLength === 0 ? 0 : (startM - segmentM) / segmentLength;\n var beginX = lerp(x1, x2, interpolate);\n var beginY = lerp(y1, y2, interpolate);\n var startOffset = offset - stride;\n var startLength = segmentM;\n var endM = startM + scale * measureAndCacheTextWidth(font, text, cache);\n while (offset < end - stride && segmentM + segmentLength < endM) {\n advance();\n }\n interpolate = segmentLength === 0 ? 0 : (endM - segmentM) / segmentLength;\n var endX = lerp(x1, x2, interpolate);\n var endY = lerp(y1, y2, interpolate);\n // Keep text upright\n var reverse;\n if (rotation) {\n var flat = [beginX, beginY, endX, endY];\n rotate(flat, 0, 4, 2, rotation, flat, flat);\n reverse = flat[0] > flat[2];\n }\n else {\n reverse = beginX > endX;\n }\n var PI = Math.PI;\n var result = [];\n var singleSegment = startOffset + stride === offset;\n offset = startOffset;\n segmentLength = 0;\n segmentM = startLength;\n x2 = flatCoordinates[offset];\n y2 = flatCoordinates[offset + 1];\n var previousAngle;\n // All on the same segment\n if (singleSegment) {\n advance();\n previousAngle = Math.atan2(y2 - y1, x2 - x1);\n if (reverse) {\n previousAngle += previousAngle > 0 ? -PI : PI;\n }\n var x = (endX + beginX) / 2;\n var y = (endY + beginY) / 2;\n result[0] = [x, y, (endM - startM) / 2, previousAngle, text];\n return result;\n }\n for (var i = 0, ii = text.length; i < ii;) {\n advance();\n var angle = Math.atan2(y2 - y1, x2 - x1);\n if (reverse) {\n angle += angle > 0 ? -PI : PI;\n }\n if (previousAngle !== undefined) {\n var delta = angle - previousAngle;\n delta += delta > PI ? -2 * PI : delta < -PI ? 2 * PI : 0;\n if (Math.abs(delta) > maxAngle) {\n return null;\n }\n }\n previousAngle = angle;\n var iStart = i;\n var charLength = 0;\n for (; i < ii; ++i) {\n var index = reverse ? ii - i - 1 : i;\n var len = scale * measureAndCacheTextWidth(font, text[index], cache);\n if (offset + stride < end &&\n segmentM + segmentLength < startM + charLength + len / 2) {\n break;\n }\n charLength += len;\n }\n if (i === iStart) {\n continue;\n }\n var chars = reverse\n ? text.substring(ii - iStart, ii - i)\n : text.substring(iStart, i);\n interpolate =\n segmentLength === 0\n ? 0\n : (startM + charLength / 2 - segmentM) / segmentLength;\n var x = lerp(x1, x2, interpolate);\n var y = lerp(y1, y2, interpolate);\n result.push([x, y, charLength / 2, angle, chars]);\n startM += charLength;\n }\n return result;\n}\n//# sourceMappingURL=textpath.js.map","/**\n * @module ol/render/canvas/Executor\n */\nimport CanvasInstruction from './Instruction.js';\nimport { TEXT_ALIGN } from './TextBuilder.js';\nimport { WORKER_OFFSCREEN_CANVAS } from '../../has.js';\nimport { apply as applyTransform, compose as composeTransform, create as createTransform, setFromArray as transformSetFromArray, } from '../../transform.js';\nimport { createEmpty, createOrUpdate, intersects } from '../../extent.js';\nimport { defaultPadding, defaultTextAlign, defaultTextBaseline, drawImageOrLabel, getTextDimensions, measureAndCacheTextWidth, } from '../canvas.js';\nimport { drawTextOnPath } from '../../geom/flat/textpath.js';\nimport { equals } from '../../array.js';\nimport { lineStringLength } from '../../geom/flat/length.js';\nimport { transform2D } from '../../geom/flat/transform.js';\n/**\n * @typedef {Object} BBox\n * @property {number} minX Minimal x.\n * @property {number} minY Minimal y.\n * @property {number} maxX Maximal x.\n * @property {number} maxY Maximal y\n * @property {*} value Value.\n */\n/**\n * @typedef {Object} ImageOrLabelDimensions\n * @property {number} drawImageX DrawImageX.\n * @property {number} drawImageY DrawImageY.\n * @property {number} drawImageW DrawImageW.\n * @property {number} drawImageH DrawImageH.\n * @property {number} originX OriginX.\n * @property {number} originY OriginY.\n * @property {Array<number>} scale Scale.\n * @property {BBox} declutterBox DeclutterBox.\n * @property {import(\"../../transform.js\").Transform} canvasTransform CanvasTransform.\n */\n/**\n * @typedef {{0: CanvasRenderingContext2D, 1: number, 2: import(\"../canvas.js\").Label|HTMLImageElement|HTMLCanvasElement|HTMLVideoElement, 3: ImageOrLabelDimensions, 4: number, 5: Array<*>, 6: Array<*>}} ReplayImageOrLabelArgs\n */\n/**\n * @template T\n * @typedef {function(import(\"../../Feature.js\").FeatureLike, import(\"../../geom/SimpleGeometry.js\").default): T} FeatureCallback\n */\n/**\n * @type {import(\"../../extent.js\").Extent}\n */\nvar tmpExtent = createEmpty();\n/** @type {import(\"../../coordinate.js\").Coordinate} */\nvar p1 = [];\n/** @type {import(\"../../coordinate.js\").Coordinate} */\nvar p2 = [];\n/** @type {import(\"../../coordinate.js\").Coordinate} */\nvar p3 = [];\n/** @type {import(\"../../coordinate.js\").Coordinate} */\nvar p4 = [];\n/**\n * @param {ReplayImageOrLabelArgs} replayImageOrLabelArgs Arguments to replayImageOrLabel\n * @return {BBox} Declutter bbox.\n */\nfunction getDeclutterBox(replayImageOrLabelArgs) {\n return replayImageOrLabelArgs[3].declutterBox;\n}\nvar rtlRegEx = new RegExp(\n/* eslint-disable prettier/prettier */\n'[' +\n String.fromCharCode(0x00591) + '-' + String.fromCharCode(0x008ff) +\n String.fromCharCode(0x0fb1d) + '-' + String.fromCharCode(0x0fdff) +\n String.fromCharCode(0x0fe70) + '-' + String.fromCharCode(0x0fefc) +\n String.fromCharCode(0x10800) + '-' + String.fromCharCode(0x10fff) +\n String.fromCharCode(0x1e800) + '-' + String.fromCharCode(0x1efff) +\n ']'\n/* eslint-enable prettier/prettier */\n);\n/**\n * @param {string} text Text.\n * @param {string} align Alignment.\n * @return {number} Text alignment.\n */\nfunction horizontalTextAlign(text, align) {\n if ((align === 'start' || align === 'end') && !rtlRegEx.test(text)) {\n align = align === 'start' ? 'left' : 'right';\n }\n return TEXT_ALIGN[align];\n}\n/**\n * @param {Array<string>} acc Accumulator.\n * @param {string} line Line of text.\n * @param {number} i Index\n * @return {Array<string>} Accumulator.\n */\nfunction createTextChunks(acc, line, i) {\n if (i > 0) {\n acc.push('\\n', '');\n }\n acc.push(line, '');\n return acc;\n}\nvar Executor = /** @class */ (function () {\n /**\n * @param {number} resolution Resolution.\n * @param {number} pixelRatio Pixel ratio.\n * @param {boolean} overlaps The replay can have overlapping geometries.\n * @param {import(\"../canvas.js\").SerializableInstructions} instructions The serializable instructions\n */\n function Executor(resolution, pixelRatio, overlaps, instructions) {\n /**\n * @protected\n * @type {boolean}\n */\n this.overlaps = overlaps;\n /**\n * @protected\n * @type {number}\n */\n this.pixelRatio = pixelRatio;\n /**\n * @protected\n * @const\n * @type {number}\n */\n this.resolution = resolution;\n /**\n * @private\n * @type {boolean}\n */\n this.alignFill_;\n /**\n * @protected\n * @type {Array<*>}\n */\n this.instructions = instructions.instructions;\n /**\n * @protected\n * @type {Array<number>}\n */\n this.coordinates = instructions.coordinates;\n /**\n * @private\n * @type {!Object<number,import(\"../../coordinate.js\").Coordinate|Array<import(\"../../coordinate.js\").Coordinate>|Array<Array<import(\"../../coordinate.js\").Coordinate>>>}\n */\n this.coordinateCache_ = {};\n /**\n * @private\n * @type {!import(\"../../transform.js\").Transform}\n */\n this.renderedTransform_ = createTransform();\n /**\n * @protected\n * @type {Array<*>}\n */\n this.hitDetectionInstructions = instructions.hitDetectionInstructions;\n /**\n * @private\n * @type {Array<number>}\n */\n this.pixelCoordinates_ = null;\n /**\n * @private\n * @type {number}\n */\n this.viewRotation_ = 0;\n /**\n * @type {!Object<string, import(\"../canvas.js\").FillState>}\n */\n this.fillStates = instructions.fillStates || {};\n /**\n * @type {!Object<string, import(\"../canvas.js\").StrokeState>}\n */\n this.strokeStates = instructions.strokeStates || {};\n /**\n * @type {!Object<string, import(\"../canvas.js\").TextState>}\n */\n this.textStates = instructions.textStates || {};\n /**\n * @private\n * @type {Object<string, Object<string, number>>}\n */\n this.widths_ = {};\n /**\n * @private\n * @type {Object<string, import(\"../canvas.js\").Label>}\n */\n this.labels_ = {};\n }\n /**\n * @param {string|Array<string>} text Text.\n * @param {string} textKey Text style key.\n * @param {string} fillKey Fill style key.\n * @param {string} strokeKey Stroke style key.\n * @return {import(\"../canvas.js\").Label} Label.\n */\n Executor.prototype.createLabel = function (text, textKey, fillKey, strokeKey) {\n var key = text + textKey + fillKey + strokeKey;\n if (this.labels_[key]) {\n return this.labels_[key];\n }\n var strokeState = strokeKey ? this.strokeStates[strokeKey] : null;\n var fillState = fillKey ? this.fillStates[fillKey] : null;\n var textState = this.textStates[textKey];\n var pixelRatio = this.pixelRatio;\n var scale = [\n textState.scale[0] * pixelRatio,\n textState.scale[1] * pixelRatio,\n ];\n var textIsArray = Array.isArray(text);\n var align = horizontalTextAlign(textIsArray ? text[0] : text, textState.textAlign || defaultTextAlign);\n var strokeWidth = strokeKey && strokeState.lineWidth ? strokeState.lineWidth : 0;\n var chunks = textIsArray\n ? text\n : text.split('\\n').reduce(createTextChunks, []);\n var _a = getTextDimensions(textState, chunks), width = _a.width, height = _a.height, widths = _a.widths, heights = _a.heights, lineWidths = _a.lineWidths;\n var renderWidth = width + strokeWidth;\n var contextInstructions = [];\n // make canvas 2 pixels wider to account for italic text width measurement errors\n var w = (renderWidth + 2) * scale[0];\n var h = (height + strokeWidth) * scale[1];\n /** @type {import(\"../canvas.js\").Label} */\n var label = {\n width: w < 0 ? Math.floor(w) : Math.ceil(w),\n height: h < 0 ? Math.floor(h) : Math.ceil(h),\n contextInstructions: contextInstructions,\n };\n if (scale[0] != 1 || scale[1] != 1) {\n contextInstructions.push('scale', scale);\n }\n if (strokeKey) {\n contextInstructions.push('strokeStyle', strokeState.strokeStyle);\n contextInstructions.push('lineWidth', strokeWidth);\n contextInstructions.push('lineCap', strokeState.lineCap);\n contextInstructions.push('lineJoin', strokeState.lineJoin);\n contextInstructions.push('miterLimit', strokeState.miterLimit);\n // eslint-disable-next-line\n var Context = WORKER_OFFSCREEN_CANVAS ? OffscreenCanvasRenderingContext2D : CanvasRenderingContext2D;\n if (Context.prototype.setLineDash) {\n contextInstructions.push('setLineDash', [strokeState.lineDash]);\n contextInstructions.push('lineDashOffset', strokeState.lineDashOffset);\n }\n }\n if (fillKey) {\n contextInstructions.push('fillStyle', fillState.fillStyle);\n }\n contextInstructions.push('textBaseline', 'middle');\n contextInstructions.push('textAlign', 'center');\n var leftRight = 0.5 - align;\n var x = align * renderWidth + leftRight * strokeWidth;\n var strokeInstructions = [];\n var fillInstructions = [];\n var lineHeight = 0;\n var lineOffset = 0;\n var widthHeightIndex = 0;\n var lineWidthIndex = 0;\n var previousFont;\n for (var i = 0, ii = chunks.length; i < ii; i += 2) {\n var text_1 = chunks[i];\n if (text_1 === '\\n') {\n lineOffset += lineHeight;\n lineHeight = 0;\n x = align * renderWidth + leftRight * strokeWidth;\n ++lineWidthIndex;\n continue;\n }\n var font = chunks[i + 1] || textState.font;\n if (font !== previousFont) {\n if (strokeKey) {\n strokeInstructions.push('font', font);\n }\n if (fillKey) {\n fillInstructions.push('font', font);\n }\n previousFont = font;\n }\n lineHeight = Math.max(lineHeight, heights[widthHeightIndex]);\n var fillStrokeArgs = [\n text_1,\n x +\n leftRight * widths[widthHeightIndex] +\n align * (widths[widthHeightIndex] - lineWidths[lineWidthIndex]),\n 0.5 * (strokeWidth + lineHeight) + lineOffset,\n ];\n x += widths[widthHeightIndex];\n if (strokeKey) {\n strokeInstructions.push('strokeText', fillStrokeArgs);\n }\n if (fillKey) {\n fillInstructions.push('fillText', fillStrokeArgs);\n }\n ++widthHeightIndex;\n }\n Array.prototype.push.apply(contextInstructions, strokeInstructions);\n Array.prototype.push.apply(contextInstructions, fillInstructions);\n this.labels_[key] = label;\n return label;\n };\n /**\n * @param {CanvasRenderingContext2D} context Context.\n * @param {import(\"../../coordinate.js\").Coordinate} p1 1st point of the background box.\n * @param {import(\"../../coordinate.js\").Coordinate} p2 2nd point of the background box.\n * @param {import(\"../../coordinate.js\").Coordinate} p3 3rd point of the background box.\n * @param {import(\"../../coordinate.js\").Coordinate} p4 4th point of the background box.\n * @param {Array<*>} fillInstruction Fill instruction.\n * @param {Array<*>} strokeInstruction Stroke instruction.\n */\n Executor.prototype.replayTextBackground_ = function (context, p1, p2, p3, p4, fillInstruction, strokeInstruction) {\n context.beginPath();\n context.moveTo.apply(context, p1);\n context.lineTo.apply(context, p2);\n context.lineTo.apply(context, p3);\n context.lineTo.apply(context, p4);\n context.lineTo.apply(context, p1);\n if (fillInstruction) {\n this.alignFill_ = /** @type {boolean} */ (fillInstruction[2]);\n this.fill_(context);\n }\n if (strokeInstruction) {\n this.setStrokeStyle_(context, \n /** @type {Array<*>} */ (strokeInstruction));\n context.stroke();\n }\n };\n /**\n * @private\n * @param {number} sheetWidth Width of the sprite sheet.\n * @param {number} sheetHeight Height of the sprite sheet.\n * @param {number} centerX X.\n * @param {number} centerY Y.\n * @param {number} width Width.\n * @param {number} height Height.\n * @param {number} anchorX Anchor X.\n * @param {number} anchorY Anchor Y.\n * @param {number} originX Origin X.\n * @param {number} originY Origin Y.\n * @param {number} rotation Rotation.\n * @param {import(\"../../size.js\").Size} scale Scale.\n * @param {boolean} snapToPixel Snap to pixel.\n * @param {Array<number>} padding Padding.\n * @param {boolean} fillStroke Background fill or stroke.\n * @param {import(\"../../Feature.js\").FeatureLike} feature Feature.\n * @return {ImageOrLabelDimensions} Dimensions for positioning and decluttering the image or label.\n */\n Executor.prototype.calculateImageOrLabelDimensions_ = function (sheetWidth, sheetHeight, centerX, centerY, width, height, anchorX, anchorY, originX, originY, rotation, scale, snapToPixel, padding, fillStroke, feature) {\n anchorX *= scale[0];\n anchorY *= scale[1];\n var x = centerX - anchorX;\n var y = centerY - anchorY;\n var w = width + originX > sheetWidth ? sheetWidth - originX : width;\n var h = height + originY > sheetHeight ? sheetHeight - originY : height;\n var boxW = padding[3] + w * scale[0] + padding[1];\n var boxH = padding[0] + h * scale[1] + padding[2];\n var boxX = x - padding[3];\n var boxY = y - padding[0];\n if (fillStroke || rotation !== 0) {\n p1[0] = boxX;\n p4[0] = boxX;\n p1[1] = boxY;\n p2[1] = boxY;\n p2[0] = boxX + boxW;\n p3[0] = p2[0];\n p3[1] = boxY + boxH;\n p4[1] = p3[1];\n }\n var transform;\n if (rotation !== 0) {\n transform = composeTransform(createTransform(), centerX, centerY, 1, 1, rotation, -centerX, -centerY);\n applyTransform(transform, p1);\n applyTransform(transform, p2);\n applyTransform(transform, p3);\n applyTransform(transform, p4);\n createOrUpdate(Math.min(p1[0], p2[0], p3[0], p4[0]), Math.min(p1[1], p2[1], p3[1], p4[1]), Math.max(p1[0], p2[0], p3[0], p4[0]), Math.max(p1[1], p2[1], p3[1], p4[1]), tmpExtent);\n }\n else {\n createOrUpdate(Math.min(boxX, boxX + boxW), Math.min(boxY, boxY + boxH), Math.max(boxX, boxX + boxW), Math.max(boxY, boxY + boxH), tmpExtent);\n }\n if (snapToPixel) {\n x = Math.round(x);\n y = Math.round(y);\n }\n return {\n drawImageX: x,\n drawImageY: y,\n drawImageW: w,\n drawImageH: h,\n originX: originX,\n originY: originY,\n declutterBox: {\n minX: tmpExtent[0],\n minY: tmpExtent[1],\n maxX: tmpExtent[2],\n maxY: tmpExtent[3],\n value: feature,\n },\n canvasTransform: transform,\n scale: scale,\n };\n };\n /**\n * @private\n * @param {CanvasRenderingContext2D} context Context.\n * @param {number} contextScale Scale of the context.\n * @param {import(\"../canvas.js\").Label|HTMLImageElement|HTMLCanvasElement|HTMLVideoElement} imageOrLabel Image.\n * @param {ImageOrLabelDimensions} dimensions Dimensions.\n * @param {number} opacity Opacity.\n * @param {Array<*>} fillInstruction Fill instruction.\n * @param {Array<*>} strokeInstruction Stroke instruction.\n * @return {boolean} The image or label was rendered.\n */\n Executor.prototype.replayImageOrLabel_ = function (context, contextScale, imageOrLabel, dimensions, opacity, fillInstruction, strokeInstruction) {\n var fillStroke = !!(fillInstruction || strokeInstruction);\n var box = dimensions.declutterBox;\n var canvas = context.canvas;\n var strokePadding = strokeInstruction\n ? (strokeInstruction[2] * dimensions.scale[0]) / 2\n : 0;\n var intersects = box.minX - strokePadding <= canvas.width / contextScale &&\n box.maxX + strokePadding >= 0 &&\n box.minY - strokePadding <= canvas.height / contextScale &&\n box.maxY + strokePadding >= 0;\n if (intersects) {\n if (fillStroke) {\n this.replayTextBackground_(context, p1, p2, p3, p4, \n /** @type {Array<*>} */ (fillInstruction), \n /** @type {Array<*>} */ (strokeInstruction));\n }\n drawImageOrLabel(context, dimensions.canvasTransform, opacity, imageOrLabel, dimensions.originX, dimensions.originY, dimensions.drawImageW, dimensions.drawImageH, dimensions.drawImageX, dimensions.drawImageY, dimensions.scale);\n }\n return true;\n };\n /**\n * @private\n * @param {CanvasRenderingContext2D} context Context.\n */\n Executor.prototype.fill_ = function (context) {\n if (this.alignFill_) {\n var origin_1 = applyTransform(this.renderedTransform_, [0, 0]);\n var repeatSize = 512 * this.pixelRatio;\n context.save();\n context.translate(origin_1[0] % repeatSize, origin_1[1] % repeatSize);\n context.rotate(this.viewRotation_);\n }\n context.fill();\n if (this.alignFill_) {\n context.restore();\n }\n };\n /**\n * @private\n * @param {CanvasRenderingContext2D} context Context.\n * @param {Array<*>} instruction Instruction.\n */\n Executor.prototype.setStrokeStyle_ = function (context, instruction) {\n context['strokeStyle'] =\n /** @type {import(\"../../colorlike.js\").ColorLike} */ (instruction[1]);\n context.lineWidth = /** @type {number} */ (instruction[2]);\n context.lineCap = /** @type {CanvasLineCap} */ (instruction[3]);\n context.lineJoin = /** @type {CanvasLineJoin} */ (instruction[4]);\n context.miterLimit = /** @type {number} */ (instruction[5]);\n if (context.setLineDash) {\n context.lineDashOffset = /** @type {number} */ (instruction[7]);\n context.setLineDash(/** @type {Array<number>} */ (instruction[6]));\n }\n };\n /**\n * @private\n * @param {string|Array<string>} text The text to draw.\n * @param {string} textKey The key of the text state.\n * @param {string} strokeKey The key for the stroke state.\n * @param {string} fillKey The key for the fill state.\n * @return {{label: import(\"../canvas.js\").Label, anchorX: number, anchorY: number}} The text image and its anchor.\n */\n Executor.prototype.drawLabelWithPointPlacement_ = function (text, textKey, strokeKey, fillKey) {\n var textState = this.textStates[textKey];\n var label = this.createLabel(text, textKey, fillKey, strokeKey);\n var strokeState = this.strokeStates[strokeKey];\n var pixelRatio = this.pixelRatio;\n var align = horizontalTextAlign(Array.isArray(text) ? text[0] : text, textState.textAlign || defaultTextAlign);\n var baseline = TEXT_ALIGN[textState.textBaseline || defaultTextBaseline];\n var strokeWidth = strokeState && strokeState.lineWidth ? strokeState.lineWidth : 0;\n // Remove the 2 pixels we added in createLabel() for the anchor\n var width = label.width / pixelRatio - 2 * textState.scale[0];\n var anchorX = align * width + 2 * (0.5 - align) * strokeWidth;\n var anchorY = (baseline * label.height) / pixelRatio +\n 2 * (0.5 - baseline) * strokeWidth;\n return {\n label: label,\n anchorX: anchorX,\n anchorY: anchorY,\n };\n };\n /**\n * @private\n * @param {CanvasRenderingContext2D} context Context.\n * @param {number} contextScale Scale of the context.\n * @param {import(\"../../transform.js\").Transform} transform Transform.\n * @param {Array<*>} instructions Instructions array.\n * @param {boolean} snapToPixel Snap point symbols and text to integer pixels.\n * @param {FeatureCallback<T>} [opt_featureCallback] Feature callback.\n * @param {import(\"../../extent.js\").Extent} [opt_hitExtent] Only check\n * features that intersect this extent.\n * @param {import(\"rbush\").default} [opt_declutterTree] Declutter tree.\n * @return {T|undefined} Callback result.\n * @template T\n */\n Executor.prototype.execute_ = function (context, contextScale, transform, instructions, snapToPixel, opt_featureCallback, opt_hitExtent, opt_declutterTree) {\n /** @type {Array<number>} */\n var pixelCoordinates;\n if (this.pixelCoordinates_ && equals(transform, this.renderedTransform_)) {\n pixelCoordinates = this.pixelCoordinates_;\n }\n else {\n if (!this.pixelCoordinates_) {\n this.pixelCoordinates_ = [];\n }\n pixelCoordinates = transform2D(this.coordinates, 0, this.coordinates.length, 2, transform, this.pixelCoordinates_);\n transformSetFromArray(this.renderedTransform_, transform);\n }\n var i = 0; // instruction index\n var ii = instructions.length; // end of instructions\n var d = 0; // data index\n var dd; // end of per-instruction data\n var anchorX, anchorY, prevX, prevY, roundX, roundY, image, text, textKey, strokeKey, fillKey;\n var pendingFill = 0;\n var pendingStroke = 0;\n var lastFillInstruction = null;\n var lastStrokeInstruction = null;\n var coordinateCache = this.coordinateCache_;\n var viewRotation = this.viewRotation_;\n var viewRotationFromTransform = Math.round(Math.atan2(-transform[1], transform[0]) * 1e12) / 1e12;\n var state = /** @type {import(\"../../render.js\").State} */ ({\n context: context,\n pixelRatio: this.pixelRatio,\n resolution: this.resolution,\n rotation: viewRotation,\n });\n // When the batch size gets too big, performance decreases. 200 is a good\n // balance between batch size and number of fill/stroke instructions.\n var batchSize = this.instructions != instructions || this.overlaps ? 0 : 200;\n var /** @type {import(\"../../Feature.js\").FeatureLike} */ feature;\n var x, y, currentGeometry;\n while (i < ii) {\n var instruction = instructions[i];\n var type = /** @type {import(\"./Instruction.js\").default} */ (instruction[0]);\n switch (type) {\n case CanvasInstruction.BEGIN_GEOMETRY:\n feature = /** @type {import(\"../../Feature.js\").FeatureLike} */ (instruction[1]);\n currentGeometry = instruction[3];\n if (!feature.getGeometry()) {\n i = /** @type {number} */ (instruction[2]);\n }\n else if (opt_hitExtent !== undefined &&\n !intersects(opt_hitExtent, currentGeometry.getExtent())) {\n i = /** @type {number} */ (instruction[2]) + 1;\n }\n else {\n ++i;\n }\n break;\n case CanvasInstruction.BEGIN_PATH:\n if (pendingFill > batchSize) {\n this.fill_(context);\n pendingFill = 0;\n }\n if (pendingStroke > batchSize) {\n context.stroke();\n pendingStroke = 0;\n }\n if (!pendingFill && !pendingStroke) {\n context.beginPath();\n prevX = NaN;\n prevY = NaN;\n }\n ++i;\n break;\n case CanvasInstruction.CIRCLE:\n d = /** @type {number} */ (instruction[1]);\n var x1 = pixelCoordinates[d];\n var y1 = pixelCoordinates[d + 1];\n var x2 = pixelCoordinates[d + 2];\n var y2 = pixelCoordinates[d + 3];\n var dx = x2 - x1;\n var dy = y2 - y1;\n var r = Math.sqrt(dx * dx + dy * dy);\n context.moveTo(x1 + r, y1);\n context.arc(x1, y1, r, 0, 2 * Math.PI, true);\n ++i;\n break;\n case CanvasInstruction.CLOSE_PATH:\n context.closePath();\n ++i;\n break;\n case CanvasInstruction.CUSTOM:\n d = /** @type {number} */ (instruction[1]);\n dd = instruction[2];\n var geometry = \n /** @type {import(\"../../geom/SimpleGeometry.js\").default} */ (instruction[3]);\n var renderer = instruction[4];\n var fn = instruction.length == 6 ? instruction[5] : undefined;\n state.geometry = geometry;\n state.feature = feature;\n if (!(i in coordinateCache)) {\n coordinateCache[i] = [];\n }\n var coords = coordinateCache[i];\n if (fn) {\n fn(pixelCoordinates, d, dd, 2, coords);\n }\n else {\n coords[0] = pixelCoordinates[d];\n coords[1] = pixelCoordinates[d + 1];\n coords.length = 2;\n }\n renderer(coords, state);\n ++i;\n break;\n case CanvasInstruction.DRAW_IMAGE:\n d = /** @type {number} */ (instruction[1]);\n dd = /** @type {number} */ (instruction[2]);\n image =\n /** @type {HTMLCanvasElement|HTMLVideoElement|HTMLImageElement} */ (instruction[3]);\n // Remaining arguments in DRAW_IMAGE are in alphabetical order\n anchorX = /** @type {number} */ (instruction[4]);\n anchorY = /** @type {number} */ (instruction[5]);\n var height = /** @type {number} */ (instruction[6]);\n var opacity = /** @type {number} */ (instruction[7]);\n var originX = /** @type {number} */ (instruction[8]);\n var originY = /** @type {number} */ (instruction[9]);\n var rotateWithView = /** @type {boolean} */ (instruction[10]);\n var rotation = /** @type {number} */ (instruction[11]);\n var scale = /** @type {import(\"../../size.js\").Size} */ (instruction[12]);\n var width = /** @type {number} */ (instruction[13]);\n var declutterImageWithText = \n /** @type {import(\"../canvas.js\").DeclutterImageWithText} */ (instruction[14]);\n if (!image && instruction.length >= 19) {\n // create label images\n text = /** @type {string} */ (instruction[18]);\n textKey = /** @type {string} */ (instruction[19]);\n strokeKey = /** @type {string} */ (instruction[20]);\n fillKey = /** @type {string} */ (instruction[21]);\n var labelWithAnchor = this.drawLabelWithPointPlacement_(text, textKey, strokeKey, fillKey);\n image = labelWithAnchor.label;\n instruction[3] = image;\n var textOffsetX = /** @type {number} */ (instruction[22]);\n anchorX = (labelWithAnchor.anchorX - textOffsetX) * this.pixelRatio;\n instruction[4] = anchorX;\n var textOffsetY = /** @type {number} */ (instruction[23]);\n anchorY = (labelWithAnchor.anchorY - textOffsetY) * this.pixelRatio;\n instruction[5] = anchorY;\n height = image.height;\n instruction[6] = height;\n width = image.width;\n instruction[13] = width;\n }\n var geometryWidths = void 0;\n if (instruction.length > 24) {\n geometryWidths = /** @type {number} */ (instruction[24]);\n }\n var padding = void 0, backgroundFill = void 0, backgroundStroke = void 0;\n if (instruction.length > 16) {\n padding = /** @type {Array<number>} */ (instruction[15]);\n backgroundFill = /** @type {boolean} */ (instruction[16]);\n backgroundStroke = /** @type {boolean} */ (instruction[17]);\n }\n else {\n padding = defaultPadding;\n backgroundFill = false;\n backgroundStroke = false;\n }\n if (rotateWithView && viewRotationFromTransform) {\n // Canvas is expected to be rotated to reverse view rotation.\n rotation += viewRotation;\n }\n else if (!rotateWithView && !viewRotationFromTransform) {\n // Canvas is not rotated, images need to be rotated back to be north-up.\n rotation -= viewRotation;\n }\n var widthIndex = 0;\n for (; d < dd; d += 2) {\n if (geometryWidths &&\n geometryWidths[widthIndex++] < width / this.pixelRatio) {\n continue;\n }\n var dimensions = this.calculateImageOrLabelDimensions_(image.width, image.height, pixelCoordinates[d], pixelCoordinates[d + 1], width, height, anchorX, anchorY, originX, originY, rotation, scale, snapToPixel, padding, backgroundFill || backgroundStroke, feature);\n /** @type {ReplayImageOrLabelArgs} */\n var args = [\n context,\n contextScale,\n image,\n dimensions,\n opacity,\n backgroundFill\n ? /** @type {Array<*>} */ (lastFillInstruction)\n : null,\n backgroundStroke\n ? /** @type {Array<*>} */ (lastStrokeInstruction)\n : null,\n ];\n var imageArgs = void 0;\n var imageDeclutterBox = void 0;\n if (opt_declutterTree && declutterImageWithText) {\n var index = dd - d;\n if (!declutterImageWithText[index]) {\n // We now have the image for an image+text combination.\n declutterImageWithText[index] = args;\n // Don't render anything for now, wait for the text.\n continue;\n }\n imageArgs = declutterImageWithText[index];\n delete declutterImageWithText[index];\n imageDeclutterBox = getDeclutterBox(imageArgs);\n if (opt_declutterTree.collides(imageDeclutterBox)) {\n continue;\n }\n }\n if (opt_declutterTree &&\n opt_declutterTree.collides(dimensions.declutterBox)) {\n continue;\n }\n if (imageArgs) {\n // We now have image and text for an image+text combination.\n if (opt_declutterTree) {\n opt_declutterTree.insert(imageDeclutterBox);\n }\n // Render the image before we render the text.\n this.replayImageOrLabel_.apply(this, imageArgs);\n }\n if (opt_declutterTree) {\n opt_declutterTree.insert(dimensions.declutterBox);\n }\n this.replayImageOrLabel_.apply(this, args);\n }\n ++i;\n break;\n case CanvasInstruction.DRAW_CHARS:\n var begin = /** @type {number} */ (instruction[1]);\n var end = /** @type {number} */ (instruction[2]);\n var baseline = /** @type {number} */ (instruction[3]);\n var overflow = /** @type {number} */ (instruction[4]);\n fillKey = /** @type {string} */ (instruction[5]);\n var maxAngle = /** @type {number} */ (instruction[6]);\n var measurePixelRatio = /** @type {number} */ (instruction[7]);\n var offsetY = /** @type {number} */ (instruction[8]);\n strokeKey = /** @type {string} */ (instruction[9]);\n var strokeWidth = /** @type {number} */ (instruction[10]);\n text = /** @type {string} */ (instruction[11]);\n textKey = /** @type {string} */ (instruction[12]);\n var pixelRatioScale = [\n /** @type {number} */ (instruction[13]),\n /** @type {number} */ (instruction[13]),\n ];\n var textState = this.textStates[textKey];\n var font = textState.font;\n var textScale = [\n textState.scale[0] * measurePixelRatio,\n textState.scale[1] * measurePixelRatio,\n ];\n var cachedWidths = void 0;\n if (font in this.widths_) {\n cachedWidths = this.widths_[font];\n }\n else {\n cachedWidths = {};\n this.widths_[font] = cachedWidths;\n }\n var pathLength = lineStringLength(pixelCoordinates, begin, end, 2);\n var textLength = Math.abs(textScale[0]) *\n measureAndCacheTextWidth(font, text, cachedWidths);\n if (overflow || textLength <= pathLength) {\n var textAlign = this.textStates[textKey].textAlign;\n var startM = (pathLength - textLength) * TEXT_ALIGN[textAlign];\n var parts = drawTextOnPath(pixelCoordinates, begin, end, 2, text, startM, maxAngle, Math.abs(textScale[0]), measureAndCacheTextWidth, font, cachedWidths, viewRotationFromTransform ? 0 : this.viewRotation_);\n drawChars: if (parts) {\n /** @type {Array<ReplayImageOrLabelArgs>} */\n var replayImageOrLabelArgs = [];\n var c = void 0, cc = void 0, chars = void 0, label = void 0, part = void 0;\n if (strokeKey) {\n for (c = 0, cc = parts.length; c < cc; ++c) {\n part = parts[c]; // x, y, anchorX, rotation, chunk\n chars = /** @type {string} */ (part[4]);\n label = this.createLabel(chars, textKey, '', strokeKey);\n anchorX =\n /** @type {number} */ (part[2]) +\n (textScale[0] < 0 ? -strokeWidth : strokeWidth);\n anchorY =\n baseline * label.height +\n ((0.5 - baseline) * 2 * strokeWidth * textScale[1]) /\n textScale[0] -\n offsetY;\n var dimensions = this.calculateImageOrLabelDimensions_(label.width, label.height, part[0], part[1], label.width, label.height, anchorX, anchorY, 0, 0, part[3], pixelRatioScale, false, defaultPadding, false, feature);\n if (opt_declutterTree &&\n opt_declutterTree.collides(dimensions.declutterBox)) {\n break drawChars;\n }\n replayImageOrLabelArgs.push([\n context,\n contextScale,\n label,\n dimensions,\n 1,\n null,\n null,\n ]);\n }\n }\n if (fillKey) {\n for (c = 0, cc = parts.length; c < cc; ++c) {\n part = parts[c]; // x, y, anchorX, rotation, chunk\n chars = /** @type {string} */ (part[4]);\n label = this.createLabel(chars, textKey, fillKey, '');\n anchorX = /** @type {number} */ (part[2]);\n anchorY = baseline * label.height - offsetY;\n var dimensions = this.calculateImageOrLabelDimensions_(label.width, label.height, part[0], part[1], label.width, label.height, anchorX, anchorY, 0, 0, part[3], pixelRatioScale, false, defaultPadding, false, feature);\n if (opt_declutterTree &&\n opt_declutterTree.collides(dimensions.declutterBox)) {\n break drawChars;\n }\n replayImageOrLabelArgs.push([\n context,\n contextScale,\n label,\n dimensions,\n 1,\n null,\n null,\n ]);\n }\n }\n if (opt_declutterTree) {\n opt_declutterTree.load(replayImageOrLabelArgs.map(getDeclutterBox));\n }\n for (var i_1 = 0, ii_1 = replayImageOrLabelArgs.length; i_1 < ii_1; ++i_1) {\n this.replayImageOrLabel_.apply(this, replayImageOrLabelArgs[i_1]);\n }\n }\n }\n ++i;\n break;\n case CanvasInstruction.END_GEOMETRY:\n if (opt_featureCallback !== undefined) {\n feature = /** @type {import(\"../../Feature.js\").FeatureLike} */ (instruction[1]);\n var result = opt_featureCallback(feature, currentGeometry);\n if (result) {\n return result;\n }\n }\n ++i;\n break;\n case CanvasInstruction.FILL:\n if (batchSize) {\n pendingFill++;\n }\n else {\n this.fill_(context);\n }\n ++i;\n break;\n case CanvasInstruction.MOVE_TO_LINE_TO:\n d = /** @type {number} */ (instruction[1]);\n dd = /** @type {number} */ (instruction[2]);\n x = pixelCoordinates[d];\n y = pixelCoordinates[d + 1];\n roundX = (x + 0.5) | 0;\n roundY = (y + 0.5) | 0;\n if (roundX !== prevX || roundY !== prevY) {\n context.moveTo(x, y);\n prevX = roundX;\n prevY = roundY;\n }\n for (d += 2; d < dd; d += 2) {\n x = pixelCoordinates[d];\n y = pixelCoordinates[d + 1];\n roundX = (x + 0.5) | 0;\n roundY = (y + 0.5) | 0;\n if (d == dd - 2 || roundX !== prevX || roundY !== prevY) {\n context.lineTo(x, y);\n prevX = roundX;\n prevY = roundY;\n }\n }\n ++i;\n break;\n case CanvasInstruction.SET_FILL_STYLE:\n lastFillInstruction = instruction;\n this.alignFill_ = instruction[2];\n if (pendingFill) {\n this.fill_(context);\n pendingFill = 0;\n if (pendingStroke) {\n context.stroke();\n pendingStroke = 0;\n }\n }\n context.fillStyle =\n /** @type {import(\"../../colorlike.js\").ColorLike} */ (instruction[1]);\n ++i;\n break;\n case CanvasInstruction.SET_STROKE_STYLE:\n lastStrokeInstruction = instruction;\n if (pendingStroke) {\n context.stroke();\n pendingStroke = 0;\n }\n this.setStrokeStyle_(context, /** @type {Array<*>} */ (instruction));\n ++i;\n break;\n case CanvasInstruction.STROKE:\n if (batchSize) {\n pendingStroke++;\n }\n else {\n context.stroke();\n }\n ++i;\n break;\n default:\n ++i; // consume the instruction anyway, to avoid an infinite loop\n break;\n }\n }\n if (pendingFill) {\n this.fill_(context);\n }\n if (pendingStroke) {\n context.stroke();\n }\n return undefined;\n };\n /**\n * @param {CanvasRenderingContext2D} context Context.\n * @param {number} contextScale Scale of the context.\n * @param {import(\"../../transform.js\").Transform} transform Transform.\n * @param {number} viewRotation View rotation.\n * @param {boolean} snapToPixel Snap point symbols and text to integer pixels.\n * @param {import(\"rbush\").default} [opt_declutterTree] Declutter tree.\n */\n Executor.prototype.execute = function (context, contextScale, transform, viewRotation, snapToPixel, opt_declutterTree) {\n this.viewRotation_ = viewRotation;\n this.execute_(context, contextScale, transform, this.instructions, snapToPixel, undefined, undefined, opt_declutterTree);\n };\n /**\n * @param {CanvasRenderingContext2D} context Context.\n * @param {import(\"../../transform.js\").Transform} transform Transform.\n * @param {number} viewRotation View rotation.\n * @param {FeatureCallback<T>} [opt_featureCallback] Feature callback.\n * @param {import(\"../../extent.js\").Extent} [opt_hitExtent] Only check\n * features that intersect this extent.\n * @return {T|undefined} Callback result.\n * @template T\n */\n Executor.prototype.executeHitDetection = function (context, transform, viewRotation, opt_featureCallback, opt_hitExtent) {\n this.viewRotation_ = viewRotation;\n return this.execute_(context, 1, transform, this.hitDetectionInstructions, true, opt_featureCallback, opt_hitExtent);\n };\n return Executor;\n}());\nexport default Executor;\n//# sourceMappingURL=Executor.js.map","/**\n * @module ol/render/canvas/ExecutorGroup\n */\nimport BuilderType from './BuilderType.js';\nimport Executor from './Executor.js';\nimport { buffer, createEmpty, extendCoordinate } from '../../extent.js';\nimport { compose as composeTransform, create as createTransform, } from '../../transform.js';\nimport { createCanvasContext2D } from '../../dom.js';\nimport { isEmpty } from '../../obj.js';\nimport { numberSafeCompareFunction } from '../../array.js';\nimport { transform2D } from '../../geom/flat/transform.js';\n/**\n * @const\n * @type {Array<import(\"./BuilderType.js\").default>}\n */\nvar ORDER = [\n BuilderType.POLYGON,\n BuilderType.CIRCLE,\n BuilderType.LINE_STRING,\n BuilderType.IMAGE,\n BuilderType.TEXT,\n BuilderType.DEFAULT,\n];\nvar ExecutorGroup = /** @class */ (function () {\n /**\n * @param {import(\"../../extent.js\").Extent} maxExtent Max extent for clipping. When a\n * `maxExtent` was set on the Builder for this executor group, the same `maxExtent`\n * should be set here, unless the target context does not exceed that extent (which\n * can be the case when rendering to tiles).\n * @param {number} resolution Resolution.\n * @param {number} pixelRatio Pixel ratio.\n * @param {boolean} overlaps The executor group can have overlapping geometries.\n * @param {!Object<string, !Object<import(\"./BuilderType.js\").default, import(\"../canvas.js\").SerializableInstructions>>} allInstructions\n * The serializable instructions.\n * @param {number} [opt_renderBuffer] Optional rendering buffer.\n */\n function ExecutorGroup(maxExtent, resolution, pixelRatio, overlaps, allInstructions, opt_renderBuffer) {\n /**\n * @private\n * @type {import(\"../../extent.js\").Extent}\n */\n this.maxExtent_ = maxExtent;\n /**\n * @private\n * @type {boolean}\n */\n this.overlaps_ = overlaps;\n /**\n * @private\n * @type {number}\n */\n this.pixelRatio_ = pixelRatio;\n /**\n * @private\n * @type {number}\n */\n this.resolution_ = resolution;\n /**\n * @private\n * @type {number|undefined}\n */\n this.renderBuffer_ = opt_renderBuffer;\n /**\n * @private\n * @type {!Object<string, !Object<import(\"./BuilderType.js\").default, import(\"./Executor\").default>>}\n */\n this.executorsByZIndex_ = {};\n /**\n * @private\n * @type {CanvasRenderingContext2D}\n */\n this.hitDetectionContext_ = null;\n /**\n * @private\n * @type {import(\"../../transform.js\").Transform}\n */\n this.hitDetectionTransform_ = createTransform();\n this.createExecutors_(allInstructions);\n }\n /**\n * @param {CanvasRenderingContext2D} context Context.\n * @param {import(\"../../transform.js\").Transform} transform Transform.\n */\n ExecutorGroup.prototype.clip = function (context, transform) {\n var flatClipCoords = this.getClipCoords(transform);\n context.beginPath();\n context.moveTo(flatClipCoords[0], flatClipCoords[1]);\n context.lineTo(flatClipCoords[2], flatClipCoords[3]);\n context.lineTo(flatClipCoords[4], flatClipCoords[5]);\n context.lineTo(flatClipCoords[6], flatClipCoords[7]);\n context.clip();\n };\n /**\n * Create executors and populate them using the provided instructions.\n * @private\n * @param {!Object<string, !Object<import(\"./BuilderType.js\").default, import(\"../canvas.js\").SerializableInstructions>>} allInstructions The serializable instructions\n */\n ExecutorGroup.prototype.createExecutors_ = function (allInstructions) {\n for (var zIndex in allInstructions) {\n var executors = this.executorsByZIndex_[zIndex];\n if (executors === undefined) {\n executors = {};\n this.executorsByZIndex_[zIndex] = executors;\n }\n var instructionByZindex = allInstructions[zIndex];\n for (var builderType in instructionByZindex) {\n var instructions = instructionByZindex[builderType];\n executors[builderType] = new Executor(this.resolution_, this.pixelRatio_, this.overlaps_, instructions);\n }\n }\n };\n /**\n * @param {Array<import(\"./BuilderType.js\").default>} executors Executors.\n * @return {boolean} Has executors of the provided types.\n */\n ExecutorGroup.prototype.hasExecutors = function (executors) {\n for (var zIndex in this.executorsByZIndex_) {\n var candidates = this.executorsByZIndex_[zIndex];\n for (var i = 0, ii = executors.length; i < ii; ++i) {\n if (executors[i] in candidates) {\n return true;\n }\n }\n }\n return false;\n };\n /**\n * @param {import(\"../../coordinate.js\").Coordinate} coordinate Coordinate.\n * @param {number} resolution Resolution.\n * @param {number} rotation Rotation.\n * @param {number} hitTolerance Hit tolerance in pixels.\n * @param {function(import(\"../../Feature.js\").FeatureLike, import(\"../../geom/SimpleGeometry.js\").default, number): T} callback Feature callback.\n * @param {Array<import(\"../../Feature.js\").FeatureLike>} declutteredFeatures Decluttered features.\n * @return {T|undefined} Callback result.\n * @template T\n */\n ExecutorGroup.prototype.forEachFeatureAtCoordinate = function (coordinate, resolution, rotation, hitTolerance, callback, declutteredFeatures) {\n hitTolerance = Math.round(hitTolerance);\n var contextSize = hitTolerance * 2 + 1;\n var transform = composeTransform(this.hitDetectionTransform_, hitTolerance + 0.5, hitTolerance + 0.5, 1 / resolution, -1 / resolution, -rotation, -coordinate[0], -coordinate[1]);\n var newContext = !this.hitDetectionContext_;\n if (newContext) {\n this.hitDetectionContext_ = createCanvasContext2D(contextSize, contextSize);\n }\n var context = this.hitDetectionContext_;\n if (context.canvas.width !== contextSize ||\n context.canvas.height !== contextSize) {\n context.canvas.width = contextSize;\n context.canvas.height = contextSize;\n }\n else if (!newContext) {\n context.clearRect(0, 0, contextSize, contextSize);\n }\n /**\n * @type {import(\"../../extent.js\").Extent}\n */\n var hitExtent;\n if (this.renderBuffer_ !== undefined) {\n hitExtent = createEmpty();\n extendCoordinate(hitExtent, coordinate);\n buffer(hitExtent, resolution * (this.renderBuffer_ + hitTolerance), hitExtent);\n }\n var indexes = getPixelIndexArray(hitTolerance);\n var builderType;\n /**\n * @param {import(\"../../Feature.js\").FeatureLike} feature Feature.\n * @param {import(\"../../geom/SimpleGeometry.js\").default} geometry Geometry.\n * @return {T|undefined} Callback result.\n */\n function featureCallback(feature, geometry) {\n var imageData = context.getImageData(0, 0, contextSize, contextSize).data;\n for (var i_1 = 0, ii = indexes.length; i_1 < ii; i_1++) {\n if (imageData[indexes[i_1]] > 0) {\n if (!declutteredFeatures ||\n (builderType !== BuilderType.IMAGE &&\n builderType !== BuilderType.TEXT) ||\n declutteredFeatures.indexOf(feature) !== -1) {\n var idx = (indexes[i_1] - 3) / 4;\n var x = hitTolerance - (idx % contextSize);\n var y = hitTolerance - ((idx / contextSize) | 0);\n var result_1 = callback(feature, geometry, x * x + y * y);\n if (result_1) {\n return result_1;\n }\n }\n context.clearRect(0, 0, contextSize, contextSize);\n break;\n }\n }\n return undefined;\n }\n /** @type {Array<number>} */\n var zs = Object.keys(this.executorsByZIndex_).map(Number);\n zs.sort(numberSafeCompareFunction);\n var i, j, executors, executor, result;\n for (i = zs.length - 1; i >= 0; --i) {\n var zIndexKey = zs[i].toString();\n executors = this.executorsByZIndex_[zIndexKey];\n for (j = ORDER.length - 1; j >= 0; --j) {\n builderType = ORDER[j];\n executor = executors[builderType];\n if (executor !== undefined) {\n result = executor.executeHitDetection(context, transform, rotation, featureCallback, hitExtent);\n if (result) {\n return result;\n }\n }\n }\n }\n return undefined;\n };\n /**\n * @param {import(\"../../transform.js\").Transform} transform Transform.\n * @return {Array<number>} Clip coordinates.\n */\n ExecutorGroup.prototype.getClipCoords = function (transform) {\n var maxExtent = this.maxExtent_;\n if (!maxExtent) {\n return null;\n }\n var minX = maxExtent[0];\n var minY = maxExtent[1];\n var maxX = maxExtent[2];\n var maxY = maxExtent[3];\n var flatClipCoords = [minX, minY, minX, maxY, maxX, maxY, maxX, minY];\n transform2D(flatClipCoords, 0, 8, 2, transform, flatClipCoords);\n return flatClipCoords;\n };\n /**\n * @return {boolean} Is empty.\n */\n ExecutorGroup.prototype.isEmpty = function () {\n return isEmpty(this.executorsByZIndex_);\n };\n /**\n * @param {CanvasRenderingContext2D} context Context.\n * @param {number} contextScale Scale of the context.\n * @param {import(\"../../transform.js\").Transform} transform Transform.\n * @param {number} viewRotation View rotation.\n * @param {boolean} snapToPixel Snap point symbols and test to integer pixel.\n * @param {Array<import(\"./BuilderType.js\").default>} [opt_builderTypes] Ordered replay types to replay.\n * Default is {@link module:ol/render/replay~ORDER}\n * @param {import(\"rbush\").default} [opt_declutterTree] Declutter tree.\n */\n ExecutorGroup.prototype.execute = function (context, contextScale, transform, viewRotation, snapToPixel, opt_builderTypes, opt_declutterTree) {\n /** @type {Array<number>} */\n var zs = Object.keys(this.executorsByZIndex_).map(Number);\n zs.sort(numberSafeCompareFunction);\n // setup clipping so that the parts of over-simplified geometries are not\n // visible outside the current extent when panning\n if (this.maxExtent_) {\n context.save();\n this.clip(context, transform);\n }\n var builderTypes = opt_builderTypes ? opt_builderTypes : ORDER;\n var i, ii, j, jj, replays, replay;\n if (opt_declutterTree) {\n zs.reverse();\n }\n for (i = 0, ii = zs.length; i < ii; ++i) {\n var zIndexKey = zs[i].toString();\n replays = this.executorsByZIndex_[zIndexKey];\n for (j = 0, jj = builderTypes.length; j < jj; ++j) {\n var builderType = builderTypes[j];\n replay = replays[builderType];\n if (replay !== undefined) {\n replay.execute(context, contextScale, transform, viewRotation, snapToPixel, opt_declutterTree);\n }\n }\n }\n if (this.maxExtent_) {\n context.restore();\n }\n };\n return ExecutorGroup;\n}());\n/**\n * This cache is used to store arrays of indexes for calculated pixel circles\n * to increase performance.\n * It is a static property to allow each Replaygroup to access it.\n * @type {Object<number, Array<number>>}\n */\nvar circlePixelIndexArrayCache = {};\n/**\n * This methods creates an array with indexes of all pixels within a circle,\n * ordered by how close they are to the center.\n * A cache is used to increase performance.\n * @param {number} radius Radius.\n * @return {Array<number>} An array with indexes within a circle.\n */\nexport function getPixelIndexArray(radius) {\n if (circlePixelIndexArrayCache[radius] !== undefined) {\n return circlePixelIndexArrayCache[radius];\n }\n var size = radius * 2 + 1;\n var maxDistanceSq = radius * radius;\n var distances = new Array(maxDistanceSq + 1);\n for (var i = 0; i <= radius; ++i) {\n for (var j = 0; j <= radius; ++j) {\n var distanceSq = i * i + j * j;\n if (distanceSq > maxDistanceSq) {\n break;\n }\n var distance = distances[distanceSq];\n if (!distance) {\n distance = [];\n distances[distanceSq] = distance;\n }\n distance.push(((radius + i) * size + (radius + j)) * 4 + 3);\n if (i > 0) {\n distance.push(((radius - i) * size + (radius + j)) * 4 + 3);\n }\n if (j > 0) {\n distance.push(((radius + i) * size + (radius - j)) * 4 + 3);\n if (i > 0) {\n distance.push(((radius - i) * size + (radius - j)) * 4 + 3);\n }\n }\n }\n }\n var pixelIndex = [];\n for (var i = 0, ii = distances.length; i < ii; ++i) {\n if (distances[i]) {\n pixelIndex.push.apply(pixelIndex, distances[i]);\n }\n }\n circlePixelIndexArrayCache[radius] = pixelIndex;\n return pixelIndex;\n}\nexport default ExecutorGroup;\n//# sourceMappingURL=ExecutorGroup.js.map","/**\n * @module ol/render/canvas/Immediate\n */\n// FIXME test, especially polygons with holes and multipolygons\n// FIXME need to handle large thick features (where pixel size matters)\n// FIXME add offset and end to ol/geom/flat/transform~transform2D?\nvar __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\nimport GeometryType from '../../geom/GeometryType.js';\nimport VectorContext from '../VectorContext.js';\nimport { asColorLike } from '../../colorlike.js';\nimport { compose as composeTransform, create as createTransform, } from '../../transform.js';\nimport { defaultFillStyle, defaultFont, defaultLineCap, defaultLineDash, defaultLineDashOffset, defaultLineJoin, defaultLineWidth, defaultMiterLimit, defaultStrokeStyle, defaultTextAlign, defaultTextBaseline, } from '../canvas.js';\nimport { equals } from '../../array.js';\nimport { intersects } from '../../extent.js';\nimport { transform2D } from '../../geom/flat/transform.js';\nimport { transformGeom2D } from '../../geom/SimpleGeometry.js';\n/**\n * @classdesc\n * A concrete subclass of {@link module:ol/render/VectorContext~VectorContext VectorContext} that implements\n * direct rendering of features and geometries to an HTML5 Canvas context.\n * Instances of this class are created internally by the library and\n * provided to application code as vectorContext member of the\n * {@link module:ol/render/Event~RenderEvent RenderEvent} object associated with postcompose, precompose and\n * render events emitted by layers and maps.\n */\nvar CanvasImmediateRenderer = /** @class */ (function (_super) {\n __extends(CanvasImmediateRenderer, _super);\n /**\n * @param {CanvasRenderingContext2D} context Context.\n * @param {number} pixelRatio Pixel ratio.\n * @param {import(\"../../extent.js\").Extent} extent Extent.\n * @param {import(\"../../transform.js\").Transform} transform Transform.\n * @param {number} viewRotation View rotation.\n * @param {number} [opt_squaredTolerance] Optional squared tolerance for simplification.\n * @param {import(\"../../proj.js\").TransformFunction} [opt_userTransform] Transform from user to view projection.\n */\n function CanvasImmediateRenderer(context, pixelRatio, extent, transform, viewRotation, opt_squaredTolerance, opt_userTransform) {\n var _this = _super.call(this) || this;\n /**\n * @private\n * @type {CanvasRenderingContext2D}\n */\n _this.context_ = context;\n /**\n * @private\n * @type {number}\n */\n _this.pixelRatio_ = pixelRatio;\n /**\n * @private\n * @type {import(\"../../extent.js\").Extent}\n */\n _this.extent_ = extent;\n /**\n * @private\n * @type {import(\"../../transform.js\").Transform}\n */\n _this.transform_ = transform;\n /**\n * @private\n * @type {number}\n */\n _this.viewRotation_ = viewRotation;\n /**\n * @private\n * @type {number}\n */\n _this.squaredTolerance_ = opt_squaredTolerance;\n /**\n * @private\n * @type {import(\"../../proj.js\").TransformFunction}\n */\n _this.userTransform_ = opt_userTransform;\n /**\n * @private\n * @type {?import(\"../canvas.js\").FillState}\n */\n _this.contextFillState_ = null;\n /**\n * @private\n * @type {?import(\"../canvas.js\").StrokeState}\n */\n _this.contextStrokeState_ = null;\n /**\n * @private\n * @type {?import(\"../canvas.js\").TextState}\n */\n _this.contextTextState_ = null;\n /**\n * @private\n * @type {?import(\"../canvas.js\").FillState}\n */\n _this.fillState_ = null;\n /**\n * @private\n * @type {?import(\"../canvas.js\").StrokeState}\n */\n _this.strokeState_ = null;\n /**\n * @private\n * @type {HTMLCanvasElement|HTMLVideoElement|HTMLImageElement}\n */\n _this.image_ = null;\n /**\n * @private\n * @type {number}\n */\n _this.imageAnchorX_ = 0;\n /**\n * @private\n * @type {number}\n */\n _this.imageAnchorY_ = 0;\n /**\n * @private\n * @type {number}\n */\n _this.imageHeight_ = 0;\n /**\n * @private\n * @type {number}\n */\n _this.imageOpacity_ = 0;\n /**\n * @private\n * @type {number}\n */\n _this.imageOriginX_ = 0;\n /**\n * @private\n * @type {number}\n */\n _this.imageOriginY_ = 0;\n /**\n * @private\n * @type {boolean}\n */\n _this.imageRotateWithView_ = false;\n /**\n * @private\n * @type {number}\n */\n _this.imageRotation_ = 0;\n /**\n * @private\n * @type {import(\"../../size.js\").Size}\n */\n _this.imageScale_ = [0, 0];\n /**\n * @private\n * @type {number}\n */\n _this.imageWidth_ = 0;\n /**\n * @private\n * @type {string}\n */\n _this.text_ = '';\n /**\n * @private\n * @type {number}\n */\n _this.textOffsetX_ = 0;\n /**\n * @private\n * @type {number}\n */\n _this.textOffsetY_ = 0;\n /**\n * @private\n * @type {boolean}\n */\n _this.textRotateWithView_ = false;\n /**\n * @private\n * @type {number}\n */\n _this.textRotation_ = 0;\n /**\n * @private\n * @type {import(\"../../size.js\").Size}\n */\n _this.textScale_ = [0, 0];\n /**\n * @private\n * @type {?import(\"../canvas.js\").FillState}\n */\n _this.textFillState_ = null;\n /**\n * @private\n * @type {?import(\"../canvas.js\").StrokeState}\n */\n _this.textStrokeState_ = null;\n /**\n * @private\n * @type {?import(\"../canvas.js\").TextState}\n */\n _this.textState_ = null;\n /**\n * @private\n * @type {Array<number>}\n */\n _this.pixelCoordinates_ = [];\n /**\n * @private\n * @type {import(\"../../transform.js\").Transform}\n */\n _this.tmpLocalTransform_ = createTransform();\n return _this;\n }\n /**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {number} end End.\n * @param {number} stride Stride.\n * @private\n */\n CanvasImmediateRenderer.prototype.drawImages_ = function (flatCoordinates, offset, end, stride) {\n if (!this.image_) {\n return;\n }\n var pixelCoordinates = transform2D(flatCoordinates, offset, end, stride, this.transform_, this.pixelCoordinates_);\n var context = this.context_;\n var localTransform = this.tmpLocalTransform_;\n var alpha = context.globalAlpha;\n if (this.imageOpacity_ != 1) {\n context.globalAlpha = alpha * this.imageOpacity_;\n }\n var rotation = this.imageRotation_;\n if (this.imageRotateWithView_) {\n rotation += this.viewRotation_;\n }\n for (var i = 0, ii = pixelCoordinates.length; i < ii; i += 2) {\n var x = pixelCoordinates[i] - this.imageAnchorX_;\n var y = pixelCoordinates[i + 1] - this.imageAnchorY_;\n if (rotation !== 0 ||\n this.imageScale_[0] != 1 ||\n this.imageScale_[1] != 1) {\n var centerX = x + this.imageAnchorX_;\n var centerY = y + this.imageAnchorY_;\n composeTransform(localTransform, centerX, centerY, 1, 1, rotation, -centerX, -centerY);\n context.setTransform.apply(context, localTransform);\n context.translate(centerX, centerY);\n context.scale(this.imageScale_[0], this.imageScale_[1]);\n context.drawImage(this.image_, this.imageOriginX_, this.imageOriginY_, this.imageWidth_, this.imageHeight_, -this.imageAnchorX_, -this.imageAnchorY_, this.imageWidth_, this.imageHeight_);\n context.setTransform(1, 0, 0, 1, 0, 0);\n }\n else {\n context.drawImage(this.image_, this.imageOriginX_, this.imageOriginY_, this.imageWidth_, this.imageHeight_, x, y, this.imageWidth_, this.imageHeight_);\n }\n }\n if (this.imageOpacity_ != 1) {\n context.globalAlpha = alpha;\n }\n };\n /**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {number} end End.\n * @param {number} stride Stride.\n * @private\n */\n CanvasImmediateRenderer.prototype.drawText_ = function (flatCoordinates, offset, end, stride) {\n if (!this.textState_ || this.text_ === '') {\n return;\n }\n if (this.textFillState_) {\n this.setContextFillState_(this.textFillState_);\n }\n if (this.textStrokeState_) {\n this.setContextStrokeState_(this.textStrokeState_);\n }\n this.setContextTextState_(this.textState_);\n var pixelCoordinates = transform2D(flatCoordinates, offset, end, stride, this.transform_, this.pixelCoordinates_);\n var context = this.context_;\n var rotation = this.textRotation_;\n if (this.textRotateWithView_) {\n rotation += this.viewRotation_;\n }\n for (; offset < end; offset += stride) {\n var x = pixelCoordinates[offset] + this.textOffsetX_;\n var y = pixelCoordinates[offset + 1] + this.textOffsetY_;\n if (rotation !== 0 ||\n this.textScale_[0] != 1 ||\n this.textScale_[1] != 1) {\n var localTransform = composeTransform(this.tmpLocalTransform_, x, y, 1, 1, rotation, -x, -y);\n context.setTransform.apply(context, localTransform);\n context.translate(x, y);\n context.scale(this.textScale_[0], this.textScale_[1]);\n if (this.textStrokeState_) {\n context.strokeText(this.text_, 0, 0);\n }\n if (this.textFillState_) {\n context.fillText(this.text_, 0, 0);\n }\n context.setTransform(1, 0, 0, 1, 0, 0);\n }\n else {\n if (this.textStrokeState_) {\n context.strokeText(this.text_, x, y);\n }\n if (this.textFillState_) {\n context.fillText(this.text_, x, y);\n }\n }\n }\n };\n /**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {number} end End.\n * @param {number} stride Stride.\n * @param {boolean} close Close.\n * @private\n * @return {number} end End.\n */\n CanvasImmediateRenderer.prototype.moveToLineTo_ = function (flatCoordinates, offset, end, stride, close) {\n var context = this.context_;\n var pixelCoordinates = transform2D(flatCoordinates, offset, end, stride, this.transform_, this.pixelCoordinates_);\n context.moveTo(pixelCoordinates[0], pixelCoordinates[1]);\n var length = pixelCoordinates.length;\n if (close) {\n length -= 2;\n }\n for (var i = 2; i < length; i += 2) {\n context.lineTo(pixelCoordinates[i], pixelCoordinates[i + 1]);\n }\n if (close) {\n context.closePath();\n }\n return end;\n };\n /**\n * @param {Array<number>} flatCoordinates Flat coordinates.\n * @param {number} offset Offset.\n * @param {Array<number>} ends Ends.\n * @param {number} stride Stride.\n * @private\n * @return {number} End.\n */\n CanvasImmediateRenderer.prototype.drawRings_ = function (flatCoordinates, offset, ends, stride) {\n for (var i = 0, ii = ends.length; i < ii; ++i) {\n offset = this.moveToLineTo_(flatCoordinates, offset, ends[i], stride, true);\n }\n return offset;\n };\n /**\n * Render a circle geometry into the canvas. Rendering is immediate and uses\n * the current fill and stroke styles.\n *\n * @param {import(\"../../geom/Circle.js\").default} geometry Circle geometry.\n * @api\n */\n CanvasImmediateRenderer.prototype.drawCircle = function (geometry) {\n if (!intersects(this.extent_, geometry.getExtent())) {\n return;\n }\n if (this.fillState_ || this.strokeState_) {\n if (this.fillState_) {\n this.setContextFillState_(this.fillState_);\n }\n if (this.strokeState_) {\n this.setContextStrokeState_(this.strokeState_);\n }\n var pixelCoordinates = transformGeom2D(geometry, this.transform_, this.pixelCoordinates_);\n var dx = pixelCoordinates[2] - pixelCoordinates[0];\n var dy = pixelCoordinates[3] - pixelCoordinates[1];\n var radius = Math.sqrt(dx * dx + dy * dy);\n var context = this.context_;\n context.beginPath();\n context.arc(pixelCoordinates[0], pixelCoordinates[1], radius, 0, 2 * Math.PI);\n if (this.fillState_) {\n context.fill();\n }\n if (this.strokeState_) {\n context.stroke();\n }\n }\n if (this.text_ !== '') {\n this.drawText_(geometry.getCenter(), 0, 2, 2);\n }\n };\n /**\n * Set the rendering style. Note that since this is an immediate rendering API,\n * any `zIndex` on the provided style will be ignored.\n *\n * @param {import(\"../../style/Style.js\").default} style The rendering style.\n * @api\n */\n CanvasImmediateRenderer.prototype.setStyle = function (style) {\n this.setFillStrokeStyle(style.getFill(), style.getStroke());\n this.setImageStyle(style.getImage());\n this.setTextStyle(style.getText());\n };\n /**\n * @param {import(\"../../transform.js\").Transform} transform Transform.\n */\n CanvasImmediateRenderer.prototype.setTransform = function (transform) {\n this.transform_ = transform;\n };\n /**\n * Render a geometry into the canvas. Call\n * {@link module:ol/render/canvas/Immediate~CanvasImmediateRenderer#setStyle renderer.setStyle()} first to set the rendering style.\n *\n * @param {import(\"../../geom/Geometry.js\").default|import(\"../Feature.js\").default} geometry The geometry to render.\n * @api\n */\n CanvasImmediateRenderer.prototype.drawGeometry = function (geometry) {\n var type = geometry.getType();\n switch (type) {\n case GeometryType.POINT:\n this.drawPoint(\n /** @type {import(\"../../geom/Point.js\").default} */ (geometry));\n break;\n case GeometryType.LINE_STRING:\n this.drawLineString(\n /** @type {import(\"../../geom/LineString.js\").default} */ (geometry));\n break;\n case GeometryType.POLYGON:\n this.drawPolygon(\n /** @type {import(\"../../geom/Polygon.js\").default} */ (geometry));\n break;\n case GeometryType.MULTI_POINT:\n this.drawMultiPoint(\n /** @type {import(\"../../geom/MultiPoint.js\").default} */ (geometry));\n break;\n case GeometryType.MULTI_LINE_STRING:\n this.drawMultiLineString(\n /** @type {import(\"../../geom/MultiLineString.js\").default} */ (geometry));\n break;\n case GeometryType.MULTI_POLYGON:\n this.drawMultiPolygon(\n /** @type {import(\"../../geom/MultiPolygon.js\").default} */ (geometry));\n break;\n case GeometryType.GEOMETRY_COLLECTION:\n this.drawGeometryCollection(\n /** @type {import(\"../../geom/GeometryCollection.js\").default} */ (geometry));\n break;\n case GeometryType.CIRCLE:\n this.drawCircle(\n /** @type {import(\"../../geom/Circle.js\").default} */ (geometry));\n break;\n default:\n }\n };\n /**\n * Render a feature into the canvas. Note that any `zIndex` on the provided\n * style will be ignored - features are rendered immediately in the order that\n * this method is called. If you need `zIndex` support, you should be using an\n * {@link module:ol/layer/Vector~VectorLayer VectorLayer} instead.\n *\n * @param {import(\"../../Feature.js\").default} feature Feature.\n * @param {import(\"../../style/Style.js\").default} style Style.\n * @api\n */\n CanvasImmediateRenderer.prototype.drawFeature = function (feature, style) {\n var geometry = style.getGeometryFunction()(feature);\n if (!geometry || !intersects(this.extent_, geometry.getExtent())) {\n return;\n }\n this.setStyle(style);\n this.drawGeometry(geometry);\n };\n /**\n * Render a GeometryCollection to the canvas. Rendering is immediate and\n * uses the current styles appropriate for each geometry in the collection.\n *\n * @param {import(\"../../geom/GeometryCollection.js\").default} geometry Geometry collection.\n */\n CanvasImmediateRenderer.prototype.drawGeometryCollection = function (geometry) {\n var geometries = geometry.getGeometriesArray();\n for (var i = 0, ii = geometries.length; i < ii; ++i) {\n this.drawGeometry(geometries[i]);\n }\n };\n /**\n * Render a Point geometry into the canvas. Rendering is immediate and uses\n * the current style.\n *\n * @param {import(\"../../geom/Point.js\").default|import(\"../Feature.js\").default} geometry Point geometry.\n */\n CanvasImmediateRenderer.prototype.drawPoint = function (geometry) {\n if (this.squaredTolerance_) {\n geometry = /** @type {import(\"../../geom/Point.js\").default} */ (geometry.simplifyTransformed(this.squaredTolerance_, this.userTransform_));\n }\n var flatCoordinates = geometry.getFlatCoordinates();\n var stride = geometry.getStride();\n if (this.image_) {\n this.drawImages_(flatCoordinates, 0, flatCoordinates.length, stride);\n }\n if (this.text_ !== '') {\n this.drawText_(flatCoordinates, 0, flatCoordinates.length, stride);\n }\n };\n /**\n * Render a MultiPoint geometry into the canvas. Rendering is immediate and\n * uses the current style.\n *\n * @param {import(\"../../geom/MultiPoint.js\").default|import(\"../Feature.js\").default} geometry MultiPoint geometry.\n */\n CanvasImmediateRenderer.prototype.drawMultiPoint = function (geometry) {\n if (this.squaredTolerance_) {\n geometry = /** @type {import(\"../../geom/MultiPoint.js\").default} */ (geometry.simplifyTransformed(this.squaredTolerance_, this.userTransform_));\n }\n var flatCoordinates = geometry.getFlatCoordinates();\n var stride = geometry.getStride();\n if (this.image_) {\n this.drawImages_(flatCoordinates, 0, flatCoordinates.length, stride);\n }\n if (this.text_ !== '') {\n this.drawText_(flatCoordinates, 0, flatCoordinates.length, stride);\n }\n };\n /**\n * Render a LineString into the canvas. Rendering is immediate and uses\n * the current style.\n *\n * @param {import(\"../../geom/LineString.js\").default|import(\"../Feature.js\").default} geometry LineString geometry.\n */\n CanvasImmediateRenderer.prototype.drawLineString = function (geometry) {\n if (this.squaredTolerance_) {\n geometry = /** @type {import(\"../../geom/LineString.js\").default} */ (geometry.simplifyTransformed(this.squaredTolerance_, this.userTransform_));\n }\n if (!intersects(this.extent_, geometry.getExtent())) {\n return;\n }\n if (this.strokeState_) {\n this.setContextStrokeState_(this.strokeState_);\n var context = this.context_;\n var flatCoordinates = geometry.getFlatCoordinates();\n context.beginPath();\n this.moveToLineTo_(flatCoordinates, 0, flatCoordinates.length, geometry.getStride(), false);\n context.stroke();\n }\n if (this.text_ !== '') {\n var flatMidpoint = geometry.getFlatMidpoint();\n this.drawText_(flatMidpoint, 0, 2, 2);\n }\n };\n /**\n * Render a MultiLineString geometry into the canvas. Rendering is immediate\n * and uses the current style.\n *\n * @param {import(\"../../geom/MultiLineString.js\").default|import(\"../Feature.js\").default} geometry MultiLineString geometry.\n */\n CanvasImmediateRenderer.prototype.drawMultiLineString = function (geometry) {\n if (this.squaredTolerance_) {\n geometry =\n /** @type {import(\"../../geom/MultiLineString.js\").default} */ (geometry.simplifyTransformed(this.squaredTolerance_, this.userTransform_));\n }\n var geometryExtent = geometry.getExtent();\n if (!intersects(this.extent_, geometryExtent)) {\n return;\n }\n if (this.strokeState_) {\n this.setContextStrokeState_(this.strokeState_);\n var context = this.context_;\n var flatCoordinates = geometry.getFlatCoordinates();\n var offset = 0;\n var ends = /** @type {Array<number>} */ (geometry.getEnds());\n var stride = geometry.getStride();\n context.beginPath();\n for (var i = 0, ii = ends.length; i < ii; ++i) {\n offset = this.moveToLineTo_(flatCoordinates, offset, ends[i], stride, false);\n }\n context.stroke();\n }\n if (this.text_ !== '') {\n var flatMidpoints = geometry.getFlatMidpoints();\n this.drawText_(flatMidpoints, 0, flatMidpoints.length, 2);\n }\n };\n /**\n * Render a Polygon geometry into the canvas. Rendering is immediate and uses\n * the current style.\n *\n * @param {import(\"../../geom/Polygon.js\").default|import(\"../Feature.js\").default} geometry Polygon geometry.\n */\n CanvasImmediateRenderer.prototype.drawPolygon = function (geometry) {\n if (this.squaredTolerance_) {\n geometry = /** @type {import(\"../../geom/Polygon.js\").default} */ (geometry.simplifyTransformed(this.squaredTolerance_, this.userTransform_));\n }\n if (!intersects(this.extent_, geometry.getExtent())) {\n return;\n }\n if (this.strokeState_ || this.fillState_) {\n if (this.fillState_) {\n this.setContextFillState_(this.fillState_);\n }\n if (this.strokeState_) {\n this.setContextStrokeState_(this.strokeState_);\n }\n var context = this.context_;\n context.beginPath();\n this.drawRings_(geometry.getOrientedFlatCoordinates(), 0, \n /** @type {Array<number>} */ (geometry.getEnds()), geometry.getStride());\n if (this.fillState_) {\n context.fill();\n }\n if (this.strokeState_) {\n context.stroke();\n }\n }\n if (this.text_ !== '') {\n var flatInteriorPoint = geometry.getFlatInteriorPoint();\n this.drawText_(flatInteriorPoint, 0, 2, 2);\n }\n };\n /**\n * Render MultiPolygon geometry into the canvas. Rendering is immediate and\n * uses the current style.\n * @param {import(\"../../geom/MultiPolygon.js\").default} geometry MultiPolygon geometry.\n */\n CanvasImmediateRenderer.prototype.drawMultiPolygon = function (geometry) {\n if (this.squaredTolerance_) {\n geometry = /** @type {import(\"../../geom/MultiPolygon.js\").default} */ (geometry.simplifyTransformed(this.squaredTolerance_, this.userTransform_));\n }\n if (!intersects(this.extent_, geometry.getExtent())) {\n return;\n }\n if (this.strokeState_ || this.fillState_) {\n if (this.fillState_) {\n this.setContextFillState_(this.fillState_);\n }\n if (this.strokeState_) {\n this.setContextStrokeState_(this.strokeState_);\n }\n var context = this.context_;\n var flatCoordinates = geometry.getOrientedFlatCoordinates();\n var offset = 0;\n var endss = geometry.getEndss();\n var stride = geometry.getStride();\n context.beginPath();\n for (var i = 0, ii = endss.length; i < ii; ++i) {\n var ends = endss[i];\n offset = this.drawRings_(flatCoordinates, offset, ends, stride);\n }\n if (this.fillState_) {\n context.fill();\n }\n if (this.strokeState_) {\n context.stroke();\n }\n }\n if (this.text_ !== '') {\n var flatInteriorPoints = geometry.getFlatInteriorPoints();\n this.drawText_(flatInteriorPoints, 0, flatInteriorPoints.length, 2);\n }\n };\n /**\n * @param {import(\"../canvas.js\").FillState} fillState Fill state.\n * @private\n */\n CanvasImmediateRenderer.prototype.setContextFillState_ = function (fillState) {\n var context = this.context_;\n var contextFillState = this.contextFillState_;\n if (!contextFillState) {\n context.fillStyle = fillState.fillStyle;\n this.contextFillState_ = {\n fillStyle: fillState.fillStyle,\n };\n }\n else {\n if (contextFillState.fillStyle != fillState.fillStyle) {\n contextFillState.fillStyle = fillState.fillStyle;\n context.fillStyle = fillState.fillStyle;\n }\n }\n };\n /**\n * @param {import(\"../canvas.js\").StrokeState} strokeState Stroke state.\n * @private\n */\n CanvasImmediateRenderer.prototype.setContextStrokeState_ = function (strokeState) {\n var context = this.context_;\n var contextStrokeState = this.contextStrokeState_;\n if (!contextStrokeState) {\n context.lineCap = strokeState.lineCap;\n if (context.setLineDash) {\n context.setLineDash(strokeState.lineDash);\n context.lineDashOffset = strokeState.lineDashOffset;\n }\n context.lineJoin = strokeState.lineJoin;\n context.lineWidth = strokeState.lineWidth;\n context.miterLimit = strokeState.miterLimit;\n context.strokeStyle = strokeState.strokeStyle;\n this.contextStrokeState_ = {\n lineCap: strokeState.lineCap,\n lineDash: strokeState.lineDash,\n lineDashOffset: strokeState.lineDashOffset,\n lineJoin: strokeState.lineJoin,\n lineWidth: strokeState.lineWidth,\n miterLimit: strokeState.miterLimit,\n strokeStyle: strokeState.strokeStyle,\n };\n }\n else {\n if (contextStrokeState.lineCap != strokeState.lineCap) {\n contextStrokeState.lineCap = strokeState.lineCap;\n context.lineCap = strokeState.lineCap;\n }\n if (context.setLineDash) {\n if (!equals(contextStrokeState.lineDash, strokeState.lineDash)) {\n context.setLineDash((contextStrokeState.lineDash = strokeState.lineDash));\n }\n if (contextStrokeState.lineDashOffset != strokeState.lineDashOffset) {\n contextStrokeState.lineDashOffset = strokeState.lineDashOffset;\n context.lineDashOffset = strokeState.lineDashOffset;\n }\n }\n if (contextStrokeState.lineJoin != strokeState.lineJoin) {\n contextStrokeState.lineJoin = strokeState.lineJoin;\n context.lineJoin = strokeState.lineJoin;\n }\n if (contextStrokeState.lineWidth != strokeState.lineWidth) {\n contextStrokeState.lineWidth = strokeState.lineWidth;\n context.lineWidth = strokeState.lineWidth;\n }\n if (contextStrokeState.miterLimit != strokeState.miterLimit) {\n contextStrokeState.miterLimit = strokeState.miterLimit;\n context.miterLimit = strokeState.miterLimit;\n }\n if (contextStrokeState.strokeStyle != strokeState.strokeStyle) {\n contextStrokeState.strokeStyle = strokeState.strokeStyle;\n context.strokeStyle = strokeState.strokeStyle;\n }\n }\n };\n /**\n * @param {import(\"../canvas.js\").TextState} textState Text state.\n * @private\n */\n CanvasImmediateRenderer.prototype.setContextTextState_ = function (textState) {\n var context = this.context_;\n var contextTextState = this.contextTextState_;\n var textAlign = textState.textAlign\n ? textState.textAlign\n : defaultTextAlign;\n if (!contextTextState) {\n context.font = textState.font;\n context.textAlign = /** @type {CanvasTextAlign} */ (textAlign);\n context.textBaseline = /** @type {CanvasTextBaseline} */ (textState.textBaseline);\n this.contextTextState_ = {\n font: textState.font,\n textAlign: textAlign,\n textBaseline: textState.textBaseline,\n };\n }\n else {\n if (contextTextState.font != textState.font) {\n contextTextState.font = textState.font;\n context.font = textState.font;\n }\n if (contextTextState.textAlign != textAlign) {\n contextTextState.textAlign = /** @type {CanvasTextAlign} */ (textAlign);\n context.textAlign = /** @type {CanvasTextAlign} */ (textAlign);\n }\n if (contextTextState.textBaseline != textState.textBaseline) {\n contextTextState.textBaseline = /** @type {CanvasTextBaseline} */ (textState.textBaseline);\n context.textBaseline = /** @type {CanvasTextBaseline} */ (textState.textBaseline);\n }\n }\n };\n /**\n * Set the fill and stroke style for subsequent draw operations. To clear\n * either fill or stroke styles, pass null for the appropriate parameter.\n *\n * @param {import(\"../../style/Fill.js\").default} fillStyle Fill style.\n * @param {import(\"../../style/Stroke.js\").default} strokeStyle Stroke style.\n */\n CanvasImmediateRenderer.prototype.setFillStrokeStyle = function (fillStyle, strokeStyle) {\n var _this = this;\n if (!fillStyle) {\n this.fillState_ = null;\n }\n else {\n var fillStyleColor = fillStyle.getColor();\n this.fillState_ = {\n fillStyle: asColorLike(fillStyleColor ? fillStyleColor : defaultFillStyle),\n };\n }\n if (!strokeStyle) {\n this.strokeState_ = null;\n }\n else {\n var strokeStyleColor = strokeStyle.getColor();\n var strokeStyleLineCap = strokeStyle.getLineCap();\n var strokeStyleLineDash = strokeStyle.getLineDash();\n var strokeStyleLineDashOffset = strokeStyle.getLineDashOffset();\n var strokeStyleLineJoin = strokeStyle.getLineJoin();\n var strokeStyleWidth = strokeStyle.getWidth();\n var strokeStyleMiterLimit = strokeStyle.getMiterLimit();\n var lineDash = strokeStyleLineDash\n ? strokeStyleLineDash\n : defaultLineDash;\n this.strokeState_ = {\n lineCap: strokeStyleLineCap !== undefined\n ? strokeStyleLineCap\n : defaultLineCap,\n lineDash: this.pixelRatio_ === 1\n ? lineDash\n : lineDash.map(function (n) { return n * _this.pixelRatio_; }),\n lineDashOffset: (strokeStyleLineDashOffset\n ? strokeStyleLineDashOffset\n : defaultLineDashOffset) * this.pixelRatio_,\n lineJoin: strokeStyleLineJoin !== undefined\n ? strokeStyleLineJoin\n : defaultLineJoin,\n lineWidth: (strokeStyleWidth !== undefined\n ? strokeStyleWidth\n : defaultLineWidth) * this.pixelRatio_,\n miterLimit: strokeStyleMiterLimit !== undefined\n ? strokeStyleMiterLimit\n : defaultMiterLimit,\n strokeStyle: asColorLike(strokeStyleColor ? strokeStyleColor : defaultStrokeStyle),\n };\n }\n };\n /**\n * Set the image style for subsequent draw operations. Pass null to remove\n * the image style.\n *\n * @param {import(\"../../style/Image.js\").default} imageStyle Image style.\n */\n CanvasImmediateRenderer.prototype.setImageStyle = function (imageStyle) {\n var imageSize;\n if (!imageStyle || !(imageSize = imageStyle.getSize())) {\n this.image_ = null;\n return;\n }\n var imageAnchor = imageStyle.getAnchor();\n var imageOrigin = imageStyle.getOrigin();\n this.image_ = imageStyle.getImage(this.pixelRatio_);\n this.imageAnchorX_ = imageAnchor[0] * this.pixelRatio_;\n this.imageAnchorY_ = imageAnchor[1] * this.pixelRatio_;\n this.imageHeight_ = imageSize[1] * this.pixelRatio_;\n this.imageOpacity_ = imageStyle.getOpacity();\n this.imageOriginX_ = imageOrigin[0];\n this.imageOriginY_ = imageOrigin[1];\n this.imageRotateWithView_ = imageStyle.getRotateWithView();\n this.imageRotation_ = imageStyle.getRotation();\n this.imageScale_ = imageStyle.getScaleArray();\n this.imageWidth_ = imageSize[0] * this.pixelRatio_;\n };\n /**\n * Set the text style for subsequent draw operations. Pass null to\n * remove the text style.\n *\n * @param {import(\"../../style/Text.js\").default} textStyle Text style.\n */\n CanvasImmediateRenderer.prototype.setTextStyle = function (textStyle) {\n if (!textStyle) {\n this.text_ = '';\n }\n else {\n var textFillStyle = textStyle.getFill();\n if (!textFillStyle) {\n this.textFillState_ = null;\n }\n else {\n var textFillStyleColor = textFillStyle.getColor();\n this.textFillState_ = {\n fillStyle: asColorLike(textFillStyleColor ? textFillStyleColor : defaultFillStyle),\n };\n }\n var textStrokeStyle = textStyle.getStroke();\n if (!textStrokeStyle) {\n this.textStrokeState_ = null;\n }\n else {\n var textStrokeStyleColor = textStrokeStyle.getColor();\n var textStrokeStyleLineCap = textStrokeStyle.getLineCap();\n var textStrokeStyleLineDash = textStrokeStyle.getLineDash();\n var textStrokeStyleLineDashOffset = textStrokeStyle.getLineDashOffset();\n var textStrokeStyleLineJoin = textStrokeStyle.getLineJoin();\n var textStrokeStyleWidth = textStrokeStyle.getWidth();\n var textStrokeStyleMiterLimit = textStrokeStyle.getMiterLimit();\n this.textStrokeState_ = {\n lineCap: textStrokeStyleLineCap !== undefined\n ? textStrokeStyleLineCap\n : defaultLineCap,\n lineDash: textStrokeStyleLineDash\n ? textStrokeStyleLineDash\n : defaultLineDash,\n lineDashOffset: textStrokeStyleLineDashOffset\n ? textStrokeStyleLineDashOffset\n : defaultLineDashOffset,\n lineJoin: textStrokeStyleLineJoin !== undefined\n ? textStrokeStyleLineJoin\n : defaultLineJoin,\n lineWidth: textStrokeStyleWidth !== undefined\n ? textStrokeStyleWidth\n : defaultLineWidth,\n miterLimit: textStrokeStyleMiterLimit !== undefined\n ? textStrokeStyleMiterLimit\n : defaultMiterLimit,\n strokeStyle: asColorLike(textStrokeStyleColor ? textStrokeStyleColor : defaultStrokeStyle),\n };\n }\n var textFont = textStyle.getFont();\n var textOffsetX = textStyle.getOffsetX();\n var textOffsetY = textStyle.getOffsetY();\n var textRotateWithView = textStyle.getRotateWithView();\n var textRotation = textStyle.getRotation();\n var textScale = textStyle.getScaleArray();\n var textText = textStyle.getText();\n var textTextAlign = textStyle.getTextAlign();\n var textTextBaseline = textStyle.getTextBaseline();\n this.textState_ = {\n font: textFont !== undefined ? textFont : defaultFont,\n textAlign: textTextAlign !== undefined ? textTextAlign : defaultTextAlign,\n textBaseline: textTextBaseline !== undefined\n ? textTextBaseline\n : defaultTextBaseline,\n };\n this.text_ =\n textText !== undefined\n ? Array.isArray(textText)\n ? textText.reduce(function (acc, t, i) { return (acc += i % 2 ? ' ' : t); }, '')\n : textText\n : '';\n this.textOffsetX_ =\n textOffsetX !== undefined ? this.pixelRatio_ * textOffsetX : 0;\n this.textOffsetY_ =\n textOffsetY !== undefined ? this.pixelRatio_ * textOffsetY : 0;\n this.textRotateWithView_ =\n textRotateWithView !== undefined ? textRotateWithView : false;\n this.textRotation_ = textRotation !== undefined ? textRotation : 0;\n this.textScale_ = [\n this.pixelRatio_ * textScale[0],\n this.pixelRatio_ * textScale[1],\n ];\n }\n };\n return CanvasImmediateRenderer;\n}(VectorContext));\nexport default CanvasImmediateRenderer;\n//# sourceMappingURL=Immediate.js.map","/**\n * @module ol/style/IconAnchorUnits\n */\n/**\n * Icon anchor units. One of 'fraction', 'pixels'.\n * @enum {string}\n */\nexport default {\n /**\n * Anchor is a fraction\n * @api\n */\n FRACTION: 'fraction',\n /**\n * Anchor is in pixels\n * @api\n */\n PIXELS: 'pixels',\n};\n//# sourceMappingURL=IconAnchorUnits.js.map","/**\n * @module ol/style/IconOrigin\n */\n/**\n * Icon origin. One of 'bottom-left', 'bottom-right', 'top-left', 'top-right'.\n * @enum {string}\n */\nexport default {\n /**\n * Origin is at bottom left\n * @api\n */\n BOTTOM_LEFT: 'bottom-left',\n /**\n * Origin is at bottom right\n * @api\n */\n BOTTOM_RIGHT: 'bottom-right',\n /**\n * Origin is at top left\n * @api\n */\n TOP_LEFT: 'top-left',\n /**\n * Origin is at top right\n * @api\n */\n TOP_RIGHT: 'top-right',\n};\n//# sourceMappingURL=IconOrigin.js.map","/**\n * @module ol/style/IconImageCache\n */\nimport { asString } from '../color.js';\n/**\n * @classdesc\n * Singleton class. Available through {@link module:ol/style/IconImageCache.shared}.\n */\nvar IconImageCache = /** @class */ (function () {\n function IconImageCache() {\n /**\n * @type {!Object<string, import(\"./IconImage.js\").default>}\n * @private\n */\n this.cache_ = {};\n /**\n * @type {number}\n * @private\n */\n this.cacheSize_ = 0;\n /**\n * @type {number}\n * @private\n */\n this.maxCacheSize_ = 32;\n }\n /**\n * FIXME empty description for jsdoc\n */\n IconImageCache.prototype.clear = function () {\n this.cache_ = {};\n this.cacheSize_ = 0;\n };\n /**\n * @return {boolean} Can expire cache.\n */\n IconImageCache.prototype.canExpireCache = function () {\n return this.cacheSize_ > this.maxCacheSize_;\n };\n /**\n * FIXME empty description for jsdoc\n */\n IconImageCache.prototype.expire = function () {\n if (this.canExpireCache()) {\n var i = 0;\n for (var key in this.cache_) {\n var iconImage = this.cache_[key];\n if ((i++ & 3) === 0 && !iconImage.hasListener()) {\n delete this.cache_[key];\n --this.cacheSize_;\n }\n }\n }\n };\n /**\n * @param {string} src Src.\n * @param {?string} crossOrigin Cross origin.\n * @param {import(\"../color.js\").Color} color Color.\n * @return {import(\"./IconImage.js\").default} Icon image.\n */\n IconImageCache.prototype.get = function (src, crossOrigin, color) {\n var key = getKey(src, crossOrigin, color);\n return key in this.cache_ ? this.cache_[key] : null;\n };\n /**\n * @param {string} src Src.\n * @param {?string} crossOrigin Cross origin.\n * @param {import(\"../color.js\").Color} color Color.\n * @param {import(\"./IconImage.js\").default} iconImage Icon image.\n */\n IconImageCache.prototype.set = function (src, crossOrigin, color, iconImage) {\n var key = getKey(src, crossOrigin, color);\n this.cache_[key] = iconImage;\n ++this.cacheSize_;\n };\n /**\n * Set the cache size of the icon cache. Default is `32`. Change this value when\n * your map uses more than 32 different icon images and you are not caching icon\n * styles on the application level.\n * @param {number} maxCacheSize Cache max size.\n * @api\n */\n IconImageCache.prototype.setSize = function (maxCacheSize) {\n this.maxCacheSize_ = maxCacheSize;\n this.expire();\n };\n return IconImageCache;\n}());\n/**\n * @param {string} src Src.\n * @param {?string} crossOrigin Cross origin.\n * @param {import(\"../color.js\").Color} color Color.\n * @return {string} Cache key.\n */\nfunction getKey(src, crossOrigin, color) {\n var colorString = color ? asString(color) : 'null';\n return crossOrigin + ':' + src + ':' + colorString;\n}\nexport default IconImageCache;\n/**\n * The {@link module:ol/style/IconImageCache~IconImageCache} for\n * {@link module:ol/style/Icon~Icon} images.\n * @api\n */\nexport var shared = new IconImageCache();\n//# sourceMappingURL=IconImageCache.js.map","/**\n * @module ol/style/IconImage\n */\nvar __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\nimport EventTarget from '../events/Target.js';\nimport EventType from '../events/EventType.js';\nimport ImageState from '../ImageState.js';\nimport { asString } from '../color.js';\nimport { createCanvasContext2D } from '../dom.js';\nimport { shared as iconImageCache } from './IconImageCache.js';\nimport { listenImage } from '../Image.js';\n/**\n * @type {CanvasRenderingContext2D}\n */\nvar taintedTestContext = null;\nvar IconImage = /** @class */ (function (_super) {\n __extends(IconImage, _super);\n /**\n * @param {HTMLImageElement|HTMLCanvasElement} image Image.\n * @param {string|undefined} src Src.\n * @param {import(\"../size.js\").Size} size Size.\n * @param {?string} crossOrigin Cross origin.\n * @param {import(\"../ImageState.js\").default} imageState Image state.\n * @param {import(\"../color.js\").Color} color Color.\n */\n function IconImage(image, src, size, crossOrigin, imageState, color) {\n var _this = _super.call(this) || this;\n /**\n * @private\n * @type {HTMLImageElement|HTMLCanvasElement}\n */\n _this.hitDetectionImage_ = null;\n /**\n * @private\n * @type {HTMLImageElement|HTMLCanvasElement}\n */\n _this.image_ = !image ? new Image() : image;\n if (crossOrigin !== null) {\n /** @type {HTMLImageElement} */ (_this.image_).crossOrigin = crossOrigin;\n }\n /**\n * @private\n * @type {Object<number, HTMLCanvasElement>}\n */\n _this.canvas_ = {};\n /**\n * @private\n * @type {import(\"../color.js\").Color}\n */\n _this.color_ = color;\n /**\n * @private\n * @type {?function():void}\n */\n _this.unlisten_ = null;\n /**\n * @private\n * @type {import(\"../ImageState.js\").default}\n */\n _this.imageState_ = imageState;\n /**\n * @private\n * @type {import(\"../size.js\").Size}\n */\n _this.size_ = size;\n /**\n * @private\n * @type {string|undefined}\n */\n _this.src_ = src;\n /**\n * @private\n */\n _this.tainted_;\n return _this;\n }\n /**\n * @private\n * @return {boolean} The image canvas is tainted.\n */\n IconImage.prototype.isTainted_ = function () {\n if (this.tainted_ === undefined && this.imageState_ === ImageState.LOADED) {\n if (!taintedTestContext) {\n taintedTestContext = createCanvasContext2D(1, 1);\n }\n taintedTestContext.drawImage(this.image_, 0, 0);\n try {\n taintedTestContext.getImageData(0, 0, 1, 1);\n this.tainted_ = false;\n }\n catch (e) {\n taintedTestContext = null;\n this.tainted_ = true;\n }\n }\n return this.tainted_ === true;\n };\n /**\n * @private\n */\n IconImage.prototype.dispatchChangeEvent_ = function () {\n this.dispatchEvent(EventType.CHANGE);\n };\n /**\n * @private\n */\n IconImage.prototype.handleImageError_ = function () {\n this.imageState_ = ImageState.ERROR;\n this.unlistenImage_();\n this.dispatchChangeEvent_();\n };\n /**\n * @private\n */\n IconImage.prototype.handleImageLoad_ = function () {\n this.imageState_ = ImageState.LOADED;\n if (this.size_) {\n this.image_.width = this.size_[0];\n this.image_.height = this.size_[1];\n }\n else {\n this.size_ = [this.image_.width, this.image_.height];\n }\n this.unlistenImage_();\n this.dispatchChangeEvent_();\n };\n /**\n * @param {number} pixelRatio Pixel ratio.\n * @return {HTMLImageElement|HTMLCanvasElement} Image or Canvas element.\n */\n IconImage.prototype.getImage = function (pixelRatio) {\n this.replaceColor_(pixelRatio);\n return this.canvas_[pixelRatio] ? this.canvas_[pixelRatio] : this.image_;\n };\n /**\n * @param {number} pixelRatio Pixel ratio.\n * @return {number} Image or Canvas element.\n */\n IconImage.prototype.getPixelRatio = function (pixelRatio) {\n this.replaceColor_(pixelRatio);\n return this.canvas_[pixelRatio] ? pixelRatio : 1;\n };\n /**\n * @return {import(\"../ImageState.js\").default} Image state.\n */\n IconImage.prototype.getImageState = function () {\n return this.imageState_;\n };\n /**\n * @return {HTMLImageElement|HTMLCanvasElement} Image element.\n */\n IconImage.prototype.getHitDetectionImage = function () {\n if (!this.hitDetectionImage_) {\n if (this.isTainted_()) {\n var width = this.size_[0];\n var height = this.size_[1];\n var context = createCanvasContext2D(width, height);\n context.fillRect(0, 0, width, height);\n this.hitDetectionImage_ = context.canvas;\n }\n else {\n this.hitDetectionImage_ = this.image_;\n }\n }\n return this.hitDetectionImage_;\n };\n /**\n * Get the size of the icon (in pixels).\n * @return {import(\"../size.js\").Size} Image size.\n */\n IconImage.prototype.getSize = function () {\n return this.size_;\n };\n /**\n * @return {string|undefined} Image src.\n */\n IconImage.prototype.getSrc = function () {\n return this.src_;\n };\n /**\n * Load not yet loaded URI.\n */\n IconImage.prototype.load = function () {\n if (this.imageState_ == ImageState.IDLE) {\n this.imageState_ = ImageState.LOADING;\n try {\n /** @type {HTMLImageElement} */ (this.image_).src = this.src_;\n }\n catch (e) {\n this.handleImageError_();\n }\n this.unlisten_ = listenImage(this.image_, this.handleImageLoad_.bind(this), this.handleImageError_.bind(this));\n }\n };\n /**\n * @param {number} pixelRatio Pixel ratio.\n * @private\n */\n IconImage.prototype.replaceColor_ = function (pixelRatio) {\n if (!this.color_ ||\n this.canvas_[pixelRatio] ||\n this.imageState_ !== ImageState.LOADED) {\n return;\n }\n var canvas = document.createElement('canvas');\n this.canvas_[pixelRatio] = canvas;\n canvas.width = Math.ceil(this.image_.width * pixelRatio);\n canvas.height = Math.ceil(this.image_.height * pixelRatio);\n var ctx = canvas.getContext('2d');\n ctx.scale(pixelRatio, pixelRatio);\n ctx.drawImage(this.image_, 0, 0);\n ctx.globalCompositeOperation = 'multiply';\n // Internet Explorer 11 does not support the multiply operation.\n // If the canvas is tainted in Internet Explorer this still produces\n // a solid color image with the shape of the icon.\n if (ctx.globalCompositeOperation === 'multiply' || this.isTainted_()) {\n ctx.fillStyle = asString(this.color_);\n ctx.fillRect(0, 0, canvas.width / pixelRatio, canvas.height / pixelRatio);\n ctx.globalCompositeOperation = 'destination-in';\n ctx.drawImage(this.image_, 0, 0);\n }\n else {\n var imgData = ctx.getImageData(0, 0, canvas.width, canvas.height);\n var data = imgData.data;\n var r = this.color_[0] / 255.0;\n var g = this.color_[1] / 255.0;\n var b = this.color_[2] / 255.0;\n var a = this.color_[3];\n for (var i = 0, ii = data.length; i < ii; i += 4) {\n data[i] *= r;\n data[i + 1] *= g;\n data[i + 2] *= b;\n data[i + 3] *= a;\n }\n ctx.putImageData(imgData, 0, 0);\n }\n };\n /**\n * Discards event handlers which listen for load completion or errors.\n *\n * @private\n */\n IconImage.prototype.unlistenImage_ = function () {\n if (this.unlisten_) {\n this.unlisten_();\n this.unlisten_ = null;\n }\n };\n return IconImage;\n}(EventTarget));\n/**\n * @param {HTMLImageElement|HTMLCanvasElement} image Image.\n * @param {string} src Src.\n * @param {import(\"../size.js\").Size} size Size.\n * @param {?string} crossOrigin Cross origin.\n * @param {import(\"../ImageState.js\").default} imageState Image state.\n * @param {import(\"../color.js\").Color} color Color.\n * @return {IconImage} Icon image.\n */\nexport function get(image, src, size, crossOrigin, imageState, color) {\n var iconImage = iconImageCache.get(src, crossOrigin, color);\n if (!iconImage) {\n iconImage = new IconImage(image, src, size, crossOrigin, imageState, color);\n iconImageCache.set(src, crossOrigin, color, iconImage);\n }\n return iconImage;\n}\nexport default IconImage;\n//# sourceMappingURL=IconImage.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/style/Icon\n */\nimport EventType from '../events/EventType.js';\nimport IconAnchorUnits from './IconAnchorUnits.js';\nimport IconOrigin from './IconOrigin.js';\nimport ImageState from '../ImageState.js';\nimport ImageStyle from './Image.js';\nimport { asArray } from '../color.js';\nimport { assert } from '../asserts.js';\nimport { get as getIconImage } from './IconImage.js';\nimport { getUid } from '../util.js';\n/**\n * @typedef {Object} Options\n * @property {Array<number>} [anchor=[0.5, 0.5]] Anchor. Default value is the icon center.\n * @property {import(\"./IconOrigin.js\").default} [anchorOrigin='top-left'] Origin of the anchor: `bottom-left`, `bottom-right`,\n * `top-left` or `top-right`.\n * @property {import(\"./IconAnchorUnits.js\").default} [anchorXUnits='fraction'] Units in which the anchor x value is\n * specified. A value of `'fraction'` indicates the x value is a fraction of the icon. A value of `'pixels'` indicates\n * the x value in pixels.\n * @property {import(\"./IconAnchorUnits.js\").default} [anchorYUnits='fraction'] Units in which the anchor y value is\n * specified. A value of `'fraction'` indicates the y value is a fraction of the icon. A value of `'pixels'` indicates\n * the y value in pixels.\n * @property {import(\"../color.js\").Color|string} [color] Color to tint the icon. If not specified,\n * the icon will be left as is.\n * @property {null|string} [crossOrigin] The `crossOrigin` attribute for loaded images. Note that you must provide a\n * `crossOrigin` value if you want to access pixel data with the Canvas renderer.\n * See https://developer.mozilla.org/en-US/docs/Web/HTML/CORS_enabled_image for more detail.\n * @property {HTMLImageElement|HTMLCanvasElement} [img] Image object for the icon. If the `src` option is not provided then the\n * provided image must already be loaded. And in that case, it is required\n * to provide the size of the image, with the `imgSize` option.\n * @property {Array<number>} [offset=[0, 0]] Offset, which, together with the size and the offset origin, define the\n * sub-rectangle to use from the original icon image.\n * @property {Array<number>} [displacement=[0,0]] Displacement of the icon.\n * @property {import(\"./IconOrigin.js\").default} [offsetOrigin='top-left'] Origin of the offset: `bottom-left`, `bottom-right`,\n * `top-left` or `top-right`.\n * @property {number} [opacity=1] Opacity of the icon.\n * @property {number|import(\"../size.js\").Size} [scale=1] Scale.\n * @property {boolean} [rotateWithView=false] Whether to rotate the icon with the view.\n * @property {number} [rotation=0] Rotation in radians (positive rotation clockwise).\n * @property {import(\"../size.js\").Size} [size] Icon size in pixel. Can be used together with `offset` to define the\n * sub-rectangle to use from the origin (sprite) icon image.\n * @property {import(\"../size.js\").Size} [imgSize] Image size in pixels. Only required if `img` is set and `src` is not, and\n * for SVG images in Internet Explorer 11. The provided `imgSize` needs to match the actual size of the image.\n * @property {string} [src] Image source URI.\n */\n/**\n * @classdesc\n * Set icon style for vector features.\n * @api\n */\nvar Icon = /** @class */ (function (_super) {\n __extends(Icon, _super);\n /**\n * @param {Options} [opt_options] Options.\n */\n function Icon(opt_options) {\n var _this = this;\n var options = opt_options || {};\n /**\n * @type {number}\n */\n var opacity = options.opacity !== undefined ? options.opacity : 1;\n /**\n * @type {number}\n */\n var rotation = options.rotation !== undefined ? options.rotation : 0;\n /**\n * @type {number|import(\"../size.js\").Size}\n */\n var scale = options.scale !== undefined ? options.scale : 1;\n /**\n * @type {boolean}\n */\n var rotateWithView = options.rotateWithView !== undefined ? options.rotateWithView : false;\n _this = _super.call(this, {\n opacity: opacity,\n rotation: rotation,\n scale: scale,\n displacement: options.displacement !== undefined ? options.displacement : [0, 0],\n rotateWithView: rotateWithView,\n }) || this;\n /**\n * @private\n * @type {Array<number>}\n */\n _this.anchor_ = options.anchor !== undefined ? options.anchor : [0.5, 0.5];\n /**\n * @private\n * @type {Array<number>}\n */\n _this.normalizedAnchor_ = null;\n /**\n * @private\n * @type {import(\"./IconOrigin.js\").default}\n */\n _this.anchorOrigin_ =\n options.anchorOrigin !== undefined\n ? options.anchorOrigin\n : IconOrigin.TOP_LEFT;\n /**\n * @private\n * @type {import(\"./IconAnchorUnits.js\").default}\n */\n _this.anchorXUnits_ =\n options.anchorXUnits !== undefined\n ? options.anchorXUnits\n : IconAnchorUnits.FRACTION;\n /**\n * @private\n * @type {import(\"./IconAnchorUnits.js\").default}\n */\n _this.anchorYUnits_ =\n options.anchorYUnits !== undefined\n ? options.anchorYUnits\n : IconAnchorUnits.FRACTION;\n /**\n * @private\n * @type {?string}\n */\n _this.crossOrigin_ =\n options.crossOrigin !== undefined ? options.crossOrigin : null;\n /**\n * @type {HTMLImageElement|HTMLCanvasElement}\n */\n var image = options.img !== undefined ? options.img : null;\n /**\n * @private\n * @type {import(\"../size.js\").Size|undefined}\n */\n _this.imgSize_ = options.imgSize;\n /**\n * @type {string|undefined}\n */\n var src = options.src;\n assert(!(src !== undefined && image), 4); // `image` and `src` cannot be provided at the same time\n assert(!image || (image && _this.imgSize_), 5); // `imgSize` must be set when `image` is provided\n if ((src === undefined || src.length === 0) && image) {\n src = /** @type {HTMLImageElement} */ (image).src || getUid(image);\n }\n assert(src !== undefined && src.length > 0, 6); // A defined and non-empty `src` or `image` must be provided\n /**\n * @type {import(\"../ImageState.js\").default}\n */\n var imageState = options.src !== undefined ? ImageState.IDLE : ImageState.LOADED;\n /**\n * @private\n * @type {import(\"../color.js\").Color}\n */\n _this.color_ = options.color !== undefined ? asArray(options.color) : null;\n /**\n * @private\n * @type {import(\"./IconImage.js\").default}\n */\n _this.iconImage_ = getIconImage(image, \n /** @type {string} */ (src), _this.imgSize_ !== undefined ? _this.imgSize_ : null, _this.crossOrigin_, imageState, _this.color_);\n /**\n * @private\n * @type {Array<number>}\n */\n _this.offset_ = options.offset !== undefined ? options.offset : [0, 0];\n /**\n * @private\n * @type {import(\"./IconOrigin.js\").default}\n */\n _this.offsetOrigin_ =\n options.offsetOrigin !== undefined\n ? options.offsetOrigin\n : IconOrigin.TOP_LEFT;\n /**\n * @private\n * @type {Array<number>}\n */\n _this.origin_ = null;\n /**\n * @private\n * @type {import(\"../size.js\").Size}\n */\n _this.size_ = options.size !== undefined ? options.size : null;\n return _this;\n }\n /**\n * Clones the style. The underlying Image/HTMLCanvasElement is not cloned.\n * @return {Icon} The cloned style.\n * @api\n */\n Icon.prototype.clone = function () {\n var scale = this.getScale();\n return new Icon({\n anchor: this.anchor_.slice(),\n anchorOrigin: this.anchorOrigin_,\n anchorXUnits: this.anchorXUnits_,\n anchorYUnits: this.anchorYUnits_,\n color: this.color_ && this.color_.slice\n ? this.color_.slice()\n : this.color_ || undefined,\n crossOrigin: this.crossOrigin_,\n imgSize: this.imgSize_,\n offset: this.offset_.slice(),\n offsetOrigin: this.offsetOrigin_,\n opacity: this.getOpacity(),\n rotateWithView: this.getRotateWithView(),\n rotation: this.getRotation(),\n scale: Array.isArray(scale) ? scale.slice() : scale,\n size: this.size_ !== null ? this.size_.slice() : undefined,\n src: this.getSrc(),\n });\n };\n /**\n * Get the anchor point in pixels. The anchor determines the center point for the\n * symbolizer.\n * @return {Array<number>} Anchor.\n * @api\n */\n Icon.prototype.getAnchor = function () {\n var anchor = this.normalizedAnchor_;\n if (!anchor) {\n anchor = this.anchor_;\n var size = this.getSize();\n if (this.anchorXUnits_ == IconAnchorUnits.FRACTION ||\n this.anchorYUnits_ == IconAnchorUnits.FRACTION) {\n if (!size) {\n return null;\n }\n anchor = this.anchor_.slice();\n if (this.anchorXUnits_ == IconAnchorUnits.FRACTION) {\n anchor[0] *= size[0];\n }\n if (this.anchorYUnits_ == IconAnchorUnits.FRACTION) {\n anchor[1] *= size[1];\n }\n }\n if (this.anchorOrigin_ != IconOrigin.TOP_LEFT) {\n if (!size) {\n return null;\n }\n if (anchor === this.anchor_) {\n anchor = this.anchor_.slice();\n }\n if (this.anchorOrigin_ == IconOrigin.TOP_RIGHT ||\n this.anchorOrigin_ == IconOrigin.BOTTOM_RIGHT) {\n anchor[0] = -anchor[0] + size[0];\n }\n if (this.anchorOrigin_ == IconOrigin.BOTTOM_LEFT ||\n this.anchorOrigin_ == IconOrigin.BOTTOM_RIGHT) {\n anchor[1] = -anchor[1] + size[1];\n }\n }\n this.normalizedAnchor_ = anchor;\n }\n var displacement = this.getDisplacement();\n return [anchor[0] - displacement[0], anchor[1] + displacement[1]];\n };\n /**\n * Set the anchor point. The anchor determines the center point for the\n * symbolizer.\n *\n * @param {Array<number>} anchor Anchor.\n * @api\n */\n Icon.prototype.setAnchor = function (anchor) {\n this.anchor_ = anchor;\n this.normalizedAnchor_ = null;\n };\n /**\n * Get the icon color.\n * @return {import(\"../color.js\").Color} Color.\n * @api\n */\n Icon.prototype.getColor = function () {\n return this.color_;\n };\n /**\n * Get the image icon.\n * @param {number} pixelRatio Pixel ratio.\n * @return {HTMLImageElement|HTMLCanvasElement} Image or Canvas element.\n * @api\n */\n Icon.prototype.getImage = function (pixelRatio) {\n return this.iconImage_.getImage(pixelRatio);\n };\n /**\n * Get the pixel ratio.\n * @param {number} pixelRatio Pixel ratio.\n * @return {number} The pixel ratio of the image.\n * @api\n */\n Icon.prototype.getPixelRatio = function (pixelRatio) {\n return this.iconImage_.getPixelRatio(pixelRatio);\n };\n /**\n * @return {import(\"../size.js\").Size} Image size.\n */\n Icon.prototype.getImageSize = function () {\n return this.iconImage_.getSize();\n };\n /**\n * @return {import(\"../ImageState.js\").default} Image state.\n */\n Icon.prototype.getImageState = function () {\n return this.iconImage_.getImageState();\n };\n /**\n * @return {HTMLImageElement|HTMLCanvasElement} Image element.\n */\n Icon.prototype.getHitDetectionImage = function () {\n return this.iconImage_.getHitDetectionImage();\n };\n /**\n * Get the origin of the symbolizer.\n * @return {Array<number>} Origin.\n * @api\n */\n Icon.prototype.getOrigin = function () {\n if (this.origin_) {\n return this.origin_;\n }\n var offset = this.offset_;\n if (this.offsetOrigin_ != IconOrigin.TOP_LEFT) {\n var size = this.getSize();\n var iconImageSize = this.iconImage_.getSize();\n if (!size || !iconImageSize) {\n return null;\n }\n offset = offset.slice();\n if (this.offsetOrigin_ == IconOrigin.TOP_RIGHT ||\n this.offsetOrigin_ == IconOrigin.BOTTOM_RIGHT) {\n offset[0] = iconImageSize[0] - size[0] - offset[0];\n }\n if (this.offsetOrigin_ == IconOrigin.BOTTOM_LEFT ||\n this.offsetOrigin_ == IconOrigin.BOTTOM_RIGHT) {\n offset[1] = iconImageSize[1] - size[1] - offset[1];\n }\n }\n this.origin_ = offset;\n return this.origin_;\n };\n /**\n * Get the image URL.\n * @return {string|undefined} Image src.\n * @api\n */\n Icon.prototype.getSrc = function () {\n return this.iconImage_.getSrc();\n };\n /**\n * Get the size of the icon (in pixels).\n * @return {import(\"../size.js\").Size} Image size.\n * @api\n */\n Icon.prototype.getSize = function () {\n return !this.size_ ? this.iconImage_.getSize() : this.size_;\n };\n /**\n * @param {function(import(\"../events/Event.js\").default): void} listener Listener function.\n */\n Icon.prototype.listenImageChange = function (listener) {\n this.iconImage_.addEventListener(EventType.CHANGE, listener);\n };\n /**\n * Load not yet loaded URI.\n * When rendering a feature with an icon style, the vector renderer will\n * automatically call this method. However, you might want to call this\n * method yourself for preloading or other purposes.\n * @api\n */\n Icon.prototype.load = function () {\n this.iconImage_.load();\n };\n /**\n * @param {function(import(\"../events/Event.js\").default): void} listener Listener function.\n */\n Icon.prototype.unlistenImageChange = function (listener) {\n this.iconImage_.removeEventListener(EventType.CHANGE, listener);\n };\n return Icon;\n}(ImageStyle));\nexport default Icon;\n//# sourceMappingURL=Icon.js.map","/**\n * @module ol/render/canvas/hitdetect\n */\nimport CanvasImmediateRenderer from './Immediate.js';\nimport GeometryType from '../../geom/GeometryType.js';\nimport IconAnchorUnits from '../../style/IconAnchorUnits.js';\nimport { Icon } from '../../style.js';\nimport { clamp } from '../../math.js';\nimport { createCanvasContext2D } from '../../dom.js';\nimport { intersects } from '../../extent.js';\nimport { numberSafeCompareFunction } from '../../array.js';\nexport var HIT_DETECT_RESOLUTION = 0.5;\n/**\n * @param {import(\"../../size.js\").Size} size Canvas size in css pixels.\n * @param {Array<import(\"../../transform.js\").Transform>} transforms Transforms\n * for rendering features to all worlds of the viewport, from coordinates to css\n * pixels.\n * @param {Array<import(\"../../Feature.js\").FeatureLike>} features\n * Features to consider for hit detection.\n * @param {import(\"../../style/Style.js\").StyleFunction|undefined} styleFunction\n * Layer style function.\n * @param {import(\"../../extent.js\").Extent} extent Extent.\n * @param {number} resolution Resolution.\n * @param {number} rotation Rotation.\n * @return {ImageData} Hit detection image data.\n */\nexport function createHitDetectionImageData(size, transforms, features, styleFunction, extent, resolution, rotation) {\n var width = size[0] * HIT_DETECT_RESOLUTION;\n var height = size[1] * HIT_DETECT_RESOLUTION;\n var context = createCanvasContext2D(width, height);\n context.imageSmoothingEnabled = false;\n var canvas = context.canvas;\n var renderer = new CanvasImmediateRenderer(context, HIT_DETECT_RESOLUTION, extent, null, rotation);\n var featureCount = features.length;\n // Stretch hit detection index to use the whole available color range\n var indexFactor = Math.floor((256 * 256 * 256 - 1) / featureCount);\n var featuresByZIndex = {};\n for (var i = 1; i <= featureCount; ++i) {\n var feature = features[i - 1];\n var featureStyleFunction = feature.getStyleFunction() || styleFunction;\n if (!styleFunction) {\n continue;\n }\n var styles = featureStyleFunction(feature, resolution);\n if (!styles) {\n continue;\n }\n if (!Array.isArray(styles)) {\n styles = [styles];\n }\n var index = i * indexFactor;\n var color = '#' + ('000000' + index.toString(16)).slice(-6);\n for (var j = 0, jj = styles.length; j < jj; ++j) {\n var originalStyle = styles[j];\n var geometry = originalStyle.getGeometryFunction()(feature);\n if (!geometry || !intersects(extent, geometry.getExtent())) {\n continue;\n }\n var style = originalStyle.clone();\n var fill = style.getFill();\n if (fill) {\n fill.setColor(color);\n }\n var stroke = style.getStroke();\n if (stroke) {\n stroke.setColor(color);\n stroke.setLineDash(null);\n }\n style.setText(undefined);\n var image = originalStyle.getImage();\n if (image && image.getOpacity() !== 0) {\n var imgSize = image.getImageSize();\n if (!imgSize) {\n continue;\n }\n var imgContext = createCanvasContext2D(imgSize[0], imgSize[1], undefined, { alpha: false });\n var img = imgContext.canvas;\n imgContext.fillStyle = color;\n imgContext.fillRect(0, 0, img.width, img.height);\n style.setImage(new Icon({\n img: img,\n imgSize: imgSize,\n anchor: image.getAnchor(),\n anchorXUnits: IconAnchorUnits.PIXELS,\n anchorYUnits: IconAnchorUnits.PIXELS,\n offset: image.getOrigin(),\n opacity: 1,\n size: image.getSize(),\n scale: image.getScale(),\n rotation: image.getRotation(),\n rotateWithView: image.getRotateWithView(),\n }));\n }\n var zIndex = style.getZIndex() || 0;\n var byGeometryType = featuresByZIndex[zIndex];\n if (!byGeometryType) {\n byGeometryType = {};\n featuresByZIndex[zIndex] = byGeometryType;\n byGeometryType[GeometryType.POLYGON] = [];\n byGeometryType[GeometryType.CIRCLE] = [];\n byGeometryType[GeometryType.LINE_STRING] = [];\n byGeometryType[GeometryType.POINT] = [];\n }\n byGeometryType[geometry.getType().replace('Multi', '')].push(geometry, style);\n }\n }\n var zIndexKeys = Object.keys(featuresByZIndex)\n .map(Number)\n .sort(numberSafeCompareFunction);\n for (var i = 0, ii = zIndexKeys.length; i < ii; ++i) {\n var byGeometryType = featuresByZIndex[zIndexKeys[i]];\n for (var type in byGeometryType) {\n var geomAndStyle = byGeometryType[type];\n for (var j = 0, jj = geomAndStyle.length; j < jj; j += 2) {\n renderer.setStyle(geomAndStyle[j + 1]);\n for (var k = 0, kk = transforms.length; k < kk; ++k) {\n renderer.setTransform(transforms[k]);\n renderer.drawGeometry(geomAndStyle[j]);\n }\n }\n }\n }\n return context.getImageData(0, 0, canvas.width, canvas.height);\n}\n/**\n * @param {import(\"../../pixel\").Pixel} pixel Pixel coordinate on the hit\n * detection canvas in css pixels.\n * @param {Array<import(\"../../Feature\").FeatureLike>} features Features. Has to\n * match the `features` array that was passed to `createHitDetectionImageData()`.\n * @param {ImageData} imageData Hit detection image data generated by\n * `createHitDetectionImageData()`.\n * @return {Array<import(\"../../Feature\").FeatureLike>} features Features.\n */\nexport function hitDetect(pixel, features, imageData) {\n var resultFeatures = [];\n if (imageData) {\n var x = Math.floor(Math.round(pixel[0]) * HIT_DETECT_RESOLUTION);\n var y = Math.floor(Math.round(pixel[1]) * HIT_DETECT_RESOLUTION);\n // The pixel coordinate is clamped down to the hit-detect canvas' size to account\n // for browsers returning coordinates slightly larger than the actual canvas size\n // due to a non-integer pixel ratio.\n var index = (clamp(x, 0, imageData.width - 1) +\n clamp(y, 0, imageData.height - 1) * imageData.width) *\n 4;\n var r = imageData.data[index];\n var g = imageData.data[index + 1];\n var b = imageData.data[index + 2];\n var i = b + 256 * (g + 256 * r);\n var indexFactor = Math.floor((256 * 256 * 256 - 1) / features.length);\n if (i && i % indexFactor === 0) {\n resultFeatures.push(features[i / indexFactor - 1]);\n }\n }\n return resultFeatures;\n}\n//# sourceMappingURL=hitdetect.js.map","/**\n * @module ol/renderer/vector\n */\nimport BuilderType from '../render/canvas/BuilderType.js';\nimport GeometryType from '../geom/GeometryType.js';\nimport ImageState from '../ImageState.js';\nimport { getUid } from '../util.js';\n/**\n * Feature callback. The callback will be called with three arguments. The first\n * argument is one {@link module:ol/Feature~Feature feature} or {@link module:ol/render/Feature~RenderFeature render feature}\n * at the pixel, the second is the {@link module:ol/layer/Layer~Layer layer} of the feature and will be null for\n * unmanaged layers. The third is the {@link module:ol/geom/SimpleGeometry~SimpleGeometry} of the feature. For features\n * with a GeometryCollection geometry, it will be the first detected geometry from the collection.\n * @template T\n * @typedef {function(import(\"../Feature.js\").FeatureLike, import(\"../layer/Layer.js\").default<import(\"../source/Source\").default>, import(\"../geom/SimpleGeometry.js\").default): T} FeatureCallback\n */\n/**\n * Tolerance for geometry simplification in device pixels.\n * @type {number}\n */\nvar SIMPLIFY_TOLERANCE = 0.5;\n/**\n * @const\n * @type {Object<import(\"../geom/GeometryType.js\").default,\n * function(import(\"../render/canvas/BuilderGroup.js\").default, import(\"../geom/Geometry.js\").default,\n * import(\"../style/Style.js\").default, Object): void>}\n */\nvar GEOMETRY_RENDERERS = {\n 'Point': renderPointGeometry,\n 'LineString': renderLineStringGeometry,\n 'Polygon': renderPolygonGeometry,\n 'MultiPoint': renderMultiPointGeometry,\n 'MultiLineString': renderMultiLineStringGeometry,\n 'MultiPolygon': renderMultiPolygonGeometry,\n 'GeometryCollection': renderGeometryCollectionGeometry,\n 'Circle': renderCircleGeometry,\n};\n/**\n * @param {import(\"../Feature.js\").FeatureLike} feature1 Feature 1.\n * @param {import(\"../Feature.js\").FeatureLike} feature2 Feature 2.\n * @return {number} Order.\n */\nexport function defaultOrder(feature1, feature2) {\n return parseInt(getUid(feature1), 10) - parseInt(getUid(feature2), 10);\n}\n/**\n * @param {number} resolution Resolution.\n * @param {number} pixelRatio Pixel ratio.\n * @return {number} Squared pixel tolerance.\n */\nexport function getSquaredTolerance(resolution, pixelRatio) {\n var tolerance = getTolerance(resolution, pixelRatio);\n return tolerance * tolerance;\n}\n/**\n * @param {number} resolution Resolution.\n * @param {number} pixelRatio Pixel ratio.\n * @return {number} Pixel tolerance.\n */\nexport function getTolerance(resolution, pixelRatio) {\n return (SIMPLIFY_TOLERANCE * resolution) / pixelRatio;\n}\n/**\n * @param {import(\"../render/canvas/BuilderGroup.js\").default} builderGroup Builder group.\n * @param {import(\"../geom/Circle.js\").default} geometry Geometry.\n * @param {import(\"../style/Style.js\").default} style Style.\n * @param {import(\"../Feature.js\").default} feature Feature.\n * @param {import(\"../render/canvas/BuilderGroup.js\").default} [opt_declutterBuilderGroup] Builder for decluttering.\n */\nfunction renderCircleGeometry(builderGroup, geometry, style, feature, opt_declutterBuilderGroup) {\n var fillStyle = style.getFill();\n var strokeStyle = style.getStroke();\n if (fillStyle || strokeStyle) {\n var circleReplay = builderGroup.getBuilder(style.getZIndex(), BuilderType.CIRCLE);\n circleReplay.setFillStrokeStyle(fillStyle, strokeStyle);\n circleReplay.drawCircle(geometry, feature);\n }\n var textStyle = style.getText();\n if (textStyle && textStyle.getText()) {\n var textReplay = (opt_declutterBuilderGroup || builderGroup).getBuilder(style.getZIndex(), BuilderType.TEXT);\n textReplay.setTextStyle(textStyle);\n textReplay.drawText(geometry, feature);\n }\n}\n/**\n * @param {import(\"../render/canvas/BuilderGroup.js\").default} replayGroup Replay group.\n * @param {import(\"../Feature.js\").FeatureLike} feature Feature.\n * @param {import(\"../style/Style.js\").default} style Style.\n * @param {number} squaredTolerance Squared tolerance.\n * @param {function(import(\"../events/Event.js\").default): void} listener Listener function.\n * @param {import(\"../proj.js\").TransformFunction} [opt_transform] Transform from user to view projection.\n * @param {import(\"../render/canvas/BuilderGroup.js\").default} [opt_declutterBuilderGroup] Builder for decluttering.\n * @return {boolean} `true` if style is loading.\n */\nexport function renderFeature(replayGroup, feature, style, squaredTolerance, listener, opt_transform, opt_declutterBuilderGroup) {\n var loading = false;\n var imageStyle = style.getImage();\n if (imageStyle) {\n var imageState = imageStyle.getImageState();\n if (imageState == ImageState.LOADED || imageState == ImageState.ERROR) {\n imageStyle.unlistenImageChange(listener);\n }\n else {\n if (imageState == ImageState.IDLE) {\n imageStyle.load();\n }\n imageState = imageStyle.getImageState();\n imageStyle.listenImageChange(listener);\n loading = true;\n }\n }\n renderFeatureInternal(replayGroup, feature, style, squaredTolerance, opt_transform, opt_declutterBuilderGroup);\n return loading;\n}\n/**\n * @param {import(\"../render/canvas/BuilderGroup.js\").default} replayGroup Replay group.\n * @param {import(\"../Feature.js\").FeatureLike} feature Feature.\n * @param {import(\"../style/Style.js\").default} style Style.\n * @param {number} squaredTolerance Squared tolerance.\n * @param {import(\"../proj.js\").TransformFunction} [opt_transform] Optional transform function.\n * @param {import(\"../render/canvas/BuilderGroup.js\").default} [opt_declutterBuilderGroup] Builder for decluttering.\n */\nfunction renderFeatureInternal(replayGroup, feature, style, squaredTolerance, opt_transform, opt_declutterBuilderGroup) {\n var geometry = style.getGeometryFunction()(feature);\n if (!geometry) {\n return;\n }\n var simplifiedGeometry = geometry.simplifyTransformed(squaredTolerance, opt_transform);\n var renderer = style.getRenderer();\n if (renderer) {\n renderGeometry(replayGroup, simplifiedGeometry, style, feature);\n }\n else {\n var geometryRenderer = GEOMETRY_RENDERERS[simplifiedGeometry.getType()];\n geometryRenderer(replayGroup, simplifiedGeometry, style, feature, opt_declutterBuilderGroup);\n }\n}\n/**\n * @param {import(\"../render/canvas/BuilderGroup.js\").default} replayGroup Replay group.\n * @param {import(\"../geom/Geometry.js\").default|import(\"../render/Feature.js\").default} geometry Geometry.\n * @param {import(\"../style/Style.js\").default} style Style.\n * @param {import(\"../Feature.js\").FeatureLike} feature Feature.\n */\nfunction renderGeometry(replayGroup, geometry, style, feature) {\n if (geometry.getType() == GeometryType.GEOMETRY_COLLECTION) {\n var geometries = \n /** @type {import(\"../geom/GeometryCollection.js\").default} */ (geometry).getGeometries();\n for (var i = 0, ii = geometries.length; i < ii; ++i) {\n renderGeometry(replayGroup, geometries[i], style, feature);\n }\n return;\n }\n var replay = replayGroup.getBuilder(style.getZIndex(), BuilderType.DEFAULT);\n replay.drawCustom(\n /** @type {import(\"../geom/SimpleGeometry.js\").default} */ (geometry), feature, style.getRenderer(), style.getHitDetectionRenderer());\n}\n/**\n * @param {import(\"../render/canvas/BuilderGroup.js\").default} replayGroup Replay group.\n * @param {import(\"../geom/GeometryCollection.js\").default} geometry Geometry.\n * @param {import(\"../style/Style.js\").default} style Style.\n * @param {import(\"../Feature.js\").default} feature Feature.\n * @param {import(\"../render/canvas/BuilderGroup.js\").default} [opt_declutterBuilderGroup] Builder for decluttering.\n */\nfunction renderGeometryCollectionGeometry(replayGroup, geometry, style, feature, opt_declutterBuilderGroup) {\n var geometries = geometry.getGeometriesArray();\n var i, ii;\n for (i = 0, ii = geometries.length; i < ii; ++i) {\n var geometryRenderer = GEOMETRY_RENDERERS[geometries[i].getType()];\n geometryRenderer(replayGroup, geometries[i], style, feature, opt_declutterBuilderGroup);\n }\n}\n/**\n * @param {import(\"../render/canvas/BuilderGroup.js\").default} builderGroup Replay group.\n * @param {import(\"../geom/LineString.js\").default|import(\"../render/Feature.js\").default} geometry Geometry.\n * @param {import(\"../style/Style.js\").default} style Style.\n * @param {import(\"../Feature.js\").FeatureLike} feature Feature.\n * @param {import(\"../render/canvas/BuilderGroup.js\").default} [opt_declutterBuilderGroup] Builder for decluttering.\n */\nfunction renderLineStringGeometry(builderGroup, geometry, style, feature, opt_declutterBuilderGroup) {\n var strokeStyle = style.getStroke();\n if (strokeStyle) {\n var lineStringReplay = builderGroup.getBuilder(style.getZIndex(), BuilderType.LINE_STRING);\n lineStringReplay.setFillStrokeStyle(null, strokeStyle);\n lineStringReplay.drawLineString(geometry, feature);\n }\n var textStyle = style.getText();\n if (textStyle && textStyle.getText()) {\n var textReplay = (opt_declutterBuilderGroup || builderGroup).getBuilder(style.getZIndex(), BuilderType.TEXT);\n textReplay.setTextStyle(textStyle);\n textReplay.drawText(geometry, feature);\n }\n}\n/**\n * @param {import(\"../render/canvas/BuilderGroup.js\").default} builderGroup Replay group.\n * @param {import(\"../geom/MultiLineString.js\").default|import(\"../render/Feature.js\").default} geometry Geometry.\n * @param {import(\"../style/Style.js\").default} style Style.\n * @param {import(\"../Feature.js\").FeatureLike} feature Feature.\n * @param {import(\"../render/canvas/BuilderGroup.js\").default} [opt_declutterBuilderGroup] Builder for decluttering.\n */\nfunction renderMultiLineStringGeometry(builderGroup, geometry, style, feature, opt_declutterBuilderGroup) {\n var strokeStyle = style.getStroke();\n if (strokeStyle) {\n var lineStringReplay = builderGroup.getBuilder(style.getZIndex(), BuilderType.LINE_STRING);\n lineStringReplay.setFillStrokeStyle(null, strokeStyle);\n lineStringReplay.drawMultiLineString(geometry, feature);\n }\n var textStyle = style.getText();\n if (textStyle && textStyle.getText()) {\n var textReplay = (opt_declutterBuilderGroup || builderGroup).getBuilder(style.getZIndex(), BuilderType.TEXT);\n textReplay.setTextStyle(textStyle);\n textReplay.drawText(geometry, feature);\n }\n}\n/**\n * @param {import(\"../render/canvas/BuilderGroup.js\").default} builderGroup Replay group.\n * @param {import(\"../geom/MultiPolygon.js\").default} geometry Geometry.\n * @param {import(\"../style/Style.js\").default} style Style.\n * @param {import(\"../Feature.js\").default} feature Feature.\n * @param {import(\"../render/canvas/BuilderGroup.js\").default} [opt_declutterBuilderGroup] Builder for decluttering.\n */\nfunction renderMultiPolygonGeometry(builderGroup, geometry, style, feature, opt_declutterBuilderGroup) {\n var fillStyle = style.getFill();\n var strokeStyle = style.getStroke();\n if (strokeStyle || fillStyle) {\n var polygonReplay = builderGroup.getBuilder(style.getZIndex(), BuilderType.POLYGON);\n polygonReplay.setFillStrokeStyle(fillStyle, strokeStyle);\n polygonReplay.drawMultiPolygon(geometry, feature);\n }\n var textStyle = style.getText();\n if (textStyle && textStyle.getText()) {\n var textReplay = (opt_declutterBuilderGroup || builderGroup).getBuilder(style.getZIndex(), BuilderType.TEXT);\n textReplay.setTextStyle(textStyle);\n textReplay.drawText(geometry, feature);\n }\n}\n/**\n * @param {import(\"../render/canvas/BuilderGroup.js\").default} builderGroup Replay group.\n * @param {import(\"../geom/Point.js\").default|import(\"../render/Feature.js\").default} geometry Geometry.\n * @param {import(\"../style/Style.js\").default} style Style.\n * @param {import(\"../Feature.js\").FeatureLike} feature Feature.\n * @param {import(\"../render/canvas/BuilderGroup.js\").default} [opt_declutterBuilderGroup] Builder for decluttering.\n */\nfunction renderPointGeometry(builderGroup, geometry, style, feature, opt_declutterBuilderGroup) {\n var imageStyle = style.getImage();\n var textStyle = style.getText();\n /** @type {import(\"../render/canvas.js\").DeclutterImageWithText} */\n var declutterImageWithText;\n if (opt_declutterBuilderGroup) {\n builderGroup = opt_declutterBuilderGroup;\n declutterImageWithText =\n imageStyle && textStyle && textStyle.getText() ? {} : undefined;\n }\n if (imageStyle) {\n if (imageStyle.getImageState() != ImageState.LOADED) {\n return;\n }\n var imageReplay = builderGroup.getBuilder(style.getZIndex(), BuilderType.IMAGE);\n imageReplay.setImageStyle(imageStyle, declutterImageWithText);\n imageReplay.drawPoint(geometry, feature);\n }\n if (textStyle && textStyle.getText()) {\n var textReplay = builderGroup.getBuilder(style.getZIndex(), BuilderType.TEXT);\n textReplay.setTextStyle(textStyle, declutterImageWithText);\n textReplay.drawText(geometry, feature);\n }\n}\n/**\n * @param {import(\"../render/canvas/BuilderGroup.js\").default} builderGroup Replay group.\n * @param {import(\"../geom/MultiPoint.js\").default|import(\"../render/Feature.js\").default} geometry Geometry.\n * @param {import(\"../style/Style.js\").default} style Style.\n * @param {import(\"../Feature.js\").FeatureLike} feature Feature.\n * @param {import(\"../render/canvas/BuilderGroup.js\").default} [opt_declutterBuilderGroup] Builder for decluttering.\n */\nfunction renderMultiPointGeometry(builderGroup, geometry, style, feature, opt_declutterBuilderGroup) {\n var imageStyle = style.getImage();\n var textStyle = style.getText();\n /** @type {import(\"../render/canvas.js\").DeclutterImageWithText} */\n var declutterImageWithText;\n if (opt_declutterBuilderGroup) {\n builderGroup = opt_declutterBuilderGroup;\n declutterImageWithText =\n imageStyle && textStyle && textStyle.getText() ? {} : undefined;\n }\n if (imageStyle) {\n if (imageStyle.getImageState() != ImageState.LOADED) {\n return;\n }\n var imageReplay = builderGroup.getBuilder(style.getZIndex(), BuilderType.IMAGE);\n imageReplay.setImageStyle(imageStyle, declutterImageWithText);\n imageReplay.drawMultiPoint(geometry, feature);\n }\n if (textStyle && textStyle.getText()) {\n var textReplay = (opt_declutterBuilderGroup || builderGroup).getBuilder(style.getZIndex(), BuilderType.TEXT);\n textReplay.setTextStyle(textStyle, declutterImageWithText);\n textReplay.drawText(geometry, feature);\n }\n}\n/**\n * @param {import(\"../render/canvas/BuilderGroup.js\").default} builderGroup Replay group.\n * @param {import(\"../geom/Polygon.js\").default|import(\"../render/Feature.js\").default} geometry Geometry.\n * @param {import(\"../style/Style.js\").default} style Style.\n * @param {import(\"../Feature.js\").FeatureLike} feature Feature.\n * @param {import(\"../render/canvas/BuilderGroup.js\").default} [opt_declutterBuilderGroup] Builder for decluttering.\n */\nfunction renderPolygonGeometry(builderGroup, geometry, style, feature, opt_declutterBuilderGroup) {\n var fillStyle = style.getFill();\n var strokeStyle = style.getStroke();\n if (fillStyle || strokeStyle) {\n var polygonReplay = builderGroup.getBuilder(style.getZIndex(), BuilderType.POLYGON);\n polygonReplay.setFillStrokeStyle(fillStyle, strokeStyle);\n polygonReplay.drawPolygon(geometry, feature);\n }\n var textStyle = style.getText();\n if (textStyle && textStyle.getText()) {\n var textReplay = (opt_declutterBuilderGroup || builderGroup).getBuilder(style.getZIndex(), BuilderType.TEXT);\n textReplay.setTextStyle(textStyle);\n textReplay.drawText(geometry, feature);\n }\n}\n//# sourceMappingURL=vector.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/renderer/canvas/VectorLayer\n */\nimport CanvasBuilderGroup from '../../render/canvas/BuilderGroup.js';\nimport CanvasLayerRenderer from './Layer.js';\nimport ExecutorGroup from '../../render/canvas/ExecutorGroup.js';\nimport ViewHint from '../../ViewHint.js';\nimport { HIT_DETECT_RESOLUTION, createHitDetectionImageData, hitDetect, } from '../../render/canvas/hitdetect.js';\nimport { apply, makeInverse, makeScale, toString as transformToString, } from '../../transform.js';\nimport { buffer, containsExtent, createEmpty, getWidth, intersects as intersectsExtent, wrapX as wrapExtentX, } from '../../extent.js';\nimport { cssOpacity } from '../../css.js';\nimport { defaultOrder as defaultRenderOrder, getTolerance as getRenderTolerance, getSquaredTolerance as getSquaredRenderTolerance, renderFeature, } from '../vector.js';\nimport { equals } from '../../array.js';\nimport { fromUserExtent, getTransformFromProjections, getUserProjection, toUserExtent, toUserResolution, } from '../../proj.js';\nimport { getUid } from '../../util.js';\nimport { wrapX as wrapCoordinateX } from '../../coordinate.js';\n/**\n * @classdesc\n * Canvas renderer for vector layers.\n * @api\n */\nvar CanvasVectorLayerRenderer = /** @class */ (function (_super) {\n __extends(CanvasVectorLayerRenderer, _super);\n /**\n * @param {import(\"../../layer/BaseVector.js\").default} vectorLayer Vector layer.\n */\n function CanvasVectorLayerRenderer(vectorLayer) {\n var _this = _super.call(this, vectorLayer) || this;\n /** @private */\n _this.boundHandleStyleImageChange_ = _this.handleStyleImageChange_.bind(_this);\n /**\n * @type {boolean}\n */\n _this.animatingOrInteracting_;\n /**\n * @private\n * @type {boolean}\n */\n _this.dirty_ = false;\n /**\n * @type {ImageData}\n */\n _this.hitDetectionImageData_ = null;\n /**\n * @type {Array<import(\"../../Feature.js\").default>}\n */\n _this.renderedFeatures_ = null;\n /**\n * @private\n * @type {number}\n */\n _this.renderedRevision_ = -1;\n /**\n * @private\n * @type {number}\n */\n _this.renderedResolution_ = NaN;\n /**\n * @private\n * @type {import(\"../../extent.js\").Extent}\n */\n _this.renderedExtent_ = createEmpty();\n /**\n * @private\n * @type {import(\"../../extent.js\").Extent}\n */\n _this.wrappedRenderedExtent_ = createEmpty();\n /**\n * @private\n * @type {number}\n */\n _this.renderedRotation_;\n /**\n * @private\n * @type {import(\"../../coordinate\").Coordinate}\n */\n _this.renderedCenter_ = null;\n /**\n * @private\n * @type {import(\"../../proj/Projection\").default}\n */\n _this.renderedProjection_ = null;\n /**\n * @private\n * @type {function(import(\"../../Feature.js\").default, import(\"../../Feature.js\").default): number|null}\n */\n _this.renderedRenderOrder_ = null;\n /**\n * @private\n * @type {import(\"../../render/canvas/ExecutorGroup\").default}\n */\n _this.replayGroup_ = null;\n /**\n * A new replay group had to be created by `prepareFrame()`\n * @type {boolean}\n */\n _this.replayGroupChanged = true;\n /**\n * @type {import(\"../../render/canvas/ExecutorGroup\").default}\n */\n _this.declutterExecutorGroup = null;\n /**\n * Clipping to be performed by `renderFrame()`\n * @type {boolean}\n */\n _this.clipping = true;\n return _this;\n }\n /**\n * @param {ExecutorGroup} executorGroup Executor group.\n * @param {import(\"../../PluggableMap.js\").FrameState} frameState Frame state.\n * @param {import(\"rbush\").default} [opt_declutterTree] Declutter tree.\n */\n CanvasVectorLayerRenderer.prototype.renderWorlds = function (executorGroup, frameState, opt_declutterTree) {\n var extent = frameState.extent;\n var viewState = frameState.viewState;\n var center = viewState.center;\n var resolution = viewState.resolution;\n var projection = viewState.projection;\n var rotation = viewState.rotation;\n var projectionExtent = projection.getExtent();\n var vectorSource = this.getLayer().getSource();\n var pixelRatio = frameState.pixelRatio;\n var viewHints = frameState.viewHints;\n var snapToPixel = !(viewHints[ViewHint.ANIMATING] || viewHints[ViewHint.INTERACTING]);\n var context = this.context;\n var width = Math.round(frameState.size[0] * pixelRatio);\n var height = Math.round(frameState.size[1] * pixelRatio);\n var multiWorld = vectorSource.getWrapX() && projection.canWrapX();\n var worldWidth = multiWorld ? getWidth(projectionExtent) : null;\n var endWorld = multiWorld\n ? Math.ceil((extent[2] - projectionExtent[2]) / worldWidth) + 1\n : 1;\n var world = multiWorld\n ? Math.floor((extent[0] - projectionExtent[0]) / worldWidth)\n : 0;\n do {\n var transform = this.getRenderTransform(center, resolution, rotation, pixelRatio, width, height, world * worldWidth);\n executorGroup.execute(context, 1, transform, rotation, snapToPixel, undefined, opt_declutterTree);\n } while (++world < endWorld);\n };\n /**\n * Render declutter items for this layer\n * @param {import(\"../../PluggableMap.js\").FrameState} frameState Frame state.\n */\n CanvasVectorLayerRenderer.prototype.renderDeclutter = function (frameState) {\n if (this.declutterExecutorGroup) {\n this.renderWorlds(this.declutterExecutorGroup, frameState, frameState.declutterTree);\n }\n };\n /**\n * Render the layer.\n * @param {import(\"../../PluggableMap.js\").FrameState} frameState Frame state.\n * @param {HTMLElement} target Target that may be used to render content to.\n * @return {HTMLElement} The rendered element.\n */\n CanvasVectorLayerRenderer.prototype.renderFrame = function (frameState, target) {\n var pixelRatio = frameState.pixelRatio;\n var layerState = frameState.layerStatesArray[frameState.layerIndex];\n // set forward and inverse pixel transforms\n makeScale(this.pixelTransform, 1 / pixelRatio, 1 / pixelRatio);\n makeInverse(this.inversePixelTransform, this.pixelTransform);\n var canvasTransform = transformToString(this.pixelTransform);\n this.useContainer(target, canvasTransform, layerState.opacity, this.getBackground(frameState));\n var context = this.context;\n var canvas = context.canvas;\n var replayGroup = this.replayGroup_;\n var declutterExecutorGroup = this.declutterExecutorGroup;\n if ((!replayGroup || replayGroup.isEmpty()) &&\n (!declutterExecutorGroup || declutterExecutorGroup.isEmpty())) {\n return null;\n }\n // resize and clear\n var width = Math.round(frameState.size[0] * pixelRatio);\n var height = Math.round(frameState.size[1] * pixelRatio);\n if (canvas.width != width || canvas.height != height) {\n canvas.width = width;\n canvas.height = height;\n if (canvas.style.transform !== canvasTransform) {\n canvas.style.transform = canvasTransform;\n }\n }\n else if (!this.containerReused) {\n context.clearRect(0, 0, width, height);\n }\n this.preRender(context, frameState);\n var viewState = frameState.viewState;\n var projection = viewState.projection;\n // clipped rendering if layer extent is set\n var clipped = false;\n var render = true;\n if (layerState.extent && this.clipping) {\n var layerExtent = fromUserExtent(layerState.extent, projection);\n render = intersectsExtent(layerExtent, frameState.extent);\n clipped = render && !containsExtent(layerExtent, frameState.extent);\n if (clipped) {\n this.clipUnrotated(context, frameState, layerExtent);\n }\n }\n if (render) {\n this.renderWorlds(replayGroup, frameState);\n }\n if (clipped) {\n context.restore();\n }\n this.postRender(context, frameState);\n var opacity = cssOpacity(layerState.opacity);\n var container = this.container;\n if (opacity !== container.style.opacity) {\n container.style.opacity = opacity;\n }\n if (this.renderedRotation_ !== viewState.rotation) {\n this.renderedRotation_ = viewState.rotation;\n this.hitDetectionImageData_ = null;\n }\n return this.container;\n };\n /**\n * Asynchronous layer level hit detection.\n * @param {import(\"../../pixel.js\").Pixel} pixel Pixel.\n * @return {Promise<Array<import(\"../../Feature\").default>>} Promise that resolves with an array of features.\n */\n CanvasVectorLayerRenderer.prototype.getFeatures = function (pixel) {\n return new Promise(\n /**\n * @param {function(Array<import(\"../../Feature\").default|import(\"../../render/Feature\").default>): void} resolve Resolver function.\n * @this {CanvasVectorLayerRenderer}\n */\n function (resolve) {\n if (!this.hitDetectionImageData_ && !this.animatingOrInteracting_) {\n var size = [this.context.canvas.width, this.context.canvas.height];\n apply(this.pixelTransform, size);\n var center = this.renderedCenter_;\n var resolution = this.renderedResolution_;\n var rotation = this.renderedRotation_;\n var projection = this.renderedProjection_;\n var extent = this.wrappedRenderedExtent_;\n var layer = this.getLayer();\n var transforms = [];\n var width = size[0] * HIT_DETECT_RESOLUTION;\n var height = size[1] * HIT_DETECT_RESOLUTION;\n transforms.push(this.getRenderTransform(center, resolution, rotation, HIT_DETECT_RESOLUTION, width, height, 0).slice());\n var source = layer.getSource();\n var projectionExtent = projection.getExtent();\n if (source.getWrapX() &&\n projection.canWrapX() &&\n !containsExtent(projectionExtent, extent)) {\n var startX = extent[0];\n var worldWidth = getWidth(projectionExtent);\n var world = 0;\n var offsetX = void 0;\n while (startX < projectionExtent[0]) {\n --world;\n offsetX = worldWidth * world;\n transforms.push(this.getRenderTransform(center, resolution, rotation, HIT_DETECT_RESOLUTION, width, height, offsetX).slice());\n startX += worldWidth;\n }\n world = 0;\n startX = extent[2];\n while (startX > projectionExtent[2]) {\n ++world;\n offsetX = worldWidth * world;\n transforms.push(this.getRenderTransform(center, resolution, rotation, HIT_DETECT_RESOLUTION, width, height, offsetX).slice());\n startX -= worldWidth;\n }\n }\n this.hitDetectionImageData_ = createHitDetectionImageData(size, transforms, this.renderedFeatures_, layer.getStyleFunction(), extent, resolution, rotation);\n }\n resolve(hitDetect(pixel, this.renderedFeatures_, this.hitDetectionImageData_));\n }.bind(this));\n };\n /**\n * @param {import(\"../../coordinate.js\").Coordinate} coordinate Coordinate.\n * @param {import(\"../../PluggableMap.js\").FrameState} frameState Frame state.\n * @param {number} hitTolerance Hit tolerance in pixels.\n * @param {import(\"../vector.js\").FeatureCallback<T>} callback Feature callback.\n * @param {Array<import(\"../Map.js\").HitMatch<T>>} matches The hit detected matches with tolerance.\n * @return {T|undefined} Callback result.\n * @template T\n */\n CanvasVectorLayerRenderer.prototype.forEachFeatureAtCoordinate = function (coordinate, frameState, hitTolerance, callback, matches) {\n var _this = this;\n if (!this.replayGroup_) {\n return undefined;\n }\n var resolution = frameState.viewState.resolution;\n var rotation = frameState.viewState.rotation;\n var layer = this.getLayer();\n /** @type {!Object<string, import(\"../Map.js\").HitMatch<T>|true>} */\n var features = {};\n /**\n * @param {import(\"../../Feature.js\").FeatureLike} feature Feature.\n * @param {import(\"../../geom/SimpleGeometry.js\").default} geometry Geometry.\n * @param {number} distanceSq The squared distance to the click position\n * @return {T|undefined} Callback result.\n */\n var featureCallback = function (feature, geometry, distanceSq) {\n var key = getUid(feature);\n var match = features[key];\n if (!match) {\n if (distanceSq === 0) {\n features[key] = true;\n return callback(feature, layer, geometry);\n }\n matches.push((features[key] = {\n feature: feature,\n layer: layer,\n geometry: geometry,\n distanceSq: distanceSq,\n callback: callback,\n }));\n }\n else if (match !== true && distanceSq < match.distanceSq) {\n if (distanceSq === 0) {\n features[key] = true;\n matches.splice(matches.lastIndexOf(match), 1);\n return callback(feature, layer, geometry);\n }\n match.geometry = geometry;\n match.distanceSq = distanceSq;\n }\n return undefined;\n };\n var result;\n var executorGroups = [this.replayGroup_];\n if (this.declutterExecutorGroup) {\n executorGroups.push(this.declutterExecutorGroup);\n }\n executorGroups.some(function (executorGroup) {\n return (result = executorGroup.forEachFeatureAtCoordinate(coordinate, resolution, rotation, hitTolerance, featureCallback, executorGroup === _this.declutterExecutorGroup &&\n frameState.declutterTree\n ? frameState.declutterTree.all().map(function (item) { return item.value; })\n : null));\n });\n return result;\n };\n /**\n * Perform action necessary to get the layer rendered after new fonts have loaded\n */\n CanvasVectorLayerRenderer.prototype.handleFontsChanged = function () {\n var layer = this.getLayer();\n if (layer.getVisible() && this.replayGroup_) {\n layer.changed();\n }\n };\n /**\n * Handle changes in image style state.\n * @param {import(\"../../events/Event.js\").default} event Image style change event.\n * @private\n */\n CanvasVectorLayerRenderer.prototype.handleStyleImageChange_ = function (event) {\n this.renderIfReadyAndVisible();\n };\n /**\n * Determine whether render should be called.\n * @param {import(\"../../PluggableMap.js\").FrameState} frameState Frame state.\n * @return {boolean} Layer is ready to be rendered.\n */\n CanvasVectorLayerRenderer.prototype.prepareFrame = function (frameState) {\n var vectorLayer = this.getLayer();\n var vectorSource = vectorLayer.getSource();\n if (!vectorSource) {\n return false;\n }\n var animating = frameState.viewHints[ViewHint.ANIMATING];\n var interacting = frameState.viewHints[ViewHint.INTERACTING];\n var updateWhileAnimating = vectorLayer.getUpdateWhileAnimating();\n var updateWhileInteracting = vectorLayer.getUpdateWhileInteracting();\n if ((!this.dirty_ && !updateWhileAnimating && animating) ||\n (!updateWhileInteracting && interacting)) {\n this.animatingOrInteracting_ = true;\n return true;\n }\n this.animatingOrInteracting_ = false;\n var frameStateExtent = frameState.extent;\n var viewState = frameState.viewState;\n var projection = viewState.projection;\n var resolution = viewState.resolution;\n var pixelRatio = frameState.pixelRatio;\n var vectorLayerRevision = vectorLayer.getRevision();\n var vectorLayerRenderBuffer = vectorLayer.getRenderBuffer();\n var vectorLayerRenderOrder = vectorLayer.getRenderOrder();\n if (vectorLayerRenderOrder === undefined) {\n vectorLayerRenderOrder = defaultRenderOrder;\n }\n var center = viewState.center.slice();\n var extent = buffer(frameStateExtent, vectorLayerRenderBuffer * resolution);\n var renderedExtent = extent.slice();\n var loadExtents = [extent.slice()];\n var projectionExtent = projection.getExtent();\n if (vectorSource.getWrapX() &&\n projection.canWrapX() &&\n !containsExtent(projectionExtent, frameState.extent)) {\n // For the replay group, we need an extent that intersects the real world\n // (-180° to +180°). To support geometries in a coordinate range from -540°\n // to +540°, we add at least 1 world width on each side of the projection\n // extent. If the viewport is wider than the world, we need to add half of\n // the viewport width to make sure we cover the whole viewport.\n var worldWidth = getWidth(projectionExtent);\n var gutter = Math.max(getWidth(extent) / 2, worldWidth);\n extent[0] = projectionExtent[0] - gutter;\n extent[2] = projectionExtent[2] + gutter;\n wrapCoordinateX(center, projection);\n var loadExtent = wrapExtentX(loadExtents[0], projection);\n // If the extent crosses the date line, we load data for both edges of the worlds\n if (loadExtent[0] < projectionExtent[0] &&\n loadExtent[2] < projectionExtent[2]) {\n loadExtents.push([\n loadExtent[0] + worldWidth,\n loadExtent[1],\n loadExtent[2] + worldWidth,\n loadExtent[3],\n ]);\n }\n else if (loadExtent[0] > projectionExtent[0] &&\n loadExtent[2] > projectionExtent[2]) {\n loadExtents.push([\n loadExtent[0] - worldWidth,\n loadExtent[1],\n loadExtent[2] - worldWidth,\n loadExtent[3],\n ]);\n }\n }\n if (!this.dirty_ &&\n this.renderedResolution_ == resolution &&\n this.renderedRevision_ == vectorLayerRevision &&\n this.renderedRenderOrder_ == vectorLayerRenderOrder &&\n containsExtent(this.wrappedRenderedExtent_, extent)) {\n if (!equals(this.renderedExtent_, renderedExtent)) {\n this.hitDetectionImageData_ = null;\n this.renderedExtent_ = renderedExtent;\n }\n this.renderedCenter_ = center;\n this.replayGroupChanged = false;\n return true;\n }\n this.replayGroup_ = null;\n this.dirty_ = false;\n var replayGroup = new CanvasBuilderGroup(getRenderTolerance(resolution, pixelRatio), extent, resolution, pixelRatio);\n var declutterBuilderGroup;\n if (this.getLayer().getDeclutter()) {\n declutterBuilderGroup = new CanvasBuilderGroup(getRenderTolerance(resolution, pixelRatio), extent, resolution, pixelRatio);\n }\n var userProjection = getUserProjection();\n var userTransform;\n if (userProjection) {\n for (var i = 0, ii = loadExtents.length; i < ii; ++i) {\n var extent_1 = loadExtents[i];\n var userExtent_1 = toUserExtent(extent_1, projection);\n vectorSource.loadFeatures(userExtent_1, toUserResolution(resolution, projection), userProjection);\n }\n userTransform = getTransformFromProjections(userProjection, projection);\n }\n else {\n for (var i = 0, ii = loadExtents.length; i < ii; ++i) {\n vectorSource.loadFeatures(loadExtents[i], resolution, projection);\n }\n }\n var squaredTolerance = getSquaredRenderTolerance(resolution, pixelRatio);\n var render = \n /**\n * @param {import(\"../../Feature.js\").default} feature Feature.\n * @this {CanvasVectorLayerRenderer}\n */\n function (feature) {\n var styles;\n var styleFunction = feature.getStyleFunction() || vectorLayer.getStyleFunction();\n if (styleFunction) {\n styles = styleFunction(feature, resolution);\n }\n if (styles) {\n var dirty = this.renderFeature(feature, squaredTolerance, styles, replayGroup, userTransform, declutterBuilderGroup);\n this.dirty_ = this.dirty_ || dirty;\n }\n }.bind(this);\n var userExtent = toUserExtent(extent, projection);\n /** @type {Array<import(\"../../Feature.js\").default>} */\n var features = vectorSource.getFeaturesInExtent(userExtent);\n if (vectorLayerRenderOrder) {\n features.sort(vectorLayerRenderOrder);\n }\n for (var i = 0, ii = features.length; i < ii; ++i) {\n render(features[i]);\n }\n this.renderedFeatures_ = features;\n var replayGroupInstructions = replayGroup.finish();\n var executorGroup = new ExecutorGroup(extent, resolution, pixelRatio, vectorSource.getOverlaps(), replayGroupInstructions, vectorLayer.getRenderBuffer());\n if (declutterBuilderGroup) {\n this.declutterExecutorGroup = new ExecutorGroup(extent, resolution, pixelRatio, vectorSource.getOverlaps(), declutterBuilderGroup.finish(), vectorLayer.getRenderBuffer());\n }\n this.renderedResolution_ = resolution;\n this.renderedRevision_ = vectorLayerRevision;\n this.renderedRenderOrder_ = vectorLayerRenderOrder;\n this.renderedExtent_ = renderedExtent;\n this.wrappedRenderedExtent_ = extent;\n this.renderedCenter_ = center;\n this.renderedProjection_ = projection;\n this.replayGroup_ = executorGroup;\n this.hitDetectionImageData_ = null;\n this.replayGroupChanged = true;\n return true;\n };\n /**\n * @param {import(\"../../Feature.js\").default} feature Feature.\n * @param {number} squaredTolerance Squared render tolerance.\n * @param {import(\"../../style/Style.js\").default|Array<import(\"../../style/Style.js\").default>} styles The style or array of styles.\n * @param {import(\"../../render/canvas/BuilderGroup.js\").default} builderGroup Builder group.\n * @param {import(\"../../proj.js\").TransformFunction} [opt_transform] Transform from user to view projection.\n * @param {import(\"../../render/canvas/BuilderGroup.js\").default} [opt_declutterBuilderGroup] Builder for decluttering.\n * @return {boolean} `true` if an image is loading.\n */\n CanvasVectorLayerRenderer.prototype.renderFeature = function (feature, squaredTolerance, styles, builderGroup, opt_transform, opt_declutterBuilderGroup) {\n if (!styles) {\n return false;\n }\n var loading = false;\n if (Array.isArray(styles)) {\n for (var i = 0, ii = styles.length; i < ii; ++i) {\n loading =\n renderFeature(builderGroup, feature, styles[i], squaredTolerance, this.boundHandleStyleImageChange_, opt_transform, opt_declutterBuilderGroup) || loading;\n }\n }\n else {\n loading = renderFeature(builderGroup, feature, styles, squaredTolerance, this.boundHandleStyleImageChange_, opt_transform, opt_declutterBuilderGroup);\n }\n return loading;\n };\n return CanvasVectorLayerRenderer;\n}(CanvasLayerRenderer));\nexport default CanvasVectorLayerRenderer;\n//# sourceMappingURL=VectorLayer.js.map","/**\n * @module ol/ViewHint\n */\n/**\n * @enum {number}\n */\nexport default {\n ANIMATING: 0,\n INTERACTING: 1,\n};\n//# sourceMappingURL=ViewHint.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/layer/Vector\n */\nimport BaseVectorLayer from './BaseVector.js';\nimport CanvasVectorLayerRenderer from '../renderer/canvas/VectorLayer.js';\n/**\n * @classdesc\n * Vector data is rendered client-side, as vectors. This layer type provides most accurate rendering\n * even during animations. Points and labels stay upright on rotated views. For very large\n * amounts of vector data, performance may suffer during pan and zoom animations. In this case,\n * try {@link module:ol/layer/VectorImage~VectorImageLayer}.\n *\n * Note that any property set in the options is set as a {@link module:ol/Object~BaseObject}\n * property on the layer object; for example, setting `title: 'My Title'` in the\n * options means that `title` is observable, and has get/set accessors.\n *\n * @template {import(\"../source/Vector.js\").default} VectorSourceType\n * @extends {BaseVectorLayer<VectorSourceType, CanvasVectorLayerRenderer>}\n * @api\n */\nvar VectorLayer = /** @class */ (function (_super) {\n __extends(VectorLayer, _super);\n /**\n * @param {import(\"./BaseVector.js\").Options<VectorSourceType>} [opt_options] Options.\n */\n function VectorLayer(opt_options) {\n return _super.call(this, opt_options) || this;\n }\n VectorLayer.prototype.createRenderer = function () {\n return new CanvasVectorLayerRenderer(this);\n };\n return VectorLayer;\n}(BaseVectorLayer));\nexport default VectorLayer;\n//# sourceMappingURL=Vector.js.map","/**\n * @module ol/structs/LRUCache\n */\nimport { assert } from '../asserts.js';\n/**\n * @typedef {Object} Entry\n * @property {string} key_ Key.\n * @property {Object} newer Newer.\n * @property {Object} older Older.\n * @property {*} value_ Value.\n */\n/**\n * @classdesc\n * Implements a Least-Recently-Used cache where the keys do not conflict with\n * Object's properties (e.g. 'hasOwnProperty' is not allowed as a key). Expiring\n * items from the cache is the responsibility of the user.\n *\n * @fires import(\"../events/Event.js\").default\n * @template T\n */\nvar LRUCache = /** @class */ (function () {\n /**\n * @param {number} [opt_highWaterMark] High water mark.\n */\n function LRUCache(opt_highWaterMark) {\n /**\n * Desired max cache size after expireCache(). If set to 0, no cache entries\n * will be pruned at all.\n * @type {number}\n */\n this.highWaterMark =\n opt_highWaterMark !== undefined ? opt_highWaterMark : 2048;\n /**\n * @private\n * @type {number}\n */\n this.count_ = 0;\n /**\n * @private\n * @type {!Object<string, Entry>}\n */\n this.entries_ = {};\n /**\n * @private\n * @type {?Entry}\n */\n this.oldest_ = null;\n /**\n * @private\n * @type {?Entry}\n */\n this.newest_ = null;\n }\n /**\n * @return {boolean} Can expire cache.\n */\n LRUCache.prototype.canExpireCache = function () {\n return this.highWaterMark > 0 && this.getCount() > this.highWaterMark;\n };\n /**\n * Expire the cache.\n * @param {!Object<string, boolean>} [keep] Keys to keep. To be implemented by subclasses.\n */\n LRUCache.prototype.expireCache = function (keep) {\n while (this.canExpireCache()) {\n this.pop();\n }\n };\n /**\n * FIXME empty description for jsdoc\n */\n LRUCache.prototype.clear = function () {\n this.count_ = 0;\n this.entries_ = {};\n this.oldest_ = null;\n this.newest_ = null;\n };\n /**\n * @param {string} key Key.\n * @return {boolean} Contains key.\n */\n LRUCache.prototype.containsKey = function (key) {\n return this.entries_.hasOwnProperty(key);\n };\n /**\n * @param {function(T, string, LRUCache<T>): ?} f The function\n * to call for every entry from the oldest to the newer. This function takes\n * 3 arguments (the entry value, the entry key and the LRUCache object).\n * The return value is ignored.\n */\n LRUCache.prototype.forEach = function (f) {\n var entry = this.oldest_;\n while (entry) {\n f(entry.value_, entry.key_, this);\n entry = entry.newer;\n }\n };\n /**\n * @param {string} key Key.\n * @param {*} [opt_options] Options (reserved for subclasses).\n * @return {T} Value.\n */\n LRUCache.prototype.get = function (key, opt_options) {\n var entry = this.entries_[key];\n assert(entry !== undefined, 15); // Tried to get a value for a key that does not exist in the cache\n if (entry === this.newest_) {\n return entry.value_;\n }\n else if (entry === this.oldest_) {\n this.oldest_ = /** @type {Entry} */ (this.oldest_.newer);\n this.oldest_.older = null;\n }\n else {\n entry.newer.older = entry.older;\n entry.older.newer = entry.newer;\n }\n entry.newer = null;\n entry.older = this.newest_;\n this.newest_.newer = entry;\n this.newest_ = entry;\n return entry.value_;\n };\n /**\n * Remove an entry from the cache.\n * @param {string} key The entry key.\n * @return {T} The removed entry.\n */\n LRUCache.prototype.remove = function (key) {\n var entry = this.entries_[key];\n assert(entry !== undefined, 15); // Tried to get a value for a key that does not exist in the cache\n if (entry === this.newest_) {\n this.newest_ = /** @type {Entry} */ (entry.older);\n if (this.newest_) {\n this.newest_.newer = null;\n }\n }\n else if (entry === this.oldest_) {\n this.oldest_ = /** @type {Entry} */ (entry.newer);\n if (this.oldest_) {\n this.oldest_.older = null;\n }\n }\n else {\n entry.newer.older = entry.older;\n entry.older.newer = entry.newer;\n }\n delete this.entries_[key];\n --this.count_;\n return entry.value_;\n };\n /**\n * @return {number} Count.\n */\n LRUCache.prototype.getCount = function () {\n return this.count_;\n };\n /**\n * @return {Array<string>} Keys.\n */\n LRUCache.prototype.getKeys = function () {\n var keys = new Array(this.count_);\n var i = 0;\n var entry;\n for (entry = this.newest_; entry; entry = entry.older) {\n keys[i++] = entry.key_;\n }\n return keys;\n };\n /**\n * @return {Array<T>} Values.\n */\n LRUCache.prototype.getValues = function () {\n var values = new Array(this.count_);\n var i = 0;\n var entry;\n for (entry = this.newest_; entry; entry = entry.older) {\n values[i++] = entry.value_;\n }\n return values;\n };\n /**\n * @return {T} Last value.\n */\n LRUCache.prototype.peekLast = function () {\n return this.oldest_.value_;\n };\n /**\n * @return {string} Last key.\n */\n LRUCache.prototype.peekLastKey = function () {\n return this.oldest_.key_;\n };\n /**\n * Get the key of the newest item in the cache. Throws if the cache is empty.\n * @return {string} The newest key.\n */\n LRUCache.prototype.peekFirstKey = function () {\n return this.newest_.key_;\n };\n /**\n * @return {T} value Value.\n */\n LRUCache.prototype.pop = function () {\n var entry = this.oldest_;\n delete this.entries_[entry.key_];\n if (entry.newer) {\n entry.newer.older = null;\n }\n this.oldest_ = /** @type {Entry} */ (entry.newer);\n if (!this.oldest_) {\n this.newest_ = null;\n }\n --this.count_;\n return entry.value_;\n };\n /**\n * @param {string} key Key.\n * @param {T} value Value.\n */\n LRUCache.prototype.replace = function (key, value) {\n this.get(key); // update `newest_`\n this.entries_[key].value_ = value;\n };\n /**\n * @param {string} key Key.\n * @param {T} value Value.\n */\n LRUCache.prototype.set = function (key, value) {\n assert(!(key in this.entries_), 16); // Tried to set a value for a key that is used already\n var entry = {\n key_: key,\n newer: null,\n older: this.newest_,\n value_: value,\n };\n if (!this.newest_) {\n this.oldest_ = entry;\n }\n else {\n this.newest_.newer = entry;\n }\n this.newest_ = entry;\n this.entries_[key] = entry;\n ++this.count_;\n };\n /**\n * Set a maximum number of entries for the cache.\n * @param {number} size Cache size.\n * @api\n */\n LRUCache.prototype.setSize = function (size) {\n this.highWaterMark = size;\n };\n return LRUCache;\n}());\nexport default LRUCache;\n//# sourceMappingURL=LRUCache.js.map","/**\n * @module ol/tilecoord\n */\n/**\n * An array of three numbers representing the location of a tile in a tile\n * grid. The order is `z` (zoom level), `x` (column), and `y` (row).\n * @typedef {Array<number>} TileCoord\n * @api\n */\n/**\n * @param {number} z Z.\n * @param {number} x X.\n * @param {number} y Y.\n * @param {TileCoord} [opt_tileCoord] Tile coordinate.\n * @return {TileCoord} Tile coordinate.\n */\nexport function createOrUpdate(z, x, y, opt_tileCoord) {\n if (opt_tileCoord !== undefined) {\n opt_tileCoord[0] = z;\n opt_tileCoord[1] = x;\n opt_tileCoord[2] = y;\n return opt_tileCoord;\n }\n else {\n return [z, x, y];\n }\n}\n/**\n * @param {number} z Z.\n * @param {number} x X.\n * @param {number} y Y.\n * @return {string} Key.\n */\nexport function getKeyZXY(z, x, y) {\n return z + '/' + x + '/' + y;\n}\n/**\n * Get the key for a tile coord.\n * @param {TileCoord} tileCoord The tile coord.\n * @return {string} Key.\n */\nexport function getKey(tileCoord) {\n return getKeyZXY(tileCoord[0], tileCoord[1], tileCoord[2]);\n}\n/**\n * Get the tile cache key for a tile key obtained through `tile.getKey()`.\n * @param {string} tileKey The tile key.\n * @return {string} The cache key.\n */\nexport function getCacheKeyForTileKey(tileKey) {\n var _a = tileKey\n .substring(tileKey.lastIndexOf('/') + 1, tileKey.length)\n .split(',')\n .map(Number), z = _a[0], x = _a[1], y = _a[2];\n return getKeyZXY(z, x, y);\n}\n/**\n * Get a tile coord given a key.\n * @param {string} key The tile coord key.\n * @return {TileCoord} The tile coord.\n */\nexport function fromKey(key) {\n return key.split('/').map(Number);\n}\n/**\n * @param {TileCoord} tileCoord Tile coord.\n * @return {number} Hash.\n */\nexport function hash(tileCoord) {\n return (tileCoord[1] << tileCoord[0]) + tileCoord[2];\n}\n/**\n * @param {TileCoord} tileCoord Tile coordinate.\n * @param {!import(\"./tilegrid/TileGrid.js\").default} tileGrid Tile grid.\n * @return {boolean} Tile coordinate is within extent and zoom level range.\n */\nexport function withinExtentAndZ(tileCoord, tileGrid) {\n var z = tileCoord[0];\n var x = tileCoord[1];\n var y = tileCoord[2];\n if (tileGrid.getMinZoom() > z || z > tileGrid.getMaxZoom()) {\n return false;\n }\n var tileRange = tileGrid.getFullTileRange(z);\n if (!tileRange) {\n return true;\n }\n else {\n return tileRange.containsXY(x, y);\n }\n}\n//# sourceMappingURL=tilecoord.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/TileCache\n */\nimport LRUCache from './structs/LRUCache.js';\nimport { fromKey, getKey } from './tilecoord.js';\nvar TileCache = /** @class */ (function (_super) {\n __extends(TileCache, _super);\n function TileCache() {\n return _super !== null && _super.apply(this, arguments) || this;\n }\n /**\n * @param {!Object<string, boolean>} usedTiles Used tiles.\n */\n TileCache.prototype.expireCache = function (usedTiles) {\n while (this.canExpireCache()) {\n var tile = this.peekLast();\n if (tile.getKey() in usedTiles) {\n break;\n }\n else {\n this.pop().release();\n }\n }\n };\n /**\n * Prune all tiles from the cache that don't have the same z as the newest tile.\n */\n TileCache.prototype.pruneExceptNewestZ = function () {\n if (this.getCount() === 0) {\n return;\n }\n var key = this.peekFirstKey();\n var tileCoord = fromKey(key);\n var z = tileCoord[0];\n this.forEach(function (tile) {\n if (tile.tileCoord[0] !== z) {\n this.remove(getKey(tile.tileCoord));\n tile.release();\n }\n }.bind(this));\n };\n return TileCache;\n}(LRUCache));\nexport default TileCache;\n//# sourceMappingURL=TileCache.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/source/Source\n */\nimport BaseObject from '../Object.js';\nimport SourceState from './State.js';\nimport { abstract } from '../util.js';\nimport { get as getProjection } from '../proj.js';\n/**\n * A function that takes a {@link module:ol/PluggableMap~FrameState} and returns a string or\n * an array of strings representing source attributions.\n *\n * @typedef {function(import(\"../PluggableMap.js\").FrameState): (string|Array<string>)} Attribution\n */\n/**\n * A type that can be used to provide attribution information for data sources.\n *\n * It represents either\n * * a simple string (e.g. `'© Acme Inc.'`)\n * * an array of simple strings (e.g. `['© Acme Inc.', '© Bacme Inc.']`)\n * * a function that returns a string or array of strings ({@link module:ol/source/Source~Attribution})\n *\n * @typedef {string|Array<string>|Attribution} AttributionLike\n */\n/**\n * @typedef {Object} Options\n * @property {AttributionLike} [attributions] Attributions.\n * @property {boolean} [attributionsCollapsible=true] Attributions are collapsible.\n * @property {import(\"../proj.js\").ProjectionLike} [projection] Projection. Default is the view projection.\n * @property {import(\"./State.js\").default} [state='ready'] State.\n * @property {boolean} [wrapX=false] WrapX.\n * @property {boolean} [interpolate=false] Use interpolated values when resampling. By default,\n * the nearest neighbor is used when resampling.\n */\n/**\n * @classdesc\n * Abstract base class; normally only used for creating subclasses and not\n * instantiated in apps.\n * Base class for {@link module:ol/layer/Layer~Layer} sources.\n *\n * A generic `change` event is triggered when the state of the source changes.\n * @abstract\n * @api\n */\nvar Source = /** @class */ (function (_super) {\n __extends(Source, _super);\n /**\n * @param {Options} options Source options.\n */\n function Source(options) {\n var _this = _super.call(this) || this;\n /**\n * @protected\n * @type {import(\"../proj/Projection.js\").default}\n */\n _this.projection = getProjection(options.projection);\n /**\n * @private\n * @type {?Attribution}\n */\n _this.attributions_ = adaptAttributions(options.attributions);\n /**\n * @private\n * @type {boolean}\n */\n _this.attributionsCollapsible_ =\n options.attributionsCollapsible !== undefined\n ? options.attributionsCollapsible\n : true;\n /**\n * This source is currently loading data. Sources that defer loading to the\n * map's tile queue never set this to `true`.\n * @type {boolean}\n */\n _this.loading = false;\n /**\n * @private\n * @type {import(\"./State.js\").default}\n */\n _this.state_ =\n options.state !== undefined ? options.state : SourceState.READY;\n /**\n * @private\n * @type {boolean}\n */\n _this.wrapX_ = options.wrapX !== undefined ? options.wrapX : false;\n /**\n * @private\n * @type {boolean}\n */\n _this.interpolate_ = !!options.interpolate;\n /**\n * @protected\n * @type {function(import(\"../View.js\").ViewOptions):void}\n */\n _this.viewResolver = null;\n /**\n * @protected\n * @type {function(Error):void}\n */\n _this.viewRejector = null;\n var self = _this;\n /**\n * @private\n * @type {Promise<import(\"../View.js\").ViewOptions>}\n */\n _this.viewPromise_ = new Promise(function (resolve, reject) {\n self.viewResolver = resolve;\n self.viewRejector = reject;\n });\n return _this;\n }\n /**\n * Get the attribution function for the source.\n * @return {?Attribution} Attribution function.\n * @api\n */\n Source.prototype.getAttributions = function () {\n return this.attributions_;\n };\n /**\n * @return {boolean} Attributions are collapsible.\n * @api\n */\n Source.prototype.getAttributionsCollapsible = function () {\n return this.attributionsCollapsible_;\n };\n /**\n * Get the projection of the source.\n * @return {import(\"../proj/Projection.js\").default} Projection.\n * @api\n */\n Source.prototype.getProjection = function () {\n return this.projection;\n };\n /**\n * @abstract\n * @return {Array<number>|null} Resolutions.\n */\n Source.prototype.getResolutions = function () {\n return abstract();\n };\n /**\n * @return {Promise<import(\"../View.js\").ViewOptions>} A promise for view-related properties.\n */\n Source.prototype.getView = function () {\n return this.viewPromise_;\n };\n /**\n * Get the state of the source, see {@link module:ol/source/State~State} for possible states.\n * @return {import(\"./State.js\").default} State.\n * @api\n */\n Source.prototype.getState = function () {\n return this.state_;\n };\n /**\n * @return {boolean|undefined} Wrap X.\n */\n Source.prototype.getWrapX = function () {\n return this.wrapX_;\n };\n /**\n * @return {boolean} Use linear interpolation when resampling.\n */\n Source.prototype.getInterpolate = function () {\n return this.interpolate_;\n };\n /**\n * Refreshes the source. The source will be cleared, and data from the server will be reloaded.\n * @api\n */\n Source.prototype.refresh = function () {\n this.changed();\n };\n /**\n * Set the attributions of the source.\n * @param {AttributionLike|undefined} attributions Attributions.\n * Can be passed as `string`, `Array<string>`, {@link module:ol/source/Source~Attribution},\n * or `undefined`.\n * @api\n */\n Source.prototype.setAttributions = function (attributions) {\n this.attributions_ = adaptAttributions(attributions);\n this.changed();\n };\n /**\n * Set the state of the source.\n * @param {import(\"./State.js\").default} state State.\n */\n Source.prototype.setState = function (state) {\n this.state_ = state;\n this.changed();\n };\n return Source;\n}(BaseObject));\n/**\n * Turns the attributions option into an attributions function.\n * @param {AttributionLike|undefined} attributionLike The attribution option.\n * @return {Attribution|null} An attribution function (or null).\n */\nfunction adaptAttributions(attributionLike) {\n if (!attributionLike) {\n return null;\n }\n if (Array.isArray(attributionLike)) {\n return function (frameState) {\n return attributionLike;\n };\n }\n if (typeof attributionLike === 'function') {\n return attributionLike;\n }\n return function (frameState) {\n return [attributionLike];\n };\n}\nexport default Source;\n//# sourceMappingURL=Source.js.map","/**\n * @module ol/tilegrid/TileGrid\n */\nimport TileRange, { createOrUpdate as createOrUpdateTileRange, } from '../TileRange.js';\nimport { DEFAULT_TILE_SIZE } from './common.js';\nimport { assert } from '../asserts.js';\nimport { ceil, clamp, floor } from '../math.js';\nimport { createOrUpdate, getTopLeft } from '../extent.js';\nimport { createOrUpdate as createOrUpdateTileCoord } from '../tilecoord.js';\nimport { isSorted, linearFindNearest } from '../array.js';\nimport { toSize } from '../size.js';\n/**\n * @private\n * @type {import(\"../tilecoord.js\").TileCoord}\n */\nvar tmpTileCoord = [0, 0, 0];\n/**\n * Number of decimal digits to consider in integer values when rounding.\n * @type {number}\n */\nvar DECIMALS = 5;\n/**\n * @typedef {Object} Options\n * @property {import(\"../extent.js\").Extent} [extent] Extent for the tile grid. No tiles outside this\n * extent will be requested by {@link module:ol/source/Tile~TileSource} sources. When no `origin` or\n * `origins` are configured, the `origin` will be set to the top-left corner of the extent.\n * @property {number} [minZoom=0] Minimum zoom.\n * @property {import(\"../coordinate.js\").Coordinate} [origin] The tile grid origin, i.e. where the `x`\n * and `y` axes meet (`[z, 0, 0]`). Tile coordinates increase left to right and downwards. If not\n * specified, `extent` or `origins` must be provided.\n * @property {Array<import(\"../coordinate.js\").Coordinate>} [origins] Tile grid origins, i.e. where\n * the `x` and `y` axes meet (`[z, 0, 0]`), for each zoom level. If given, the array length\n * should match the length of the `resolutions` array, i.e. each resolution can have a different\n * origin. Tile coordinates increase left to right and downwards. If not specified, `extent` or\n * `origin` must be provided.\n * @property {!Array<number>} resolutions Resolutions. The array index of each resolution needs\n * to match the zoom level. This means that even if a `minZoom` is configured, the resolutions\n * array will have a length of `maxZoom + 1`.\n * @property {Array<import(\"../size.js\").Size>} [sizes] Number of tile rows and columns\n * of the grid for each zoom level. If specified the values\n * define each zoom level's extent together with the `origin` or `origins`.\n * A grid `extent` can be configured in addition, and will further limit the extent\n * for which tile requests are made by sources. If the bottom-left corner of\n * an extent is used as `origin` or `origins`, then the `y` value must be\n * negative because OpenLayers tile coordinates use the top left as the origin.\n * @property {number|import(\"../size.js\").Size} [tileSize] Tile size.\n * Default is `[256, 256]`.\n * @property {Array<import(\"../size.js\").Size>} [tileSizes] Tile sizes. If given, the array length\n * should match the length of the `resolutions` array, i.e. each resolution can have a different\n * tile size.\n */\n/**\n * @classdesc\n * Base class for setting the grid pattern for sources accessing tiled-image\n * servers.\n * @api\n */\nvar TileGrid = /** @class */ (function () {\n /**\n * @param {Options} options Tile grid options.\n */\n function TileGrid(options) {\n /**\n * @protected\n * @type {number}\n */\n this.minZoom = options.minZoom !== undefined ? options.minZoom : 0;\n /**\n * @private\n * @type {!Array<number>}\n */\n this.resolutions_ = options.resolutions;\n assert(isSorted(this.resolutions_, function (a, b) {\n return b - a;\n }, true), 17); // `resolutions` must be sorted in descending order\n // check if we've got a consistent zoom factor and origin\n var zoomFactor;\n if (!options.origins) {\n for (var i = 0, ii = this.resolutions_.length - 1; i < ii; ++i) {\n if (!zoomFactor) {\n zoomFactor = this.resolutions_[i] / this.resolutions_[i + 1];\n }\n else {\n if (this.resolutions_[i] / this.resolutions_[i + 1] !== zoomFactor) {\n zoomFactor = undefined;\n break;\n }\n }\n }\n }\n /**\n * @private\n * @type {number|undefined}\n */\n this.zoomFactor_ = zoomFactor;\n /**\n * @protected\n * @type {number}\n */\n this.maxZoom = this.resolutions_.length - 1;\n /**\n * @private\n * @type {import(\"../coordinate.js\").Coordinate|null}\n */\n this.origin_ = options.origin !== undefined ? options.origin : null;\n /**\n * @private\n * @type {Array<import(\"../coordinate.js\").Coordinate>}\n */\n this.origins_ = null;\n if (options.origins !== undefined) {\n this.origins_ = options.origins;\n assert(this.origins_.length == this.resolutions_.length, 20); // Number of `origins` and `resolutions` must be equal\n }\n var extent = options.extent;\n if (extent !== undefined && !this.origin_ && !this.origins_) {\n this.origin_ = getTopLeft(extent);\n }\n assert((!this.origin_ && this.origins_) || (this.origin_ && !this.origins_), 18); // Either `origin` or `origins` must be configured, never both\n /**\n * @private\n * @type {Array<number|import(\"../size.js\").Size>}\n */\n this.tileSizes_ = null;\n if (options.tileSizes !== undefined) {\n this.tileSizes_ = options.tileSizes;\n assert(this.tileSizes_.length == this.resolutions_.length, 19); // Number of `tileSizes` and `resolutions` must be equal\n }\n /**\n * @private\n * @type {number|import(\"../size.js\").Size}\n */\n this.tileSize_ =\n options.tileSize !== undefined\n ? options.tileSize\n : !this.tileSizes_\n ? DEFAULT_TILE_SIZE\n : null;\n assert((!this.tileSize_ && this.tileSizes_) ||\n (this.tileSize_ && !this.tileSizes_), 22); // Either `tileSize` or `tileSizes` must be configured, never both\n /**\n * @private\n * @type {import(\"../extent.js\").Extent}\n */\n this.extent_ = extent !== undefined ? extent : null;\n /**\n * @private\n * @type {Array<import(\"../TileRange.js\").default>}\n */\n this.fullTileRanges_ = null;\n /**\n * @private\n * @type {import(\"../size.js\").Size}\n */\n this.tmpSize_ = [0, 0];\n /**\n * @private\n * @type {import(\"../extent.js\").Extent}\n */\n this.tmpExtent_ = [0, 0, 0, 0];\n if (options.sizes !== undefined) {\n this.fullTileRanges_ = options.sizes.map(function (size, z) {\n var tileRange = new TileRange(Math.min(0, size[0]), Math.max(size[0] - 1, -1), Math.min(0, size[1]), Math.max(size[1] - 1, -1));\n if (extent) {\n var restrictedTileRange = this.getTileRangeForExtentAndZ(extent, z);\n tileRange.minX = Math.max(restrictedTileRange.minX, tileRange.minX);\n tileRange.maxX = Math.min(restrictedTileRange.maxX, tileRange.maxX);\n tileRange.minY = Math.max(restrictedTileRange.minY, tileRange.minY);\n tileRange.maxY = Math.min(restrictedTileRange.maxY, tileRange.maxY);\n }\n return tileRange;\n }, this);\n }\n else if (extent) {\n this.calculateTileRanges_(extent);\n }\n }\n /**\n * Call a function with each tile coordinate for a given extent and zoom level.\n *\n * @param {import(\"../extent.js\").Extent} extent Extent.\n * @param {number} zoom Integer zoom level.\n * @param {function(import(\"../tilecoord.js\").TileCoord): void} callback Function called with each tile coordinate.\n * @api\n */\n TileGrid.prototype.forEachTileCoord = function (extent, zoom, callback) {\n var tileRange = this.getTileRangeForExtentAndZ(extent, zoom);\n for (var i = tileRange.minX, ii = tileRange.maxX; i <= ii; ++i) {\n for (var j = tileRange.minY, jj = tileRange.maxY; j <= jj; ++j) {\n callback([zoom, i, j]);\n }\n }\n };\n /**\n * @param {import(\"../tilecoord.js\").TileCoord} tileCoord Tile coordinate.\n * @param {function(number, import(\"../TileRange.js\").default): boolean} callback Callback.\n * @param {import(\"../TileRange.js\").default} [opt_tileRange] Temporary import(\"../TileRange.js\").default object.\n * @param {import(\"../extent.js\").Extent} [opt_extent] Temporary import(\"../extent.js\").Extent object.\n * @return {boolean} Callback succeeded.\n */\n TileGrid.prototype.forEachTileCoordParentTileRange = function (tileCoord, callback, opt_tileRange, opt_extent) {\n var tileRange, x, y;\n var tileCoordExtent = null;\n var z = tileCoord[0] - 1;\n if (this.zoomFactor_ === 2) {\n x = tileCoord[1];\n y = tileCoord[2];\n }\n else {\n tileCoordExtent = this.getTileCoordExtent(tileCoord, opt_extent);\n }\n while (z >= this.minZoom) {\n if (this.zoomFactor_ === 2) {\n x = Math.floor(x / 2);\n y = Math.floor(y / 2);\n tileRange = createOrUpdateTileRange(x, x, y, y, opt_tileRange);\n }\n else {\n tileRange = this.getTileRangeForExtentAndZ(tileCoordExtent, z, opt_tileRange);\n }\n if (callback(z, tileRange)) {\n return true;\n }\n --z;\n }\n return false;\n };\n /**\n * Get the extent for this tile grid, if it was configured.\n * @return {import(\"../extent.js\").Extent} Extent.\n * @api\n */\n TileGrid.prototype.getExtent = function () {\n return this.extent_;\n };\n /**\n * Get the maximum zoom level for the grid.\n * @return {number} Max zoom.\n * @api\n */\n TileGrid.prototype.getMaxZoom = function () {\n return this.maxZoom;\n };\n /**\n * Get the minimum zoom level for the grid.\n * @return {number} Min zoom.\n * @api\n */\n TileGrid.prototype.getMinZoom = function () {\n return this.minZoom;\n };\n /**\n * Get the origin for the grid at the given zoom level.\n * @param {number} z Integer zoom level.\n * @return {import(\"../coordinate.js\").Coordinate} Origin.\n * @api\n */\n TileGrid.prototype.getOrigin = function (z) {\n if (this.origin_) {\n return this.origin_;\n }\n else {\n return this.origins_[z];\n }\n };\n /**\n * Get the resolution for the given zoom level.\n * @param {number} z Integer zoom level.\n * @return {number} Resolution.\n * @api\n */\n TileGrid.prototype.getResolution = function (z) {\n return this.resolutions_[z];\n };\n /**\n * Get the list of resolutions for the tile grid.\n * @return {Array<number>} Resolutions.\n * @api\n */\n TileGrid.prototype.getResolutions = function () {\n return this.resolutions_;\n };\n /**\n * @param {import(\"../tilecoord.js\").TileCoord} tileCoord Tile coordinate.\n * @param {import(\"../TileRange.js\").default} [opt_tileRange] Temporary import(\"../TileRange.js\").default object.\n * @param {import(\"../extent.js\").Extent} [opt_extent] Temporary import(\"../extent.js\").Extent object.\n * @return {import(\"../TileRange.js\").default} Tile range.\n */\n TileGrid.prototype.getTileCoordChildTileRange = function (tileCoord, opt_tileRange, opt_extent) {\n if (tileCoord[0] < this.maxZoom) {\n if (this.zoomFactor_ === 2) {\n var minX = tileCoord[1] * 2;\n var minY = tileCoord[2] * 2;\n return createOrUpdateTileRange(minX, minX + 1, minY, minY + 1, opt_tileRange);\n }\n var tileCoordExtent = this.getTileCoordExtent(tileCoord, opt_extent || this.tmpExtent_);\n return this.getTileRangeForExtentAndZ(tileCoordExtent, tileCoord[0] + 1, opt_tileRange);\n }\n return null;\n };\n /**\n * @param {import(\"../tilecoord.js\").TileCoord} tileCoord Tile coordinate.\n * @param {number} z Integer zoom level.\n * @param {import(\"../TileRange.js\").default} [opt_tileRange] Temporary import(\"../TileRange.js\").default object.\n * @return {import(\"../TileRange.js\").default} Tile range.\n */\n TileGrid.prototype.getTileRangeForTileCoordAndZ = function (tileCoord, z, opt_tileRange) {\n if (z > this.maxZoom || z < this.minZoom) {\n return null;\n }\n var tileCoordZ = tileCoord[0];\n var tileCoordX = tileCoord[1];\n var tileCoordY = tileCoord[2];\n if (z === tileCoordZ) {\n return createOrUpdateTileRange(tileCoordX, tileCoordY, tileCoordX, tileCoordY, opt_tileRange);\n }\n if (this.zoomFactor_) {\n var factor = Math.pow(this.zoomFactor_, z - tileCoordZ);\n var minX = Math.floor(tileCoordX * factor);\n var minY = Math.floor(tileCoordY * factor);\n if (z < tileCoordZ) {\n return createOrUpdateTileRange(minX, minX, minY, minY, opt_tileRange);\n }\n var maxX = Math.floor(factor * (tileCoordX + 1)) - 1;\n var maxY = Math.floor(factor * (tileCoordY + 1)) - 1;\n return createOrUpdateTileRange(minX, maxX, minY, maxY, opt_tileRange);\n }\n var tileCoordExtent = this.getTileCoordExtent(tileCoord, this.tmpExtent_);\n return this.getTileRangeForExtentAndZ(tileCoordExtent, z, opt_tileRange);\n };\n /**\n * Get the extent for a tile range.\n * @param {number} z Integer zoom level.\n * @param {import(\"../TileRange.js\").default} tileRange Tile range.\n * @param {import(\"../extent.js\").Extent} [opt_extent] Temporary import(\"../extent.js\").Extent object.\n * @return {import(\"../extent.js\").Extent} Extent.\n */\n TileGrid.prototype.getTileRangeExtent = function (z, tileRange, opt_extent) {\n var origin = this.getOrigin(z);\n var resolution = this.getResolution(z);\n var tileSize = toSize(this.getTileSize(z), this.tmpSize_);\n var minX = origin[0] + tileRange.minX * tileSize[0] * resolution;\n var maxX = origin[0] + (tileRange.maxX + 1) * tileSize[0] * resolution;\n var minY = origin[1] + tileRange.minY * tileSize[1] * resolution;\n var maxY = origin[1] + (tileRange.maxY + 1) * tileSize[1] * resolution;\n return createOrUpdate(minX, minY, maxX, maxY, opt_extent);\n };\n /**\n * Get a tile range for the given extent and integer zoom level.\n * @param {import(\"../extent.js\").Extent} extent Extent.\n * @param {number} z Integer zoom level.\n * @param {import(\"../TileRange.js\").default} [opt_tileRange] Temporary tile range object.\n * @return {import(\"../TileRange.js\").default} Tile range.\n */\n TileGrid.prototype.getTileRangeForExtentAndZ = function (extent, z, opt_tileRange) {\n var tileCoord = tmpTileCoord;\n this.getTileCoordForXYAndZ_(extent[0], extent[3], z, false, tileCoord);\n var minX = tileCoord[1];\n var minY = tileCoord[2];\n this.getTileCoordForXYAndZ_(extent[2], extent[1], z, true, tileCoord);\n return createOrUpdateTileRange(minX, tileCoord[1], minY, tileCoord[2], opt_tileRange);\n };\n /**\n * @param {import(\"../tilecoord.js\").TileCoord} tileCoord Tile coordinate.\n * @return {import(\"../coordinate.js\").Coordinate} Tile center.\n */\n TileGrid.prototype.getTileCoordCenter = function (tileCoord) {\n var origin = this.getOrigin(tileCoord[0]);\n var resolution = this.getResolution(tileCoord[0]);\n var tileSize = toSize(this.getTileSize(tileCoord[0]), this.tmpSize_);\n return [\n origin[0] + (tileCoord[1] + 0.5) * tileSize[0] * resolution,\n origin[1] - (tileCoord[2] + 0.5) * tileSize[1] * resolution,\n ];\n };\n /**\n * Get the extent of a tile coordinate.\n *\n * @param {import(\"../tilecoord.js\").TileCoord} tileCoord Tile coordinate.\n * @param {import(\"../extent.js\").Extent} [opt_extent] Temporary extent object.\n * @return {import(\"../extent.js\").Extent} Extent.\n * @api\n */\n TileGrid.prototype.getTileCoordExtent = function (tileCoord, opt_extent) {\n var origin = this.getOrigin(tileCoord[0]);\n var resolution = this.getResolution(tileCoord[0]);\n var tileSize = toSize(this.getTileSize(tileCoord[0]), this.tmpSize_);\n var minX = origin[0] + tileCoord[1] * tileSize[0] * resolution;\n var minY = origin[1] - (tileCoord[2] + 1) * tileSize[1] * resolution;\n var maxX = minX + tileSize[0] * resolution;\n var maxY = minY + tileSize[1] * resolution;\n return createOrUpdate(minX, minY, maxX, maxY, opt_extent);\n };\n /**\n * Get the tile coordinate for the given map coordinate and resolution. This\n * method considers that coordinates that intersect tile boundaries should be\n * assigned the higher tile coordinate.\n *\n * @param {import(\"../coordinate.js\").Coordinate} coordinate Coordinate.\n * @param {number} resolution Resolution.\n * @param {import(\"../tilecoord.js\").TileCoord} [opt_tileCoord] Destination import(\"../tilecoord.js\").TileCoord object.\n * @return {import(\"../tilecoord.js\").TileCoord} Tile coordinate.\n * @api\n */\n TileGrid.prototype.getTileCoordForCoordAndResolution = function (coordinate, resolution, opt_tileCoord) {\n return this.getTileCoordForXYAndResolution_(coordinate[0], coordinate[1], resolution, false, opt_tileCoord);\n };\n /**\n * Note that this method should not be called for resolutions that correspond\n * to an integer zoom level. Instead call the `getTileCoordForXYAndZ_` method.\n * @param {number} x X.\n * @param {number} y Y.\n * @param {number} resolution Resolution (for a non-integer zoom level).\n * @param {boolean} reverseIntersectionPolicy Instead of letting edge\n * intersections go to the higher tile coordinate, let edge intersections\n * go to the lower tile coordinate.\n * @param {import(\"../tilecoord.js\").TileCoord} [opt_tileCoord] Temporary import(\"../tilecoord.js\").TileCoord object.\n * @return {import(\"../tilecoord.js\").TileCoord} Tile coordinate.\n * @private\n */\n TileGrid.prototype.getTileCoordForXYAndResolution_ = function (x, y, resolution, reverseIntersectionPolicy, opt_tileCoord) {\n var z = this.getZForResolution(resolution);\n var scale = resolution / this.getResolution(z);\n var origin = this.getOrigin(z);\n var tileSize = toSize(this.getTileSize(z), this.tmpSize_);\n var tileCoordX = (scale * (x - origin[0])) / resolution / tileSize[0];\n var tileCoordY = (scale * (origin[1] - y)) / resolution / tileSize[1];\n if (reverseIntersectionPolicy) {\n tileCoordX = ceil(tileCoordX, DECIMALS) - 1;\n tileCoordY = ceil(tileCoordY, DECIMALS) - 1;\n }\n else {\n tileCoordX = floor(tileCoordX, DECIMALS);\n tileCoordY = floor(tileCoordY, DECIMALS);\n }\n return createOrUpdateTileCoord(z, tileCoordX, tileCoordY, opt_tileCoord);\n };\n /**\n * Although there is repetition between this method and `getTileCoordForXYAndResolution_`,\n * they should have separate implementations. This method is for integer zoom\n * levels. The other method should only be called for resolutions corresponding\n * to non-integer zoom levels.\n * @param {number} x Map x coordinate.\n * @param {number} y Map y coordinate.\n * @param {number} z Integer zoom level.\n * @param {boolean} reverseIntersectionPolicy Instead of letting edge\n * intersections go to the higher tile coordinate, let edge intersections\n * go to the lower tile coordinate.\n * @param {import(\"../tilecoord.js\").TileCoord} [opt_tileCoord] Temporary import(\"../tilecoord.js\").TileCoord object.\n * @return {import(\"../tilecoord.js\").TileCoord} Tile coordinate.\n * @private\n */\n TileGrid.prototype.getTileCoordForXYAndZ_ = function (x, y, z, reverseIntersectionPolicy, opt_tileCoord) {\n var origin = this.getOrigin(z);\n var resolution = this.getResolution(z);\n var tileSize = toSize(this.getTileSize(z), this.tmpSize_);\n var tileCoordX = (x - origin[0]) / resolution / tileSize[0];\n var tileCoordY = (origin[1] - y) / resolution / tileSize[1];\n if (reverseIntersectionPolicy) {\n tileCoordX = ceil(tileCoordX, DECIMALS) - 1;\n tileCoordY = ceil(tileCoordY, DECIMALS) - 1;\n }\n else {\n tileCoordX = floor(tileCoordX, DECIMALS);\n tileCoordY = floor(tileCoordY, DECIMALS);\n }\n return createOrUpdateTileCoord(z, tileCoordX, tileCoordY, opt_tileCoord);\n };\n /**\n * Get a tile coordinate given a map coordinate and zoom level.\n * @param {import(\"../coordinate.js\").Coordinate} coordinate Coordinate.\n * @param {number} z Zoom level.\n * @param {import(\"../tilecoord.js\").TileCoord} [opt_tileCoord] Destination import(\"../tilecoord.js\").TileCoord object.\n * @return {import(\"../tilecoord.js\").TileCoord} Tile coordinate.\n * @api\n */\n TileGrid.prototype.getTileCoordForCoordAndZ = function (coordinate, z, opt_tileCoord) {\n return this.getTileCoordForXYAndZ_(coordinate[0], coordinate[1], z, false, opt_tileCoord);\n };\n /**\n * @param {import(\"../tilecoord.js\").TileCoord} tileCoord Tile coordinate.\n * @return {number} Tile resolution.\n */\n TileGrid.prototype.getTileCoordResolution = function (tileCoord) {\n return this.resolutions_[tileCoord[0]];\n };\n /**\n * Get the tile size for a zoom level. The type of the return value matches the\n * `tileSize` or `tileSizes` that the tile grid was configured with. To always\n * get an {@link import(\"../size.js\").Size}, run the result through {@link module:ol/size.toSize}.\n * @param {number} z Z.\n * @return {number|import(\"../size.js\").Size} Tile size.\n * @api\n */\n TileGrid.prototype.getTileSize = function (z) {\n if (this.tileSize_) {\n return this.tileSize_;\n }\n else {\n return this.tileSizes_[z];\n }\n };\n /**\n * @param {number} z Zoom level.\n * @return {import(\"../TileRange.js\").default} Extent tile range for the specified zoom level.\n */\n TileGrid.prototype.getFullTileRange = function (z) {\n if (!this.fullTileRanges_) {\n return this.extent_\n ? this.getTileRangeForExtentAndZ(this.extent_, z)\n : null;\n }\n else {\n return this.fullTileRanges_[z];\n }\n };\n /**\n * @param {number} resolution Resolution.\n * @param {number|import(\"../array.js\").NearestDirectionFunction} [opt_direction]\n * If 0, the nearest resolution will be used.\n * If 1, the nearest higher resolution (lower Z) will be used. If -1, the\n * nearest lower resolution (higher Z) will be used. Default is 0.\n * Use a {@link module:ol/array~NearestDirectionFunction} for more precise control.\n *\n * For example to change tile Z at the midpoint of zoom levels\n * ```js\n * function(value, high, low) {\n * return value - low * Math.sqrt(high / low);\n * }\n * ```\n * @return {number} Z.\n * @api\n */\n TileGrid.prototype.getZForResolution = function (resolution, opt_direction) {\n var z = linearFindNearest(this.resolutions_, resolution, opt_direction || 0);\n return clamp(z, this.minZoom, this.maxZoom);\n };\n /**\n * @param {!import(\"../extent.js\").Extent} extent Extent for this tile grid.\n * @private\n */\n TileGrid.prototype.calculateTileRanges_ = function (extent) {\n var length = this.resolutions_.length;\n var fullTileRanges = new Array(length);\n for (var z = this.minZoom; z < length; ++z) {\n fullTileRanges[z] = this.getTileRangeForExtentAndZ(extent, z);\n }\n this.fullTileRanges_ = fullTileRanges;\n };\n return TileGrid;\n}());\nexport default TileGrid;\n//# sourceMappingURL=TileGrid.js.map","/**\n * @module ol/tilegrid/common\n */\n/**\n * Default maximum zoom for default tile grids.\n * @type {number}\n */\nexport var DEFAULT_MAX_ZOOM = 42;\n/**\n * Default tile size.\n * @type {number}\n */\nexport var DEFAULT_TILE_SIZE = 256;\n//# sourceMappingURL=common.js.map","/**\n * @module ol/tilegrid\n */\nimport Corner from './extent/Corner.js';\nimport TileGrid from './tilegrid/TileGrid.js';\nimport Units from './proj/Units.js';\nimport { DEFAULT_MAX_ZOOM, DEFAULT_TILE_SIZE } from './tilegrid/common.js';\nimport { METERS_PER_UNIT, get as getProjection } from './proj.js';\nimport { containsCoordinate, createOrUpdate, getCorner, getHeight, getWidth, } from './extent.js';\nimport { toSize } from './size.js';\n/**\n * @param {import(\"./proj/Projection.js\").default} projection Projection.\n * @return {!TileGrid} Default tile grid for the\n * passed projection.\n */\nexport function getForProjection(projection) {\n var tileGrid = projection.getDefaultTileGrid();\n if (!tileGrid) {\n tileGrid = createForProjection(projection);\n projection.setDefaultTileGrid(tileGrid);\n }\n return tileGrid;\n}\n/**\n * @param {TileGrid} tileGrid Tile grid.\n * @param {import(\"./tilecoord.js\").TileCoord} tileCoord Tile coordinate.\n * @param {import(\"./proj/Projection.js\").default} projection Projection.\n * @return {import(\"./tilecoord.js\").TileCoord} Tile coordinate.\n */\nexport function wrapX(tileGrid, tileCoord, projection) {\n var z = tileCoord[0];\n var center = tileGrid.getTileCoordCenter(tileCoord);\n var projectionExtent = extentFromProjection(projection);\n if (!containsCoordinate(projectionExtent, center)) {\n var worldWidth = getWidth(projectionExtent);\n var worldsAway = Math.ceil((projectionExtent[0] - center[0]) / worldWidth);\n center[0] += worldWidth * worldsAway;\n return tileGrid.getTileCoordForCoordAndZ(center, z);\n }\n else {\n return tileCoord;\n }\n}\n/**\n * @param {import(\"./extent.js\").Extent} extent Extent.\n * @param {number} [opt_maxZoom] Maximum zoom level (default is\n * DEFAULT_MAX_ZOOM).\n * @param {number|import(\"./size.js\").Size} [opt_tileSize] Tile size (default uses\n * DEFAULT_TILE_SIZE).\n * @param {import(\"./extent/Corner.js\").default} [opt_corner] Extent corner (default is `'top-left'`).\n * @return {!TileGrid} TileGrid instance.\n */\nexport function createForExtent(extent, opt_maxZoom, opt_tileSize, opt_corner) {\n var corner = opt_corner !== undefined ? opt_corner : Corner.TOP_LEFT;\n var resolutions = resolutionsFromExtent(extent, opt_maxZoom, opt_tileSize);\n return new TileGrid({\n extent: extent,\n origin: getCorner(extent, corner),\n resolutions: resolutions,\n tileSize: opt_tileSize,\n });\n}\n/**\n * @typedef {Object} XYZOptions\n * @property {import(\"./extent.js\").Extent} [extent] Extent for the tile grid. The origin for an XYZ tile grid is the\n * top-left corner of the extent. If `maxResolution` is not provided the zero level of the grid is defined by the resolution\n * at which one tile fits in the provided extent. If not provided, the extent of the EPSG:3857 projection is used.\n * @property {number} [maxResolution] Resolution at level zero.\n * @property {number} [maxZoom] Maximum zoom. The default is `42`. This determines the number of levels\n * in the grid set. For example, a `maxZoom` of 21 means there are 22 levels in the grid set.\n * @property {number} [minZoom=0] Minimum zoom.\n * @property {number|import(\"./size.js\").Size} [tileSize=[256, 256]] Tile size in pixels.\n */\n/**\n * Creates a tile grid with a standard XYZ tiling scheme.\n * @param {XYZOptions} [opt_options] Tile grid options.\n * @return {!TileGrid} Tile grid instance.\n * @api\n */\nexport function createXYZ(opt_options) {\n var xyzOptions = opt_options || {};\n var extent = xyzOptions.extent || getProjection('EPSG:3857').getExtent();\n var gridOptions = {\n extent: extent,\n minZoom: xyzOptions.minZoom,\n tileSize: xyzOptions.tileSize,\n resolutions: resolutionsFromExtent(extent, xyzOptions.maxZoom, xyzOptions.tileSize, xyzOptions.maxResolution),\n };\n return new TileGrid(gridOptions);\n}\n/**\n * Create a resolutions array from an extent. A zoom factor of 2 is assumed.\n * @param {import(\"./extent.js\").Extent} extent Extent.\n * @param {number} [opt_maxZoom] Maximum zoom level (default is\n * DEFAULT_MAX_ZOOM).\n * @param {number|import(\"./size.js\").Size} [opt_tileSize] Tile size (default uses\n * DEFAULT_TILE_SIZE).\n * @param {number} [opt_maxResolution] Resolution at level zero.\n * @return {!Array<number>} Resolutions array.\n */\nfunction resolutionsFromExtent(extent, opt_maxZoom, opt_tileSize, opt_maxResolution) {\n var maxZoom = opt_maxZoom !== undefined ? opt_maxZoom : DEFAULT_MAX_ZOOM;\n var height = getHeight(extent);\n var width = getWidth(extent);\n var tileSize = toSize(opt_tileSize !== undefined ? opt_tileSize : DEFAULT_TILE_SIZE);\n var maxResolution = opt_maxResolution > 0\n ? opt_maxResolution\n : Math.max(width / tileSize[0], height / tileSize[1]);\n var length = maxZoom + 1;\n var resolutions = new Array(length);\n for (var z = 0; z < length; ++z) {\n resolutions[z] = maxResolution / Math.pow(2, z);\n }\n return resolutions;\n}\n/**\n * @param {import(\"./proj.js\").ProjectionLike} projection Projection.\n * @param {number} [opt_maxZoom] Maximum zoom level (default is\n * DEFAULT_MAX_ZOOM).\n * @param {number|import(\"./size.js\").Size} [opt_tileSize] Tile size (default uses\n * DEFAULT_TILE_SIZE).\n * @param {import(\"./extent/Corner.js\").default} [opt_corner] Extent corner (default is `'top-left'`).\n * @return {!TileGrid} TileGrid instance.\n */\nexport function createForProjection(projection, opt_maxZoom, opt_tileSize, opt_corner) {\n var extent = extentFromProjection(projection);\n return createForExtent(extent, opt_maxZoom, opt_tileSize, opt_corner);\n}\n/**\n * Generate a tile grid extent from a projection. If the projection has an\n * extent, it is used. If not, a global extent is assumed.\n * @param {import(\"./proj.js\").ProjectionLike} projection Projection.\n * @return {import(\"./extent.js\").Extent} Extent.\n */\nexport function extentFromProjection(projection) {\n projection = getProjection(projection);\n var extent = projection.getExtent();\n if (!extent) {\n var half = (180 * METERS_PER_UNIT[Units.DEGREES]) / projection.getMetersPerUnit();\n extent = createOrUpdate(-half, -half, half, half);\n }\n return extent;\n}\n//# sourceMappingURL=tilegrid.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/source/Tile\n */\nimport Event from '../events/Event.js';\nimport Source from './Source.js';\nimport TileCache from '../TileCache.js';\nimport TileState from '../TileState.js';\nimport { abstract } from '../util.js';\nimport { assert } from '../asserts.js';\nimport { equivalent } from '../proj.js';\nimport { getKeyZXY, withinExtentAndZ } from '../tilecoord.js';\nimport { getForProjection as getTileGridForProjection, wrapX, } from '../tilegrid.js';\nimport { scale as scaleSize, toSize } from '../size.js';\n/***\n * @template Return\n * @typedef {import(\"../Observable\").OnSignature<import(\"../Observable\").EventTypes, import(\"../events/Event.js\").default, Return> &\n * import(\"../Observable\").OnSignature<import(\"../ObjectEventType\").Types, import(\"../Object\").ObjectEvent, Return> &\n * import(\"../Observable\").OnSignature<import(\"./TileEventType\").TileSourceEventTypes, TileSourceEvent, Return> &\n * import(\"../Observable\").CombinedOnSignature<import(\"../Observable\").EventTypes|import(\"../ObjectEventType\").Types|\n * import(\"./TileEventType\").TileSourceEventTypes, Return>} TileSourceOnSignature\n */\n/**\n * @typedef {Object} Options\n * @property {import(\"./Source.js\").AttributionLike} [attributions] Attributions.\n * @property {boolean} [attributionsCollapsible=true] Attributions are collapsible.\n * @property {number} [cacheSize] CacheSize.\n * @property {boolean} [opaque=false] Whether the layer is opaque.\n * @property {number} [tilePixelRatio] TilePixelRatio.\n * @property {import(\"../proj.js\").ProjectionLike} [projection] Projection.\n * @property {import(\"./State.js\").default} [state] State.\n * @property {import(\"../tilegrid/TileGrid.js\").default} [tileGrid] TileGrid.\n * @property {boolean} [wrapX=false] WrapX.\n * @property {number} [transition] Transition.\n * @property {string} [key] Key.\n * @property {number|import(\"../array.js\").NearestDirectionFunction} [zDirection=0] ZDirection.\n * @property {boolean} [interpolate=false] Use interpolated values when resampling. By default,\n * the nearest neighbor is used when resampling.\n */\n/**\n * @classdesc\n * Abstract base class; normally only used for creating subclasses and not\n * instantiated in apps.\n * Base class for sources providing images divided into a tile grid.\n * @abstract\n * @api\n */\nvar TileSource = /** @class */ (function (_super) {\n __extends(TileSource, _super);\n /**\n * @param {Options} options SourceTile source options.\n */\n function TileSource(options) {\n var _this = _super.call(this, {\n attributions: options.attributions,\n attributionsCollapsible: options.attributionsCollapsible,\n projection: options.projection,\n state: options.state,\n wrapX: options.wrapX,\n interpolate: options.interpolate,\n }) || this;\n /***\n * @type {TileSourceOnSignature<import(\"../events\").EventsKey>}\n */\n _this.on;\n /***\n * @type {TileSourceOnSignature<import(\"../events\").EventsKey>}\n */\n _this.once;\n /***\n * @type {TileSourceOnSignature<void>}\n */\n _this.un;\n /**\n * @private\n * @type {boolean}\n */\n _this.opaque_ = options.opaque !== undefined ? options.opaque : false;\n /**\n * @private\n * @type {number}\n */\n _this.tilePixelRatio_ =\n options.tilePixelRatio !== undefined ? options.tilePixelRatio : 1;\n /**\n * @type {import(\"../tilegrid/TileGrid.js\").default|null}\n */\n _this.tileGrid = options.tileGrid !== undefined ? options.tileGrid : null;\n var tileSize = [256, 256];\n if (_this.tileGrid) {\n toSize(_this.tileGrid.getTileSize(_this.tileGrid.getMinZoom()), tileSize);\n }\n /**\n * @protected\n * @type {import(\"../TileCache.js\").default}\n */\n _this.tileCache = new TileCache(options.cacheSize || 0);\n /**\n * @protected\n * @type {import(\"../size.js\").Size}\n */\n _this.tmpSize = [0, 0];\n /**\n * @private\n * @type {string}\n */\n _this.key_ = options.key || '';\n /**\n * @protected\n * @type {import(\"../Tile.js\").Options}\n */\n _this.tileOptions = {\n transition: options.transition,\n interpolate: options.interpolate,\n };\n /**\n * zDirection hint, read by the renderer. Indicates which resolution should be used\n * by a renderer if the views resolution does not match any resolution of the tile source.\n * If 0, the nearest resolution will be used. If 1, the nearest lower resolution\n * will be used. If -1, the nearest higher resolution will be used.\n * @type {number|import(\"../array.js\").NearestDirectionFunction}\n */\n _this.zDirection = options.zDirection ? options.zDirection : 0;\n return _this;\n }\n /**\n * @return {boolean} Can expire cache.\n */\n TileSource.prototype.canExpireCache = function () {\n return this.tileCache.canExpireCache();\n };\n /**\n * @param {import(\"../proj/Projection.js\").default} projection Projection.\n * @param {!Object<string, boolean>} usedTiles Used tiles.\n */\n TileSource.prototype.expireCache = function (projection, usedTiles) {\n var tileCache = this.getTileCacheForProjection(projection);\n if (tileCache) {\n tileCache.expireCache(usedTiles);\n }\n };\n /**\n * @param {import(\"../proj/Projection.js\").default} projection Projection.\n * @param {number} z Zoom level.\n * @param {import(\"../TileRange.js\").default} tileRange Tile range.\n * @param {function(import(\"../Tile.js\").default):(boolean|void)} callback Called with each\n * loaded tile. If the callback returns `false`, the tile will not be\n * considered loaded.\n * @return {boolean} The tile range is fully covered with loaded tiles.\n */\n TileSource.prototype.forEachLoadedTile = function (projection, z, tileRange, callback) {\n var tileCache = this.getTileCacheForProjection(projection);\n if (!tileCache) {\n return false;\n }\n var covered = true;\n var tile, tileCoordKey, loaded;\n for (var x = tileRange.minX; x <= tileRange.maxX; ++x) {\n for (var y = tileRange.minY; y <= tileRange.maxY; ++y) {\n tileCoordKey = getKeyZXY(z, x, y);\n loaded = false;\n if (tileCache.containsKey(tileCoordKey)) {\n tile = /** @type {!import(\"../Tile.js\").default} */ (tileCache.get(tileCoordKey));\n loaded = tile.getState() === TileState.LOADED;\n if (loaded) {\n loaded = callback(tile) !== false;\n }\n }\n if (!loaded) {\n covered = false;\n }\n }\n }\n return covered;\n };\n /**\n * @param {import(\"../proj/Projection.js\").default} projection Projection.\n * @return {number} Gutter.\n */\n TileSource.prototype.getGutterForProjection = function (projection) {\n return 0;\n };\n /**\n * Return the key to be used for all tiles in the source.\n * @return {string} The key for all tiles.\n */\n TileSource.prototype.getKey = function () {\n return this.key_;\n };\n /**\n * Set the value to be used as the key for all tiles in the source.\n * @param {string} key The key for tiles.\n * @protected\n */\n TileSource.prototype.setKey = function (key) {\n if (this.key_ !== key) {\n this.key_ = key;\n this.changed();\n }\n };\n /**\n * @param {import(\"../proj/Projection.js\").default} projection Projection.\n * @return {boolean} Opaque.\n */\n TileSource.prototype.getOpaque = function (projection) {\n return this.opaque_;\n };\n /**\n * @return {Array<number>|null} Resolutions.\n */\n TileSource.prototype.getResolutions = function () {\n if (!this.tileGrid) {\n return null;\n }\n return this.tileGrid.getResolutions();\n };\n /**\n * @abstract\n * @param {number} z Tile coordinate z.\n * @param {number} x Tile coordinate x.\n * @param {number} y Tile coordinate y.\n * @param {number} pixelRatio Pixel ratio.\n * @param {import(\"../proj/Projection.js\").default} projection Projection.\n * @return {!import(\"../Tile.js\").default} Tile.\n */\n TileSource.prototype.getTile = function (z, x, y, pixelRatio, projection) {\n return abstract();\n };\n /**\n * Return the tile grid of the tile source.\n * @return {import(\"../tilegrid/TileGrid.js\").default|null} Tile grid.\n * @api\n */\n TileSource.prototype.getTileGrid = function () {\n return this.tileGrid;\n };\n /**\n * @param {import(\"../proj/Projection.js\").default} projection Projection.\n * @return {!import(\"../tilegrid/TileGrid.js\").default} Tile grid.\n */\n TileSource.prototype.getTileGridForProjection = function (projection) {\n if (!this.tileGrid) {\n return getTileGridForProjection(projection);\n }\n else {\n return this.tileGrid;\n }\n };\n /**\n * @param {import(\"../proj/Projection.js\").default} projection Projection.\n * @return {import(\"../TileCache.js\").default} Tile cache.\n * @protected\n */\n TileSource.prototype.getTileCacheForProjection = function (projection) {\n assert(equivalent(this.getProjection(), projection), 68 // A VectorTile source can only be rendered if it has a projection compatible with the view projection.\n );\n return this.tileCache;\n };\n /**\n * Get the tile pixel ratio for this source. Subclasses may override this\n * method, which is meant to return a supported pixel ratio that matches the\n * provided `pixelRatio` as close as possible.\n * @param {number} pixelRatio Pixel ratio.\n * @return {number} Tile pixel ratio.\n */\n TileSource.prototype.getTilePixelRatio = function (pixelRatio) {\n return this.tilePixelRatio_;\n };\n /**\n * @param {number} z Z.\n * @param {number} pixelRatio Pixel ratio.\n * @param {import(\"../proj/Projection.js\").default} projection Projection.\n * @return {import(\"../size.js\").Size} Tile size.\n */\n TileSource.prototype.getTilePixelSize = function (z, pixelRatio, projection) {\n var tileGrid = this.getTileGridForProjection(projection);\n var tilePixelRatio = this.getTilePixelRatio(pixelRatio);\n var tileSize = toSize(tileGrid.getTileSize(z), this.tmpSize);\n if (tilePixelRatio == 1) {\n return tileSize;\n }\n else {\n return scaleSize(tileSize, tilePixelRatio, this.tmpSize);\n }\n };\n /**\n * Returns a tile coordinate wrapped around the x-axis. When the tile coordinate\n * is outside the resolution and extent range of the tile grid, `null` will be\n * returned.\n * @param {import(\"../tilecoord.js\").TileCoord} tileCoord Tile coordinate.\n * @param {import(\"../proj/Projection.js\").default} [opt_projection] Projection.\n * @return {import(\"../tilecoord.js\").TileCoord} Tile coordinate to be passed to the tileUrlFunction or\n * null if no tile URL should be created for the passed `tileCoord`.\n */\n TileSource.prototype.getTileCoordForTileUrlFunction = function (tileCoord, opt_projection) {\n var projection = opt_projection !== undefined ? opt_projection : this.getProjection();\n var tileGrid = this.getTileGridForProjection(projection);\n if (this.getWrapX() && projection.isGlobal()) {\n tileCoord = wrapX(tileGrid, tileCoord, projection);\n }\n return withinExtentAndZ(tileCoord, tileGrid) ? tileCoord : null;\n };\n /**\n * Remove all cached tiles from the source. The next render cycle will fetch new tiles.\n * @api\n */\n TileSource.prototype.clear = function () {\n this.tileCache.clear();\n };\n TileSource.prototype.refresh = function () {\n this.clear();\n _super.prototype.refresh.call(this);\n };\n /**\n * Increases the cache size if needed\n * @param {number} tileCount Minimum number of tiles needed.\n * @param {import(\"../proj/Projection.js\").default} projection Projection.\n */\n TileSource.prototype.updateCacheSize = function (tileCount, projection) {\n var tileCache = this.getTileCacheForProjection(projection);\n if (tileCount > tileCache.highWaterMark) {\n tileCache.highWaterMark = tileCount;\n }\n };\n /**\n * Marks a tile coord as being used, without triggering a load.\n * @abstract\n * @param {number} z Tile coordinate z.\n * @param {number} x Tile coordinate x.\n * @param {number} y Tile coordinate y.\n * @param {import(\"../proj/Projection.js\").default} projection Projection.\n */\n TileSource.prototype.useTile = function (z, x, y, projection) { };\n return TileSource;\n}(Source));\n/**\n * @classdesc\n * Events emitted by {@link module:ol/source/Tile~TileSource} instances are instances of this\n * type.\n */\nvar TileSourceEvent = /** @class */ (function (_super) {\n __extends(TileSourceEvent, _super);\n /**\n * @param {string} type Type.\n * @param {import(\"../Tile.js\").default} tile The tile.\n */\n function TileSourceEvent(type, tile) {\n var _this = _super.call(this, type) || this;\n /**\n * The tile related to the event.\n * @type {import(\"../Tile.js\").default}\n * @api\n */\n _this.tile = tile;\n return _this;\n }\n return TileSourceEvent;\n}(Event));\nexport { TileSourceEvent };\nexport default TileSource;\n//# sourceMappingURL=Tile.js.map","/**\n * @module ol/tileurlfunction\n */\nimport { assert } from './asserts.js';\nimport { modulo } from './math.js';\nimport { hash as tileCoordHash } from './tilecoord.js';\n/**\n * @param {string} template Template.\n * @param {import(\"./tilegrid/TileGrid.js\").default} tileGrid Tile grid.\n * @return {import(\"./Tile.js\").UrlFunction} Tile URL function.\n */\nexport function createFromTemplate(template, tileGrid) {\n var zRegEx = /\\{z\\}/g;\n var xRegEx = /\\{x\\}/g;\n var yRegEx = /\\{y\\}/g;\n var dashYRegEx = /\\{-y\\}/g;\n return (\n /**\n * @param {import(\"./tilecoord.js\").TileCoord} tileCoord Tile Coordinate.\n * @param {number} pixelRatio Pixel ratio.\n * @param {import(\"./proj/Projection.js\").default} projection Projection.\n * @return {string|undefined} Tile URL.\n */\n function (tileCoord, pixelRatio, projection) {\n if (!tileCoord) {\n return undefined;\n }\n else {\n return template\n .replace(zRegEx, tileCoord[0].toString())\n .replace(xRegEx, tileCoord[1].toString())\n .replace(yRegEx, tileCoord[2].toString())\n .replace(dashYRegEx, function () {\n var z = tileCoord[0];\n var range = tileGrid.getFullTileRange(z);\n assert(range, 55); // The {-y} placeholder requires a tile grid with extent\n var y = range.getHeight() - tileCoord[2] - 1;\n return y.toString();\n });\n }\n });\n}\n/**\n * @param {Array<string>} templates Templates.\n * @param {import(\"./tilegrid/TileGrid.js\").default} tileGrid Tile grid.\n * @return {import(\"./Tile.js\").UrlFunction} Tile URL function.\n */\nexport function createFromTemplates(templates, tileGrid) {\n var len = templates.length;\n var tileUrlFunctions = new Array(len);\n for (var i = 0; i < len; ++i) {\n tileUrlFunctions[i] = createFromTemplate(templates[i], tileGrid);\n }\n return createFromTileUrlFunctions(tileUrlFunctions);\n}\n/**\n * @param {Array<import(\"./Tile.js\").UrlFunction>} tileUrlFunctions Tile URL Functions.\n * @return {import(\"./Tile.js\").UrlFunction} Tile URL function.\n */\nexport function createFromTileUrlFunctions(tileUrlFunctions) {\n if (tileUrlFunctions.length === 1) {\n return tileUrlFunctions[0];\n }\n return (\n /**\n * @param {import(\"./tilecoord.js\").TileCoord} tileCoord Tile Coordinate.\n * @param {number} pixelRatio Pixel ratio.\n * @param {import(\"./proj/Projection.js\").default} projection Projection.\n * @return {string|undefined} Tile URL.\n */\n function (tileCoord, pixelRatio, projection) {\n if (!tileCoord) {\n return undefined;\n }\n else {\n var h = tileCoordHash(tileCoord);\n var index = modulo(h, tileUrlFunctions.length);\n return tileUrlFunctions[index](tileCoord, pixelRatio, projection);\n }\n });\n}\n/**\n * @param {import(\"./tilecoord.js\").TileCoord} tileCoord Tile coordinate.\n * @param {number} pixelRatio Pixel ratio.\n * @param {import(\"./proj/Projection.js\").default} projection Projection.\n * @return {string|undefined} Tile URL.\n */\nexport function nullTileUrlFunction(tileCoord, pixelRatio, projection) {\n return undefined;\n}\n/**\n * @param {string} url URL.\n * @return {Array<string>} Array of urls.\n */\nexport function expandUrl(url) {\n var urls = [];\n var match = /\\{([a-z])-([a-z])\\}/.exec(url);\n if (match) {\n // char range\n var startCharCode = match[1].charCodeAt(0);\n var stopCharCode = match[2].charCodeAt(0);\n var charCode = void 0;\n for (charCode = startCharCode; charCode <= stopCharCode; ++charCode) {\n urls.push(url.replace(match[0], String.fromCharCode(charCode)));\n }\n return urls;\n }\n match = /\\{(\\d+)-(\\d+)\\}/.exec(url);\n if (match) {\n // number range\n var stop_1 = parseInt(match[2], 10);\n for (var i = parseInt(match[1], 10); i <= stop_1; i++) {\n urls.push(url.replace(match[0], i.toString()));\n }\n return urls;\n }\n urls.push(url);\n return urls;\n}\n//# sourceMappingURL=tileurlfunction.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/source/UrlTile\n */\nimport TileEventType from './TileEventType.js';\nimport TileSource, { TileSourceEvent } from './Tile.js';\nimport TileState from '../TileState.js';\nimport { createFromTemplates, expandUrl } from '../tileurlfunction.js';\nimport { getKeyZXY } from '../tilecoord.js';\nimport { getUid } from '../util.js';\n/**\n * @typedef {Object} Options\n * @property {import(\"./Source.js\").AttributionLike} [attributions] Attributions.\n * @property {boolean} [attributionsCollapsible=true] Attributions are collapsible.\n * @property {number} [cacheSize] Cache size.\n * @property {boolean} [opaque=false] Whether the layer is opaque.\n * @property {import(\"../proj.js\").ProjectionLike} [projection] Projection.\n * @property {import(\"./State.js\").default} [state] State.\n * @property {import(\"../tilegrid/TileGrid.js\").default} [tileGrid] TileGrid.\n * @property {import(\"../Tile.js\").LoadFunction} tileLoadFunction TileLoadFunction.\n * @property {number} [tilePixelRatio] TilePixelRatio.\n * @property {import(\"../Tile.js\").UrlFunction} [tileUrlFunction] TileUrlFunction.\n * @property {string} [url] Url.\n * @property {Array<string>} [urls] Urls.\n * @property {boolean} [wrapX=true] WrapX.\n * @property {number} [transition] Transition.\n * @property {string} [key] Key.\n * @property {number|import(\"../array.js\").NearestDirectionFunction} [zDirection=0] ZDirection.\n * @property {boolean} [interpolate=false] Use interpolated values when resampling. By default,\n * the nearest neighbor is used when resampling.\n */\n/**\n * @classdesc\n * Base class for sources providing tiles divided into a tile grid over http.\n *\n * @fires import(\"./Tile.js\").TileSourceEvent\n */\nvar UrlTile = /** @class */ (function (_super) {\n __extends(UrlTile, _super);\n /**\n * @param {Options} options Image tile options.\n */\n function UrlTile(options) {\n var _this = _super.call(this, {\n attributions: options.attributions,\n cacheSize: options.cacheSize,\n opaque: options.opaque,\n projection: options.projection,\n state: options.state,\n tileGrid: options.tileGrid,\n tilePixelRatio: options.tilePixelRatio,\n wrapX: options.wrapX,\n transition: options.transition,\n interpolate: options.interpolate,\n key: options.key,\n attributionsCollapsible: options.attributionsCollapsible,\n zDirection: options.zDirection,\n }) || this;\n /**\n * @private\n * @type {boolean}\n */\n _this.generateTileUrlFunction_ =\n _this.tileUrlFunction === UrlTile.prototype.tileUrlFunction;\n /**\n * @protected\n * @type {import(\"../Tile.js\").LoadFunction}\n */\n _this.tileLoadFunction = options.tileLoadFunction;\n if (options.tileUrlFunction) {\n _this.tileUrlFunction = options.tileUrlFunction;\n }\n /**\n * @protected\n * @type {!Array<string>|null}\n */\n _this.urls = null;\n if (options.urls) {\n _this.setUrls(options.urls);\n }\n else if (options.url) {\n _this.setUrl(options.url);\n }\n /**\n * @private\n * @type {!Object<string, boolean>}\n */\n _this.tileLoadingKeys_ = {};\n return _this;\n }\n /**\n * Return the tile load function of the source.\n * @return {import(\"../Tile.js\").LoadFunction} TileLoadFunction\n * @api\n */\n UrlTile.prototype.getTileLoadFunction = function () {\n return this.tileLoadFunction;\n };\n /**\n * Return the tile URL function of the source.\n * @return {import(\"../Tile.js\").UrlFunction} TileUrlFunction\n * @api\n */\n UrlTile.prototype.getTileUrlFunction = function () {\n return Object.getPrototypeOf(this).tileUrlFunction === this.tileUrlFunction\n ? this.tileUrlFunction.bind(this)\n : this.tileUrlFunction;\n };\n /**\n * Return the URLs used for this source.\n * When a tileUrlFunction is used instead of url or urls,\n * null will be returned.\n * @return {!Array<string>|null} URLs.\n * @api\n */\n UrlTile.prototype.getUrls = function () {\n return this.urls;\n };\n /**\n * Handle tile change events.\n * @param {import(\"../events/Event.js\").default} event Event.\n * @protected\n */\n UrlTile.prototype.handleTileChange = function (event) {\n var tile = /** @type {import(\"../Tile.js\").default} */ (event.target);\n var uid = getUid(tile);\n var tileState = tile.getState();\n var type;\n if (tileState == TileState.LOADING) {\n this.tileLoadingKeys_[uid] = true;\n type = TileEventType.TILELOADSTART;\n }\n else if (uid in this.tileLoadingKeys_) {\n delete this.tileLoadingKeys_[uid];\n type =\n tileState == TileState.ERROR\n ? TileEventType.TILELOADERROR\n : tileState == TileState.LOADED\n ? TileEventType.TILELOADEND\n : undefined;\n }\n if (type != undefined) {\n this.dispatchEvent(new TileSourceEvent(type, tile));\n }\n };\n /**\n * Set the tile load function of the source.\n * @param {import(\"../Tile.js\").LoadFunction} tileLoadFunction Tile load function.\n * @api\n */\n UrlTile.prototype.setTileLoadFunction = function (tileLoadFunction) {\n this.tileCache.clear();\n this.tileLoadFunction = tileLoadFunction;\n this.changed();\n };\n /**\n * Set the tile URL function of the source.\n * @param {import(\"../Tile.js\").UrlFunction} tileUrlFunction Tile URL function.\n * @param {string} [key] Optional new tile key for the source.\n * @api\n */\n UrlTile.prototype.setTileUrlFunction = function (tileUrlFunction, key) {\n this.tileUrlFunction = tileUrlFunction;\n this.tileCache.pruneExceptNewestZ();\n if (typeof key !== 'undefined') {\n this.setKey(key);\n }\n else {\n this.changed();\n }\n };\n /**\n * Set the URL to use for requests.\n * @param {string} url URL.\n * @api\n */\n UrlTile.prototype.setUrl = function (url) {\n var urls = expandUrl(url);\n this.urls = urls;\n this.setUrls(urls);\n };\n /**\n * Set the URLs to use for requests.\n * @param {Array<string>} urls URLs.\n * @api\n */\n UrlTile.prototype.setUrls = function (urls) {\n this.urls = urls;\n var key = urls.join('\\n');\n if (this.generateTileUrlFunction_) {\n this.setTileUrlFunction(createFromTemplates(urls, this.tileGrid), key);\n }\n else {\n this.setKey(key);\n }\n };\n /**\n * @param {import(\"../tilecoord.js\").TileCoord} tileCoord Tile coordinate.\n * @param {number} pixelRatio Pixel ratio.\n * @param {import(\"../proj/Projection.js\").default} projection Projection.\n * @return {string|undefined} Tile URL.\n */\n UrlTile.prototype.tileUrlFunction = function (tileCoord, pixelRatio, projection) {\n return undefined;\n };\n /**\n * Marks a tile coord as being used, without triggering a load.\n * @param {number} z Tile coordinate z.\n * @param {number} x Tile coordinate x.\n * @param {number} y Tile coordinate y.\n */\n UrlTile.prototype.useTile = function (z, x, y) {\n var tileCoordKey = getKeyZXY(z, x, y);\n if (this.tileCache.containsKey(tileCoordKey)) {\n this.tileCache.get(tileCoordKey);\n }\n };\n return UrlTile;\n}(TileSource));\nexport default UrlTile;\n//# sourceMappingURL=UrlTile.js.map","/**\n * @module ol/source/TileEventType\n */\n/**\n * @enum {string}\n */\nexport default {\n /**\n * Triggered when a tile starts loading.\n * @event module:ol/source/Tile.TileSourceEvent#tileloadstart\n * @api\n */\n TILELOADSTART: 'tileloadstart',\n /**\n * Triggered when a tile finishes loading, either when its data is loaded,\n * or when loading was aborted because the tile is no longer needed.\n * @event module:ol/source/Tile.TileSourceEvent#tileloadend\n * @api\n */\n TILELOADEND: 'tileloadend',\n /**\n * Triggered if tile loading results in an error.\n * @event module:ol/source/Tile.TileSourceEvent#tileloaderror\n * @api\n */\n TILELOADERROR: 'tileloaderror',\n};\n/**\n * @typedef {'tileloadstart'|'tileloadend'|'tileloaderror'} TileSourceEventTypes\n */\n//# sourceMappingURL=TileEventType.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/source/TileImage\n */\nimport EventType from '../events/EventType.js';\nimport ImageTile from '../ImageTile.js';\nimport ReprojTile from '../reproj/Tile.js';\nimport TileCache from '../TileCache.js';\nimport TileState from '../TileState.js';\nimport UrlTile from './UrlTile.js';\nimport { ENABLE_RASTER_REPROJECTION } from '../reproj/common.js';\nimport { equivalent, get as getProjection } from '../proj.js';\nimport { getKey, getKeyZXY } from '../tilecoord.js';\nimport { getForProjection as getTileGridForProjection } from '../tilegrid.js';\nimport { getUid } from '../util.js';\n/**\n * @typedef {Object} Options\n * @property {import(\"./Source.js\").AttributionLike} [attributions] Attributions.\n * @property {boolean} [attributionsCollapsible=true] Attributions are collapsible.\n * @property {number} [cacheSize] Initial tile cache size. Will auto-grow to hold at least the number of tiles in the viewport.\n * @property {null|string} [crossOrigin] The `crossOrigin` attribute for loaded images. Note that\n * you must provide a `crossOrigin` value if you want to access pixel data with the Canvas renderer.\n * See https://developer.mozilla.org/en-US/docs/Web/HTML/CORS_enabled_image for more detail.\n * @property {boolean} [imageSmoothing=true] Deprecated. Use the `interpolate` option instead.\n * @property {boolean} [interpolate=true] Use interpolated values when resampling. By default,\n * linear interpolation is used when resampling. Set to false to use the nearest neighbor instead.\n * @property {boolean} [opaque=false] Whether the layer is opaque.\n * @property {import(\"../proj.js\").ProjectionLike} [projection] Projection. Default is the view projection.\n * @property {number} [reprojectionErrorThreshold=0.5] Maximum allowed reprojection error (in pixels).\n * Higher values can increase reprojection performance, but decrease precision.\n * @property {import(\"./State.js\").default} [state] Source state.\n * @property {typeof import(\"../ImageTile.js\").default} [tileClass] Class used to instantiate image tiles.\n * Default is {@link module:ol/ImageTile~ImageTile}.\n * @property {import(\"../tilegrid/TileGrid.js\").default} [tileGrid] Tile grid.\n * @property {import(\"../Tile.js\").LoadFunction} [tileLoadFunction] Optional function to load a tile given a URL. The default is\n * ```js\n * function(imageTile, src) {\n * imageTile.getImage().src = src;\n * };\n * ```\n * @property {number} [tilePixelRatio=1] The pixel ratio used by the tile service. For example, if the tile\n * service advertizes 256px by 256px tiles but actually sends 512px\n * by 512px images (for retina/hidpi devices) then `tilePixelRatio`\n * should be set to `2`.\n * @property {import(\"../Tile.js\").UrlFunction} [tileUrlFunction] Optional function to get tile URL given a tile coordinate and the projection.\n * @property {string} [url] URL template. Must include `{x}`, `{y}` or `{-y}`, and `{z}` placeholders.\n * A `{?-?}` template pattern, for example `subdomain{a-f}.domain.com`, may be\n * used instead of defining each one separately in the `urls` option.\n * @property {Array<string>} [urls] An array of URL templates.\n * @property {boolean} [wrapX] Whether to wrap the world horizontally. The default, is to\n * request out-of-bounds tiles from the server. When set to `false`, only one\n * world will be rendered. When set to `true`, tiles will be requested for one\n * world only, but they will be wrapped horizontally to render multiple worlds.\n * @property {number} [transition] Duration of the opacity transition for rendering.\n * To disable the opacity transition, pass `transition: 0`.\n * @property {string} [key] Optional tile key for proper cache fetching\n * @property {number|import(\"../array.js\").NearestDirectionFunction} [zDirection=0]\n * Choose whether to use tiles with a higher or lower zoom level when between integer\n * zoom levels. See {@link module:ol/tilegrid/TileGrid~TileGrid#getZForResolution}.\n */\n/**\n * @classdesc\n * Base class for sources providing images divided into a tile grid.\n *\n * @fires import(\"./Tile.js\").TileSourceEvent\n * @api\n */\nvar TileImage = /** @class */ (function (_super) {\n __extends(TileImage, _super);\n /**\n * @param {!Options} options Image tile options.\n */\n function TileImage(options) {\n var _this = this;\n var interpolate = options.imageSmoothing !== undefined ? options.imageSmoothing : true;\n if (options.interpolate !== undefined) {\n interpolate = options.interpolate;\n }\n _this = _super.call(this, {\n attributions: options.attributions,\n cacheSize: options.cacheSize,\n opaque: options.opaque,\n projection: options.projection,\n state: options.state,\n tileGrid: options.tileGrid,\n tileLoadFunction: options.tileLoadFunction\n ? options.tileLoadFunction\n : defaultTileLoadFunction,\n tilePixelRatio: options.tilePixelRatio,\n tileUrlFunction: options.tileUrlFunction,\n url: options.url,\n urls: options.urls,\n wrapX: options.wrapX,\n transition: options.transition,\n interpolate: interpolate,\n key: options.key,\n attributionsCollapsible: options.attributionsCollapsible,\n zDirection: options.zDirection,\n }) || this;\n /**\n * @protected\n * @type {?string}\n */\n _this.crossOrigin =\n options.crossOrigin !== undefined ? options.crossOrigin : null;\n /**\n * @protected\n * @type {typeof ImageTile}\n */\n _this.tileClass =\n options.tileClass !== undefined ? options.tileClass : ImageTile;\n /**\n * @protected\n * @type {!Object<string, TileCache>}\n */\n _this.tileCacheForProjection = {};\n /**\n * @protected\n * @type {!Object<string, import(\"../tilegrid/TileGrid.js\").default>}\n */\n _this.tileGridForProjection = {};\n /**\n * @private\n * @type {number|undefined}\n */\n _this.reprojectionErrorThreshold_ = options.reprojectionErrorThreshold;\n /**\n * @private\n * @type {boolean}\n */\n _this.renderReprojectionEdges_ = false;\n return _this;\n }\n /**\n * @return {boolean} Can expire cache.\n */\n TileImage.prototype.canExpireCache = function () {\n if (!ENABLE_RASTER_REPROJECTION) {\n return _super.prototype.canExpireCache.call(this);\n }\n if (this.tileCache.canExpireCache()) {\n return true;\n }\n else {\n for (var key in this.tileCacheForProjection) {\n if (this.tileCacheForProjection[key].canExpireCache()) {\n return true;\n }\n }\n }\n return false;\n };\n /**\n * @param {import(\"../proj/Projection.js\").default} projection Projection.\n * @param {!Object<string, boolean>} usedTiles Used tiles.\n */\n TileImage.prototype.expireCache = function (projection, usedTiles) {\n if (!ENABLE_RASTER_REPROJECTION) {\n _super.prototype.expireCache.call(this, projection, usedTiles);\n return;\n }\n var usedTileCache = this.getTileCacheForProjection(projection);\n this.tileCache.expireCache(this.tileCache == usedTileCache ? usedTiles : {});\n for (var id in this.tileCacheForProjection) {\n var tileCache = this.tileCacheForProjection[id];\n tileCache.expireCache(tileCache == usedTileCache ? usedTiles : {});\n }\n };\n /**\n * @param {import(\"../proj/Projection.js\").default} projection Projection.\n * @return {number} Gutter.\n */\n TileImage.prototype.getGutterForProjection = function (projection) {\n if (ENABLE_RASTER_REPROJECTION &&\n this.getProjection() &&\n projection &&\n !equivalent(this.getProjection(), projection)) {\n return 0;\n }\n else {\n return this.getGutter();\n }\n };\n /**\n * @return {number} Gutter.\n */\n TileImage.prototype.getGutter = function () {\n return 0;\n };\n /**\n * Return the key to be used for all tiles in the source.\n * @return {string} The key for all tiles.\n */\n TileImage.prototype.getKey = function () {\n var key = _super.prototype.getKey.call(this);\n if (!this.getInterpolate()) {\n key += ':disable-interpolation';\n }\n return key;\n };\n /**\n * @param {import(\"../proj/Projection.js\").default} projection Projection.\n * @return {boolean} Opaque.\n */\n TileImage.prototype.getOpaque = function (projection) {\n if (ENABLE_RASTER_REPROJECTION &&\n this.getProjection() &&\n projection &&\n !equivalent(this.getProjection(), projection)) {\n return false;\n }\n else {\n return _super.prototype.getOpaque.call(this, projection);\n }\n };\n /**\n * @param {import(\"../proj/Projection.js\").default} projection Projection.\n * @return {!import(\"../tilegrid/TileGrid.js\").default} Tile grid.\n */\n TileImage.prototype.getTileGridForProjection = function (projection) {\n if (!ENABLE_RASTER_REPROJECTION) {\n return _super.prototype.getTileGridForProjection.call(this, projection);\n }\n var thisProj = this.getProjection();\n if (this.tileGrid && (!thisProj || equivalent(thisProj, projection))) {\n return this.tileGrid;\n }\n else {\n var projKey = getUid(projection);\n if (!(projKey in this.tileGridForProjection)) {\n this.tileGridForProjection[projKey] =\n getTileGridForProjection(projection);\n }\n return this.tileGridForProjection[projKey];\n }\n };\n /**\n * @param {import(\"../proj/Projection.js\").default} projection Projection.\n * @return {import(\"../TileCache.js\").default} Tile cache.\n */\n TileImage.prototype.getTileCacheForProjection = function (projection) {\n if (!ENABLE_RASTER_REPROJECTION) {\n return _super.prototype.getTileCacheForProjection.call(this, projection);\n }\n var thisProj = this.getProjection();\n if (!thisProj || equivalent(thisProj, projection)) {\n return this.tileCache;\n }\n else {\n var projKey = getUid(projection);\n if (!(projKey in this.tileCacheForProjection)) {\n this.tileCacheForProjection[projKey] = new TileCache(this.tileCache.highWaterMark);\n }\n return this.tileCacheForProjection[projKey];\n }\n };\n /**\n * @param {number} z Tile coordinate z.\n * @param {number} x Tile coordinate x.\n * @param {number} y Tile coordinate y.\n * @param {number} pixelRatio Pixel ratio.\n * @param {import(\"../proj/Projection.js\").default} projection Projection.\n * @param {string} key The key set on the tile.\n * @return {!ImageTile} Tile.\n * @private\n */\n TileImage.prototype.createTile_ = function (z, x, y, pixelRatio, projection, key) {\n var tileCoord = [z, x, y];\n var urlTileCoord = this.getTileCoordForTileUrlFunction(tileCoord, projection);\n var tileUrl = urlTileCoord\n ? this.tileUrlFunction(urlTileCoord, pixelRatio, projection)\n : undefined;\n var tile = new this.tileClass(tileCoord, tileUrl !== undefined ? TileState.IDLE : TileState.EMPTY, tileUrl !== undefined ? tileUrl : '', this.crossOrigin, this.tileLoadFunction, this.tileOptions);\n tile.key = key;\n tile.addEventListener(EventType.CHANGE, this.handleTileChange.bind(this));\n return tile;\n };\n /**\n * @param {number} z Tile coordinate z.\n * @param {number} x Tile coordinate x.\n * @param {number} y Tile coordinate y.\n * @param {number} pixelRatio Pixel ratio.\n * @param {import(\"../proj/Projection.js\").default} projection Projection.\n * @return {!(ImageTile|ReprojTile)} Tile.\n */\n TileImage.prototype.getTile = function (z, x, y, pixelRatio, projection) {\n var sourceProjection = this.getProjection();\n if (!ENABLE_RASTER_REPROJECTION ||\n !sourceProjection ||\n !projection ||\n equivalent(sourceProjection, projection)) {\n return this.getTileInternal(z, x, y, pixelRatio, sourceProjection || projection);\n }\n else {\n var cache = this.getTileCacheForProjection(projection);\n var tileCoord = [z, x, y];\n var tile = void 0;\n var tileCoordKey = getKey(tileCoord);\n if (cache.containsKey(tileCoordKey)) {\n tile = cache.get(tileCoordKey);\n }\n var key = this.getKey();\n if (tile && tile.key == key) {\n return tile;\n }\n else {\n var sourceTileGrid = this.getTileGridForProjection(sourceProjection);\n var targetTileGrid = this.getTileGridForProjection(projection);\n var wrappedTileCoord = this.getTileCoordForTileUrlFunction(tileCoord, projection);\n var newTile = new ReprojTile(sourceProjection, sourceTileGrid, projection, targetTileGrid, tileCoord, wrappedTileCoord, this.getTilePixelRatio(pixelRatio), this.getGutter(), function (z, x, y, pixelRatio) {\n return this.getTileInternal(z, x, y, pixelRatio, sourceProjection);\n }.bind(this), this.reprojectionErrorThreshold_, this.renderReprojectionEdges_, this.getInterpolate());\n newTile.key = key;\n if (tile) {\n newTile.interimTile = tile;\n newTile.refreshInterimChain();\n cache.replace(tileCoordKey, newTile);\n }\n else {\n cache.set(tileCoordKey, newTile);\n }\n return newTile;\n }\n }\n };\n /**\n * @param {number} z Tile coordinate z.\n * @param {number} x Tile coordinate x.\n * @param {number} y Tile coordinate y.\n * @param {number} pixelRatio Pixel ratio.\n * @param {!import(\"../proj/Projection.js\").default} projection Projection.\n * @return {!(ImageTile|ReprojTile)} Tile.\n * @protected\n */\n TileImage.prototype.getTileInternal = function (z, x, y, pixelRatio, projection) {\n var tile = null;\n var tileCoordKey = getKeyZXY(z, x, y);\n var key = this.getKey();\n if (!this.tileCache.containsKey(tileCoordKey)) {\n tile = this.createTile_(z, x, y, pixelRatio, projection, key);\n this.tileCache.set(tileCoordKey, tile);\n }\n else {\n tile = this.tileCache.get(tileCoordKey);\n if (tile.key != key) {\n // The source's params changed. If the tile has an interim tile and if we\n // can use it then we use it. Otherwise we create a new tile. In both\n // cases we attempt to assign an interim tile to the new tile.\n var interimTile = tile;\n tile = this.createTile_(z, x, y, pixelRatio, projection, key);\n //make the new tile the head of the list,\n if (interimTile.getState() == TileState.IDLE) {\n //the old tile hasn't begun loading yet, and is now outdated, so we can simply discard it\n tile.interimTile = interimTile.interimTile;\n }\n else {\n tile.interimTile = interimTile;\n }\n tile.refreshInterimChain();\n this.tileCache.replace(tileCoordKey, tile);\n }\n }\n return tile;\n };\n /**\n * Sets whether to render reprojection edges or not (usually for debugging).\n * @param {boolean} render Render the edges.\n * @api\n */\n TileImage.prototype.setRenderReprojectionEdges = function (render) {\n if (!ENABLE_RASTER_REPROJECTION ||\n this.renderReprojectionEdges_ == render) {\n return;\n }\n this.renderReprojectionEdges_ = render;\n for (var id in this.tileCacheForProjection) {\n this.tileCacheForProjection[id].clear();\n }\n this.changed();\n };\n /**\n * Sets the tile grid to use when reprojecting the tiles to the given\n * projection instead of the default tile grid for the projection.\n *\n * This can be useful when the default tile grid cannot be created\n * (e.g. projection has no extent defined) or\n * for optimization reasons (custom tile size, resolutions, ...).\n *\n * @param {import(\"../proj.js\").ProjectionLike} projection Projection.\n * @param {import(\"../tilegrid/TileGrid.js\").default} tilegrid Tile grid to use for the projection.\n * @api\n */\n TileImage.prototype.setTileGridForProjection = function (projection, tilegrid) {\n if (ENABLE_RASTER_REPROJECTION) {\n var proj = getProjection(projection);\n if (proj) {\n var projKey = getUid(proj);\n if (!(projKey in this.tileGridForProjection)) {\n this.tileGridForProjection[projKey] = tilegrid;\n }\n }\n }\n };\n return TileImage;\n}(UrlTile));\n/**\n * @param {ImageTile} imageTile Image tile.\n * @param {string} src Source.\n */\nfunction defaultTileLoadFunction(imageTile, src) {\n /** @type {HTMLImageElement|HTMLVideoElement} */ (imageTile.getImage()).src =\n src;\n}\nexport default TileImage;\n//# sourceMappingURL=TileImage.js.map","/**\n * @module ol/source/XYZ\n */\nvar __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\nimport TileImage from './TileImage.js';\nimport { createXYZ, extentFromProjection } from '../tilegrid.js';\n/**\n * @typedef {Object} Options\n * @property {import(\"./Source.js\").AttributionLike} [attributions] Attributions.\n * @property {boolean} [attributionsCollapsible=true] Attributions are collapsible.\n * @property {number} [cacheSize] Initial tile cache size. Will auto-grow to hold at least the number of tiles in the viewport.\n * @property {null|string} [crossOrigin] The `crossOrigin` attribute for loaded images. Note that\n * you must provide a `crossOrigin` value if you want to access pixel data with the Canvas renderer.\n * See https://developer.mozilla.org/en-US/docs/Web/HTML/CORS_enabled_image for more detail.\n * @property {boolean} [imageSmoothing=true] Deprecated. Use the `interpolate` option instead.\n * @property {boolean} [interpolate=true] Use interpolated values when resampling. By default,\n * linear interpolation is used when resampling. Set to false to use the nearest neighbor instead.\n * @property {boolean} [opaque=false] Whether the layer is opaque.\n * @property {import(\"../proj.js\").ProjectionLike} [projection='EPSG:3857'] Projection.\n * @property {number} [reprojectionErrorThreshold=0.5] Maximum allowed reprojection error (in pixels).\n * Higher values can increase reprojection performance, but decrease precision.\n * @property {number} [maxZoom=42] Optional max zoom level. Not used if `tileGrid` is provided.\n * @property {number} [minZoom=0] Optional min zoom level. Not used if `tileGrid` is provided.\n * @property {number} [maxResolution] Optional tile grid resolution at level zero. Not used if `tileGrid` is provided.\n * @property {import(\"../tilegrid/TileGrid.js\").default} [tileGrid] Tile grid.\n * @property {import(\"../Tile.js\").LoadFunction} [tileLoadFunction] Optional function to load a tile given a URL. The default is\n * ```js\n * function(imageTile, src) {\n * imageTile.getImage().src = src;\n * };\n * ```\n * @property {number} [tilePixelRatio=1] The pixel ratio used by the tile service.\n * For example, if the tile service advertizes 256px by 256px tiles but actually sends 512px\n * by 512px images (for retina/hidpi devices) then `tilePixelRatio`\n * should be set to `2`.\n * @property {number|import(\"../size.js\").Size} [tileSize=[256, 256]] The tile size used by the tile service.\n * Not used if `tileGrid` is provided.\n * @property {import(\"../Tile.js\").UrlFunction} [tileUrlFunction] Optional function to get\n * tile URL given a tile coordinate and the projection.\n * Required if `url` or `urls` are not provided.\n * @property {string} [url] URL template. Must include `{x}`, `{y}` or `{-y}`,\n * and `{z}` placeholders. A `{?-?}` template pattern, for example `subdomain{a-f}.domain.com`,\n * may be used instead of defining each one separately in the `urls` option.\n * @property {Array<string>} [urls] An array of URL templates.\n * @property {boolean} [wrapX=true] Whether to wrap the world horizontally.\n * @property {number} [transition=250] Duration of the opacity transition for rendering.\n * To disable the opacity transition, pass `transition: 0`.\n * @property {number|import(\"../array.js\").NearestDirectionFunction} [zDirection=0]\n * Choose whether to use tiles with a higher or lower zoom level when between integer\n * zoom levels. See {@link module:ol/tilegrid/TileGrid~TileGrid#getZForResolution}.\n */\n/**\n * @classdesc\n * Layer source for tile data with URLs in a set XYZ format that are\n * defined in a URL template. By default, this follows the widely-used\n * Google grid where `x` 0 and `y` 0 are in the top left. Grids like\n * TMS where `x` 0 and `y` 0 are in the bottom left can be used by\n * using the `{-y}` placeholder in the URL template, so long as the\n * source does not have a custom tile grid. In this case\n * a `tileUrlFunction` can be used, such as:\n * ```js\n * tileUrlFunction: function(coordinate) {\n * return 'http://mapserver.com/' + coordinate[0] + '/' +\n * coordinate[1] + '/' + (-coordinate[2] - 1) + '.png';\n * }\n * ```\n * @api\n */\nvar XYZ = /** @class */ (function (_super) {\n __extends(XYZ, _super);\n /**\n * @param {Options} [opt_options] XYZ options.\n */\n function XYZ(opt_options) {\n var options = opt_options || {};\n var interpolate = options.imageSmoothing !== undefined ? options.imageSmoothing : true;\n if (options.interpolate !== undefined) {\n interpolate = options.interpolate;\n }\n var projection = options.projection !== undefined ? options.projection : 'EPSG:3857';\n var tileGrid = options.tileGrid !== undefined\n ? options.tileGrid\n : createXYZ({\n extent: extentFromProjection(projection),\n maxResolution: options.maxResolution,\n maxZoom: options.maxZoom,\n minZoom: options.minZoom,\n tileSize: options.tileSize,\n });\n return _super.call(this, {\n attributions: options.attributions,\n cacheSize: options.cacheSize,\n crossOrigin: options.crossOrigin,\n interpolate: interpolate,\n opaque: options.opaque,\n projection: projection,\n reprojectionErrorThreshold: options.reprojectionErrorThreshold,\n tileGrid: tileGrid,\n tileLoadFunction: options.tileLoadFunction,\n tilePixelRatio: options.tilePixelRatio,\n tileUrlFunction: options.tileUrlFunction,\n url: options.url,\n urls: options.urls,\n wrapX: options.wrapX !== undefined ? options.wrapX : true,\n transition: options.transition,\n attributionsCollapsible: options.attributionsCollapsible,\n zDirection: options.zDirection,\n }) || this;\n }\n return XYZ;\n}(TileImage));\nexport default XYZ;\n//# sourceMappingURL=XYZ.js.map","/**\n * @module ol/source/OSM\n */\nvar __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\nimport XYZ from './XYZ.js';\n/**\n * The attribution containing a link to the OpenStreetMap Copyright and License\n * page.\n * @const\n * @type {string}\n * @api\n */\nexport var ATTRIBUTION = '&#169; ' +\n '<a href=\"https://www.openstreetmap.org/copyright\" target=\"_blank\">OpenStreetMap</a> ' +\n 'contributors.';\n/**\n * @typedef {Object} Options\n * @property {import(\"./Source.js\").AttributionLike} [attributions] Attributions.\n * @property {number} [cacheSize] Initial tile cache size. Will auto-grow to hold at least the number of tiles in the viewport.\n * @property {null|string} [crossOrigin='anonymous'] The `crossOrigin` attribute for loaded images. Note that\n * you must provide a `crossOrigin` value if you want to access pixel data with the Canvas renderer.\n * See https://developer.mozilla.org/en-US/docs/Web/HTML/CORS_enabled_image for more detail.\n * @property {boolean} [imageSmoothing=true] Deprecated. Use the `interpolate` option instead.\n * @property {boolean} [interpolate=true] Use interpolated values when resampling. By default,\n * linear interpolation is used when resampling. Set to false to use the nearest neighbor instead.\n * @property {number} [maxZoom=19] Max zoom.\n * @property {boolean} [opaque=true] Whether the layer is opaque.\n * @property {number} [reprojectionErrorThreshold=0.5] Maximum allowed reprojection error (in pixels).\n * Higher values can increase reprojection performance, but decrease precision.\n * @property {import(\"../Tile.js\").LoadFunction} [tileLoadFunction] Optional function to load a tile given a URL. The default is\n * ```js\n * function(imageTile, src) {\n * imageTile.getImage().src = src;\n * };\n * ```\n * @property {number} [transition=250] Duration of the opacity transition for rendering.\n * To disable the opacity transition, pass `transition: 0`.\n * @property {string} [url='https://{a-c}.tile.openstreetmap.org/{z}/{x}/{y}.png'] URL template.\n * Must include `{x}`, `{y}` or `{-y}`, and `{z}` placeholders.\n * @property {boolean} [wrapX=true] Whether to wrap the world horizontally.\n * @property {number|import(\"../array.js\").NearestDirectionFunction} [zDirection=0]\n * Choose whether to use tiles with a higher or lower zoom level when between integer\n * zoom levels. See {@link module:ol/tilegrid/TileGrid~TileGrid#getZForResolution}.\n */\n/**\n * @classdesc\n * Layer source for the OpenStreetMap tile server.\n * @api\n */\nvar OSM = /** @class */ (function (_super) {\n __extends(OSM, _super);\n /**\n * @param {Options} [opt_options] Open Street Map options.\n */\n function OSM(opt_options) {\n var options = opt_options || {};\n var interpolate = options.imageSmoothing !== undefined ? options.imageSmoothing : true;\n if (options.interpolate !== undefined) {\n interpolate = options.interpolate;\n }\n var attributions;\n if (options.attributions !== undefined) {\n attributions = options.attributions;\n }\n else {\n attributions = [ATTRIBUTION];\n }\n var crossOrigin = options.crossOrigin !== undefined ? options.crossOrigin : 'anonymous';\n var url = options.url !== undefined\n ? options.url\n : 'https://{a-c}.tile.openstreetmap.org/{z}/{x}/{y}.png';\n return _super.call(this, {\n attributions: attributions,\n attributionsCollapsible: false,\n cacheSize: options.cacheSize,\n crossOrigin: crossOrigin,\n interpolate: interpolate,\n maxZoom: options.maxZoom !== undefined ? options.maxZoom : 19,\n opaque: options.opaque !== undefined ? options.opaque : true,\n reprojectionErrorThreshold: options.reprojectionErrorThreshold,\n tileLoadFunction: options.tileLoadFunction,\n transition: options.transition,\n url: url,\n wrapX: options.wrapX,\n zDirection: options.zDirection,\n }) || this;\n }\n return OSM;\n}(XYZ));\nexport default OSM;\n//# sourceMappingURL=OSM.js.map","/**\n * @module ol/CollectionEventType\n */\n/**\n * @enum {string}\n */\nexport default {\n /**\n * Triggered when an item is added to the collection.\n * @event module:ol/Collection.CollectionEvent#add\n * @api\n */\n ADD: 'add',\n /**\n * Triggered when an item is removed from the collection.\n * @event module:ol/Collection.CollectionEvent#remove\n * @api\n */\n REMOVE: 'remove',\n};\n//# sourceMappingURL=CollectionEventType.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/Collection\n */\nimport AssertionError from './AssertionError.js';\nimport BaseObject from './Object.js';\nimport CollectionEventType from './CollectionEventType.js';\nimport Event from './events/Event.js';\n/**\n * @enum {string}\n * @private\n */\nvar Property = {\n LENGTH: 'length',\n};\n/**\n * @classdesc\n * Events emitted by {@link module:ol/Collection~Collection} instances are instances of this\n * type.\n */\nvar CollectionEvent = /** @class */ (function (_super) {\n __extends(CollectionEvent, _super);\n /**\n * @param {import(\"./CollectionEventType.js\").default} type Type.\n * @param {*} [opt_element] Element.\n * @param {number} [opt_index] The index of the added or removed element.\n */\n function CollectionEvent(type, opt_element, opt_index) {\n var _this = _super.call(this, type) || this;\n /**\n * The element that is added to or removed from the collection.\n * @type {*}\n * @api\n */\n _this.element = opt_element;\n /**\n * The index of the added or removed element.\n * @type {number}\n * @api\n */\n _this.index = opt_index;\n return _this;\n }\n return CollectionEvent;\n}(Event));\nexport { CollectionEvent };\n/***\n * @template Return\n * @typedef {import(\"./Observable\").OnSignature<import(\"./Observable\").EventTypes, import(\"./events/Event.js\").default, Return> &\n * import(\"./Observable\").OnSignature<import(\"./ObjectEventType\").Types|'change:length', import(\"./Object\").ObjectEvent, Return> &\n * import(\"./Observable\").OnSignature<'add'|'remove', CollectionEvent, Return> &\n * import(\"./Observable\").CombinedOnSignature<import(\"./Observable\").EventTypes|import(\"./ObjectEventType\").Types|\n * 'change:length'|'add'|'remove',Return>} CollectionOnSignature\n */\n/**\n * @typedef {Object} Options\n * @property {boolean} [unique=false] Disallow the same item from being added to\n * the collection twice.\n */\n/**\n * @classdesc\n * An expanded version of standard JS Array, adding convenience methods for\n * manipulation. Add and remove changes to the Collection trigger a Collection\n * event. Note that this does not cover changes to the objects _within_ the\n * Collection; they trigger events on the appropriate object, not on the\n * Collection as a whole.\n *\n * @fires CollectionEvent\n *\n * @template T\n * @api\n */\nvar Collection = /** @class */ (function (_super) {\n __extends(Collection, _super);\n /**\n * @param {Array<T>} [opt_array] Array.\n * @param {Options} [opt_options] Collection options.\n */\n function Collection(opt_array, opt_options) {\n var _this = _super.call(this) || this;\n /***\n * @type {CollectionOnSignature<import(\"./events\").EventsKey>}\n */\n _this.on;\n /***\n * @type {CollectionOnSignature<import(\"./events\").EventsKey>}\n */\n _this.once;\n /***\n * @type {CollectionOnSignature<void>}\n */\n _this.un;\n var options = opt_options || {};\n /**\n * @private\n * @type {boolean}\n */\n _this.unique_ = !!options.unique;\n /**\n * @private\n * @type {!Array<T>}\n */\n _this.array_ = opt_array ? opt_array : [];\n if (_this.unique_) {\n for (var i = 0, ii = _this.array_.length; i < ii; ++i) {\n _this.assertUnique_(_this.array_[i], i);\n }\n }\n _this.updateLength_();\n return _this;\n }\n /**\n * Remove all elements from the collection.\n * @api\n */\n Collection.prototype.clear = function () {\n while (this.getLength() > 0) {\n this.pop();\n }\n };\n /**\n * Add elements to the collection. This pushes each item in the provided array\n * to the end of the collection.\n * @param {!Array<T>} arr Array.\n * @return {Collection<T>} This collection.\n * @api\n */\n Collection.prototype.extend = function (arr) {\n for (var i = 0, ii = arr.length; i < ii; ++i) {\n this.push(arr[i]);\n }\n return this;\n };\n /**\n * Iterate over each element, calling the provided callback.\n * @param {function(T, number, Array<T>): *} f The function to call\n * for every element. This function takes 3 arguments (the element, the\n * index and the array). The return value is ignored.\n * @api\n */\n Collection.prototype.forEach = function (f) {\n var array = this.array_;\n for (var i = 0, ii = array.length; i < ii; ++i) {\n f(array[i], i, array);\n }\n };\n /**\n * Get a reference to the underlying Array object. Warning: if the array\n * is mutated, no events will be dispatched by the collection, and the\n * collection's \"length\" property won't be in sync with the actual length\n * of the array.\n * @return {!Array<T>} Array.\n * @api\n */\n Collection.prototype.getArray = function () {\n return this.array_;\n };\n /**\n * Get the element at the provided index.\n * @param {number} index Index.\n * @return {T} Element.\n * @api\n */\n Collection.prototype.item = function (index) {\n return this.array_[index];\n };\n /**\n * Get the length of this collection.\n * @return {number} The length of the array.\n * @observable\n * @api\n */\n Collection.prototype.getLength = function () {\n return this.get(Property.LENGTH);\n };\n /**\n * Insert an element at the provided index.\n * @param {number} index Index.\n * @param {T} elem Element.\n * @api\n */\n Collection.prototype.insertAt = function (index, elem) {\n if (this.unique_) {\n this.assertUnique_(elem);\n }\n this.array_.splice(index, 0, elem);\n this.updateLength_();\n this.dispatchEvent(new CollectionEvent(CollectionEventType.ADD, elem, index));\n };\n /**\n * Remove the last element of the collection and return it.\n * Return `undefined` if the collection is empty.\n * @return {T|undefined} Element.\n * @api\n */\n Collection.prototype.pop = function () {\n return this.removeAt(this.getLength() - 1);\n };\n /**\n * Insert the provided element at the end of the collection.\n * @param {T} elem Element.\n * @return {number} New length of the collection.\n * @api\n */\n Collection.prototype.push = function (elem) {\n if (this.unique_) {\n this.assertUnique_(elem);\n }\n var n = this.getLength();\n this.insertAt(n, elem);\n return this.getLength();\n };\n /**\n * Remove the first occurrence of an element from the collection.\n * @param {T} elem Element.\n * @return {T|undefined} The removed element or undefined if none found.\n * @api\n */\n Collection.prototype.remove = function (elem) {\n var arr = this.array_;\n for (var i = 0, ii = arr.length; i < ii; ++i) {\n if (arr[i] === elem) {\n return this.removeAt(i);\n }\n }\n return undefined;\n };\n /**\n * Remove the element at the provided index and return it.\n * Return `undefined` if the collection does not contain this index.\n * @param {number} index Index.\n * @return {T|undefined} Value.\n * @api\n */\n Collection.prototype.removeAt = function (index) {\n var prev = this.array_[index];\n this.array_.splice(index, 1);\n this.updateLength_();\n this.dispatchEvent(new CollectionEvent(CollectionEventType.REMOVE, prev, index));\n return prev;\n };\n /**\n * Set the element at the provided index.\n * @param {number} index Index.\n * @param {T} elem Element.\n * @api\n */\n Collection.prototype.setAt = function (index, elem) {\n var n = this.getLength();\n if (index < n) {\n if (this.unique_) {\n this.assertUnique_(elem, index);\n }\n var prev = this.array_[index];\n this.array_[index] = elem;\n this.dispatchEvent(new CollectionEvent(CollectionEventType.REMOVE, prev, index));\n this.dispatchEvent(new CollectionEvent(CollectionEventType.ADD, elem, index));\n }\n else {\n for (var j = n; j < index; ++j) {\n this.insertAt(j, undefined);\n }\n this.insertAt(index, elem);\n }\n };\n /**\n * @private\n */\n Collection.prototype.updateLength_ = function () {\n this.set(Property.LENGTH, this.array_.length);\n };\n /**\n * @private\n * @param {T} elem Element.\n * @param {number} [opt_except] Optional index to ignore.\n */\n Collection.prototype.assertUnique_ = function (elem, opt_except) {\n for (var i = 0, ii = this.array_.length; i < ii; ++i) {\n if (this.array_[i] === elem && i !== opt_except) {\n throw new AssertionError(58);\n }\n }\n };\n return Collection;\n}(BaseObject));\nexport default Collection;\n//# sourceMappingURL=Collection.js.map","/**\n * @module ol/structs/RBush\n */\nimport RBush_ from 'rbush';\nimport { createOrUpdate, equals } from '../extent.js';\nimport { getUid } from '../util.js';\nimport { isEmpty } from '../obj.js';\n/**\n * @typedef {Object} Entry\n * @property {number} minX MinX.\n * @property {number} minY MinY.\n * @property {number} maxX MaxX.\n * @property {number} maxY MaxY.\n * @property {Object} [value] Value.\n */\n/**\n * @classdesc\n * Wrapper around the RBush by Vladimir Agafonkin.\n * See https://github.com/mourner/rbush.\n *\n * @template T\n */\nvar RBush = /** @class */ (function () {\n /**\n * @param {number} [opt_maxEntries] Max entries.\n */\n function RBush(opt_maxEntries) {\n /**\n * @private\n */\n this.rbush_ = new RBush_(opt_maxEntries);\n /**\n * A mapping between the objects added to this rbush wrapper\n * and the objects that are actually added to the internal rbush.\n * @private\n * @type {Object<string, Entry>}\n */\n this.items_ = {};\n }\n /**\n * Insert a value into the RBush.\n * @param {import(\"../extent.js\").Extent} extent Extent.\n * @param {T} value Value.\n */\n RBush.prototype.insert = function (extent, value) {\n /** @type {Entry} */\n var item = {\n minX: extent[0],\n minY: extent[1],\n maxX: extent[2],\n maxY: extent[3],\n value: value,\n };\n this.rbush_.insert(item);\n this.items_[getUid(value)] = item;\n };\n /**\n * Bulk-insert values into the RBush.\n * @param {Array<import(\"../extent.js\").Extent>} extents Extents.\n * @param {Array<T>} values Values.\n */\n RBush.prototype.load = function (extents, values) {\n var items = new Array(values.length);\n for (var i = 0, l = values.length; i < l; i++) {\n var extent = extents[i];\n var value = values[i];\n /** @type {Entry} */\n var item = {\n minX: extent[0],\n minY: extent[1],\n maxX: extent[2],\n maxY: extent[3],\n value: value,\n };\n items[i] = item;\n this.items_[getUid(value)] = item;\n }\n this.rbush_.load(items);\n };\n /**\n * Remove a value from the RBush.\n * @param {T} value Value.\n * @return {boolean} Removed.\n */\n RBush.prototype.remove = function (value) {\n var uid = getUid(value);\n // get the object in which the value was wrapped when adding to the\n // internal rbush. then use that object to do the removal.\n var item = this.items_[uid];\n delete this.items_[uid];\n return this.rbush_.remove(item) !== null;\n };\n /**\n * Update the extent of a value in the RBush.\n * @param {import(\"../extent.js\").Extent} extent Extent.\n * @param {T} value Value.\n */\n RBush.prototype.update = function (extent, value) {\n var item = this.items_[getUid(value)];\n var bbox = [item.minX, item.minY, item.maxX, item.maxY];\n if (!equals(bbox, extent)) {\n this.remove(value);\n this.insert(extent, value);\n }\n };\n /**\n * Return all values in the RBush.\n * @return {Array<T>} All.\n */\n RBush.prototype.getAll = function () {\n var items = this.rbush_.all();\n return items.map(function (item) {\n return item.value;\n });\n };\n /**\n * Return all values in the given extent.\n * @param {import(\"../extent.js\").Extent} extent Extent.\n * @return {Array<T>} All in extent.\n */\n RBush.prototype.getInExtent = function (extent) {\n /** @type {Entry} */\n var bbox = {\n minX: extent[0],\n minY: extent[1],\n maxX: extent[2],\n maxY: extent[3],\n };\n var items = this.rbush_.search(bbox);\n return items.map(function (item) {\n return item.value;\n });\n };\n /**\n * Calls a callback function with each value in the tree.\n * If the callback returns a truthy value, this value is returned without\n * checking the rest of the tree.\n * @param {function(T): *} callback Callback.\n * @return {*} Callback return value.\n */\n RBush.prototype.forEach = function (callback) {\n return this.forEach_(this.getAll(), callback);\n };\n /**\n * Calls a callback function with each value in the provided extent.\n * @param {import(\"../extent.js\").Extent} extent Extent.\n * @param {function(T): *} callback Callback.\n * @return {*} Callback return value.\n */\n RBush.prototype.forEachInExtent = function (extent, callback) {\n return this.forEach_(this.getInExtent(extent), callback);\n };\n /**\n * @param {Array<T>} values Values.\n * @param {function(T): *} callback Callback.\n * @private\n * @return {*} Callback return value.\n */\n RBush.prototype.forEach_ = function (values, callback) {\n var result;\n for (var i = 0, l = values.length; i < l; i++) {\n result = callback(values[i]);\n if (result) {\n return result;\n }\n }\n return result;\n };\n /**\n * @return {boolean} Is empty.\n */\n RBush.prototype.isEmpty = function () {\n return isEmpty(this.items_);\n };\n /**\n * Remove all values from the RBush.\n */\n RBush.prototype.clear = function () {\n this.rbush_.clear();\n this.items_ = {};\n };\n /**\n * @param {import(\"../extent.js\").Extent} [opt_extent] Extent.\n * @return {import(\"../extent.js\").Extent} Extent.\n */\n RBush.prototype.getExtent = function (opt_extent) {\n var data = this.rbush_.toJSON();\n return createOrUpdate(data.minX, data.minY, data.maxX, data.maxY, opt_extent);\n };\n /**\n * @param {RBush} rbush R-Tree.\n */\n RBush.prototype.concat = function (rbush) {\n this.rbush_.load(rbush.rbush_.all());\n for (var i in rbush.items_) {\n this.items_[i] = rbush.items_[i];\n }\n };\n return RBush;\n}());\nexport default RBush;\n//# sourceMappingURL=RBush.js.map","/**\n * @module ol/source/VectorEventType\n */\n/**\n * @enum {string}\n */\nexport default {\n /**\n * Triggered when a feature is added to the source.\n * @event module:ol/source/Vector.VectorSourceEvent#addfeature\n * @api\n */\n ADDFEATURE: 'addfeature',\n /**\n * Triggered when a feature is updated.\n * @event module:ol/source/Vector.VectorSourceEvent#changefeature\n * @api\n */\n CHANGEFEATURE: 'changefeature',\n /**\n * Triggered when the clear method is called on the source.\n * @event module:ol/source/Vector.VectorSourceEvent#clear\n * @api\n */\n CLEAR: 'clear',\n /**\n * Triggered when a feature is removed from the source.\n * See {@link module:ol/source/Vector~VectorSource#clear source.clear()} for exceptions.\n * @event module:ol/source/Vector.VectorSourceEvent#removefeature\n * @api\n */\n REMOVEFEATURE: 'removefeature',\n /**\n * Triggered when features starts loading.\n * @event module:ol/source/Vector.VectorSourceEvent#featuresloadstart\n * @api\n */\n FEATURESLOADSTART: 'featuresloadstart',\n /**\n * Triggered when features finishes loading.\n * @event module:ol/source/Vector.VectorSourceEvent#featuresloadend\n * @api\n */\n FEATURESLOADEND: 'featuresloadend',\n /**\n * Triggered if feature loading results in an error.\n * @event module:ol/source/Vector.VectorSourceEvent#featuresloaderror\n * @api\n */\n FEATURESLOADERROR: 'featuresloaderror',\n};\n/**\n * @typedef {'addfeature'|'changefeature'|'clear'|'removefeature'|'featuresloadstart'|'featuresloadend'|'featuresloaderror'} VectorSourceEventTypes\n */\n//# sourceMappingURL=VectorEventType.js.map","/**\n * @module ol/loadingstrategy\n */\nimport { fromUserExtent, fromUserResolution, toUserExtent } from './proj.js';\n/**\n * Strategy function for loading all features with a single request.\n * @param {import(\"./extent.js\").Extent} extent Extent.\n * @param {number} resolution Resolution.\n * @return {Array<import(\"./extent.js\").Extent>} Extents.\n * @api\n */\nexport function all(extent, resolution) {\n return [[-Infinity, -Infinity, Infinity, Infinity]];\n}\n/**\n * Strategy function for loading features based on the view's extent and\n * resolution.\n * @param {import(\"./extent.js\").Extent} extent Extent.\n * @param {number} resolution Resolution.\n * @return {Array<import(\"./extent.js\").Extent>} Extents.\n * @api\n */\nexport function bbox(extent, resolution) {\n return [extent];\n}\n/**\n * Creates a strategy function for loading features based on a tile grid.\n * @param {import(\"./tilegrid/TileGrid.js\").default} tileGrid Tile grid.\n * @return {function(import(\"./extent.js\").Extent, number, import(\"./proj.js\").Projection): Array<import(\"./extent.js\").Extent>} Loading strategy.\n * @api\n */\nexport function tile(tileGrid) {\n return (\n /**\n * @param {import(\"./extent.js\").Extent} extent Extent.\n * @param {number} resolution Resolution.\n * @param {import(\"./proj.js\").Projection} projection Projection.\n * @return {Array<import(\"./extent.js\").Extent>} Extents.\n */\n function (extent, resolution, projection) {\n var z = tileGrid.getZForResolution(fromUserResolution(resolution, projection));\n var tileRange = tileGrid.getTileRangeForExtentAndZ(fromUserExtent(extent, projection), z);\n /** @type {Array<import(\"./extent.js\").Extent>} */\n var extents = [];\n /** @type {import(\"./tilecoord.js\").TileCoord} */\n var tileCoord = [z, 0, 0];\n for (tileCoord[1] = tileRange.minX; tileCoord[1] <= tileRange.maxX; ++tileCoord[1]) {\n for (tileCoord[2] = tileRange.minY; tileCoord[2] <= tileRange.maxY; ++tileCoord[2]) {\n extents.push(toUserExtent(tileGrid.getTileCoordExtent(tileCoord), projection));\n }\n }\n return extents;\n });\n}\n//# sourceMappingURL=loadingstrategy.js.map","/**\n * @module ol/format/FormatType\n */\n/**\n * @enum {string}\n */\nexport default {\n ARRAY_BUFFER: 'arraybuffer',\n JSON: 'json',\n TEXT: 'text',\n XML: 'xml',\n};\n//# sourceMappingURL=FormatType.js.map","/**\n * @module ol/featureloader\n */\nimport FormatType from './format/FormatType.js';\nimport { VOID } from './functions.js';\n/**\n *\n * @type {boolean}\n * @private\n */\nvar withCredentials = false;\n/**\n * {@link module:ol/source/Vector~VectorSource} sources use a function of this type to\n * load features.\n *\n * This function takes up to 5 arguments. These are an {@link module:ol/extent~Extent} representing\n * the area to be loaded, a `{number}` representing the resolution (map units per pixel), an\n * {@link module:ol/proj/Projection~Projection} for the projection, an optional success callback that should get\n * the loaded features passed as an argument and an optional failure callback with no arguments. If\n * the callbacks are not used, the corresponding vector source will not fire `'featuresloadend'` and\n * `'featuresloaderror'` events. `this` within the function is bound to the\n * {@link module:ol/source/Vector~VectorSource} it's called from.\n *\n * The function is responsible for loading the features and adding them to the\n * source.\n * @typedef {function(this:(import(\"./source/Vector\").default|import(\"./VectorTile.js\").default),\n * import(\"./extent.js\").Extent,\n * number,\n * import(\"./proj/Projection.js\").default,\n * function(Array<import(\"./Feature.js\").default>): void=,\n * function(): void=): void} FeatureLoader\n * @api\n */\n/**\n * {@link module:ol/source/Vector~VectorSource} sources use a function of this type to\n * get the url to load features from.\n *\n * This function takes an {@link module:ol/extent~Extent} representing the area\n * to be loaded, a `{number}` representing the resolution (map units per pixel)\n * and an {@link module:ol/proj/Projection~Projection} for the projection as\n * arguments and returns a `{string}` representing the URL.\n * @typedef {function(import(\"./extent.js\").Extent, number, import(\"./proj/Projection.js\").default): string} FeatureUrlFunction\n * @api\n */\n/**\n * @param {string|FeatureUrlFunction} url Feature URL service.\n * @param {import(\"./format/Feature.js\").default} format Feature format.\n * @param {import(\"./extent.js\").Extent} extent Extent.\n * @param {number} resolution Resolution.\n * @param {import(\"./proj/Projection.js\").default} projection Projection.\n * @param {function(Array<import(\"./Feature.js\").default>, import(\"./proj/Projection.js\").default): void} success Success\n * Function called with the loaded features and optionally with the data projection.\n * @param {function(): void} failure Failure\n * Function called when loading failed.\n */\nexport function loadFeaturesXhr(url, format, extent, resolution, projection, success, failure) {\n var xhr = new XMLHttpRequest();\n xhr.open('GET', typeof url === 'function' ? url(extent, resolution, projection) : url, true);\n if (format.getType() == FormatType.ARRAY_BUFFER) {\n xhr.responseType = 'arraybuffer';\n }\n xhr.withCredentials = withCredentials;\n /**\n * @param {Event} event Event.\n * @private\n */\n xhr.onload = function (event) {\n // status will be 0 for file:// urls\n if (!xhr.status || (xhr.status >= 200 && xhr.status < 300)) {\n var type = format.getType();\n /** @type {Document|Node|Object|string|undefined} */\n var source = void 0;\n if (type == FormatType.JSON || type == FormatType.TEXT) {\n source = xhr.responseText;\n }\n else if (type == FormatType.XML) {\n source = xhr.responseXML;\n if (!source) {\n source = new DOMParser().parseFromString(xhr.responseText, 'application/xml');\n }\n }\n else if (type == FormatType.ARRAY_BUFFER) {\n source = /** @type {ArrayBuffer} */ (xhr.response);\n }\n if (source) {\n success(\n /** @type {Array<import(\"./Feature.js\").default>} */\n (format.readFeatures(source, {\n extent: extent,\n featureProjection: projection,\n })), format.readProjection(source));\n }\n else {\n failure();\n }\n }\n else {\n failure();\n }\n };\n /**\n * @private\n */\n xhr.onerror = failure;\n xhr.send();\n}\n/**\n * Create an XHR feature loader for a `url` and `format`. The feature loader\n * loads features (with XHR), parses the features, and adds them to the\n * vector source.\n * @param {string|FeatureUrlFunction} url Feature URL service.\n * @param {import(\"./format/Feature.js\").default} format Feature format.\n * @return {FeatureLoader} The feature loader.\n * @api\n */\nexport function xhr(url, format) {\n /**\n * @param {import(\"./extent.js\").Extent} extent Extent.\n * @param {number} resolution Resolution.\n * @param {import(\"./proj/Projection.js\").default} projection Projection.\n * @param {function(Array<import(\"./Feature.js\").default>): void} [success] Success\n * Function called when loading succeeded.\n * @param {function(): void} [failure] Failure\n * Function called when loading failed.\n * @this {import(\"./source/Vector\").default}\n */\n return function (extent, resolution, projection, success, failure) {\n var source = /** @type {import(\"./source/Vector\").default} */ (this);\n loadFeaturesXhr(url, format, extent, resolution, projection, \n /**\n * @param {Array<import(\"./Feature.js\").default>} features The loaded features.\n * @param {import(\"./proj/Projection.js\").default} dataProjection Data\n * projection.\n */\n function (features, dataProjection) {\n source.addFeatures(features);\n if (success !== undefined) {\n success(features);\n }\n }, \n /* FIXME handle error */ failure ? failure : VOID);\n };\n}\n/**\n * Setter for the withCredentials configuration for the XHR.\n *\n * @param {boolean} xhrWithCredentials The value of withCredentials to set.\n * Compare https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest/\n * @api\n */\nexport function setWithCredentials(xhrWithCredentials) {\n withCredentials = xhrWithCredentials;\n}\n//# sourceMappingURL=featureloader.js.map","/**\n * @module ol/source/Vector\n */\nvar __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\nimport Collection from '../Collection.js';\nimport CollectionEventType from '../CollectionEventType.js';\nimport Event from '../events/Event.js';\nimport EventType from '../events/EventType.js';\nimport ObjectEventType from '../ObjectEventType.js';\nimport RBush from '../structs/RBush.js';\nimport Source from './Source.js';\nimport SourceState from './State.js';\nimport VectorEventType from './VectorEventType.js';\nimport { TRUE, VOID } from '../functions.js';\nimport { all as allStrategy } from '../loadingstrategy.js';\nimport { assert } from '../asserts.js';\nimport { containsExtent, equals } from '../extent.js';\nimport { extend } from '../array.js';\nimport { getUid } from '../util.js';\nimport { getValues, isEmpty } from '../obj.js';\nimport { listen, unlistenByKey } from '../events.js';\nimport { xhr } from '../featureloader.js';\n/**\n * A function that takes an {@link module:ol/extent~Extent} and a resolution as arguments, and\n * returns an array of {@link module:ol/extent~Extent} with the extents to load. Usually this\n * is one of the standard {@link module:ol/loadingstrategy} strategies.\n *\n * @typedef {function(import(\"../extent.js\").Extent, number, import(\"../proj/Projection.js\").default): Array<import(\"../extent.js\").Extent>} LoadingStrategy\n * @api\n */\n/**\n * @classdesc\n * Events emitted by {@link module:ol/source/Vector~VectorSource} instances are instances of this\n * type.\n * @template {import(\"../geom/Geometry.js\").default} [Geometry=import(\"../geom/Geometry.js\").default]\n */\nvar VectorSourceEvent = /** @class */ (function (_super) {\n __extends(VectorSourceEvent, _super);\n /**\n * @param {string} type Type.\n * @param {import(\"../Feature.js\").default<Geometry>} [opt_feature] Feature.\n * @param {Array<import(\"../Feature.js\").default<Geometry>>} [opt_features] Features.\n */\n function VectorSourceEvent(type, opt_feature, opt_features) {\n var _this = _super.call(this, type) || this;\n /**\n * The added or removed feature for the `ADDFEATURE` and `REMOVEFEATURE` events, `undefined` otherwise.\n * @type {import(\"../Feature.js\").default<Geometry>|undefined}\n * @api\n */\n _this.feature = opt_feature;\n /**\n * The loaded features for the `FEATURESLOADED` event, `undefined` otherwise.\n * @type {Array<import(\"../Feature.js\").default<Geometry>>|undefined}\n * @api\n */\n _this.features = opt_features;\n return _this;\n }\n return VectorSourceEvent;\n}(Event));\nexport { VectorSourceEvent };\n/***\n * @template Return\n * @typedef {import(\"../Observable\").OnSignature<import(\"../Observable\").EventTypes, import(\"../events/Event.js\").default, Return> &\n * import(\"../Observable\").OnSignature<import(\"../ObjectEventType\").Types, import(\"../Object\").ObjectEvent, Return> &\n * import(\"../Observable\").OnSignature<import(\"./VectorEventType\").VectorSourceEventTypes, VectorSourceEvent, Return> &\n * import(\"../Observable\").CombinedOnSignature<import(\"../Observable\").EventTypes|import(\"../ObjectEventType\").Types|\n * import(\"./VectorEventType\").VectorSourceEventTypes, Return>} VectorSourceOnSignature\n */\n/**\n * @typedef {Object} Options\n * @property {import(\"./Source.js\").AttributionLike} [attributions] Attributions.\n * @property {Array<import(\"../Feature.js\").default>|Collection<import(\"../Feature.js\").default>} [features]\n * Features. If provided as {@link module:ol/Collection~Collection}, the features in the source\n * and the collection will stay in sync.\n * @property {import(\"../format/Feature.js\").default} [format] The feature format used by the XHR\n * feature loader when `url` is set. Required if `url` is set, otherwise ignored.\n * @property {import(\"../featureloader.js\").FeatureLoader} [loader]\n * The loader function used to load features, from a remote source for example.\n * If this is not set and `url` is set, the source will create and use an XHR\n * feature loader. The `'featuresloadend'` and `'featuresloaderror'` events\n * will only fire if the `success` and `failure` callbacks are used.\n *\n * Example:\n *\n * ```js\n * import {Vector} from 'ol/source';\n * import {GeoJSON} from 'ol/format';\n * import {bbox} from 'ol/loadingstrategy';\n *\n * var vectorSource = new Vector({\n * format: new GeoJSON(),\n * loader: function(extent, resolution, projection, success, failure) {\n * var proj = projection.getCode();\n * var url = 'https://ahocevar.com/geoserver/wfs?service=WFS&' +\n * 'version=1.1.0&request=GetFeature&typename=osm:water_areas&' +\n * 'outputFormat=application/json&srsname=' + proj + '&' +\n * 'bbox=' + extent.join(',') + ',' + proj;\n * var xhr = new XMLHttpRequest();\n * xhr.open('GET', url);\n * var onError = function() {\n * vectorSource.removeLoadedExtent(extent);\n * failure();\n * }\n * xhr.onerror = onError;\n * xhr.onload = function() {\n * if (xhr.status == 200) {\n * var features = vectorSource.getFormat().readFeatures(xhr.responseText);\n * vectorSource.addFeatures(features);\n * success(features);\n * } else {\n * onError();\n * }\n * }\n * xhr.send();\n * },\n * strategy: bbox\n * });\n * ```\n * @property {boolean} [overlaps=true] This source may have overlapping geometries.\n * Setting this to `false` (e.g. for sources with polygons that represent administrative\n * boundaries or TopoJSON sources) allows the renderer to optimise fill and\n * stroke operations.\n * @property {LoadingStrategy} [strategy] The loading strategy to use.\n * By default an {@link module:ol/loadingstrategy.all}\n * strategy is used, a one-off strategy which loads all features at once.\n * @property {string|import(\"../featureloader.js\").FeatureUrlFunction} [url]\n * Setting this option instructs the source to load features using an XHR loader\n * (see {@link module:ol/featureloader.xhr}). Use a `string` and an\n * {@link module:ol/loadingstrategy.all} for a one-off download of all features from\n * the given URL. Use a {@link module:ol/featureloader~FeatureUrlFunction} to generate the url with\n * other loading strategies.\n * Requires `format` to be set as well.\n * When default XHR feature loader is provided, the features will\n * be transformed from the data projection to the view projection\n * during parsing. If your remote data source does not advertise its projection\n * properly, this transformation will be incorrect. For some formats, the\n * default projection (usually EPSG:4326) can be overridden by setting the\n * dataProjection constructor option on the format.\n * Note that if a source contains non-feature data, such as a GeoJSON geometry\n * or a KML NetworkLink, these will be ignored. Use a custom loader to load these.\n * @property {boolean} [useSpatialIndex=true]\n * By default, an RTree is used as spatial index. When features are removed and\n * added frequently, and the total number of features is low, setting this to\n * `false` may improve performance.\n *\n * Note that\n * {@link module:ol/source/Vector~VectorSource#getFeaturesInExtent},\n * {@link module:ol/source/Vector~VectorSource#getClosestFeatureToCoordinate} and\n * {@link module:ol/source/Vector~VectorSource#getExtent} cannot be used when `useSpatialIndex` is\n * set to `false`, and {@link module:ol/source/Vector~VectorSource#forEachFeatureInExtent} will loop\n * through all features.\n *\n * When set to `false`, the features will be maintained in an\n * {@link module:ol/Collection~Collection}, which can be retrieved through\n * {@link module:ol/source/Vector~VectorSource#getFeaturesCollection}.\n * @property {boolean} [wrapX=true] Wrap the world horizontally. For vector editing across the\n * -180° and 180° meridians to work properly, this should be set to `false`. The\n * resulting geometry coordinates will then exceed the world bounds.\n */\n/**\n * @classdesc\n * Provides a source of features for vector layers. Vector features provided\n * by this source are suitable for editing. See {@link module:ol/source/VectorTile~VectorTile} for\n * vector data that is optimized for rendering.\n *\n * @fires VectorSourceEvent\n * @api\n * @template {import(\"../geom/Geometry.js\").default} [Geometry=import(\"../geom/Geometry.js\").default]\n */\nvar VectorSource = /** @class */ (function (_super) {\n __extends(VectorSource, _super);\n /**\n * @param {Options} [opt_options] Vector source options.\n */\n function VectorSource(opt_options) {\n var _this = this;\n var options = opt_options || {};\n _this = _super.call(this, {\n attributions: options.attributions,\n interpolate: true,\n projection: undefined,\n state: SourceState.READY,\n wrapX: options.wrapX !== undefined ? options.wrapX : true,\n }) || this;\n /***\n * @type {VectorSourceOnSignature<import(\"../events\").EventsKey>}\n */\n _this.on;\n /***\n * @type {VectorSourceOnSignature<import(\"../events\").EventsKey>}\n */\n _this.once;\n /***\n * @type {VectorSourceOnSignature<void>}\n */\n _this.un;\n /**\n * @private\n * @type {import(\"../featureloader.js\").FeatureLoader}\n */\n _this.loader_ = VOID;\n /**\n * @private\n * @type {import(\"../format/Feature.js\").default|undefined}\n */\n _this.format_ = options.format;\n /**\n * @private\n * @type {boolean}\n */\n _this.overlaps_ = options.overlaps === undefined ? true : options.overlaps;\n /**\n * @private\n * @type {string|import(\"../featureloader.js\").FeatureUrlFunction|undefined}\n */\n _this.url_ = options.url;\n if (options.loader !== undefined) {\n _this.loader_ = options.loader;\n }\n else if (_this.url_ !== undefined) {\n assert(_this.format_, 7); // `format` must be set when `url` is set\n // create a XHR feature loader for \"url\" and \"format\"\n _this.loader_ = xhr(_this.url_, \n /** @type {import(\"../format/Feature.js\").default} */ (_this.format_));\n }\n /**\n * @private\n * @type {LoadingStrategy}\n */\n _this.strategy_ =\n options.strategy !== undefined ? options.strategy : allStrategy;\n var useSpatialIndex = options.useSpatialIndex !== undefined ? options.useSpatialIndex : true;\n /**\n * @private\n * @type {RBush<import(\"../Feature.js\").default<Geometry>>}\n */\n _this.featuresRtree_ = useSpatialIndex ? new RBush() : null;\n /**\n * @private\n * @type {RBush<{extent: import(\"../extent.js\").Extent}>}\n */\n _this.loadedExtentsRtree_ = new RBush();\n /**\n * @type {number}\n * @private\n */\n _this.loadingExtentsCount_ = 0;\n /**\n * @private\n * @type {!Object<string, import(\"../Feature.js\").default<Geometry>>}\n */\n _this.nullGeometryFeatures_ = {};\n /**\n * A lookup of features by id (the return from feature.getId()).\n * @private\n * @type {!Object<string, import(\"../Feature.js\").default<Geometry>>}\n */\n _this.idIndex_ = {};\n /**\n * A lookup of features by uid (using getUid(feature)).\n * @private\n * @type {!Object<string, import(\"../Feature.js\").default<Geometry>>}\n */\n _this.uidIndex_ = {};\n /**\n * @private\n * @type {Object<string, Array<import(\"../events.js\").EventsKey>>}\n */\n _this.featureChangeKeys_ = {};\n /**\n * @private\n * @type {Collection<import(\"../Feature.js\").default<Geometry>>|null}\n */\n _this.featuresCollection_ = null;\n var collection, features;\n if (Array.isArray(options.features)) {\n features =\n /** @type {Array<import(\"../Feature.js\").default<Geometry>>} */ (options.features);\n }\n else if (options.features) {\n collection =\n /** @type {Collection<import(\"../Feature.js\").default<Geometry>>} */ (options.features);\n features = collection.getArray();\n }\n if (!useSpatialIndex && collection === undefined) {\n collection = new Collection(features);\n }\n if (features !== undefined) {\n _this.addFeaturesInternal(features);\n }\n if (collection !== undefined) {\n _this.bindFeaturesCollection_(collection);\n }\n return _this;\n }\n /**\n * Add a single feature to the source. If you want to add a batch of features\n * at once, call {@link module:ol/source/Vector~VectorSource#addFeatures #addFeatures()}\n * instead. A feature will not be added to the source if feature with\n * the same id is already there. The reason for this behavior is to avoid\n * feature duplication when using bbox or tile loading strategies.\n * Note: this also applies if an {@link module:ol/Collection~Collection} is used for features,\n * meaning that if a feature with a duplicate id is added in the collection, it will\n * be removed from it right away.\n * @param {import(\"../Feature.js\").default<Geometry>} feature Feature to add.\n * @api\n */\n VectorSource.prototype.addFeature = function (feature) {\n this.addFeatureInternal(feature);\n this.changed();\n };\n /**\n * Add a feature without firing a `change` event.\n * @param {import(\"../Feature.js\").default<Geometry>} feature Feature.\n * @protected\n */\n VectorSource.prototype.addFeatureInternal = function (feature) {\n var featureKey = getUid(feature);\n if (!this.addToIndex_(featureKey, feature)) {\n if (this.featuresCollection_) {\n this.featuresCollection_.remove(feature);\n }\n return;\n }\n this.setupChangeEvents_(featureKey, feature);\n var geometry = feature.getGeometry();\n if (geometry) {\n var extent = geometry.getExtent();\n if (this.featuresRtree_) {\n this.featuresRtree_.insert(extent, feature);\n }\n }\n else {\n this.nullGeometryFeatures_[featureKey] = feature;\n }\n this.dispatchEvent(new VectorSourceEvent(VectorEventType.ADDFEATURE, feature));\n };\n /**\n * @param {string} featureKey Unique identifier for the feature.\n * @param {import(\"../Feature.js\").default<Geometry>} feature The feature.\n * @private\n */\n VectorSource.prototype.setupChangeEvents_ = function (featureKey, feature) {\n this.featureChangeKeys_[featureKey] = [\n listen(feature, EventType.CHANGE, this.handleFeatureChange_, this),\n listen(feature, ObjectEventType.PROPERTYCHANGE, this.handleFeatureChange_, this),\n ];\n };\n /**\n * @param {string} featureKey Unique identifier for the feature.\n * @param {import(\"../Feature.js\").default<Geometry>} feature The feature.\n * @return {boolean} The feature is \"valid\", in the sense that it is also a\n * candidate for insertion into the Rtree.\n * @private\n */\n VectorSource.prototype.addToIndex_ = function (featureKey, feature) {\n var valid = true;\n var id = feature.getId();\n if (id !== undefined) {\n if (!(id.toString() in this.idIndex_)) {\n this.idIndex_[id.toString()] = feature;\n }\n else {\n valid = false;\n }\n }\n if (valid) {\n assert(!(featureKey in this.uidIndex_), 30); // The passed `feature` was already added to the source\n this.uidIndex_[featureKey] = feature;\n }\n return valid;\n };\n /**\n * Add a batch of features to the source.\n * @param {Array<import(\"../Feature.js\").default<Geometry>>} features Features to add.\n * @api\n */\n VectorSource.prototype.addFeatures = function (features) {\n this.addFeaturesInternal(features);\n this.changed();\n };\n /**\n * Add features without firing a `change` event.\n * @param {Array<import(\"../Feature.js\").default<Geometry>>} features Features.\n * @protected\n */\n VectorSource.prototype.addFeaturesInternal = function (features) {\n var extents = [];\n var newFeatures = [];\n var geometryFeatures = [];\n for (var i = 0, length_1 = features.length; i < length_1; i++) {\n var feature = features[i];\n var featureKey = getUid(feature);\n if (this.addToIndex_(featureKey, feature)) {\n newFeatures.push(feature);\n }\n }\n for (var i = 0, length_2 = newFeatures.length; i < length_2; i++) {\n var feature = newFeatures[i];\n var featureKey = getUid(feature);\n this.setupChangeEvents_(featureKey, feature);\n var geometry = feature.getGeometry();\n if (geometry) {\n var extent = geometry.getExtent();\n extents.push(extent);\n geometryFeatures.push(feature);\n }\n else {\n this.nullGeometryFeatures_[featureKey] = feature;\n }\n }\n if (this.featuresRtree_) {\n this.featuresRtree_.load(extents, geometryFeatures);\n }\n if (this.hasListener(VectorEventType.ADDFEATURE)) {\n for (var i = 0, length_3 = newFeatures.length; i < length_3; i++) {\n this.dispatchEvent(new VectorSourceEvent(VectorEventType.ADDFEATURE, newFeatures[i]));\n }\n }\n };\n /**\n * @param {!Collection<import(\"../Feature.js\").default<Geometry>>} collection Collection.\n * @private\n */\n VectorSource.prototype.bindFeaturesCollection_ = function (collection) {\n var modifyingCollection = false;\n this.addEventListener(VectorEventType.ADDFEATURE, \n /**\n * @param {VectorSourceEvent<Geometry>} evt The vector source event\n */\n function (evt) {\n if (!modifyingCollection) {\n modifyingCollection = true;\n collection.push(evt.feature);\n modifyingCollection = false;\n }\n });\n this.addEventListener(VectorEventType.REMOVEFEATURE, \n /**\n * @param {VectorSourceEvent<Geometry>} evt The vector source event\n */\n function (evt) {\n if (!modifyingCollection) {\n modifyingCollection = true;\n collection.remove(evt.feature);\n modifyingCollection = false;\n }\n });\n collection.addEventListener(CollectionEventType.ADD, \n /**\n * @param {import(\"../Collection.js\").CollectionEvent} evt The collection event\n */\n function (evt) {\n if (!modifyingCollection) {\n modifyingCollection = true;\n this.addFeature(\n /** @type {import(\"../Feature.js\").default<Geometry>} */ (evt.element));\n modifyingCollection = false;\n }\n }.bind(this));\n collection.addEventListener(CollectionEventType.REMOVE, \n /**\n * @param {import(\"../Collection.js\").CollectionEvent} evt The collection event\n */\n function (evt) {\n if (!modifyingCollection) {\n modifyingCollection = true;\n this.removeFeature(\n /** @type {import(\"../Feature.js\").default<Geometry>} */ (evt.element));\n modifyingCollection = false;\n }\n }.bind(this));\n this.featuresCollection_ = collection;\n };\n /**\n * Remove all features from the source.\n * @param {boolean} [opt_fast] Skip dispatching of {@link module:ol/source/Vector.VectorSourceEvent#event:removefeature removefeature} events.\n * @api\n */\n VectorSource.prototype.clear = function (opt_fast) {\n if (opt_fast) {\n for (var featureId in this.featureChangeKeys_) {\n var keys = this.featureChangeKeys_[featureId];\n keys.forEach(unlistenByKey);\n }\n if (!this.featuresCollection_) {\n this.featureChangeKeys_ = {};\n this.idIndex_ = {};\n this.uidIndex_ = {};\n }\n }\n else {\n if (this.featuresRtree_) {\n var removeAndIgnoreReturn = function (feature) {\n this.removeFeatureInternal(feature);\n }.bind(this);\n this.featuresRtree_.forEach(removeAndIgnoreReturn);\n for (var id in this.nullGeometryFeatures_) {\n this.removeFeatureInternal(this.nullGeometryFeatures_[id]);\n }\n }\n }\n if (this.featuresCollection_) {\n this.featuresCollection_.clear();\n }\n if (this.featuresRtree_) {\n this.featuresRtree_.clear();\n }\n this.nullGeometryFeatures_ = {};\n var clearEvent = new VectorSourceEvent(VectorEventType.CLEAR);\n this.dispatchEvent(clearEvent);\n this.changed();\n };\n /**\n * Iterate through all features on the source, calling the provided callback\n * with each one. If the callback returns any \"truthy\" value, iteration will\n * stop and the function will return the same value.\n * Note: this function only iterate through the feature that have a defined geometry.\n *\n * @param {function(import(\"../Feature.js\").default<Geometry>): T} callback Called with each feature\n * on the source. Return a truthy value to stop iteration.\n * @return {T|undefined} The return value from the last call to the callback.\n * @template T\n * @api\n */\n VectorSource.prototype.forEachFeature = function (callback) {\n if (this.featuresRtree_) {\n return this.featuresRtree_.forEach(callback);\n }\n else if (this.featuresCollection_) {\n this.featuresCollection_.forEach(callback);\n }\n };\n /**\n * Iterate through all features whose geometries contain the provided\n * coordinate, calling the callback with each feature. If the callback returns\n * a \"truthy\" value, iteration will stop and the function will return the same\n * value.\n *\n * @param {import(\"../coordinate.js\").Coordinate} coordinate Coordinate.\n * @param {function(import(\"../Feature.js\").default<Geometry>): T} callback Called with each feature\n * whose goemetry contains the provided coordinate.\n * @return {T|undefined} The return value from the last call to the callback.\n * @template T\n */\n VectorSource.prototype.forEachFeatureAtCoordinateDirect = function (coordinate, callback) {\n var extent = [coordinate[0], coordinate[1], coordinate[0], coordinate[1]];\n return this.forEachFeatureInExtent(extent, function (feature) {\n var geometry = feature.getGeometry();\n if (geometry.intersectsCoordinate(coordinate)) {\n return callback(feature);\n }\n else {\n return undefined;\n }\n });\n };\n /**\n * Iterate through all features whose bounding box intersects the provided\n * extent (note that the feature's geometry may not intersect the extent),\n * calling the callback with each feature. If the callback returns a \"truthy\"\n * value, iteration will stop and the function will return the same value.\n *\n * If you are interested in features whose geometry intersects an extent, call\n * the {@link module:ol/source/Vector~VectorSource#forEachFeatureIntersectingExtent #forEachFeatureIntersectingExtent()} method instead.\n *\n * When `useSpatialIndex` is set to false, this method will loop through all\n * features, equivalent to {@link module:ol/source/Vector~VectorSource#forEachFeature #forEachFeature()}.\n *\n * @param {import(\"../extent.js\").Extent} extent Extent.\n * @param {function(import(\"../Feature.js\").default<Geometry>): T} callback Called with each feature\n * whose bounding box intersects the provided extent.\n * @return {T|undefined} The return value from the last call to the callback.\n * @template T\n * @api\n */\n VectorSource.prototype.forEachFeatureInExtent = function (extent, callback) {\n if (this.featuresRtree_) {\n return this.featuresRtree_.forEachInExtent(extent, callback);\n }\n else if (this.featuresCollection_) {\n this.featuresCollection_.forEach(callback);\n }\n };\n /**\n * Iterate through all features whose geometry intersects the provided extent,\n * calling the callback with each feature. If the callback returns a \"truthy\"\n * value, iteration will stop and the function will return the same value.\n *\n * If you only want to test for bounding box intersection, call the\n * {@link module:ol/source/Vector~VectorSource#forEachFeatureInExtent #forEachFeatureInExtent()} method instead.\n *\n * @param {import(\"../extent.js\").Extent} extent Extent.\n * @param {function(import(\"../Feature.js\").default<Geometry>): T} callback Called with each feature\n * whose geometry intersects the provided extent.\n * @return {T|undefined} The return value from the last call to the callback.\n * @template T\n * @api\n */\n VectorSource.prototype.forEachFeatureIntersectingExtent = function (extent, callback) {\n return this.forEachFeatureInExtent(extent, \n /**\n * @param {import(\"../Feature.js\").default<Geometry>} feature Feature.\n * @return {T|undefined} The return value from the last call to the callback.\n */\n function (feature) {\n var geometry = feature.getGeometry();\n if (geometry.intersectsExtent(extent)) {\n var result = callback(feature);\n if (result) {\n return result;\n }\n }\n });\n };\n /**\n * Get the features collection associated with this source. Will be `null`\n * unless the source was configured with `useSpatialIndex` set to `false`, or\n * with an {@link module:ol/Collection~Collection} as `features`.\n * @return {Collection<import(\"../Feature.js\").default<Geometry>>|null} The collection of features.\n * @api\n */\n VectorSource.prototype.getFeaturesCollection = function () {\n return this.featuresCollection_;\n };\n /**\n * Get a snapshot of the features currently on the source in random order. The returned array\n * is a copy, the features are references to the features in the source.\n * @return {Array<import(\"../Feature.js\").default<Geometry>>} Features.\n * @api\n */\n VectorSource.prototype.getFeatures = function () {\n var features;\n if (this.featuresCollection_) {\n features = this.featuresCollection_.getArray().slice(0);\n }\n else if (this.featuresRtree_) {\n features = this.featuresRtree_.getAll();\n if (!isEmpty(this.nullGeometryFeatures_)) {\n extend(features, getValues(this.nullGeometryFeatures_));\n }\n }\n return /** @type {Array<import(\"../Feature.js\").default<Geometry>>} */ (features);\n };\n /**\n * Get all features whose geometry intersects the provided coordinate.\n * @param {import(\"../coordinate.js\").Coordinate} coordinate Coordinate.\n * @return {Array<import(\"../Feature.js\").default<Geometry>>} Features.\n * @api\n */\n VectorSource.prototype.getFeaturesAtCoordinate = function (coordinate) {\n var features = [];\n this.forEachFeatureAtCoordinateDirect(coordinate, function (feature) {\n features.push(feature);\n });\n return features;\n };\n /**\n * Get all features whose bounding box intersects the provided extent. Note that this returns an array of\n * all features intersecting the given extent in random order (so it may include\n * features whose geometries do not intersect the extent).\n *\n * When `useSpatialIndex` is set to false, this method will return all\n * features.\n *\n * @param {import(\"../extent.js\").Extent} extent Extent.\n * @return {Array<import(\"../Feature.js\").default<Geometry>>} Features.\n * @api\n */\n VectorSource.prototype.getFeaturesInExtent = function (extent) {\n if (this.featuresRtree_) {\n return this.featuresRtree_.getInExtent(extent);\n }\n else if (this.featuresCollection_) {\n return this.featuresCollection_.getArray().slice(0);\n }\n else {\n return [];\n }\n };\n /**\n * Get the closest feature to the provided coordinate.\n *\n * This method is not available when the source is configured with\n * `useSpatialIndex` set to `false`.\n * @param {import(\"../coordinate.js\").Coordinate} coordinate Coordinate.\n * @param {function(import(\"../Feature.js\").default<Geometry>):boolean} [opt_filter] Feature filter function.\n * The filter function will receive one argument, the {@link module:ol/Feature~Feature feature}\n * and it should return a boolean value. By default, no filtering is made.\n * @return {import(\"../Feature.js\").default<Geometry>} Closest feature.\n * @api\n */\n VectorSource.prototype.getClosestFeatureToCoordinate = function (coordinate, opt_filter) {\n // Find the closest feature using branch and bound. We start searching an\n // infinite extent, and find the distance from the first feature found. This\n // becomes the closest feature. We then compute a smaller extent which any\n // closer feature must intersect. We continue searching with this smaller\n // extent, trying to find a closer feature. Every time we find a closer\n // feature, we update the extent being searched so that any even closer\n // feature must intersect it. We continue until we run out of features.\n var x = coordinate[0];\n var y = coordinate[1];\n var closestFeature = null;\n var closestPoint = [NaN, NaN];\n var minSquaredDistance = Infinity;\n var extent = [-Infinity, -Infinity, Infinity, Infinity];\n var filter = opt_filter ? opt_filter : TRUE;\n this.featuresRtree_.forEachInExtent(extent, \n /**\n * @param {import(\"../Feature.js\").default<Geometry>} feature Feature.\n */\n function (feature) {\n if (filter(feature)) {\n var geometry = feature.getGeometry();\n var previousMinSquaredDistance = minSquaredDistance;\n minSquaredDistance = geometry.closestPointXY(x, y, closestPoint, minSquaredDistance);\n if (minSquaredDistance < previousMinSquaredDistance) {\n closestFeature = feature;\n // This is sneaky. Reduce the extent that it is currently being\n // searched while the R-Tree traversal using this same extent object\n // is still in progress. This is safe because the new extent is\n // strictly contained by the old extent.\n var minDistance = Math.sqrt(minSquaredDistance);\n extent[0] = x - minDistance;\n extent[1] = y - minDistance;\n extent[2] = x + minDistance;\n extent[3] = y + minDistance;\n }\n }\n });\n return closestFeature;\n };\n /**\n * Get the extent of the features currently in the source.\n *\n * This method is not available when the source is configured with\n * `useSpatialIndex` set to `false`.\n * @param {import(\"../extent.js\").Extent} [opt_extent] Destination extent. If provided, no new extent\n * will be created. Instead, that extent's coordinates will be overwritten.\n * @return {import(\"../extent.js\").Extent} Extent.\n * @api\n */\n VectorSource.prototype.getExtent = function (opt_extent) {\n return this.featuresRtree_.getExtent(opt_extent);\n };\n /**\n * Get a feature by its identifier (the value returned by feature.getId()).\n * Note that the index treats string and numeric identifiers as the same. So\n * `source.getFeatureById(2)` will return a feature with id `'2'` or `2`.\n *\n * @param {string|number} id Feature identifier.\n * @return {import(\"../Feature.js\").default<Geometry>|null} The feature (or `null` if not found).\n * @api\n */\n VectorSource.prototype.getFeatureById = function (id) {\n var feature = this.idIndex_[id.toString()];\n return feature !== undefined ? feature : null;\n };\n /**\n * Get a feature by its internal unique identifier (using `getUid`).\n *\n * @param {string} uid Feature identifier.\n * @return {import(\"../Feature.js\").default<Geometry>|null} The feature (or `null` if not found).\n */\n VectorSource.prototype.getFeatureByUid = function (uid) {\n var feature = this.uidIndex_[uid];\n return feature !== undefined ? feature : null;\n };\n /**\n * Get the format associated with this source.\n *\n * @return {import(\"../format/Feature.js\").default|undefined} The feature format.\n * @api\n */\n VectorSource.prototype.getFormat = function () {\n return this.format_;\n };\n /**\n * @return {boolean} The source can have overlapping geometries.\n */\n VectorSource.prototype.getOverlaps = function () {\n return this.overlaps_;\n };\n /**\n * Get the url associated with this source.\n *\n * @return {string|import(\"../featureloader.js\").FeatureUrlFunction|undefined} The url.\n * @api\n */\n VectorSource.prototype.getUrl = function () {\n return this.url_;\n };\n /**\n * @param {Event} event Event.\n * @private\n */\n VectorSource.prototype.handleFeatureChange_ = function (event) {\n var feature = /** @type {import(\"../Feature.js\").default<Geometry>} */ (event.target);\n var featureKey = getUid(feature);\n var geometry = feature.getGeometry();\n if (!geometry) {\n if (!(featureKey in this.nullGeometryFeatures_)) {\n if (this.featuresRtree_) {\n this.featuresRtree_.remove(feature);\n }\n this.nullGeometryFeatures_[featureKey] = feature;\n }\n }\n else {\n var extent = geometry.getExtent();\n if (featureKey in this.nullGeometryFeatures_) {\n delete this.nullGeometryFeatures_[featureKey];\n if (this.featuresRtree_) {\n this.featuresRtree_.insert(extent, feature);\n }\n }\n else {\n if (this.featuresRtree_) {\n this.featuresRtree_.update(extent, feature);\n }\n }\n }\n var id = feature.getId();\n if (id !== undefined) {\n var sid = id.toString();\n if (this.idIndex_[sid] !== feature) {\n this.removeFromIdIndex_(feature);\n this.idIndex_[sid] = feature;\n }\n }\n else {\n this.removeFromIdIndex_(feature);\n this.uidIndex_[featureKey] = feature;\n }\n this.changed();\n this.dispatchEvent(new VectorSourceEvent(VectorEventType.CHANGEFEATURE, feature));\n };\n /**\n * Returns true if the feature is contained within the source.\n * @param {import(\"../Feature.js\").default<Geometry>} feature Feature.\n * @return {boolean} Has feature.\n * @api\n */\n VectorSource.prototype.hasFeature = function (feature) {\n var id = feature.getId();\n if (id !== undefined) {\n return id in this.idIndex_;\n }\n else {\n return getUid(feature) in this.uidIndex_;\n }\n };\n /**\n * @return {boolean} Is empty.\n */\n VectorSource.prototype.isEmpty = function () {\n if (this.featuresRtree_) {\n return (this.featuresRtree_.isEmpty() && isEmpty(this.nullGeometryFeatures_));\n }\n if (this.featuresCollection_) {\n return this.featuresCollection_.getLength() === 0;\n }\n return true;\n };\n /**\n * @param {import(\"../extent.js\").Extent} extent Extent.\n * @param {number} resolution Resolution.\n * @param {import(\"../proj/Projection.js\").default} projection Projection.\n */\n VectorSource.prototype.loadFeatures = function (extent, resolution, projection) {\n var loadedExtentsRtree = this.loadedExtentsRtree_;\n var extentsToLoad = this.strategy_(extent, resolution, projection);\n var _loop_1 = function (i, ii) {\n var extentToLoad = extentsToLoad[i];\n var alreadyLoaded = loadedExtentsRtree.forEachInExtent(extentToLoad, \n /**\n * @param {{extent: import(\"../extent.js\").Extent}} object Object.\n * @return {boolean} Contains.\n */\n function (object) {\n return containsExtent(object.extent, extentToLoad);\n });\n if (!alreadyLoaded) {\n ++this_1.loadingExtentsCount_;\n this_1.dispatchEvent(new VectorSourceEvent(VectorEventType.FEATURESLOADSTART));\n this_1.loader_.call(this_1, extentToLoad, resolution, projection, function (features) {\n --this.loadingExtentsCount_;\n this.dispatchEvent(new VectorSourceEvent(VectorEventType.FEATURESLOADEND, undefined, features));\n }.bind(this_1), function () {\n --this.loadingExtentsCount_;\n this.dispatchEvent(new VectorSourceEvent(VectorEventType.FEATURESLOADERROR));\n }.bind(this_1));\n loadedExtentsRtree.insert(extentToLoad, { extent: extentToLoad.slice() });\n }\n };\n var this_1 = this;\n for (var i = 0, ii = extentsToLoad.length; i < ii; ++i) {\n _loop_1(i, ii);\n }\n this.loading =\n this.loader_.length < 4 ? false : this.loadingExtentsCount_ > 0;\n };\n VectorSource.prototype.refresh = function () {\n this.clear(true);\n this.loadedExtentsRtree_.clear();\n _super.prototype.refresh.call(this);\n };\n /**\n * Remove an extent from the list of loaded extents.\n * @param {import(\"../extent.js\").Extent} extent Extent.\n * @api\n */\n VectorSource.prototype.removeLoadedExtent = function (extent) {\n var loadedExtentsRtree = this.loadedExtentsRtree_;\n var obj;\n loadedExtentsRtree.forEachInExtent(extent, function (object) {\n if (equals(object.extent, extent)) {\n obj = object;\n return true;\n }\n });\n if (obj) {\n loadedExtentsRtree.remove(obj);\n }\n };\n /**\n * Remove a single feature from the source. If you want to remove all features\n * at once, use the {@link module:ol/source/Vector~VectorSource#clear #clear()} method\n * instead.\n * @param {import(\"../Feature.js\").default<Geometry>} feature Feature to remove.\n * @api\n */\n VectorSource.prototype.removeFeature = function (feature) {\n if (!feature) {\n return;\n }\n var featureKey = getUid(feature);\n if (featureKey in this.nullGeometryFeatures_) {\n delete this.nullGeometryFeatures_[featureKey];\n }\n else {\n if (this.featuresRtree_) {\n this.featuresRtree_.remove(feature);\n }\n }\n var result = this.removeFeatureInternal(feature);\n if (result) {\n this.changed();\n }\n };\n /**\n * Remove feature without firing a `change` event.\n * @param {import(\"../Feature.js\").default<Geometry>} feature Feature.\n * @return {import(\"../Feature.js\").default<Geometry>|undefined} The removed feature\n * (or undefined if the feature was not found).\n * @protected\n */\n VectorSource.prototype.removeFeatureInternal = function (feature) {\n var featureKey = getUid(feature);\n var featureChangeKeys = this.featureChangeKeys_[featureKey];\n if (!featureChangeKeys) {\n return;\n }\n featureChangeKeys.forEach(unlistenByKey);\n delete this.featureChangeKeys_[featureKey];\n var id = feature.getId();\n if (id !== undefined) {\n delete this.idIndex_[id.toString()];\n }\n delete this.uidIndex_[featureKey];\n this.dispatchEvent(new VectorSourceEvent(VectorEventType.REMOVEFEATURE, feature));\n return feature;\n };\n /**\n * Remove a feature from the id index. Called internally when the feature id\n * may have changed.\n * @param {import(\"../Feature.js\").default<Geometry>} feature The feature.\n * @return {boolean} Removed the feature from the index.\n * @private\n */\n VectorSource.prototype.removeFromIdIndex_ = function (feature) {\n var removed = false;\n for (var id in this.idIndex_) {\n if (this.idIndex_[id] === feature) {\n delete this.idIndex_[id];\n removed = true;\n break;\n }\n }\n return removed;\n };\n /**\n * Set the new loader of the source. The next render cycle will use the\n * new loader.\n * @param {import(\"../featureloader.js\").FeatureLoader} loader The loader to set.\n * @api\n */\n VectorSource.prototype.setLoader = function (loader) {\n this.loader_ = loader;\n };\n /**\n * Points the source to a new url. The next render cycle will use the new url.\n * @param {string|import(\"../featureloader.js\").FeatureUrlFunction} url Url.\n * @api\n */\n VectorSource.prototype.setUrl = function (url) {\n assert(this.format_, 7); // `format` must be set when `url` is set\n this.url_ = url;\n this.setLoader(xhr(url, this.format_));\n };\n return VectorSource;\n}(Source));\nexport default VectorSource;\n//# sourceMappingURL=Vector.js.map","/**\n * @module ol/style/Text\n */\nimport Fill from './Fill.js';\nimport TextPlacement from './TextPlacement.js';\nimport { toSize } from '../size.js';\n/**\n * The default fill color to use if no fill was set at construction time; a\n * blackish `#333`.\n *\n * @const {string}\n */\nvar DEFAULT_FILL_COLOR = '#333';\n/**\n * @typedef {Object} Options\n * @property {string} [font] Font style as CSS 'font' value, see:\n * https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D/font. Default is '10px sans-serif'\n * @property {number} [maxAngle=Math.PI/4] When `placement` is set to `'line'`, allow a maximum angle between adjacent characters.\n * The expected value is in radians, and the default is 45° (`Math.PI / 4`).\n * @property {number} [offsetX=0] Horizontal text offset in pixels. A positive will shift the text right.\n * @property {number} [offsetY=0] Vertical text offset in pixels. A positive will shift the text down.\n * @property {boolean} [overflow=false] For polygon labels or when `placement` is set to `'line'`, allow text to exceed\n * the width of the polygon at the label position or the length of the path that it follows.\n * @property {import(\"./TextPlacement.js\").default|string} [placement='point'] Text placement.\n * @property {number|import(\"../size.js\").Size} [scale] Scale.\n * @property {boolean} [rotateWithView=false] Whether to rotate the text with the view.\n * @property {number} [rotation=0] Rotation in radians (positive rotation clockwise).\n * @property {string|Array<string>} [text] Text content or rich text content. For plain text provide a string, which can\n * contain line breaks (`\\n`). For rich text provide an array of text/font tuples. A tuple consists of the text to\n * render and the font to use (or `''` to use the text style's font). A line break has to be a separate tuple (i.e. `'\\n', ''`).\n * **Example:** `['foo', 'bold 10px sans-serif', ' bar', 'italic 10px sans-serif', ' baz', '']` will yield \"**foo** *bar* baz\".\n * **Note:** Rich text is not supported for the immediate rendering API.\n * @property {string} [textAlign] Text alignment. Possible values: 'left', 'right', 'center', 'end' or 'start'.\n * Default is 'center' for `placement: 'point'`. For `placement: 'line'`, the default is to let the renderer choose a\n * placement where `maxAngle` is not exceeded.\n * @property {string} [textBaseline='middle'] Text base line. Possible values: 'bottom', 'top', 'middle', 'alphabetic',\n * 'hanging', 'ideographic'.\n * @property {import(\"./Fill.js\").default} [fill] Fill style. If none is provided, we'll use a dark fill-style (#333).\n * @property {import(\"./Stroke.js\").default} [stroke] Stroke style.\n * @property {import(\"./Fill.js\").default} [backgroundFill] Fill style for the text background when `placement` is\n * `'point'`. Default is no fill.\n * @property {import(\"./Stroke.js\").default} [backgroundStroke] Stroke style for the text background when `placement`\n * is `'point'`. Default is no stroke.\n * @property {Array<number>} [padding=[0, 0, 0, 0]] Padding in pixels around the text for decluttering and background. The order of\n * values in the array is `[top, right, bottom, left]`.\n */\n/**\n * @classdesc\n * Set text style for vector features.\n * @api\n */\nvar Text = /** @class */ (function () {\n /**\n * @param {Options} [opt_options] Options.\n */\n function Text(opt_options) {\n var options = opt_options || {};\n /**\n * @private\n * @type {string|undefined}\n */\n this.font_ = options.font;\n /**\n * @private\n * @type {number|undefined}\n */\n this.rotation_ = options.rotation;\n /**\n * @private\n * @type {boolean|undefined}\n */\n this.rotateWithView_ = options.rotateWithView;\n /**\n * @private\n * @type {number|import(\"../size.js\").Size|undefined}\n */\n this.scale_ = options.scale;\n /**\n * @private\n * @type {import(\"../size.js\").Size}\n */\n this.scaleArray_ = toSize(options.scale !== undefined ? options.scale : 1);\n /**\n * @private\n * @type {string|Array<string>|undefined}\n */\n this.text_ = options.text;\n /**\n * @private\n * @type {string|undefined}\n */\n this.textAlign_ = options.textAlign;\n /**\n * @private\n * @type {string|undefined}\n */\n this.textBaseline_ = options.textBaseline;\n /**\n * @private\n * @type {import(\"./Fill.js\").default}\n */\n this.fill_ =\n options.fill !== undefined\n ? options.fill\n : new Fill({ color: DEFAULT_FILL_COLOR });\n /**\n * @private\n * @type {number}\n */\n this.maxAngle_ =\n options.maxAngle !== undefined ? options.maxAngle : Math.PI / 4;\n /**\n * @private\n * @type {import(\"./TextPlacement.js\").default|string}\n */\n this.placement_ =\n options.placement !== undefined ? options.placement : TextPlacement.POINT;\n /**\n * @private\n * @type {boolean}\n */\n this.overflow_ = !!options.overflow;\n /**\n * @private\n * @type {import(\"./Stroke.js\").default}\n */\n this.stroke_ = options.stroke !== undefined ? options.stroke : null;\n /**\n * @private\n * @type {number}\n */\n this.offsetX_ = options.offsetX !== undefined ? options.offsetX : 0;\n /**\n * @private\n * @type {number}\n */\n this.offsetY_ = options.offsetY !== undefined ? options.offsetY : 0;\n /**\n * @private\n * @type {import(\"./Fill.js\").default}\n */\n this.backgroundFill_ = options.backgroundFill\n ? options.backgroundFill\n : null;\n /**\n * @private\n * @type {import(\"./Stroke.js\").default}\n */\n this.backgroundStroke_ = options.backgroundStroke\n ? options.backgroundStroke\n : null;\n /**\n * @private\n * @type {Array<number>|null}\n */\n this.padding_ = options.padding === undefined ? null : options.padding;\n }\n /**\n * Clones the style.\n * @return {Text} The cloned style.\n * @api\n */\n Text.prototype.clone = function () {\n var scale = this.getScale();\n return new Text({\n font: this.getFont(),\n placement: this.getPlacement(),\n maxAngle: this.getMaxAngle(),\n overflow: this.getOverflow(),\n rotation: this.getRotation(),\n rotateWithView: this.getRotateWithView(),\n scale: Array.isArray(scale) ? scale.slice() : scale,\n text: this.getText(),\n textAlign: this.getTextAlign(),\n textBaseline: this.getTextBaseline(),\n fill: this.getFill() ? this.getFill().clone() : undefined,\n stroke: this.getStroke() ? this.getStroke().clone() : undefined,\n offsetX: this.getOffsetX(),\n offsetY: this.getOffsetY(),\n backgroundFill: this.getBackgroundFill()\n ? this.getBackgroundFill().clone()\n : undefined,\n backgroundStroke: this.getBackgroundStroke()\n ? this.getBackgroundStroke().clone()\n : undefined,\n padding: this.getPadding() || undefined,\n });\n };\n /**\n * Get the `overflow` configuration.\n * @return {boolean} Let text overflow the length of the path they follow.\n * @api\n */\n Text.prototype.getOverflow = function () {\n return this.overflow_;\n };\n /**\n * Get the font name.\n * @return {string|undefined} Font.\n * @api\n */\n Text.prototype.getFont = function () {\n return this.font_;\n };\n /**\n * Get the maximum angle between adjacent characters.\n * @return {number} Angle in radians.\n * @api\n */\n Text.prototype.getMaxAngle = function () {\n return this.maxAngle_;\n };\n /**\n * Get the label placement.\n * @return {import(\"./TextPlacement.js\").default|string} Text placement.\n * @api\n */\n Text.prototype.getPlacement = function () {\n return this.placement_;\n };\n /**\n * Get the x-offset for the text.\n * @return {number} Horizontal text offset.\n * @api\n */\n Text.prototype.getOffsetX = function () {\n return this.offsetX_;\n };\n /**\n * Get the y-offset for the text.\n * @return {number} Vertical text offset.\n * @api\n */\n Text.prototype.getOffsetY = function () {\n return this.offsetY_;\n };\n /**\n * Get the fill style for the text.\n * @return {import(\"./Fill.js\").default} Fill style.\n * @api\n */\n Text.prototype.getFill = function () {\n return this.fill_;\n };\n /**\n * Determine whether the text rotates with the map.\n * @return {boolean|undefined} Rotate with map.\n * @api\n */\n Text.prototype.getRotateWithView = function () {\n return this.rotateWithView_;\n };\n /**\n * Get the text rotation.\n * @return {number|undefined} Rotation.\n * @api\n */\n Text.prototype.getRotation = function () {\n return this.rotation_;\n };\n /**\n * Get the text scale.\n * @return {number|import(\"../size.js\").Size|undefined} Scale.\n * @api\n */\n Text.prototype.getScale = function () {\n return this.scale_;\n };\n /**\n * Get the symbolizer scale array.\n * @return {import(\"../size.js\").Size} Scale array.\n */\n Text.prototype.getScaleArray = function () {\n return this.scaleArray_;\n };\n /**\n * Get the stroke style for the text.\n * @return {import(\"./Stroke.js\").default} Stroke style.\n * @api\n */\n Text.prototype.getStroke = function () {\n return this.stroke_;\n };\n /**\n * Get the text to be rendered.\n * @return {string|Array<string>|undefined} Text.\n * @api\n */\n Text.prototype.getText = function () {\n return this.text_;\n };\n /**\n * Get the text alignment.\n * @return {string|undefined} Text align.\n * @api\n */\n Text.prototype.getTextAlign = function () {\n return this.textAlign_;\n };\n /**\n * Get the text baseline.\n * @return {string|undefined} Text baseline.\n * @api\n */\n Text.prototype.getTextBaseline = function () {\n return this.textBaseline_;\n };\n /**\n * Get the background fill style for the text.\n * @return {import(\"./Fill.js\").default} Fill style.\n * @api\n */\n Text.prototype.getBackgroundFill = function () {\n return this.backgroundFill_;\n };\n /**\n * Get the background stroke style for the text.\n * @return {import(\"./Stroke.js\").default} Stroke style.\n * @api\n */\n Text.prototype.getBackgroundStroke = function () {\n return this.backgroundStroke_;\n };\n /**\n * Get the padding for the text.\n * @return {Array<number>|null} Padding.\n * @api\n */\n Text.prototype.getPadding = function () {\n return this.padding_;\n };\n /**\n * Set the `overflow` property.\n *\n * @param {boolean} overflow Let text overflow the path that it follows.\n * @api\n */\n Text.prototype.setOverflow = function (overflow) {\n this.overflow_ = overflow;\n };\n /**\n * Set the font.\n *\n * @param {string|undefined} font Font.\n * @api\n */\n Text.prototype.setFont = function (font) {\n this.font_ = font;\n };\n /**\n * Set the maximum angle between adjacent characters.\n *\n * @param {number} maxAngle Angle in radians.\n * @api\n */\n Text.prototype.setMaxAngle = function (maxAngle) {\n this.maxAngle_ = maxAngle;\n };\n /**\n * Set the x offset.\n *\n * @param {number} offsetX Horizontal text offset.\n * @api\n */\n Text.prototype.setOffsetX = function (offsetX) {\n this.offsetX_ = offsetX;\n };\n /**\n * Set the y offset.\n *\n * @param {number} offsetY Vertical text offset.\n * @api\n */\n Text.prototype.setOffsetY = function (offsetY) {\n this.offsetY_ = offsetY;\n };\n /**\n * Set the text placement.\n *\n * @param {import(\"./TextPlacement.js\").default|string} placement Placement.\n * @api\n */\n Text.prototype.setPlacement = function (placement) {\n this.placement_ = placement;\n };\n /**\n * Set whether to rotate the text with the view.\n *\n * @param {boolean} rotateWithView Rotate with map.\n * @api\n */\n Text.prototype.setRotateWithView = function (rotateWithView) {\n this.rotateWithView_ = rotateWithView;\n };\n /**\n * Set the fill.\n *\n * @param {import(\"./Fill.js\").default} fill Fill style.\n * @api\n */\n Text.prototype.setFill = function (fill) {\n this.fill_ = fill;\n };\n /**\n * Set the rotation.\n *\n * @param {number|undefined} rotation Rotation.\n * @api\n */\n Text.prototype.setRotation = function (rotation) {\n this.rotation_ = rotation;\n };\n /**\n * Set the scale.\n *\n * @param {number|import(\"../size.js\").Size|undefined} scale Scale.\n * @api\n */\n Text.prototype.setScale = function (scale) {\n this.scale_ = scale;\n this.scaleArray_ = toSize(scale !== undefined ? scale : 1);\n };\n /**\n * Set the stroke.\n *\n * @param {import(\"./Stroke.js\").default} stroke Stroke style.\n * @api\n */\n Text.prototype.setStroke = function (stroke) {\n this.stroke_ = stroke;\n };\n /**\n * Set the text.\n *\n * @param {string|Array<string>|undefined} text Text.\n * @api\n */\n Text.prototype.setText = function (text) {\n this.text_ = text;\n };\n /**\n * Set the text alignment.\n *\n * @param {string|undefined} textAlign Text align.\n * @api\n */\n Text.prototype.setTextAlign = function (textAlign) {\n this.textAlign_ = textAlign;\n };\n /**\n * Set the text baseline.\n *\n * @param {string|undefined} textBaseline Text baseline.\n * @api\n */\n Text.prototype.setTextBaseline = function (textBaseline) {\n this.textBaseline_ = textBaseline;\n };\n /**\n * Set the background fill.\n *\n * @param {import(\"./Fill.js\").default} fill Fill style.\n * @api\n */\n Text.prototype.setBackgroundFill = function (fill) {\n this.backgroundFill_ = fill;\n };\n /**\n * Set the background stroke.\n *\n * @param {import(\"./Stroke.js\").default} stroke Stroke style.\n * @api\n */\n Text.prototype.setBackgroundStroke = function (stroke) {\n this.backgroundStroke_ = stroke;\n };\n /**\n * Set the padding (`[top, right, bottom, left]`).\n *\n * @param {Array<number>|null} padding Padding.\n * @api\n */\n Text.prototype.setPadding = function (padding) {\n this.padding_ = padding;\n };\n return Text;\n}());\nexport default Text;\n//# sourceMappingURL=Text.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/Feature\n */\nimport BaseObject from './Object.js';\nimport EventType from './events/EventType.js';\nimport { assert } from './asserts.js';\nimport { listen, unlistenByKey } from './events.js';\n/**\n * @typedef {typeof Feature|typeof import(\"./render/Feature.js\").default} FeatureClass\n */\n/**\n * @typedef {Feature|import(\"./render/Feature.js\").default} FeatureLike\n */\n/***\n * @template Return\n * @typedef {import(\"./Observable\").OnSignature<import(\"./Observable\").EventTypes, import(\"./events/Event.js\").default, Return> &\n * import(\"./Observable\").OnSignature<import(\"./ObjectEventType\").Types|'change:geometry', import(\"./Object\").ObjectEvent, Return> &\n * import(\"./Observable\").CombinedOnSignature<import(\"./Observable\").EventTypes|import(\"./ObjectEventType\").Types\n * |'change:geometry', Return>} FeatureOnSignature\n */\n/***\n * @template Geometry\n * @typedef {Object<string, *> & { geometry?: Geometry }} ObjectWithGeometry\n */\n/**\n * @classdesc\n * A vector object for geographic features with a geometry and other\n * attribute properties, similar to the features in vector file formats like\n * GeoJSON.\n *\n * Features can be styled individually with `setStyle`; otherwise they use the\n * style of their vector layer.\n *\n * Note that attribute properties are set as {@link module:ol/Object~BaseObject} properties on\n * the feature object, so they are observable, and have get/set accessors.\n *\n * Typically, a feature has a single geometry property. You can set the\n * geometry using the `setGeometry` method and get it with `getGeometry`.\n * It is possible to store more than one geometry on a feature using attribute\n * properties. By default, the geometry used for rendering is identified by\n * the property name `geometry`. If you want to use another geometry property\n * for rendering, use the `setGeometryName` method to change the attribute\n * property associated with the geometry for the feature. For example:\n *\n * ```js\n *\n * import Feature from 'ol/Feature';\n * import Polygon from 'ol/geom/Polygon';\n * import Point from 'ol/geom/Point';\n *\n * var feature = new Feature({\n * geometry: new Polygon(polyCoords),\n * labelPoint: new Point(labelCoords),\n * name: 'My Polygon'\n * });\n *\n * // get the polygon geometry\n * var poly = feature.getGeometry();\n *\n * // Render the feature as a point using the coordinates from labelPoint\n * feature.setGeometryName('labelPoint');\n *\n * // get the point geometry\n * var point = feature.getGeometry();\n * ```\n *\n * @api\n * @template {import(\"./geom/Geometry.js\").default} [Geometry=import(\"./geom/Geometry.js\").default]\n */\nvar Feature = /** @class */ (function (_super) {\n __extends(Feature, _super);\n /**\n * @param {Geometry|ObjectWithGeometry<Geometry>} [opt_geometryOrProperties]\n * You may pass a Geometry object directly, or an object literal containing\n * properties. If you pass an object literal, you may include a Geometry\n * associated with a `geometry` key.\n */\n function Feature(opt_geometryOrProperties) {\n var _this = _super.call(this) || this;\n /***\n * @type {FeatureOnSignature<import(\"./events\").EventsKey>}\n */\n _this.on;\n /***\n * @type {FeatureOnSignature<import(\"./events\").EventsKey>}\n */\n _this.once;\n /***\n * @type {FeatureOnSignature<void>}\n */\n _this.un;\n /**\n * @private\n * @type {number|string|undefined}\n */\n _this.id_ = undefined;\n /**\n * @type {string}\n * @private\n */\n _this.geometryName_ = 'geometry';\n /**\n * User provided style.\n * @private\n * @type {import(\"./style/Style.js\").StyleLike}\n */\n _this.style_ = null;\n /**\n * @private\n * @type {import(\"./style/Style.js\").StyleFunction|undefined}\n */\n _this.styleFunction_ = undefined;\n /**\n * @private\n * @type {?import(\"./events.js\").EventsKey}\n */\n _this.geometryChangeKey_ = null;\n _this.addChangeListener(_this.geometryName_, _this.handleGeometryChanged_);\n if (opt_geometryOrProperties) {\n if (typeof (\n /** @type {?} */ (opt_geometryOrProperties).getSimplifiedGeometry) === 'function') {\n var geometry = /** @type {Geometry} */ (opt_geometryOrProperties);\n _this.setGeometry(geometry);\n }\n else {\n /** @type {Object<string, *>} */\n var properties = opt_geometryOrProperties;\n _this.setProperties(properties);\n }\n }\n return _this;\n }\n /**\n * Clone this feature. If the original feature has a geometry it\n * is also cloned. The feature id is not set in the clone.\n * @return {Feature<Geometry>} The clone.\n * @api\n */\n Feature.prototype.clone = function () {\n var clone = /** @type {Feature<Geometry>} */ (new Feature(this.hasProperties() ? this.getProperties() : null));\n clone.setGeometryName(this.getGeometryName());\n var geometry = this.getGeometry();\n if (geometry) {\n clone.setGeometry(/** @type {Geometry} */ (geometry.clone()));\n }\n var style = this.getStyle();\n if (style) {\n clone.setStyle(style);\n }\n return clone;\n };\n /**\n * Get the feature's default geometry. A feature may have any number of named\n * geometries. The \"default\" geometry (the one that is rendered by default) is\n * set when calling {@link module:ol/Feature~Feature#setGeometry}.\n * @return {Geometry|undefined} The default geometry for the feature.\n * @api\n * @observable\n */\n Feature.prototype.getGeometry = function () {\n return /** @type {Geometry|undefined} */ (this.get(this.geometryName_));\n };\n /**\n * Get the feature identifier. This is a stable identifier for the feature and\n * is either set when reading data from a remote source or set explicitly by\n * calling {@link module:ol/Feature~Feature#setId}.\n * @return {number|string|undefined} Id.\n * @api\n */\n Feature.prototype.getId = function () {\n return this.id_;\n };\n /**\n * Get the name of the feature's default geometry. By default, the default\n * geometry is named `geometry`.\n * @return {string} Get the property name associated with the default geometry\n * for this feature.\n * @api\n */\n Feature.prototype.getGeometryName = function () {\n return this.geometryName_;\n };\n /**\n * Get the feature's style. Will return what was provided to the\n * {@link module:ol/Feature~Feature#setStyle} method.\n * @return {import(\"./style/Style.js\").StyleLike|undefined} The feature style.\n * @api\n */\n Feature.prototype.getStyle = function () {\n return this.style_;\n };\n /**\n * Get the feature's style function.\n * @return {import(\"./style/Style.js\").StyleFunction|undefined} Return a function\n * representing the current style of this feature.\n * @api\n */\n Feature.prototype.getStyleFunction = function () {\n return this.styleFunction_;\n };\n /**\n * @private\n */\n Feature.prototype.handleGeometryChange_ = function () {\n this.changed();\n };\n /**\n * @private\n */\n Feature.prototype.handleGeometryChanged_ = function () {\n if (this.geometryChangeKey_) {\n unlistenByKey(this.geometryChangeKey_);\n this.geometryChangeKey_ = null;\n }\n var geometry = this.getGeometry();\n if (geometry) {\n this.geometryChangeKey_ = listen(geometry, EventType.CHANGE, this.handleGeometryChange_, this);\n }\n this.changed();\n };\n /**\n * Set the default geometry for the feature. This will update the property\n * with the name returned by {@link module:ol/Feature~Feature#getGeometryName}.\n * @param {Geometry|undefined} geometry The new geometry.\n * @api\n * @observable\n */\n Feature.prototype.setGeometry = function (geometry) {\n this.set(this.geometryName_, geometry);\n };\n /**\n * Set the style for the feature to override the layer style. This can be a\n * single style object, an array of styles, or a function that takes a\n * resolution and returns an array of styles. To unset the feature style, call\n * `setStyle()` without arguments or a falsey value.\n * @param {import(\"./style/Style.js\").StyleLike} [opt_style] Style for this feature.\n * @api\n * @fires module:ol/events/Event~BaseEvent#event:change\n */\n Feature.prototype.setStyle = function (opt_style) {\n this.style_ = opt_style;\n this.styleFunction_ = !opt_style\n ? undefined\n : createStyleFunction(opt_style);\n this.changed();\n };\n /**\n * Set the feature id. The feature id is considered stable and may be used when\n * requesting features or comparing identifiers returned from a remote source.\n * The feature id can be used with the\n * {@link module:ol/source/Vector~VectorSource#getFeatureById} method.\n * @param {number|string|undefined} id The feature id.\n * @api\n * @fires module:ol/events/Event~BaseEvent#event:change\n */\n Feature.prototype.setId = function (id) {\n this.id_ = id;\n this.changed();\n };\n /**\n * Set the property name to be used when getting the feature's default geometry.\n * When calling {@link module:ol/Feature~Feature#getGeometry}, the value of the property with\n * this name will be returned.\n * @param {string} name The property name of the default geometry.\n * @api\n */\n Feature.prototype.setGeometryName = function (name) {\n this.removeChangeListener(this.geometryName_, this.handleGeometryChanged_);\n this.geometryName_ = name;\n this.addChangeListener(this.geometryName_, this.handleGeometryChanged_);\n this.handleGeometryChanged_();\n };\n return Feature;\n}(BaseObject));\n/**\n * Convert the provided object into a feature style function. Functions passed\n * through unchanged. Arrays of Style or single style objects wrapped\n * in a new feature style function.\n * @param {!import(\"./style/Style.js\").StyleFunction|!Array<import(\"./style/Style.js\").default>|!import(\"./style/Style.js\").default} obj\n * A feature style function, a single style, or an array of styles.\n * @return {import(\"./style/Style.js\").StyleFunction} A style function.\n */\nexport function createStyleFunction(obj) {\n if (typeof obj === 'function') {\n return obj;\n }\n else {\n /**\n * @type {Array<import(\"./style/Style.js\").default>}\n */\n var styles_1;\n if (Array.isArray(obj)) {\n styles_1 = obj;\n }\n else {\n assert(typeof ( /** @type {?} */(obj).getZIndex) === 'function', 41); // Expected an `import(\"./style/Style.js\").Style` or an array of `import(\"./style/Style.js\").Style`\n var style = /** @type {import(\"./style/Style.js\").default} */ (obj);\n styles_1 = [style];\n }\n return function () {\n return styles_1;\n };\n }\n}\nexport default Feature;\n//# sourceMappingURL=Feature.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/renderer/Map\n */\nimport Disposable from '../Disposable.js';\nimport { TRUE } from '../functions.js';\nimport { abstract } from '../util.js';\nimport { compose as composeTransform, makeInverse } from '../transform.js';\nimport { getWidth } from '../extent.js';\nimport { shared as iconImageCache } from '../style/IconImageCache.js';\nimport { inView } from '../layer/Layer.js';\nimport { wrapX } from '../coordinate.js';\n/**\n * @typedef HitMatch\n * @property {import(\"../Feature.js\").FeatureLike} feature Feature.\n * @property {import(\"../layer/Layer.js\").default} layer Layer.\n * @property {import(\"../geom/SimpleGeometry.js\").default} geometry Geometry.\n * @property {number} distanceSq Squared distance.\n * @property {import(\"./vector.js\").FeatureCallback<T>} callback Callback.\n * @template T\n */\n/**\n * @abstract\n */\nvar MapRenderer = /** @class */ (function (_super) {\n __extends(MapRenderer, _super);\n /**\n * @param {import(\"../PluggableMap.js\").default} map Map.\n */\n function MapRenderer(map) {\n var _this = _super.call(this) || this;\n /**\n * @private\n * @type {import(\"../PluggableMap.js\").default}\n */\n _this.map_ = map;\n return _this;\n }\n /**\n * @abstract\n * @param {import(\"../render/EventType.js\").default} type Event type.\n * @param {import(\"../PluggableMap.js\").FrameState} frameState Frame state.\n */\n MapRenderer.prototype.dispatchRenderEvent = function (type, frameState) {\n abstract();\n };\n /**\n * @param {import(\"../PluggableMap.js\").FrameState} frameState FrameState.\n * @protected\n */\n MapRenderer.prototype.calculateMatrices2D = function (frameState) {\n var viewState = frameState.viewState;\n var coordinateToPixelTransform = frameState.coordinateToPixelTransform;\n var pixelToCoordinateTransform = frameState.pixelToCoordinateTransform;\n composeTransform(coordinateToPixelTransform, frameState.size[0] / 2, frameState.size[1] / 2, 1 / viewState.resolution, -1 / viewState.resolution, -viewState.rotation, -viewState.center[0], -viewState.center[1]);\n makeInverse(pixelToCoordinateTransform, coordinateToPixelTransform);\n };\n /**\n * @param {import(\"../coordinate.js\").Coordinate} coordinate Coordinate.\n * @param {import(\"../PluggableMap.js\").FrameState} frameState FrameState.\n * @param {number} hitTolerance Hit tolerance in pixels.\n * @param {boolean} checkWrapped Check for wrapped geometries.\n * @param {import(\"./vector.js\").FeatureCallback<T>} callback Feature callback.\n * @param {S} thisArg Value to use as `this` when executing `callback`.\n * @param {function(this: U, import(\"../layer/Layer.js\").default): boolean} layerFilter Layer filter\n * function, only layers which are visible and for which this function\n * returns `true` will be tested for features. By default, all visible\n * layers will be tested.\n * @param {U} thisArg2 Value to use as `this` when executing `layerFilter`.\n * @return {T|undefined} Callback result.\n * @template S,T,U\n */\n MapRenderer.prototype.forEachFeatureAtCoordinate = function (coordinate, frameState, hitTolerance, checkWrapped, callback, thisArg, layerFilter, thisArg2) {\n var result;\n var viewState = frameState.viewState;\n /**\n * @param {boolean} managed Managed layer.\n * @param {import(\"../Feature.js\").FeatureLike} feature Feature.\n * @param {import(\"../layer/Layer.js\").default} layer Layer.\n * @param {import(\"../geom/Geometry.js\").default} geometry Geometry.\n * @return {T|undefined} Callback result.\n */\n function forEachFeatureAtCoordinate(managed, feature, layer, geometry) {\n return callback.call(thisArg, feature, managed ? layer : null, geometry);\n }\n var projection = viewState.projection;\n var translatedCoordinate = wrapX(coordinate.slice(), projection);\n var offsets = [[0, 0]];\n if (projection.canWrapX() && checkWrapped) {\n var projectionExtent = projection.getExtent();\n var worldWidth = getWidth(projectionExtent);\n offsets.push([-worldWidth, 0], [worldWidth, 0]);\n }\n var layerStates = frameState.layerStatesArray;\n var numLayers = layerStates.length;\n var matches = /** @type {Array<HitMatch<T>>} */ ([]);\n var tmpCoord = [];\n for (var i = 0; i < offsets.length; i++) {\n for (var j = numLayers - 1; j >= 0; --j) {\n var layerState = layerStates[j];\n var layer = layerState.layer;\n if (layer.hasRenderer() &&\n inView(layerState, viewState) &&\n layerFilter.call(thisArg2, layer)) {\n var layerRenderer = layer.getRenderer();\n var source = layer.getSource();\n if (layerRenderer && source) {\n var coordinates = source.getWrapX()\n ? translatedCoordinate\n : coordinate;\n var callback_1 = forEachFeatureAtCoordinate.bind(null, layerState.managed);\n tmpCoord[0] = coordinates[0] + offsets[i][0];\n tmpCoord[1] = coordinates[1] + offsets[i][1];\n result = layerRenderer.forEachFeatureAtCoordinate(tmpCoord, frameState, hitTolerance, callback_1, matches);\n }\n if (result) {\n return result;\n }\n }\n }\n }\n if (matches.length === 0) {\n return undefined;\n }\n var order = 1 / matches.length;\n matches.forEach(function (m, i) { return (m.distanceSq += i * order); });\n matches.sort(function (a, b) { return a.distanceSq - b.distanceSq; });\n matches.some(function (m) {\n return (result = m.callback(m.feature, m.layer, m.geometry));\n });\n return result;\n };\n /**\n * @abstract\n * @param {import(\"../pixel.js\").Pixel} pixel Pixel.\n * @param {import(\"../PluggableMap.js\").FrameState} frameState FrameState.\n * @param {number} hitTolerance Hit tolerance in pixels.\n * @param {function(import(\"../layer/Layer.js\").default<import(\"../source/Source\").default>, (Uint8ClampedArray|Uint8Array)): T} callback Layer\n * callback.\n * @param {function(import(\"../layer/Layer.js\").default<import(\"../source/Source\").default>): boolean} layerFilter Layer filter\n * function, only layers which are visible and for which this function\n * returns `true` will be tested for features. By default, all visible\n * layers will be tested.\n * @return {T|undefined} Callback result.\n * @template T\n */\n MapRenderer.prototype.forEachLayerAtPixel = function (pixel, frameState, hitTolerance, callback, layerFilter) {\n return abstract();\n };\n /**\n * @param {import(\"../coordinate.js\").Coordinate} coordinate Coordinate.\n * @param {import(\"../PluggableMap.js\").FrameState} frameState FrameState.\n * @param {number} hitTolerance Hit tolerance in pixels.\n * @param {boolean} checkWrapped Check for wrapped geometries.\n * @param {function(this: U, import(\"../layer/Layer.js\").default): boolean} layerFilter Layer filter\n * function, only layers which are visible and for which this function\n * returns `true` will be tested for features. By default, all visible\n * layers will be tested.\n * @param {U} thisArg Value to use as `this` when executing `layerFilter`.\n * @return {boolean} Is there a feature at the given coordinate?\n * @template U\n */\n MapRenderer.prototype.hasFeatureAtCoordinate = function (coordinate, frameState, hitTolerance, checkWrapped, layerFilter, thisArg) {\n var hasFeature = this.forEachFeatureAtCoordinate(coordinate, frameState, hitTolerance, checkWrapped, TRUE, this, layerFilter, thisArg);\n return hasFeature !== undefined;\n };\n /**\n * @return {import(\"../PluggableMap.js\").default} Map.\n */\n MapRenderer.prototype.getMap = function () {\n return this.map_;\n };\n /**\n * Render.\n * @abstract\n * @param {?import(\"../PluggableMap.js\").FrameState} frameState Frame state.\n */\n MapRenderer.prototype.renderFrame = function (frameState) {\n abstract();\n };\n /**\n * @param {import(\"../PluggableMap.js\").FrameState} frameState Frame state.\n * @protected\n */\n MapRenderer.prototype.scheduleExpireIconCache = function (frameState) {\n if (iconImageCache.canExpireCache()) {\n frameState.postRenderFunctions.push(expireIconCache);\n }\n };\n return MapRenderer;\n}(Disposable));\n/**\n * @param {import(\"../PluggableMap.js\").default} map Map.\n * @param {import(\"../PluggableMap.js\").FrameState} frameState Frame state.\n */\nfunction expireIconCache(map, frameState) {\n iconImageCache.expire();\n}\nexport default MapRenderer;\n//# sourceMappingURL=Map.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/renderer/Composite\n */\nimport MapRenderer from './Map.js';\nimport ObjectEventType from '../ObjectEventType.js';\nimport RenderEvent from '../render/Event.js';\nimport RenderEventType from '../render/EventType.js';\nimport SourceState from '../source/State.js';\nimport { CLASS_UNSELECTABLE } from '../css.js';\nimport { checkedFonts } from '../render/canvas.js';\nimport { inView } from '../layer/Layer.js';\nimport { listen, unlistenByKey } from '../events.js';\nimport { replaceChildren } from '../dom.js';\n/**\n * @classdesc\n * Canvas map renderer.\n * @api\n */\nvar CompositeMapRenderer = /** @class */ (function (_super) {\n __extends(CompositeMapRenderer, _super);\n /**\n * @param {import(\"../PluggableMap.js\").default} map Map.\n */\n function CompositeMapRenderer(map) {\n var _this = _super.call(this, map) || this;\n /**\n * @type {import(\"../events.js\").EventsKey}\n */\n _this.fontChangeListenerKey_ = listen(checkedFonts, ObjectEventType.PROPERTYCHANGE, map.redrawText.bind(map));\n /**\n * @private\n * @type {HTMLDivElement}\n */\n _this.element_ = document.createElement('div');\n var style = _this.element_.style;\n style.position = 'absolute';\n style.width = '100%';\n style.height = '100%';\n style.zIndex = '0';\n _this.element_.className = CLASS_UNSELECTABLE + ' ol-layers';\n var container = map.getViewport();\n container.insertBefore(_this.element_, container.firstChild || null);\n /**\n * @private\n * @type {Array<HTMLElement>}\n */\n _this.children_ = [];\n /**\n * @private\n * @type {boolean}\n */\n _this.renderedVisible_ = true;\n return _this;\n }\n /**\n * @param {import(\"../render/EventType.js\").default} type Event type.\n * @param {import(\"../PluggableMap.js\").FrameState} frameState Frame state.\n */\n CompositeMapRenderer.prototype.dispatchRenderEvent = function (type, frameState) {\n var map = this.getMap();\n if (map.hasListener(type)) {\n var event_1 = new RenderEvent(type, undefined, frameState);\n map.dispatchEvent(event_1);\n }\n };\n CompositeMapRenderer.prototype.disposeInternal = function () {\n unlistenByKey(this.fontChangeListenerKey_);\n this.element_.parentNode.removeChild(this.element_);\n _super.prototype.disposeInternal.call(this);\n };\n /**\n * Render.\n * @param {?import(\"../PluggableMap.js\").FrameState} frameState Frame state.\n */\n CompositeMapRenderer.prototype.renderFrame = function (frameState) {\n if (!frameState) {\n if (this.renderedVisible_) {\n this.element_.style.display = 'none';\n this.renderedVisible_ = false;\n }\n return;\n }\n this.calculateMatrices2D(frameState);\n this.dispatchRenderEvent(RenderEventType.PRECOMPOSE, frameState);\n var layerStatesArray = frameState.layerStatesArray.sort(function (a, b) {\n return a.zIndex - b.zIndex;\n });\n var viewState = frameState.viewState;\n this.children_.length = 0;\n /**\n * @type {Array<import(\"../layer/BaseVector.js\").default>}\n */\n var declutterLayers = [];\n var previousElement = null;\n for (var i = 0, ii = layerStatesArray.length; i < ii; ++i) {\n var layerState = layerStatesArray[i];\n frameState.layerIndex = i;\n var layer = layerState.layer;\n var sourceState = layer.getSourceState();\n if (!inView(layerState, viewState) ||\n (sourceState != SourceState.READY &&\n sourceState != SourceState.UNDEFINED)) {\n layer.unrender();\n continue;\n }\n var element = layer.render(frameState, previousElement);\n if (!element) {\n continue;\n }\n if (element !== previousElement) {\n this.children_.push(element);\n previousElement = element;\n }\n if ('getDeclutter' in layer) {\n declutterLayers.push(\n /** @type {import(\"../layer/BaseVector.js\").default} */ (layer));\n }\n }\n for (var i = declutterLayers.length - 1; i >= 0; --i) {\n declutterLayers[i].renderDeclutter(frameState);\n }\n replaceChildren(this.element_, this.children_);\n this.dispatchRenderEvent(RenderEventType.POSTCOMPOSE, frameState);\n if (!this.renderedVisible_) {\n this.element_.style.display = '';\n this.renderedVisible_ = true;\n }\n this.scheduleExpireIconCache(frameState);\n };\n /**\n * @param {import(\"../pixel.js\").Pixel} pixel Pixel.\n * @param {import(\"../PluggableMap.js\").FrameState} frameState FrameState.\n * @param {number} hitTolerance Hit tolerance in pixels.\n * @param {function(import(\"../layer/Layer.js\").default<import(\"../source/Source\").default>, (Uint8ClampedArray|Uint8Array)): T} callback Layer\n * callback.\n * @param {function(import(\"../layer/Layer.js\").default<import(\"../source/Source\").default>): boolean} layerFilter Layer filter\n * function, only layers which are visible and for which this function\n * returns `true` will be tested for features. By default, all visible\n * layers will be tested.\n * @return {T|undefined} Callback result.\n * @template T\n */\n CompositeMapRenderer.prototype.forEachLayerAtPixel = function (pixel, frameState, hitTolerance, callback, layerFilter) {\n var viewState = frameState.viewState;\n var layerStates = frameState.layerStatesArray;\n var numLayers = layerStates.length;\n for (var i = numLayers - 1; i >= 0; --i) {\n var layerState = layerStates[i];\n var layer = layerState.layer;\n if (layer.hasRenderer() &&\n inView(layerState, viewState) &&\n layerFilter(layer)) {\n var layerRenderer = layer.getRenderer();\n var data = layerRenderer.getDataAtPixel(pixel, frameState, hitTolerance);\n if (data) {\n var result = callback(layer, data);\n if (result) {\n return result;\n }\n }\n }\n }\n return undefined;\n };\n return CompositeMapRenderer;\n}(MapRenderer));\nexport default CompositeMapRenderer;\n//# sourceMappingURL=Composite.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/layer/Group\n */\nimport BaseLayer from './Base.js';\nimport Collection from '../Collection.js';\nimport CollectionEventType from '../CollectionEventType.js';\nimport Event from '../events/Event.js';\nimport EventType from '../events/EventType.js';\nimport ObjectEventType from '../ObjectEventType.js';\nimport SourceState from '../source/State.js';\nimport { assert } from '../asserts.js';\nimport { assign, clear } from '../obj.js';\nimport { getIntersection } from '../extent.js';\nimport { getUid } from '../util.js';\nimport { listen, unlistenByKey } from '../events.js';\n/**\n * @typedef {'addlayer'|'removelayer'} EventType\n */\n/**\n * @classdesc\n * A layer group triggers 'addlayer' and 'removelayer' events when layers are added to or removed from\n * the group or one of its child groups. When a layer group is added to or removed from another layer group,\n * a single event will be triggered (instead of one per layer in the group added or removed).\n */\nvar GroupEvent = /** @class */ (function (_super) {\n __extends(GroupEvent, _super);\n /**\n * @param {EventType} type The event type.\n * @param {BaseLayer} layer The layer.\n */\n function GroupEvent(type, layer) {\n var _this = _super.call(this, type) || this;\n /**\n * The added or removed layer.\n * @type {BaseLayer}\n * @api\n */\n _this.layer = layer;\n return _this;\n }\n return GroupEvent;\n}(Event));\nexport { GroupEvent };\n/***\n * @template Return\n * @typedef {import(\"../Observable\").OnSignature<import(\"../Observable\").EventTypes, import(\"../events/Event.js\").default, Return> &\n * import(\"../Observable\").OnSignature<import(\"./Base\").BaseLayerObjectEventTypes|\n * 'change:layers', import(\"../Object\").ObjectEvent, Return> &\n * import(\"../Observable\").CombinedOnSignature<import(\"../Observable\").EventTypes|import(\"./Base\").BaseLayerObjectEventTypes|'change:layers', Return>} GroupOnSignature\n */\n/**\n * @typedef {Object} Options\n * @property {number} [opacity=1] Opacity (0, 1).\n * @property {boolean} [visible=true] Visibility.\n * @property {import(\"../extent.js\").Extent} [extent] The bounding extent for layer rendering. The layer will not be\n * rendered outside of this extent.\n * @property {number} [zIndex] The z-index for layer rendering. At rendering time, the layers\n * will be ordered, first by Z-index and then by position. When `undefined`, a `zIndex` of 0 is assumed\n * for layers that are added to the map's `layers` collection, or `Infinity` when the layer's `setMap()`\n * method was used.\n * @property {number} [minResolution] The minimum resolution (inclusive) at which this layer will be\n * visible.\n * @property {number} [maxResolution] The maximum resolution (exclusive) below which this layer will\n * be visible.\n * @property {number} [minZoom] The minimum view zoom level (exclusive) above which this layer will be\n * visible.\n * @property {number} [maxZoom] The maximum view zoom level (inclusive) at which this layer will\n * be visible.\n * @property {Array<import(\"./Base.js\").default>|import(\"../Collection.js\").default<import(\"./Base.js\").default>} [layers] Child layers.\n * @property {Object<string, *>} [properties] Arbitrary observable properties. Can be accessed with `#get()` and `#set()`.\n */\n/**\n * @enum {string}\n * @private\n */\nvar Property = {\n LAYERS: 'layers',\n};\n/**\n * @classdesc\n * A {@link module:ol/Collection~Collection} of layers that are handled together.\n *\n * A generic `change` event is triggered when the group/Collection changes.\n *\n * @api\n */\nvar LayerGroup = /** @class */ (function (_super) {\n __extends(LayerGroup, _super);\n /**\n * @param {Options} [opt_options] Layer options.\n */\n function LayerGroup(opt_options) {\n var _this = this;\n var options = opt_options || {};\n var baseOptions = /** @type {Options} */ (assign({}, options));\n delete baseOptions.layers;\n var layers = options.layers;\n _this = _super.call(this, baseOptions) || this;\n /***\n * @type {GroupOnSignature<import(\"../events\").EventsKey>}\n */\n _this.on;\n /***\n * @type {GroupOnSignature<import(\"../events\").EventsKey>}\n */\n _this.once;\n /***\n * @type {GroupOnSignature<void>}\n */\n _this.un;\n /**\n * @private\n * @type {Array<import(\"../events.js\").EventsKey>}\n */\n _this.layersListenerKeys_ = [];\n /**\n * @private\n * @type {Object<string, Array<import(\"../events.js\").EventsKey>>}\n */\n _this.listenerKeys_ = {};\n _this.addChangeListener(Property.LAYERS, _this.handleLayersChanged_);\n if (layers) {\n if (Array.isArray(layers)) {\n layers = new Collection(layers.slice(), { unique: true });\n }\n else {\n assert(typeof ( /** @type {?} */(layers).getArray) === 'function', 43); // Expected `layers` to be an array or a `Collection`\n }\n }\n else {\n layers = new Collection(undefined, { unique: true });\n }\n _this.setLayers(layers);\n return _this;\n }\n /**\n * @private\n */\n LayerGroup.prototype.handleLayerChange_ = function () {\n this.changed();\n };\n /**\n * @private\n */\n LayerGroup.prototype.handleLayersChanged_ = function () {\n this.layersListenerKeys_.forEach(unlistenByKey);\n this.layersListenerKeys_.length = 0;\n var layers = this.getLayers();\n this.layersListenerKeys_.push(listen(layers, CollectionEventType.ADD, this.handleLayersAdd_, this), listen(layers, CollectionEventType.REMOVE, this.handleLayersRemove_, this));\n for (var id in this.listenerKeys_) {\n this.listenerKeys_[id].forEach(unlistenByKey);\n }\n clear(this.listenerKeys_);\n var layersArray = layers.getArray();\n for (var i = 0, ii = layersArray.length; i < ii; i++) {\n var layer = layersArray[i];\n this.registerLayerListeners_(layer);\n this.dispatchEvent(new GroupEvent('addlayer', layer));\n }\n this.changed();\n };\n /**\n * @param {BaseLayer} layer The layer.\n */\n LayerGroup.prototype.registerLayerListeners_ = function (layer) {\n var listenerKeys = [\n listen(layer, ObjectEventType.PROPERTYCHANGE, this.handleLayerChange_, this),\n listen(layer, EventType.CHANGE, this.handleLayerChange_, this),\n ];\n if (layer instanceof LayerGroup) {\n listenerKeys.push(listen(layer, 'addlayer', this.handleLayerGroupAdd_, this), listen(layer, 'removelayer', this.handleLayerGroupRemove_, this));\n }\n this.listenerKeys_[getUid(layer)] = listenerKeys;\n };\n /**\n * @param {GroupEvent} event The layer group event.\n */\n LayerGroup.prototype.handleLayerGroupAdd_ = function (event) {\n this.dispatchEvent(new GroupEvent('addlayer', event.layer));\n };\n /**\n * @param {GroupEvent} event The layer group event.\n */\n LayerGroup.prototype.handleLayerGroupRemove_ = function (event) {\n this.dispatchEvent(new GroupEvent('removelayer', event.layer));\n };\n /**\n * @param {import(\"../Collection.js\").CollectionEvent} collectionEvent CollectionEvent.\n * @private\n */\n LayerGroup.prototype.handleLayersAdd_ = function (collectionEvent) {\n var layer = /** @type {import(\"./Base.js\").default} */ (collectionEvent.element);\n this.registerLayerListeners_(layer);\n this.dispatchEvent(new GroupEvent('addlayer', layer));\n this.changed();\n };\n /**\n * @param {import(\"../Collection.js\").CollectionEvent} collectionEvent CollectionEvent.\n * @private\n */\n LayerGroup.prototype.handleLayersRemove_ = function (collectionEvent) {\n var layer = /** @type {import(\"./Base.js\").default} */ (collectionEvent.element);\n var key = getUid(layer);\n this.listenerKeys_[key].forEach(unlistenByKey);\n delete this.listenerKeys_[key];\n this.dispatchEvent(new GroupEvent('removelayer', layer));\n this.changed();\n };\n /**\n * Returns the {@link module:ol/Collection~Collection collection} of {@link module:ol/layer/Layer~Layer layers}\n * in this group.\n * @return {!import(\"../Collection.js\").default<import(\"./Base.js\").default>} Collection of\n * {@link module:ol/layer/Base~BaseLayer layers} that are part of this group.\n * @observable\n * @api\n */\n LayerGroup.prototype.getLayers = function () {\n return /** @type {!import(\"../Collection.js\").default<import(\"./Base.js\").default>} */ (this.get(Property.LAYERS));\n };\n /**\n * Set the {@link module:ol/Collection~Collection collection} of {@link module:ol/layer/Layer~Layer layers}\n * in this group.\n * @param {!import(\"../Collection.js\").default<import(\"./Base.js\").default>} layers Collection of\n * {@link module:ol/layer/Base~BaseLayer layers} that are part of this group.\n * @observable\n * @api\n */\n LayerGroup.prototype.setLayers = function (layers) {\n var collection = this.getLayers();\n if (collection) {\n var currentLayers = collection.getArray();\n for (var i = 0, ii = currentLayers.length; i < ii; ++i) {\n this.dispatchEvent(new GroupEvent('removelayer', currentLayers[i]));\n }\n }\n this.set(Property.LAYERS, layers);\n };\n /**\n * @param {Array<import(\"./Layer.js\").default>} [opt_array] Array of layers (to be modified in place).\n * @return {Array<import(\"./Layer.js\").default>} Array of layers.\n */\n LayerGroup.prototype.getLayersArray = function (opt_array) {\n var array = opt_array !== undefined ? opt_array : [];\n this.getLayers().forEach(function (layer) {\n layer.getLayersArray(array);\n });\n return array;\n };\n /**\n * Get the layer states list and use this groups z-index as the default\n * for all layers in this and nested groups, if it is unset at this point.\n * If opt_states is not provided and this group's z-index is undefined\n * 0 is used a the default z-index.\n * @param {Array<import(\"./Layer.js\").State>} [opt_states] Optional list\n * of layer states (to be modified in place).\n * @return {Array<import(\"./Layer.js\").State>} List of layer states.\n */\n LayerGroup.prototype.getLayerStatesArray = function (opt_states) {\n var states = opt_states !== undefined ? opt_states : [];\n var pos = states.length;\n this.getLayers().forEach(function (layer) {\n layer.getLayerStatesArray(states);\n });\n var ownLayerState = this.getLayerState();\n var defaultZIndex = ownLayerState.zIndex;\n if (!opt_states && ownLayerState.zIndex === undefined) {\n defaultZIndex = 0;\n }\n for (var i = pos, ii = states.length; i < ii; i++) {\n var layerState = states[i];\n layerState.opacity *= ownLayerState.opacity;\n layerState.visible = layerState.visible && ownLayerState.visible;\n layerState.maxResolution = Math.min(layerState.maxResolution, ownLayerState.maxResolution);\n layerState.minResolution = Math.max(layerState.minResolution, ownLayerState.minResolution);\n layerState.minZoom = Math.max(layerState.minZoom, ownLayerState.minZoom);\n layerState.maxZoom = Math.min(layerState.maxZoom, ownLayerState.maxZoom);\n if (ownLayerState.extent !== undefined) {\n if (layerState.extent !== undefined) {\n layerState.extent = getIntersection(layerState.extent, ownLayerState.extent);\n }\n else {\n layerState.extent = ownLayerState.extent;\n }\n }\n if (layerState.zIndex === undefined) {\n layerState.zIndex = defaultZIndex;\n }\n }\n return states;\n };\n /**\n * @return {import(\"../source/State.js\").default} Source state.\n */\n LayerGroup.prototype.getSourceState = function () {\n return SourceState.READY;\n };\n return LayerGroup;\n}(BaseLayer));\nexport default LayerGroup;\n//# sourceMappingURL=Group.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/MapEvent\n */\nimport Event from './events/Event.js';\n/**\n * @classdesc\n * Events emitted as map events are instances of this type.\n * See {@link module:ol/PluggableMap~PluggableMap} for which events trigger a map event.\n */\nvar MapEvent = /** @class */ (function (_super) {\n __extends(MapEvent, _super);\n /**\n * @param {string} type Event type.\n * @param {import(\"./PluggableMap.js\").default} map Map.\n * @param {?import(\"./PluggableMap.js\").FrameState} [opt_frameState] Frame state.\n */\n function MapEvent(type, map, opt_frameState) {\n var _this = _super.call(this, type) || this;\n /**\n * The map where the event occurred.\n * @type {import(\"./PluggableMap.js\").default}\n * @api\n */\n _this.map = map;\n /**\n * The frame state at the time of the event.\n * @type {?import(\"./PluggableMap.js\").FrameState}\n * @api\n */\n _this.frameState = opt_frameState !== undefined ? opt_frameState : null;\n return _this;\n }\n return MapEvent;\n}(Event));\nexport default MapEvent;\n//# sourceMappingURL=MapEvent.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/MapBrowserEvent\n */\nimport MapEvent from './MapEvent.js';\n/**\n * @classdesc\n * Events emitted as map browser events are instances of this type.\n * See {@link module:ol/PluggableMap~PluggableMap} for which events trigger a map browser event.\n * @template {UIEvent} EVENT\n */\nvar MapBrowserEvent = /** @class */ (function (_super) {\n __extends(MapBrowserEvent, _super);\n /**\n * @param {string} type Event type.\n * @param {import(\"./PluggableMap.js\").default} map Map.\n * @param {EVENT} originalEvent Original event.\n * @param {boolean} [opt_dragging] Is the map currently being dragged?\n * @param {?import(\"./PluggableMap.js\").FrameState} [opt_frameState] Frame state.\n */\n function MapBrowserEvent(type, map, originalEvent, opt_dragging, opt_frameState) {\n var _this = _super.call(this, type, map, opt_frameState) || this;\n /**\n * The original browser event.\n * @const\n * @type {EVENT}\n * @api\n */\n _this.originalEvent = originalEvent;\n /**\n * The map pixel relative to the viewport corresponding to the original browser event.\n * @type {?import(\"./pixel.js\").Pixel}\n */\n _this.pixel_ = null;\n /**\n * The coordinate in the user projection corresponding to the original browser event.\n * @type {?import(\"./coordinate.js\").Coordinate}\n */\n _this.coordinate_ = null;\n /**\n * Indicates if the map is currently being dragged. Only set for\n * `POINTERDRAG` and `POINTERMOVE` events. Default is `false`.\n *\n * @type {boolean}\n * @api\n */\n _this.dragging = opt_dragging !== undefined ? opt_dragging : false;\n return _this;\n }\n Object.defineProperty(MapBrowserEvent.prototype, \"pixel\", {\n /**\n * The map pixel relative to the viewport corresponding to the original event.\n * @type {import(\"./pixel.js\").Pixel}\n * @api\n */\n get: function () {\n if (!this.pixel_) {\n this.pixel_ = this.map.getEventPixel(this.originalEvent);\n }\n return this.pixel_;\n },\n set: function (pixel) {\n this.pixel_ = pixel;\n },\n enumerable: false,\n configurable: true\n });\n Object.defineProperty(MapBrowserEvent.prototype, \"coordinate\", {\n /**\n * The coordinate corresponding to the original browser event. This will be in the user\n * projection if one is set. Otherwise it will be in the view projection.\n * @type {import(\"./coordinate.js\").Coordinate}\n * @api\n */\n get: function () {\n if (!this.coordinate_) {\n this.coordinate_ = this.map.getCoordinateFromPixel(this.pixel);\n }\n return this.coordinate_;\n },\n set: function (coordinate) {\n this.coordinate_ = coordinate;\n },\n enumerable: false,\n configurable: true\n });\n /**\n * Prevents the default browser action.\n * See https://developer.mozilla.org/en-US/docs/Web/API/event.preventDefault.\n * @api\n */\n MapBrowserEvent.prototype.preventDefault = function () {\n _super.prototype.preventDefault.call(this);\n if ('preventDefault' in this.originalEvent) {\n /** @type {UIEvent} */ (this.originalEvent).preventDefault();\n }\n };\n /**\n * Prevents further propagation of the current event.\n * See https://developer.mozilla.org/en-US/docs/Web/API/event.stopPropagation.\n * @api\n */\n MapBrowserEvent.prototype.stopPropagation = function () {\n _super.prototype.stopPropagation.call(this);\n if ('stopPropagation' in this.originalEvent) {\n /** @type {UIEvent} */ (this.originalEvent).stopPropagation();\n }\n };\n return MapBrowserEvent;\n}(MapEvent));\nexport default MapBrowserEvent;\n//# sourceMappingURL=MapBrowserEvent.js.map","/**\n * @module ol/MapBrowserEventType\n */\nimport EventType from './events/EventType.js';\n/**\n * Constants for event names.\n * @enum {string}\n */\nexport default {\n /**\n * A true single click with no dragging and no double click. Note that this\n * event is delayed by 250 ms to ensure that it is not a double click.\n * @event module:ol/MapBrowserEvent~MapBrowserEvent#singleclick\n * @api\n */\n SINGLECLICK: 'singleclick',\n /**\n * A click with no dragging. A double click will fire two of this.\n * @event module:ol/MapBrowserEvent~MapBrowserEvent#click\n * @api\n */\n CLICK: EventType.CLICK,\n /**\n * A true double click, with no dragging.\n * @event module:ol/MapBrowserEvent~MapBrowserEvent#dblclick\n * @api\n */\n DBLCLICK: EventType.DBLCLICK,\n /**\n * Triggered when a pointer is dragged.\n * @event module:ol/MapBrowserEvent~MapBrowserEvent#pointerdrag\n * @api\n */\n POINTERDRAG: 'pointerdrag',\n /**\n * Triggered when a pointer is moved. Note that on touch devices this is\n * triggered when the map is panned, so is not the same as mousemove.\n * @event module:ol/MapBrowserEvent~MapBrowserEvent#pointermove\n * @api\n */\n POINTERMOVE: 'pointermove',\n POINTERDOWN: 'pointerdown',\n POINTERUP: 'pointerup',\n POINTEROVER: 'pointerover',\n POINTEROUT: 'pointerout',\n POINTERENTER: 'pointerenter',\n POINTERLEAVE: 'pointerleave',\n POINTERCANCEL: 'pointercancel',\n};\n/***\n * @typedef {'singleclick'|'click'|'dblclick'|'pointerdrag'|'pointermove'} Types\n */\n//# sourceMappingURL=MapBrowserEventType.js.map","/**\n * @module ol/MapBrowserEventHandler\n */\nvar __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\nimport EventType from './events/EventType.js';\nimport MapBrowserEvent from './MapBrowserEvent.js';\nimport MapBrowserEventType from './MapBrowserEventType.js';\nimport PointerEventType from './pointer/EventType.js';\nimport Target from './events/Target.js';\nimport { PASSIVE_EVENT_LISTENERS } from './has.js';\nimport { VOID } from './functions.js';\nimport { listen, unlistenByKey } from './events.js';\nvar MapBrowserEventHandler = /** @class */ (function (_super) {\n __extends(MapBrowserEventHandler, _super);\n /**\n * @param {import(\"./PluggableMap.js\").default} map The map with the viewport to listen to events on.\n * @param {number} [moveTolerance] The minimal distance the pointer must travel to trigger a move.\n */\n function MapBrowserEventHandler(map, moveTolerance) {\n var _this = _super.call(this, map) || this;\n /**\n * This is the element that we will listen to the real events on.\n * @type {import(\"./PluggableMap.js\").default}\n * @private\n */\n _this.map_ = map;\n /**\n * @type {any}\n * @private\n */\n _this.clickTimeoutId_;\n /**\n * Emulate dblclick and singleclick. Will be true when only one pointer is active.\n * @type {boolean}\n */\n _this.emulateClicks_ = false;\n /**\n * @type {boolean}\n * @private\n */\n _this.dragging_ = false;\n /**\n * @type {!Array<import(\"./events.js\").EventsKey>}\n * @private\n */\n _this.dragListenerKeys_ = [];\n /**\n * @type {number}\n * @private\n */\n _this.moveTolerance_ = moveTolerance === undefined ? 1 : moveTolerance;\n /**\n * The most recent \"down\" type event (or null if none have occurred).\n * Set on pointerdown.\n * @type {PointerEvent|null}\n * @private\n */\n _this.down_ = null;\n var element = _this.map_.getViewport();\n /**\n * @type {number}\n * @private\n */\n _this.activePointers_ = 0;\n /**\n * @type {!Object<number, boolean>}\n * @private\n */\n _this.trackedTouches_ = {};\n _this.element_ = element;\n /**\n * @type {?import(\"./events.js\").EventsKey}\n * @private\n */\n _this.pointerdownListenerKey_ = listen(element, PointerEventType.POINTERDOWN, _this.handlePointerDown_, _this);\n /**\n * @type {PointerEvent}\n * @private\n */\n _this.originalPointerMoveEvent_;\n /**\n * @type {?import(\"./events.js\").EventsKey}\n * @private\n */\n _this.relayedListenerKey_ = listen(element, PointerEventType.POINTERMOVE, _this.relayEvent_, _this);\n /**\n * @private\n */\n _this.boundHandleTouchMove_ = _this.handleTouchMove_.bind(_this);\n _this.element_.addEventListener(EventType.TOUCHMOVE, _this.boundHandleTouchMove_, PASSIVE_EVENT_LISTENERS ? { passive: false } : false);\n return _this;\n }\n /**\n * @param {PointerEvent} pointerEvent Pointer\n * event.\n * @private\n */\n MapBrowserEventHandler.prototype.emulateClick_ = function (pointerEvent) {\n var newEvent = new MapBrowserEvent(MapBrowserEventType.CLICK, this.map_, pointerEvent);\n this.dispatchEvent(newEvent);\n if (this.clickTimeoutId_ !== undefined) {\n // double-click\n clearTimeout(this.clickTimeoutId_);\n this.clickTimeoutId_ = undefined;\n newEvent = new MapBrowserEvent(MapBrowserEventType.DBLCLICK, this.map_, pointerEvent);\n this.dispatchEvent(newEvent);\n }\n else {\n // click\n this.clickTimeoutId_ = setTimeout(\n /** @this {MapBrowserEventHandler} */\n function () {\n this.clickTimeoutId_ = undefined;\n var newEvent = new MapBrowserEvent(MapBrowserEventType.SINGLECLICK, this.map_, pointerEvent);\n this.dispatchEvent(newEvent);\n }.bind(this), 250);\n }\n };\n /**\n * Keeps track on how many pointers are currently active.\n *\n * @param {PointerEvent} pointerEvent Pointer\n * event.\n * @private\n */\n MapBrowserEventHandler.prototype.updateActivePointers_ = function (pointerEvent) {\n var event = pointerEvent;\n if (event.type == MapBrowserEventType.POINTERUP ||\n event.type == MapBrowserEventType.POINTERCANCEL) {\n delete this.trackedTouches_[event.pointerId];\n }\n else if (event.type == MapBrowserEventType.POINTERDOWN) {\n this.trackedTouches_[event.pointerId] = true;\n }\n this.activePointers_ = Object.keys(this.trackedTouches_).length;\n };\n /**\n * @param {PointerEvent} pointerEvent Pointer\n * event.\n * @private\n */\n MapBrowserEventHandler.prototype.handlePointerUp_ = function (pointerEvent) {\n this.updateActivePointers_(pointerEvent);\n var newEvent = new MapBrowserEvent(MapBrowserEventType.POINTERUP, this.map_, pointerEvent);\n this.dispatchEvent(newEvent);\n // We emulate click events on left mouse button click, touch contact, and pen\n // contact. isMouseActionButton returns true in these cases (evt.button is set\n // to 0).\n // See http://www.w3.org/TR/pointerevents/#button-states\n // We only fire click, singleclick, and doubleclick if nobody has called\n // event.preventDefault().\n if (this.emulateClicks_ &&\n !newEvent.defaultPrevented &&\n !this.dragging_ &&\n this.isMouseActionButton_(pointerEvent)) {\n this.emulateClick_(this.down_);\n }\n if (this.activePointers_ === 0) {\n this.dragListenerKeys_.forEach(unlistenByKey);\n this.dragListenerKeys_.length = 0;\n this.dragging_ = false;\n this.down_ = null;\n }\n };\n /**\n * @param {PointerEvent} pointerEvent Pointer\n * event.\n * @return {boolean} If the left mouse button was pressed.\n * @private\n */\n MapBrowserEventHandler.prototype.isMouseActionButton_ = function (pointerEvent) {\n return pointerEvent.button === 0;\n };\n /**\n * @param {PointerEvent} pointerEvent Pointer\n * event.\n * @private\n */\n MapBrowserEventHandler.prototype.handlePointerDown_ = function (pointerEvent) {\n this.emulateClicks_ = this.activePointers_ === 0;\n this.updateActivePointers_(pointerEvent);\n var newEvent = new MapBrowserEvent(MapBrowserEventType.POINTERDOWN, this.map_, pointerEvent);\n this.dispatchEvent(newEvent);\n // Store a copy of the down event\n this.down_ = /** @type {PointerEvent} */ ({});\n for (var property in pointerEvent) {\n var value = pointerEvent[property];\n this.down_[property] = typeof value === 'function' ? VOID : value;\n }\n if (this.dragListenerKeys_.length === 0) {\n var doc = this.map_.getOwnerDocument();\n this.dragListenerKeys_.push(listen(doc, MapBrowserEventType.POINTERMOVE, this.handlePointerMove_, this), listen(doc, MapBrowserEventType.POINTERUP, this.handlePointerUp_, this), \n /* Note that the listener for `pointercancel is set up on\n * `pointerEventHandler_` and not `documentPointerEventHandler_` like\n * the `pointerup` and `pointermove` listeners.\n *\n * The reason for this is the following: `TouchSource.vacuumTouches_()`\n * issues `pointercancel` events, when there was no `touchend` for a\n * `touchstart`. Now, let's say a first `touchstart` is registered on\n * `pointerEventHandler_`. The `documentPointerEventHandler_` is set up.\n * But `documentPointerEventHandler_` doesn't know about the first\n * `touchstart`. If there is no `touchend` for the `touchstart`, we can\n * only receive a `touchcancel` from `pointerEventHandler_`, because it is\n * only registered there.\n */\n listen(this.element_, MapBrowserEventType.POINTERCANCEL, this.handlePointerUp_, this));\n if (this.element_.getRootNode && this.element_.getRootNode() !== doc) {\n this.dragListenerKeys_.push(listen(this.element_.getRootNode(), MapBrowserEventType.POINTERUP, this.handlePointerUp_, this));\n }\n }\n };\n /**\n * @param {PointerEvent} pointerEvent Pointer\n * event.\n * @private\n */\n MapBrowserEventHandler.prototype.handlePointerMove_ = function (pointerEvent) {\n // Between pointerdown and pointerup, pointermove events are triggered.\n // To avoid a 'false' touchmove event to be dispatched, we test if the pointer\n // moved a significant distance.\n if (this.isMoving_(pointerEvent)) {\n this.dragging_ = true;\n var newEvent = new MapBrowserEvent(MapBrowserEventType.POINTERDRAG, this.map_, pointerEvent, this.dragging_);\n this.dispatchEvent(newEvent);\n }\n };\n /**\n * Wrap and relay a pointer event. Note that this requires that the type\n * string for the MapBrowserEvent matches the PointerEvent type.\n * @param {PointerEvent} pointerEvent Pointer\n * event.\n * @private\n */\n MapBrowserEventHandler.prototype.relayEvent_ = function (pointerEvent) {\n this.originalPointerMoveEvent_ = pointerEvent;\n var dragging = !!(this.down_ && this.isMoving_(pointerEvent));\n this.dispatchEvent(new MapBrowserEvent(pointerEvent.type, this.map_, pointerEvent, dragging));\n };\n /**\n * Flexible handling of a `touch-action: none` css equivalent: because calling\n * `preventDefault()` on a `pointermove` event does not stop native page scrolling\n * and zooming, we also listen for `touchmove` and call `preventDefault()` on it\n * when an interaction (currently `DragPan` handles the event.\n * @param {TouchEvent} event Event.\n * @private\n */\n MapBrowserEventHandler.prototype.handleTouchMove_ = function (event) {\n // Due to https://github.com/mpizenberg/elm-pep/issues/2, `this.originalPointerMoveEvent_`\n // may not be initialized yet when we get here on a platform without native pointer events.\n var originalEvent = this.originalPointerMoveEvent_;\n if ((!originalEvent || originalEvent.defaultPrevented) &&\n (typeof event.cancelable !== 'boolean' || event.cancelable === true)) {\n event.preventDefault();\n }\n };\n /**\n * @param {PointerEvent} pointerEvent Pointer\n * event.\n * @return {boolean} Is moving.\n * @private\n */\n MapBrowserEventHandler.prototype.isMoving_ = function (pointerEvent) {\n return (this.dragging_ ||\n Math.abs(pointerEvent.clientX - this.down_.clientX) >\n this.moveTolerance_ ||\n Math.abs(pointerEvent.clientY - this.down_.clientY) > this.moveTolerance_);\n };\n /**\n * Clean up.\n */\n MapBrowserEventHandler.prototype.disposeInternal = function () {\n if (this.relayedListenerKey_) {\n unlistenByKey(this.relayedListenerKey_);\n this.relayedListenerKey_ = null;\n }\n this.element_.removeEventListener(EventType.TOUCHMOVE, this.boundHandleTouchMove_);\n if (this.pointerdownListenerKey_) {\n unlistenByKey(this.pointerdownListenerKey_);\n this.pointerdownListenerKey_ = null;\n }\n this.dragListenerKeys_.forEach(unlistenByKey);\n this.dragListenerKeys_.length = 0;\n this.element_ = null;\n _super.prototype.disposeInternal.call(this);\n };\n return MapBrowserEventHandler;\n}(Target));\nexport default MapBrowserEventHandler;\n//# sourceMappingURL=MapBrowserEventHandler.js.map","/**\n * @module ol/MapProperty\n */\n/**\n * @enum {string}\n */\nexport default {\n LAYERGROUP: 'layergroup',\n SIZE: 'size',\n TARGET: 'target',\n VIEW: 'view',\n};\n//# sourceMappingURL=MapProperty.js.map","/**\n * @module ol/structs/PriorityQueue\n */\nimport { assert } from '../asserts.js';\nimport { clear } from '../obj.js';\n/**\n * @type {number}\n */\nexport var DROP = Infinity;\n/**\n * @classdesc\n * Priority queue.\n *\n * The implementation is inspired from the Closure Library's Heap class and\n * Python's heapq module.\n *\n * See https://github.com/google/closure-library/blob/master/closure/goog/structs/heap.js\n * and https://hg.python.org/cpython/file/2.7/Lib/heapq.py.\n *\n * @template T\n */\nvar PriorityQueue = /** @class */ (function () {\n /**\n * @param {function(T): number} priorityFunction Priority function.\n * @param {function(T): string} keyFunction Key function.\n */\n function PriorityQueue(priorityFunction, keyFunction) {\n /**\n * @type {function(T): number}\n * @private\n */\n this.priorityFunction_ = priorityFunction;\n /**\n * @type {function(T): string}\n * @private\n */\n this.keyFunction_ = keyFunction;\n /**\n * @type {Array<T>}\n * @private\n */\n this.elements_ = [];\n /**\n * @type {Array<number>}\n * @private\n */\n this.priorities_ = [];\n /**\n * @type {!Object<string, boolean>}\n * @private\n */\n this.queuedElements_ = {};\n }\n /**\n * FIXME empty description for jsdoc\n */\n PriorityQueue.prototype.clear = function () {\n this.elements_.length = 0;\n this.priorities_.length = 0;\n clear(this.queuedElements_);\n };\n /**\n * Remove and return the highest-priority element. O(log N).\n * @return {T} Element.\n */\n PriorityQueue.prototype.dequeue = function () {\n var elements = this.elements_;\n var priorities = this.priorities_;\n var element = elements[0];\n if (elements.length == 1) {\n elements.length = 0;\n priorities.length = 0;\n }\n else {\n elements[0] = elements.pop();\n priorities[0] = priorities.pop();\n this.siftUp_(0);\n }\n var elementKey = this.keyFunction_(element);\n delete this.queuedElements_[elementKey];\n return element;\n };\n /**\n * Enqueue an element. O(log N).\n * @param {T} element Element.\n * @return {boolean} The element was added to the queue.\n */\n PriorityQueue.prototype.enqueue = function (element) {\n assert(!(this.keyFunction_(element) in this.queuedElements_), 31); // Tried to enqueue an `element` that was already added to the queue\n var priority = this.priorityFunction_(element);\n if (priority != DROP) {\n this.elements_.push(element);\n this.priorities_.push(priority);\n this.queuedElements_[this.keyFunction_(element)] = true;\n this.siftDown_(0, this.elements_.length - 1);\n return true;\n }\n return false;\n };\n /**\n * @return {number} Count.\n */\n PriorityQueue.prototype.getCount = function () {\n return this.elements_.length;\n };\n /**\n * Gets the index of the left child of the node at the given index.\n * @param {number} index The index of the node to get the left child for.\n * @return {number} The index of the left child.\n * @private\n */\n PriorityQueue.prototype.getLeftChildIndex_ = function (index) {\n return index * 2 + 1;\n };\n /**\n * Gets the index of the right child of the node at the given index.\n * @param {number} index The index of the node to get the right child for.\n * @return {number} The index of the right child.\n * @private\n */\n PriorityQueue.prototype.getRightChildIndex_ = function (index) {\n return index * 2 + 2;\n };\n /**\n * Gets the index of the parent of the node at the given index.\n * @param {number} index The index of the node to get the parent for.\n * @return {number} The index of the parent.\n * @private\n */\n PriorityQueue.prototype.getParentIndex_ = function (index) {\n return (index - 1) >> 1;\n };\n /**\n * Make this a heap. O(N).\n * @private\n */\n PriorityQueue.prototype.heapify_ = function () {\n var i;\n for (i = (this.elements_.length >> 1) - 1; i >= 0; i--) {\n this.siftUp_(i);\n }\n };\n /**\n * @return {boolean} Is empty.\n */\n PriorityQueue.prototype.isEmpty = function () {\n return this.elements_.length === 0;\n };\n /**\n * @param {string} key Key.\n * @return {boolean} Is key queued.\n */\n PriorityQueue.prototype.isKeyQueued = function (key) {\n return key in this.queuedElements_;\n };\n /**\n * @param {T} element Element.\n * @return {boolean} Is queued.\n */\n PriorityQueue.prototype.isQueued = function (element) {\n return this.isKeyQueued(this.keyFunction_(element));\n };\n /**\n * @param {number} index The index of the node to move down.\n * @private\n */\n PriorityQueue.prototype.siftUp_ = function (index) {\n var elements = this.elements_;\n var priorities = this.priorities_;\n var count = elements.length;\n var element = elements[index];\n var priority = priorities[index];\n var startIndex = index;\n while (index < count >> 1) {\n var lIndex = this.getLeftChildIndex_(index);\n var rIndex = this.getRightChildIndex_(index);\n var smallerChildIndex = rIndex < count && priorities[rIndex] < priorities[lIndex]\n ? rIndex\n : lIndex;\n elements[index] = elements[smallerChildIndex];\n priorities[index] = priorities[smallerChildIndex];\n index = smallerChildIndex;\n }\n elements[index] = element;\n priorities[index] = priority;\n this.siftDown_(startIndex, index);\n };\n /**\n * @param {number} startIndex The index of the root.\n * @param {number} index The index of the node to move up.\n * @private\n */\n PriorityQueue.prototype.siftDown_ = function (startIndex, index) {\n var elements = this.elements_;\n var priorities = this.priorities_;\n var element = elements[index];\n var priority = priorities[index];\n while (index > startIndex) {\n var parentIndex = this.getParentIndex_(index);\n if (priorities[parentIndex] > priority) {\n elements[index] = elements[parentIndex];\n priorities[index] = priorities[parentIndex];\n index = parentIndex;\n }\n else {\n break;\n }\n }\n elements[index] = element;\n priorities[index] = priority;\n };\n /**\n * FIXME empty description for jsdoc\n */\n PriorityQueue.prototype.reprioritize = function () {\n var priorityFunction = this.priorityFunction_;\n var elements = this.elements_;\n var priorities = this.priorities_;\n var index = 0;\n var n = elements.length;\n var element, i, priority;\n for (i = 0; i < n; ++i) {\n element = elements[i];\n priority = priorityFunction(element);\n if (priority == DROP) {\n delete this.queuedElements_[this.keyFunction_(element)];\n }\n else {\n priorities[index] = priority;\n elements[index++] = element;\n }\n }\n elements.length = index;\n priorities.length = index;\n this.heapify_();\n };\n return PriorityQueue;\n}());\nexport default PriorityQueue;\n//# sourceMappingURL=PriorityQueue.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/TileQueue\n */\nimport EventType from './events/EventType.js';\nimport PriorityQueue, { DROP } from './structs/PriorityQueue.js';\nimport TileState from './TileState.js';\n/**\n * @typedef {function(import(\"./Tile.js\").default, string, import(\"./coordinate.js\").Coordinate, number): number} PriorityFunction\n */\nvar TileQueue = /** @class */ (function (_super) {\n __extends(TileQueue, _super);\n /**\n * @param {PriorityFunction} tilePriorityFunction Tile priority function.\n * @param {function(): ?} tileChangeCallback Function called on each tile change event.\n */\n function TileQueue(tilePriorityFunction, tileChangeCallback) {\n var _this = _super.call(this, \n /**\n * @param {Array} element Element.\n * @return {number} Priority.\n */\n function (element) {\n return tilePriorityFunction.apply(null, element);\n }, \n /**\n * @param {Array} element Element.\n * @return {string} Key.\n */\n function (element) {\n return /** @type {import(\"./Tile.js\").default} */ (element[0]).getKey();\n }) || this;\n /** @private */\n _this.boundHandleTileChange_ = _this.handleTileChange.bind(_this);\n /**\n * @private\n * @type {function(): ?}\n */\n _this.tileChangeCallback_ = tileChangeCallback;\n /**\n * @private\n * @type {number}\n */\n _this.tilesLoading_ = 0;\n /**\n * @private\n * @type {!Object<string,boolean>}\n */\n _this.tilesLoadingKeys_ = {};\n return _this;\n }\n /**\n * @param {Array} element Element.\n * @return {boolean} The element was added to the queue.\n */\n TileQueue.prototype.enqueue = function (element) {\n var added = _super.prototype.enqueue.call(this, element);\n if (added) {\n var tile = element[0];\n tile.addEventListener(EventType.CHANGE, this.boundHandleTileChange_);\n }\n return added;\n };\n /**\n * @return {number} Number of tiles loading.\n */\n TileQueue.prototype.getTilesLoading = function () {\n return this.tilesLoading_;\n };\n /**\n * @param {import(\"./events/Event.js\").default} event Event.\n * @protected\n */\n TileQueue.prototype.handleTileChange = function (event) {\n var tile = /** @type {import(\"./Tile.js\").default} */ (event.target);\n var state = tile.getState();\n if (state === TileState.LOADED ||\n state === TileState.ERROR ||\n state === TileState.EMPTY) {\n tile.removeEventListener(EventType.CHANGE, this.boundHandleTileChange_);\n var tileKey = tile.getKey();\n if (tileKey in this.tilesLoadingKeys_) {\n delete this.tilesLoadingKeys_[tileKey];\n --this.tilesLoading_;\n }\n this.tileChangeCallback_();\n }\n };\n /**\n * @param {number} maxTotalLoading Maximum number tiles to load simultaneously.\n * @param {number} maxNewLoads Maximum number of new tiles to load.\n */\n TileQueue.prototype.loadMoreTiles = function (maxTotalLoading, maxNewLoads) {\n var newLoads = 0;\n var state, tile, tileKey;\n while (this.tilesLoading_ < maxTotalLoading &&\n newLoads < maxNewLoads &&\n this.getCount() > 0) {\n tile = /** @type {import(\"./Tile.js\").default} */ (this.dequeue()[0]);\n tileKey = tile.getKey();\n state = tile.getState();\n if (state === TileState.IDLE && !(tileKey in this.tilesLoadingKeys_)) {\n this.tilesLoadingKeys_[tileKey] = true;\n ++this.tilesLoading_;\n ++newLoads;\n tile.load();\n }\n }\n };\n return TileQueue;\n}(PriorityQueue));\nexport default TileQueue;\n/**\n * @param {import('./PluggableMap.js').FrameState} frameState Frame state.\n * @param {import(\"./Tile.js\").default} tile Tile.\n * @param {string} tileSourceKey Tile source key.\n * @param {import(\"./coordinate.js\").Coordinate} tileCenter Tile center.\n * @param {number} tileResolution Tile resolution.\n * @return {number} Tile priority.\n */\nexport function getTilePriority(frameState, tile, tileSourceKey, tileCenter, tileResolution) {\n // Filter out tiles at higher zoom levels than the current zoom level, or that\n // are outside the visible extent.\n if (!frameState || !(tileSourceKey in frameState.wantedTiles)) {\n return DROP;\n }\n if (!frameState.wantedTiles[tileSourceKey][tile.getKey()]) {\n return DROP;\n }\n // Prioritize the highest zoom level tiles closest to the focus.\n // Tiles at higher zoom levels are prioritized using Math.log(tileResolution).\n // Within a zoom level, tiles are prioritized by the distance in pixels between\n // the center of the tile and the center of the viewport. The factor of 65536\n // means that the prioritization should behave as desired for tiles up to\n // 65536 * Math.log(2) = 45426 pixels from the focus.\n var center = frameState.viewState.center;\n var deltaX = tileCenter[0] - center[0];\n var deltaY = tileCenter[1] - center[1];\n return (65536 * Math.log(tileResolution) +\n Math.sqrt(deltaX * deltaX + deltaY * deltaY) / tileResolution);\n}\n//# sourceMappingURL=TileQueue.js.map","/**\n * @module ol/ViewProperty\n */\n/**\n * @enum {string}\n */\nexport default {\n CENTER: 'center',\n RESOLUTION: 'resolution',\n ROTATION: 'rotation',\n};\n//# sourceMappingURL=ViewProperty.js.map","/**\n * @module ol/centerconstraint\n */\nimport { clamp } from './math.js';\n/**\n * @typedef {function((import(\"./coordinate.js\").Coordinate|undefined), number, import(\"./size.js\").Size, boolean=, Array<number>=): (import(\"./coordinate.js\").Coordinate|undefined)} Type\n */\n/**\n * @param {import(\"./extent.js\").Extent} extent Extent.\n * @param {boolean} onlyCenter If true, the constraint will only apply to the view center.\n * @param {boolean} smooth If true, the view will be able to go slightly out of the given extent\n * (only during interaction and animation).\n * @return {Type} The constraint.\n */\nexport function createExtent(extent, onlyCenter, smooth) {\n return (\n /**\n * @param {import(\"./coordinate.js\").Coordinate|undefined} center Center.\n * @param {number|undefined} resolution Resolution.\n * @param {import(\"./size.js\").Size} size Viewport size; unused if `onlyCenter` was specified.\n * @param {boolean} [opt_isMoving] True if an interaction or animation is in progress.\n * @param {Array<number>} [opt_centerShift] Shift between map center and viewport center.\n * @return {import(\"./coordinate.js\").Coordinate|undefined} Center.\n */\n function (center, resolution, size, opt_isMoving, opt_centerShift) {\n if (!center) {\n return undefined;\n }\n if (!resolution && !onlyCenter) {\n return center;\n }\n var viewWidth = onlyCenter ? 0 : size[0] * resolution;\n var viewHeight = onlyCenter ? 0 : size[1] * resolution;\n var shiftX = opt_centerShift ? opt_centerShift[0] : 0;\n var shiftY = opt_centerShift ? opt_centerShift[1] : 0;\n var minX = extent[0] + viewWidth / 2 + shiftX;\n var maxX = extent[2] - viewWidth / 2 + shiftX;\n var minY = extent[1] + viewHeight / 2 + shiftY;\n var maxY = extent[3] - viewHeight / 2 + shiftY;\n // note: when zooming out of bounds, min and max values for x and y may\n // end up inverted (min > max); this has to be accounted for\n if (minX > maxX) {\n minX = (maxX + minX) / 2;\n maxX = minX;\n }\n if (minY > maxY) {\n minY = (maxY + minY) / 2;\n maxY = minY;\n }\n var x = clamp(center[0], minX, maxX);\n var y = clamp(center[1], minY, maxY);\n // during an interaction, allow some overscroll\n if (opt_isMoving && smooth && resolution) {\n var ratio = 30 * resolution;\n x +=\n -ratio * Math.log(1 + Math.max(0, minX - center[0]) / ratio) +\n ratio * Math.log(1 + Math.max(0, center[0] - maxX) / ratio);\n y +=\n -ratio * Math.log(1 + Math.max(0, minY - center[1]) / ratio) +\n ratio * Math.log(1 + Math.max(0, center[1] - maxY) / ratio);\n }\n return [x, y];\n });\n}\n/**\n * @param {import(\"./coordinate.js\").Coordinate} [center] Center.\n * @return {import(\"./coordinate.js\").Coordinate|undefined} Center.\n */\nexport function none(center) {\n return center;\n}\n//# sourceMappingURL=centerconstraint.js.map","/**\n * @module ol/resolutionconstraint\n */\nimport { clamp } from './math.js';\nimport { getHeight, getWidth } from './extent.js';\nimport { linearFindNearest } from './array.js';\n/**\n * @typedef {function((number|undefined), number, import(\"./size.js\").Size, boolean=): (number|undefined)} Type\n */\n/**\n * Returns a modified resolution taking into account the viewport size and maximum\n * allowed extent.\n * @param {number} resolution Resolution\n * @param {import(\"./extent.js\").Extent} maxExtent Maximum allowed extent.\n * @param {import(\"./size.js\").Size} viewportSize Viewport size.\n * @param {boolean} showFullExtent Whether to show the full extent.\n * @return {number} Capped resolution.\n */\nfunction getViewportClampedResolution(resolution, maxExtent, viewportSize, showFullExtent) {\n var xResolution = getWidth(maxExtent) / viewportSize[0];\n var yResolution = getHeight(maxExtent) / viewportSize[1];\n if (showFullExtent) {\n return Math.min(resolution, Math.max(xResolution, yResolution));\n }\n return Math.min(resolution, Math.min(xResolution, yResolution));\n}\n/**\n * Returns a modified resolution to be between maxResolution and minResolution while\n * still allowing the value to be slightly out of bounds.\n * Note: the computation is based on the logarithm function (ln):\n * - at 1, ln(x) is 0\n * - above 1, ln(x) keeps increasing but at a much slower pace than x\n * The final result is clamped to prevent getting too far away from bounds.\n * @param {number} resolution Resolution.\n * @param {number} maxResolution Max resolution.\n * @param {number} minResolution Min resolution.\n * @return {number} Smoothed resolution.\n */\nfunction getSmoothClampedResolution(resolution, maxResolution, minResolution) {\n var result = Math.min(resolution, maxResolution);\n var ratio = 50;\n result *=\n Math.log(1 + ratio * Math.max(0, resolution / maxResolution - 1)) / ratio +\n 1;\n if (minResolution) {\n result = Math.max(result, minResolution);\n result /=\n Math.log(1 + ratio * Math.max(0, minResolution / resolution - 1)) /\n ratio +\n 1;\n }\n return clamp(result, minResolution / 2, maxResolution * 2);\n}\n/**\n * @param {Array<number>} resolutions Resolutions.\n * @param {boolean} [opt_smooth] If true, the view will be able to slightly exceed resolution limits. Default: true.\n * @param {import(\"./extent.js\").Extent} [opt_maxExtent] Maximum allowed extent.\n * @param {boolean} [opt_showFullExtent] If true, allows us to show the full extent. Default: false.\n * @return {Type} Zoom function.\n */\nexport function createSnapToResolutions(resolutions, opt_smooth, opt_maxExtent, opt_showFullExtent) {\n return (\n /**\n * @param {number|undefined} resolution Resolution.\n * @param {number} direction Direction.\n * @param {import(\"./size.js\").Size} size Viewport size.\n * @param {boolean} [opt_isMoving] True if an interaction or animation is in progress.\n * @return {number|undefined} Resolution.\n */\n function (resolution, direction, size, opt_isMoving) {\n if (resolution !== undefined) {\n var maxResolution = resolutions[0];\n var minResolution = resolutions[resolutions.length - 1];\n var cappedMaxRes = opt_maxExtent\n ? getViewportClampedResolution(maxResolution, opt_maxExtent, size, opt_showFullExtent)\n : maxResolution;\n // during interacting or animating, allow intermediary values\n if (opt_isMoving) {\n var smooth = opt_smooth !== undefined ? opt_smooth : true;\n if (!smooth) {\n return clamp(resolution, minResolution, cappedMaxRes);\n }\n return getSmoothClampedResolution(resolution, cappedMaxRes, minResolution);\n }\n var capped = Math.min(cappedMaxRes, resolution);\n var z = Math.floor(linearFindNearest(resolutions, capped, direction));\n if (resolutions[z] > cappedMaxRes && z < resolutions.length - 1) {\n return resolutions[z + 1];\n }\n return resolutions[z];\n }\n else {\n return undefined;\n }\n });\n}\n/**\n * @param {number} power Power.\n * @param {number} maxResolution Maximum resolution.\n * @param {number} [opt_minResolution] Minimum resolution.\n * @param {boolean} [opt_smooth] If true, the view will be able to slightly exceed resolution limits. Default: true.\n * @param {import(\"./extent.js\").Extent} [opt_maxExtent] Maximum allowed extent.\n * @param {boolean} [opt_showFullExtent] If true, allows us to show the full extent. Default: false.\n * @return {Type} Zoom function.\n */\nexport function createSnapToPower(power, maxResolution, opt_minResolution, opt_smooth, opt_maxExtent, opt_showFullExtent) {\n return (\n /**\n * @param {number|undefined} resolution Resolution.\n * @param {number} direction Direction.\n * @param {import(\"./size.js\").Size} size Viewport size.\n * @param {boolean} [opt_isMoving] True if an interaction or animation is in progress.\n * @return {number|undefined} Resolution.\n */\n function (resolution, direction, size, opt_isMoving) {\n if (resolution !== undefined) {\n var cappedMaxRes = opt_maxExtent\n ? getViewportClampedResolution(maxResolution, opt_maxExtent, size, opt_showFullExtent)\n : maxResolution;\n var minResolution = opt_minResolution !== undefined ? opt_minResolution : 0;\n // during interacting or animating, allow intermediary values\n if (opt_isMoving) {\n var smooth = opt_smooth !== undefined ? opt_smooth : true;\n if (!smooth) {\n return clamp(resolution, minResolution, cappedMaxRes);\n }\n return getSmoothClampedResolution(resolution, cappedMaxRes, minResolution);\n }\n var tolerance = 1e-9;\n var minZoomLevel = Math.ceil(Math.log(maxResolution / cappedMaxRes) / Math.log(power) - tolerance);\n var offset = -direction * (0.5 - tolerance) + 0.5;\n var capped = Math.min(cappedMaxRes, resolution);\n var cappedZoomLevel = Math.floor(Math.log(maxResolution / capped) / Math.log(power) + offset);\n var zoomLevel = Math.max(minZoomLevel, cappedZoomLevel);\n var newResolution = maxResolution / Math.pow(power, zoomLevel);\n return clamp(newResolution, minResolution, cappedMaxRes);\n }\n else {\n return undefined;\n }\n });\n}\n/**\n * @param {number} maxResolution Max resolution.\n * @param {number} minResolution Min resolution.\n * @param {boolean} [opt_smooth] If true, the view will be able to slightly exceed resolution limits. Default: true.\n * @param {import(\"./extent.js\").Extent} [opt_maxExtent] Maximum allowed extent.\n * @param {boolean} [opt_showFullExtent] If true, allows us to show the full extent. Default: false.\n * @return {Type} Zoom function.\n */\nexport function createMinMaxResolution(maxResolution, minResolution, opt_smooth, opt_maxExtent, opt_showFullExtent) {\n return (\n /**\n * @param {number|undefined} resolution Resolution.\n * @param {number} direction Direction.\n * @param {import(\"./size.js\").Size} size Viewport size.\n * @param {boolean} [opt_isMoving] True if an interaction or animation is in progress.\n * @return {number|undefined} Resolution.\n */\n function (resolution, direction, size, opt_isMoving) {\n if (resolution !== undefined) {\n var cappedMaxRes = opt_maxExtent\n ? getViewportClampedResolution(maxResolution, opt_maxExtent, size, opt_showFullExtent)\n : maxResolution;\n var smooth = opt_smooth !== undefined ? opt_smooth : true;\n if (!smooth || !opt_isMoving) {\n return clamp(resolution, minResolution, cappedMaxRes);\n }\n return getSmoothClampedResolution(resolution, cappedMaxRes, minResolution);\n }\n else {\n return undefined;\n }\n });\n}\n//# sourceMappingURL=resolutionconstraint.js.map","/**\n * @module ol/rotationconstraint\n */\nimport { toRadians } from './math.js';\n/**\n * @typedef {function((number|undefined), boolean=): (number|undefined)} Type\n */\n/**\n * @param {number|undefined} rotation Rotation.\n * @return {number|undefined} Rotation.\n */\nexport function disable(rotation) {\n if (rotation !== undefined) {\n return 0;\n }\n else {\n return undefined;\n }\n}\n/**\n * @param {number|undefined} rotation Rotation.\n * @return {number|undefined} Rotation.\n */\nexport function none(rotation) {\n if (rotation !== undefined) {\n return rotation;\n }\n else {\n return undefined;\n }\n}\n/**\n * @param {number} n N.\n * @return {Type} Rotation constraint.\n */\nexport function createSnapToN(n) {\n var theta = (2 * Math.PI) / n;\n return (\n /**\n * @param {number|undefined} rotation Rotation.\n * @param {boolean} [opt_isMoving] True if an interaction or animation is in progress.\n * @return {number|undefined} Rotation.\n */\n function (rotation, opt_isMoving) {\n if (opt_isMoving) {\n return rotation;\n }\n if (rotation !== undefined) {\n rotation = Math.floor(rotation / theta + 0.5) * theta;\n return rotation;\n }\n else {\n return undefined;\n }\n });\n}\n/**\n * @param {number} [opt_tolerance] Tolerance.\n * @return {Type} Rotation constraint.\n */\nexport function createSnapToZero(opt_tolerance) {\n var tolerance = opt_tolerance || toRadians(5);\n return (\n /**\n * @param {number|undefined} rotation Rotation.\n * @param {boolean} [opt_isMoving] True if an interaction or animation is in progress.\n * @return {number|undefined} Rotation.\n */\n function (rotation, opt_isMoving) {\n if (opt_isMoving) {\n return rotation;\n }\n if (rotation !== undefined) {\n if (Math.abs(rotation) <= tolerance) {\n return 0;\n }\n else {\n return rotation;\n }\n }\n else {\n return undefined;\n }\n });\n}\n//# sourceMappingURL=rotationconstraint.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/View\n */\nimport BaseObject from './Object.js';\nimport GeometryType from './geom/GeometryType.js';\nimport Units from './proj/Units.js';\nimport ViewHint from './ViewHint.js';\nimport ViewProperty from './ViewProperty.js';\nimport { DEFAULT_TILE_SIZE } from './tilegrid/common.js';\nimport { METERS_PER_UNIT, createProjection, disableCoordinateWarning, fromUserCoordinate, fromUserExtent, getUserProjection, toUserCoordinate, toUserExtent, } from './proj.js';\nimport { VOID } from './functions.js';\nimport { add as addCoordinate, equals as coordinatesEqual, equals, rotate as rotateCoordinate, } from './coordinate.js';\nimport { assert } from './asserts.js';\nimport { assign } from './obj.js';\nimport { none as centerNone, createExtent } from './centerconstraint.js';\nimport { clamp, modulo } from './math.js';\nimport { createMinMaxResolution, createSnapToPower, createSnapToResolutions, } from './resolutionconstraint.js';\nimport { createSnapToN, createSnapToZero, disable, none as rotationNone, } from './rotationconstraint.js';\nimport { easeOut, inAndOut } from './easing.js';\nimport { getCenter, getForViewAndSize, getHeight, getWidth, isEmpty, } from './extent.js';\nimport { linearFindNearest } from './array.js';\nimport { fromExtent as polygonFromExtent } from './geom/Polygon.js';\n/**\n * An animation configuration\n *\n * @typedef {Object} Animation\n * @property {import(\"./coordinate.js\").Coordinate} [sourceCenter] Source center.\n * @property {import(\"./coordinate.js\").Coordinate} [targetCenter] Target center.\n * @property {number} [sourceResolution] Source resolution.\n * @property {number} [targetResolution] Target resolution.\n * @property {number} [sourceRotation] Source rotation.\n * @property {number} [targetRotation] Target rotation.\n * @property {import(\"./coordinate.js\").Coordinate} [anchor] Anchor.\n * @property {number} start Start.\n * @property {number} duration Duration.\n * @property {boolean} complete Complete.\n * @property {function(number):number} easing Easing.\n * @property {function(boolean):void} callback Callback.\n */\n/**\n * @typedef {Object} Constraints\n * @property {import(\"./centerconstraint.js\").Type} center Center.\n * @property {import(\"./resolutionconstraint.js\").Type} resolution Resolution.\n * @property {import(\"./rotationconstraint.js\").Type} rotation Rotation.\n */\n/**\n * @typedef {Object} FitOptions\n * @property {import(\"./size.js\").Size} [size] The size in pixels of the box to fit\n * the extent into. Default is the current size of the first map in the DOM that\n * uses this view, or `[100, 100]` if no such map is found.\n * @property {!Array<number>} [padding=[0, 0, 0, 0]] Padding (in pixels) to be\n * cleared inside the view. Values in the array are top, right, bottom and left\n * padding.\n * @property {boolean} [nearest=false] If the view `constrainResolution` option is `true`,\n * get the nearest extent instead of the closest that actually fits the view.\n * @property {number} [minResolution=0] Minimum resolution that we zoom to.\n * @property {number} [maxZoom] Maximum zoom level that we zoom to. If\n * `minResolution` is given, this property is ignored.\n * @property {number} [duration] The duration of the animation in milliseconds.\n * By default, there is no animation to the target extent.\n * @property {function(number):number} [easing] The easing function used during\n * the animation (defaults to {@link module:ol/easing.inAndOut}).\n * The function will be called for each frame with a number representing a\n * fraction of the animation's duration. The function should return a number\n * between 0 and 1 representing the progress toward the destination state.\n * @property {function(boolean):void} [callback] Function called when the view is in\n * its final position. The callback will be called with `true` if the animation\n * series completed on its own or `false` if it was cancelled.\n */\n/**\n * @typedef {Object} ViewOptions\n * @property {import(\"./coordinate.js\").Coordinate} [center] The initial center for\n * the view. If a user projection is not set, the coordinate system for the center is\n * specified with the `projection` option. Layer sources will not be fetched if this\n * is not set, but the center can be set later with {@link #setCenter}.\n * @property {boolean|number} [constrainRotation=true] Rotation constraint.\n * `false` means no constraint. `true` means no constraint, but snap to zero\n * near zero. A number constrains the rotation to that number of values. For\n * example, `4` will constrain the rotation to 0, 90, 180, and 270 degrees.\n * @property {boolean} [enableRotation=true] Enable rotation.\n * If `false`, a rotation constraint that always sets the rotation to zero is\n * used. The `constrainRotation` option has no effect if `enableRotation` is\n * `false`.\n * @property {import(\"./extent.js\").Extent} [extent] The extent that constrains the\n * view, in other words, nothing outside of this extent can be visible on the map.\n * @property {boolean} [constrainOnlyCenter=false] If true, the extent\n * constraint will only apply to the view center and not the whole extent.\n * @property {boolean} [smoothExtentConstraint=true] If true, the extent\n * constraint will be applied smoothly, i.e. allow the view to go slightly outside\n * of the given `extent`.\n * @property {number} [maxResolution] The maximum resolution used to determine\n * the resolution constraint. It is used together with `minResolution` (or\n * `maxZoom`) and `zoomFactor`. If unspecified it is calculated in such a way\n * that the projection's validity extent fits in a 256x256 px tile. If the\n * projection is Spherical Mercator (the default) then `maxResolution` defaults\n * to `40075016.68557849 / 256 = 156543.03392804097`.\n * @property {number} [minResolution] The minimum resolution used to determine\n * the resolution constraint. It is used together with `maxResolution` (or\n * `minZoom`) and `zoomFactor`. If unspecified it is calculated assuming 29\n * zoom levels (with a factor of 2). If the projection is Spherical Mercator\n * (the default) then `minResolution` defaults to\n * `40075016.68557849 / 256 / Math.pow(2, 28) = 0.0005831682455839253`.\n * @property {number} [maxZoom=28] The maximum zoom level used to determine the\n * resolution constraint. It is used together with `minZoom` (or\n * `maxResolution`) and `zoomFactor`. Note that if `minResolution` is also\n * provided, it is given precedence over `maxZoom`.\n * @property {number} [minZoom=0] The minimum zoom level used to determine the\n * resolution constraint. It is used together with `maxZoom` (or\n * `minResolution`) and `zoomFactor`. Note that if `maxResolution` is also\n * provided, it is given precedence over `minZoom`.\n * @property {boolean} [multiWorld=false] If `false` the view is constrained so\n * only one world is visible, and you cannot pan off the edge. If `true` the map\n * may show multiple worlds at low zoom levels. Only used if the `projection` is\n * global. Note that if `extent` is also provided it is given precedence.\n * @property {boolean} [constrainResolution=false] If true, the view will always\n * animate to the closest zoom level after an interaction; false means\n * intermediary zoom levels are allowed.\n * @property {boolean} [smoothResolutionConstraint=true] If true, the resolution\n * min/max values will be applied smoothly, i. e. allow the view to exceed slightly\n * the given resolution or zoom bounds.\n * @property {boolean} [showFullExtent=false] Allow the view to be zoomed out to\n * show the full configured extent. By default, when a view is configured with an\n * extent, users will not be able to zoom out so the viewport exceeds the extent in\n * either dimension. This means the full extent may not be visible if the viewport\n * is taller or wider than the aspect ratio of the configured extent. If\n * showFullExtent is true, the user will be able to zoom out so that the viewport\n * exceeds the height or width of the configured extent, but not both, allowing the\n * full extent to be shown.\n * @property {import(\"./proj.js\").ProjectionLike} [projection='EPSG:3857'] The\n * projection. The default is Spherical Mercator.\n * @property {number} [resolution] The initial resolution for the view. The\n * units are `projection` units per pixel (e.g. meters per pixel). An\n * alternative to setting this is to set `zoom`. Layer sources will not be\n * fetched if neither this nor `zoom` are defined, but they can be set later\n * with {@link #setZoom} or {@link #setResolution}.\n * @property {Array<number>} [resolutions] Resolutions that determine the\n * zoom levels if specified. The index in the array corresponds to the zoom level,\n * therefore the resolution values have to be in descending order. It also constrains\n * the resolution by the minimum and maximum value. If set the `maxResolution`,\n * `minResolution`, `minZoom`, `maxZoom`, and `zoomFactor` options are ignored.\n * @property {number} [rotation=0] The initial rotation for the view in radians\n * (positive rotation clockwise, 0 means North).\n * @property {number} [zoom] Only used if `resolution` is not defined. Zoom\n * level used to calculate the initial resolution for the view.\n * @property {number} [zoomFactor=2] The zoom factor used to compute the\n * corresponding resolution.\n * @property {!Array<number>} [padding=[0, 0, 0, 0]] Padding (in css pixels).\n * If the map viewport is partially covered with other content (overlays) along\n * its edges, this setting allows to shift the center of the viewport away from\n * that content. The order of the values is top, right, bottom, left.\n */\n/**\n * @typedef {Object} AnimationOptions\n * @property {import(\"./coordinate.js\").Coordinate} [center] The center of the view at the end of\n * the animation.\n * @property {number} [zoom] The zoom level of the view at the end of the\n * animation. This takes precedence over `resolution`.\n * @property {number} [resolution] The resolution of the view at the end\n * of the animation. If `zoom` is also provided, this option will be ignored.\n * @property {number} [rotation] The rotation of the view at the end of\n * the animation.\n * @property {import(\"./coordinate.js\").Coordinate} [anchor] Optional anchor to remain fixed\n * during a rotation or resolution animation.\n * @property {number} [duration=1000] The duration of the animation in milliseconds.\n * @property {function(number):number} [easing] The easing function used\n * during the animation (defaults to {@link module:ol/easing.inAndOut}).\n * The function will be called for each frame with a number representing a\n * fraction of the animation's duration. The function should return a number\n * between 0 and 1 representing the progress toward the destination state.\n */\n/**\n * @typedef {Object} State\n * @property {import(\"./coordinate.js\").Coordinate} center Center.\n * @property {import(\"./proj/Projection.js\").default} projection Projection.\n * @property {number} resolution Resolution.\n * @property {import(\"./coordinate.js\").Coordinate} [nextCenter] The next center during an animation series.\n * @property {number} [nextResolution] The next resolution during an animation series.\n * @property {number} [nextRotation] The next rotation during an animation series.\n * @property {number} rotation Rotation.\n * @property {number} zoom Zoom.\n */\n/**\n * Default min zoom level for the map view.\n * @type {number}\n */\nvar DEFAULT_MIN_ZOOM = 0;\n/**\n * @typedef {import(\"./ObjectEventType\").Types|'change:center'|'change:resolution'|'change:rotation'} ViewObjectEventTypes\n */\n/***\n * @template Return\n * @typedef {import(\"./Observable\").OnSignature<import(\"./Observable\").EventTypes, import(\"./events/Event.js\").default, Return> &\n * import(\"./Observable\").OnSignature<ViewObjectEventTypes, import(\"./Object\").ObjectEvent, Return> &\n * import(\"./Observable\").CombinedOnSignature<import(\"./Observable\").EventTypes|ViewObjectEventTypes, Return>} ViewOnSignature\n */\n/**\n * @classdesc\n * A View object represents a simple 2D view of the map.\n *\n * This is the object to act upon to change the center, resolution,\n * and rotation of the map.\n *\n * A View has a `projection`. The projection determines the\n * coordinate system of the center, and its units determine the units of the\n * resolution (projection units per pixel). The default projection is\n * Web Mercator (EPSG:3857).\n *\n * ### The view states\n *\n * A View is determined by three states: `center`, `resolution`,\n * and `rotation`. Each state has a corresponding getter and setter, e.g.\n * `getCenter` and `setCenter` for the `center` state.\n *\n * The `zoom` state is actually not saved on the view: all computations\n * internally use the `resolution` state. Still, the `setZoom` and `getZoom`\n * methods are available, as well as `getResolutionForZoom` and\n * `getZoomForResolution` to switch from one system to the other.\n *\n * ### The constraints\n *\n * `setCenter`, `setResolution` and `setRotation` can be used to change the\n * states of the view, but any constraint defined in the constructor will\n * be applied along the way.\n *\n * A View object can have a *resolution constraint*, a *rotation constraint*\n * and a *center constraint*.\n *\n * The *resolution constraint* typically restricts min/max values and\n * snaps to specific resolutions. It is determined by the following\n * options: `resolutions`, `maxResolution`, `maxZoom` and `zoomFactor`.\n * If `resolutions` is set, the other three options are ignored. See\n * documentation for each option for more information. By default, the view\n * only has a min/max restriction and allow intermediary zoom levels when\n * pinch-zooming for example.\n *\n * The *rotation constraint* snaps to specific angles. It is determined\n * by the following options: `enableRotation` and `constrainRotation`.\n * By default rotation is allowed and its value is snapped to zero when approaching the\n * horizontal.\n *\n * The *center constraint* is determined by the `extent` option. By\n * default the view center is not constrained at all.\n *\n * ### Changing the view state\n *\n * It is important to note that `setZoom`, `setResolution`, `setCenter` and\n * `setRotation` are subject to the above mentioned constraints. As such, it\n * may sometimes not be possible to know in advance the resulting state of the\n * View. For example, calling `setResolution(10)` does not guarantee that\n * `getResolution()` will return `10`.\n *\n * A consequence of this is that, when applying a delta on the view state, one\n * should use `adjustCenter`, `adjustRotation`, `adjustZoom` and `adjustResolution`\n * rather than the corresponding setters. This will let view do its internal\n * computations. Besides, the `adjust*` methods also take an `opt_anchor`\n * argument which allows specifying an origin for the transformation.\n *\n * ### Interacting with the view\n *\n * View constraints are usually only applied when the view is *at rest*, meaning that\n * no interaction or animation is ongoing. As such, if the user puts the view in a\n * state that is not equivalent to a constrained one (e.g. rotating the view when\n * the snap angle is 0), an animation will be triggered at the interaction end to\n * put back the view to a stable state;\n *\n * @api\n */\nvar View = /** @class */ (function (_super) {\n __extends(View, _super);\n /**\n * @param {ViewOptions} [opt_options] View options.\n */\n function View(opt_options) {\n var _this = _super.call(this) || this;\n /***\n * @type {ViewOnSignature<import(\"./events\").EventsKey>}\n */\n _this.on;\n /***\n * @type {ViewOnSignature<import(\"./events\").EventsKey>}\n */\n _this.once;\n /***\n * @type {ViewOnSignature<void>}\n */\n _this.un;\n var options = assign({}, opt_options);\n /**\n * @private\n * @type {Array<number>}\n */\n _this.hints_ = [0, 0];\n /**\n * @private\n * @type {Array<Array<Animation>>}\n */\n _this.animations_ = [];\n /**\n * @private\n * @type {number|undefined}\n */\n _this.updateAnimationKey_;\n /**\n * @private\n * @const\n * @type {import(\"./proj/Projection.js\").default}\n */\n _this.projection_ = createProjection(options.projection, 'EPSG:3857');\n /**\n * @private\n * @type {import(\"./size.js\").Size}\n */\n _this.viewportSize_ = [100, 100];\n /**\n * @private\n * @type {import(\"./coordinate.js\").Coordinate|undefined}\n */\n _this.targetCenter_ = null;\n /**\n * @private\n * @type {number|undefined}\n */\n _this.targetResolution_;\n /**\n * @private\n * @type {number|undefined}\n */\n _this.targetRotation_;\n /**\n * @private\n * @type {import(\"./coordinate.js\").Coordinate}\n */\n _this.nextCenter_ = null;\n /**\n * @private\n * @type {number}\n */\n _this.nextResolution_;\n /**\n * @private\n * @type {number}\n */\n _this.nextRotation_;\n /**\n * @private\n * @type {import(\"./coordinate.js\").Coordinate|undefined}\n */\n _this.cancelAnchor_ = undefined;\n if (options.projection) {\n disableCoordinateWarning();\n }\n if (options.center) {\n options.center = fromUserCoordinate(options.center, _this.projection_);\n }\n if (options.extent) {\n options.extent = fromUserExtent(options.extent, _this.projection_);\n }\n _this.applyOptions_(options);\n return _this;\n }\n /**\n * Set up the view with the given options.\n * @param {ViewOptions} options View options.\n */\n View.prototype.applyOptions_ = function (options) {\n var properties = assign({}, options);\n for (var key in ViewProperty) {\n delete properties[key];\n }\n this.setProperties(properties, true);\n var resolutionConstraintInfo = createResolutionConstraint(options);\n /**\n * @private\n * @type {number}\n */\n this.maxResolution_ = resolutionConstraintInfo.maxResolution;\n /**\n * @private\n * @type {number}\n */\n this.minResolution_ = resolutionConstraintInfo.minResolution;\n /**\n * @private\n * @type {number}\n */\n this.zoomFactor_ = resolutionConstraintInfo.zoomFactor;\n /**\n * @private\n * @type {Array<number>|undefined}\n */\n this.resolutions_ = options.resolutions;\n /**\n * @type {Array<number>|undefined}\n * @private\n */\n this.padding_ = options.padding;\n /**\n * @private\n * @type {number}\n */\n this.minZoom_ = resolutionConstraintInfo.minZoom;\n var centerConstraint = createCenterConstraint(options);\n var resolutionConstraint = resolutionConstraintInfo.constraint;\n var rotationConstraint = createRotationConstraint(options);\n /**\n * @private\n * @type {Constraints}\n */\n this.constraints_ = {\n center: centerConstraint,\n resolution: resolutionConstraint,\n rotation: rotationConstraint,\n };\n this.setRotation(options.rotation !== undefined ? options.rotation : 0);\n this.setCenterInternal(options.center !== undefined ? options.center : null);\n if (options.resolution !== undefined) {\n this.setResolution(options.resolution);\n }\n else if (options.zoom !== undefined) {\n this.setZoom(options.zoom);\n }\n };\n Object.defineProperty(View.prototype, \"padding\", {\n /**\n * Padding (in css pixels).\n * If the map viewport is partially covered with other content (overlays) along\n * its edges, this setting allows to shift the center of the viewport away from that\n * content. The order of the values in the array is top, right, bottom, left.\n * The default is no padding, which is equivalent to `[0, 0, 0, 0]`.\n * @type {Array<number>|undefined}\n * @api\n */\n get: function () {\n return this.padding_;\n },\n set: function (padding) {\n var oldPadding = this.padding_;\n this.padding_ = padding;\n var center = this.getCenter();\n if (center) {\n var newPadding = padding || [0, 0, 0, 0];\n oldPadding = oldPadding || [0, 0, 0, 0];\n var resolution = this.getResolution();\n var offsetX = (resolution / 2) *\n (newPadding[3] - oldPadding[3] + oldPadding[1] - newPadding[1]);\n var offsetY = (resolution / 2) *\n (newPadding[0] - oldPadding[0] + oldPadding[2] - newPadding[2]);\n this.setCenterInternal([center[0] + offsetX, center[1] - offsetY]);\n }\n },\n enumerable: false,\n configurable: true\n });\n /**\n * Get an updated version of the view options used to construct the view. The\n * current resolution (or zoom), center, and rotation are applied to any stored\n * options. The provided options can be used to apply new min/max zoom or\n * resolution limits.\n * @param {ViewOptions} newOptions New options to be applied.\n * @return {ViewOptions} New options updated with the current view state.\n */\n View.prototype.getUpdatedOptions_ = function (newOptions) {\n var options = this.getProperties();\n // preserve resolution (or zoom)\n if (options.resolution !== undefined) {\n options.resolution = this.getResolution();\n }\n else {\n options.zoom = this.getZoom();\n }\n // preserve center\n options.center = this.getCenterInternal();\n // preserve rotation\n options.rotation = this.getRotation();\n return assign({}, options, newOptions);\n };\n /**\n * Animate the view. The view's center, zoom (or resolution), and rotation\n * can be animated for smooth transitions between view states. For example,\n * to animate the view to a new zoom level:\n *\n * view.animate({zoom: view.getZoom() + 1});\n *\n * By default, the animation lasts one second and uses in-and-out easing. You\n * can customize this behavior by including `duration` (in milliseconds) and\n * `easing` options (see {@link module:ol/easing}).\n *\n * To chain together multiple animations, call the method with multiple\n * animation objects. For example, to first zoom and then pan:\n *\n * view.animate({zoom: 10}, {center: [0, 0]});\n *\n * If you provide a function as the last argument to the animate method, it\n * will get called at the end of an animation series. The callback will be\n * called with `true` if the animation series completed on its own or `false`\n * if it was cancelled.\n *\n * Animations are cancelled by user interactions (e.g. dragging the map) or by\n * calling `view.setCenter()`, `view.setResolution()`, or `view.setRotation()`\n * (or another method that calls one of these).\n *\n * @param {...(AnimationOptions|function(boolean): void)} var_args Animation\n * options. Multiple animations can be run in series by passing multiple\n * options objects. To run multiple animations in parallel, call the method\n * multiple times. An optional callback can be provided as a final\n * argument. The callback will be called with a boolean indicating whether\n * the animation completed without being cancelled.\n * @api\n */\n View.prototype.animate = function (var_args) {\n if (this.isDef() && !this.getAnimating()) {\n this.resolveConstraints(0);\n }\n var args = new Array(arguments.length);\n for (var i = 0; i < args.length; ++i) {\n var options = arguments[i];\n if (options.center) {\n options = assign({}, options);\n options.center = fromUserCoordinate(options.center, this.getProjection());\n }\n if (options.anchor) {\n options = assign({}, options);\n options.anchor = fromUserCoordinate(options.anchor, this.getProjection());\n }\n args[i] = options;\n }\n this.animateInternal.apply(this, args);\n };\n /**\n * @param {...(AnimationOptions|function(boolean): void)} var_args Animation options.\n */\n View.prototype.animateInternal = function (var_args) {\n var animationCount = arguments.length;\n var callback;\n if (animationCount > 1 &&\n typeof arguments[animationCount - 1] === 'function') {\n callback = arguments[animationCount - 1];\n --animationCount;\n }\n var i = 0;\n for (; i < animationCount && !this.isDef(); ++i) {\n // if view properties are not yet set, shortcut to the final state\n var state = arguments[i];\n if (state.center) {\n this.setCenterInternal(state.center);\n }\n if (state.zoom !== undefined) {\n this.setZoom(state.zoom);\n }\n else if (state.resolution) {\n this.setResolution(state.resolution);\n }\n if (state.rotation !== undefined) {\n this.setRotation(state.rotation);\n }\n }\n if (i === animationCount) {\n if (callback) {\n animationCallback(callback, true);\n }\n return;\n }\n var start = Date.now();\n var center = this.targetCenter_.slice();\n var resolution = this.targetResolution_;\n var rotation = this.targetRotation_;\n var series = [];\n for (; i < animationCount; ++i) {\n var options = /** @type {AnimationOptions} */ (arguments[i]);\n var animation = {\n start: start,\n complete: false,\n anchor: options.anchor,\n duration: options.duration !== undefined ? options.duration : 1000,\n easing: options.easing || inAndOut,\n callback: callback,\n };\n if (options.center) {\n animation.sourceCenter = center;\n animation.targetCenter = options.center.slice();\n center = animation.targetCenter;\n }\n if (options.zoom !== undefined) {\n animation.sourceResolution = resolution;\n animation.targetResolution = this.getResolutionForZoom(options.zoom);\n resolution = animation.targetResolution;\n }\n else if (options.resolution) {\n animation.sourceResolution = resolution;\n animation.targetResolution = options.resolution;\n resolution = animation.targetResolution;\n }\n if (options.rotation !== undefined) {\n animation.sourceRotation = rotation;\n var delta = modulo(options.rotation - rotation + Math.PI, 2 * Math.PI) - Math.PI;\n animation.targetRotation = rotation + delta;\n rotation = animation.targetRotation;\n }\n // check if animation is a no-op\n if (isNoopAnimation(animation)) {\n animation.complete = true;\n // we still push it onto the series for callback handling\n }\n else {\n start += animation.duration;\n }\n series.push(animation);\n }\n this.animations_.push(series);\n this.setHint(ViewHint.ANIMATING, 1);\n this.updateAnimations_();\n };\n /**\n * Determine if the view is being animated.\n * @return {boolean} The view is being animated.\n * @api\n */\n View.prototype.getAnimating = function () {\n return this.hints_[ViewHint.ANIMATING] > 0;\n };\n /**\n * Determine if the user is interacting with the view, such as panning or zooming.\n * @return {boolean} The view is being interacted with.\n * @api\n */\n View.prototype.getInteracting = function () {\n return this.hints_[ViewHint.INTERACTING] > 0;\n };\n /**\n * Cancel any ongoing animations.\n * @api\n */\n View.prototype.cancelAnimations = function () {\n this.setHint(ViewHint.ANIMATING, -this.hints_[ViewHint.ANIMATING]);\n var anchor;\n for (var i = 0, ii = this.animations_.length; i < ii; ++i) {\n var series = this.animations_[i];\n if (series[0].callback) {\n animationCallback(series[0].callback, false);\n }\n if (!anchor) {\n for (var j = 0, jj = series.length; j < jj; ++j) {\n var animation = series[j];\n if (!animation.complete) {\n anchor = animation.anchor;\n break;\n }\n }\n }\n }\n this.animations_.length = 0;\n this.cancelAnchor_ = anchor;\n this.nextCenter_ = null;\n this.nextResolution_ = NaN;\n this.nextRotation_ = NaN;\n };\n /**\n * Update all animations.\n */\n View.prototype.updateAnimations_ = function () {\n if (this.updateAnimationKey_ !== undefined) {\n cancelAnimationFrame(this.updateAnimationKey_);\n this.updateAnimationKey_ = undefined;\n }\n if (!this.getAnimating()) {\n return;\n }\n var now = Date.now();\n var more = false;\n for (var i = this.animations_.length - 1; i >= 0; --i) {\n var series = this.animations_[i];\n var seriesComplete = true;\n for (var j = 0, jj = series.length; j < jj; ++j) {\n var animation = series[j];\n if (animation.complete) {\n continue;\n }\n var elapsed = now - animation.start;\n var fraction = animation.duration > 0 ? elapsed / animation.duration : 1;\n if (fraction >= 1) {\n animation.complete = true;\n fraction = 1;\n }\n else {\n seriesComplete = false;\n }\n var progress = animation.easing(fraction);\n if (animation.sourceCenter) {\n var x0 = animation.sourceCenter[0];\n var y0 = animation.sourceCenter[1];\n var x1 = animation.targetCenter[0];\n var y1 = animation.targetCenter[1];\n this.nextCenter_ = animation.targetCenter;\n var x = x0 + progress * (x1 - x0);\n var y = y0 + progress * (y1 - y0);\n this.targetCenter_ = [x, y];\n }\n if (animation.sourceResolution && animation.targetResolution) {\n var resolution = progress === 1\n ? animation.targetResolution\n : animation.sourceResolution +\n progress *\n (animation.targetResolution - animation.sourceResolution);\n if (animation.anchor) {\n var size = this.getViewportSize_(this.getRotation());\n var constrainedResolution = this.constraints_.resolution(resolution, 0, size, true);\n this.targetCenter_ = this.calculateCenterZoom(constrainedResolution, animation.anchor);\n }\n this.nextResolution_ = animation.targetResolution;\n this.targetResolution_ = resolution;\n this.applyTargetState_(true);\n }\n if (animation.sourceRotation !== undefined &&\n animation.targetRotation !== undefined) {\n var rotation = progress === 1\n ? modulo(animation.targetRotation + Math.PI, 2 * Math.PI) -\n Math.PI\n : animation.sourceRotation +\n progress *\n (animation.targetRotation - animation.sourceRotation);\n if (animation.anchor) {\n var constrainedRotation = this.constraints_.rotation(rotation, true);\n this.targetCenter_ = this.calculateCenterRotate(constrainedRotation, animation.anchor);\n }\n this.nextRotation_ = animation.targetRotation;\n this.targetRotation_ = rotation;\n }\n this.applyTargetState_(true);\n more = true;\n if (!animation.complete) {\n break;\n }\n }\n if (seriesComplete) {\n this.animations_[i] = null;\n this.setHint(ViewHint.ANIMATING, -1);\n this.nextCenter_ = null;\n this.nextResolution_ = NaN;\n this.nextRotation_ = NaN;\n var callback = series[0].callback;\n if (callback) {\n animationCallback(callback, true);\n }\n }\n }\n // prune completed series\n this.animations_ = this.animations_.filter(Boolean);\n if (more && this.updateAnimationKey_ === undefined) {\n this.updateAnimationKey_ = requestAnimationFrame(this.updateAnimations_.bind(this));\n }\n };\n /**\n * @param {number} rotation Target rotation.\n * @param {import(\"./coordinate.js\").Coordinate} anchor Rotation anchor.\n * @return {import(\"./coordinate.js\").Coordinate|undefined} Center for rotation and anchor.\n */\n View.prototype.calculateCenterRotate = function (rotation, anchor) {\n var center;\n var currentCenter = this.getCenterInternal();\n if (currentCenter !== undefined) {\n center = [currentCenter[0] - anchor[0], currentCenter[1] - anchor[1]];\n rotateCoordinate(center, rotation - this.getRotation());\n addCoordinate(center, anchor);\n }\n return center;\n };\n /**\n * @param {number} resolution Target resolution.\n * @param {import(\"./coordinate.js\").Coordinate} anchor Zoom anchor.\n * @return {import(\"./coordinate.js\").Coordinate|undefined} Center for resolution and anchor.\n */\n View.prototype.calculateCenterZoom = function (resolution, anchor) {\n var center;\n var currentCenter = this.getCenterInternal();\n var currentResolution = this.getResolution();\n if (currentCenter !== undefined && currentResolution !== undefined) {\n var x = anchor[0] -\n (resolution * (anchor[0] - currentCenter[0])) / currentResolution;\n var y = anchor[1] -\n (resolution * (anchor[1] - currentCenter[1])) / currentResolution;\n center = [x, y];\n }\n return center;\n };\n /**\n * Returns the current viewport size.\n * @private\n * @param {number} [opt_rotation] Take into account the rotation of the viewport when giving the size\n * @return {import(\"./size.js\").Size} Viewport size or `[100, 100]` when no viewport is found.\n */\n View.prototype.getViewportSize_ = function (opt_rotation) {\n var size = this.viewportSize_;\n if (opt_rotation) {\n var w = size[0];\n var h = size[1];\n return [\n Math.abs(w * Math.cos(opt_rotation)) +\n Math.abs(h * Math.sin(opt_rotation)),\n Math.abs(w * Math.sin(opt_rotation)) +\n Math.abs(h * Math.cos(opt_rotation)),\n ];\n }\n else {\n return size;\n }\n };\n /**\n * Stores the viewport size on the view. The viewport size is not read every time from the DOM\n * to avoid performance hit and layout reflow.\n * This should be done on map size change.\n * Note: the constraints are not resolved during an animation to avoid stopping it\n * @param {import(\"./size.js\").Size} [opt_size] Viewport size; if undefined, [100, 100] is assumed\n */\n View.prototype.setViewportSize = function (opt_size) {\n this.viewportSize_ = Array.isArray(opt_size)\n ? opt_size.slice()\n : [100, 100];\n if (!this.getAnimating()) {\n this.resolveConstraints(0);\n }\n };\n /**\n * Get the view center.\n * @return {import(\"./coordinate.js\").Coordinate|undefined} The center of the view.\n * @observable\n * @api\n */\n View.prototype.getCenter = function () {\n var center = this.getCenterInternal();\n if (!center) {\n return center;\n }\n return toUserCoordinate(center, this.getProjection());\n };\n /**\n * Get the view center without transforming to user projection.\n * @return {import(\"./coordinate.js\").Coordinate|undefined} The center of the view.\n */\n View.prototype.getCenterInternal = function () {\n return /** @type {import(\"./coordinate.js\").Coordinate|undefined} */ (this.get(ViewProperty.CENTER));\n };\n /**\n * @return {Constraints} Constraints.\n */\n View.prototype.getConstraints = function () {\n return this.constraints_;\n };\n /**\n * @return {boolean} Resolution constraint is set\n */\n View.prototype.getConstrainResolution = function () {\n return this.get('constrainResolution');\n };\n /**\n * @param {Array<number>} [opt_hints] Destination array.\n * @return {Array<number>} Hint.\n */\n View.prototype.getHints = function (opt_hints) {\n if (opt_hints !== undefined) {\n opt_hints[0] = this.hints_[0];\n opt_hints[1] = this.hints_[1];\n return opt_hints;\n }\n else {\n return this.hints_.slice();\n }\n };\n /**\n * Calculate the extent for the current view state and the passed size.\n * The size is the pixel dimensions of the box into which the calculated extent\n * should fit. In most cases you want to get the extent of the entire map,\n * that is `map.getSize()`.\n * @param {import(\"./size.js\").Size} [opt_size] Box pixel size. If not provided, the size\n * of the map that uses this view will be used.\n * @return {import(\"./extent.js\").Extent} Extent.\n * @api\n */\n View.prototype.calculateExtent = function (opt_size) {\n var extent = this.calculateExtentInternal(opt_size);\n return toUserExtent(extent, this.getProjection());\n };\n /**\n * @param {import(\"./size.js\").Size} [opt_size] Box pixel size. If not provided,\n * the map's last known viewport size will be used.\n * @return {import(\"./extent.js\").Extent} Extent.\n */\n View.prototype.calculateExtentInternal = function (opt_size) {\n var size = opt_size || this.getViewportSizeMinusPadding_();\n var center = /** @type {!import(\"./coordinate.js\").Coordinate} */ (this.getCenterInternal());\n assert(center, 1); // The view center is not defined\n var resolution = /** @type {!number} */ (this.getResolution());\n assert(resolution !== undefined, 2); // The view resolution is not defined\n var rotation = /** @type {!number} */ (this.getRotation());\n assert(rotation !== undefined, 3); // The view rotation is not defined\n return getForViewAndSize(center, resolution, rotation, size);\n };\n /**\n * Get the maximum resolution of the view.\n * @return {number} The maximum resolution of the view.\n * @api\n */\n View.prototype.getMaxResolution = function () {\n return this.maxResolution_;\n };\n /**\n * Get the minimum resolution of the view.\n * @return {number} The minimum resolution of the view.\n * @api\n */\n View.prototype.getMinResolution = function () {\n return this.minResolution_;\n };\n /**\n * Get the maximum zoom level for the view.\n * @return {number} The maximum zoom level.\n * @api\n */\n View.prototype.getMaxZoom = function () {\n return /** @type {number} */ (this.getZoomForResolution(this.minResolution_));\n };\n /**\n * Set a new maximum zoom level for the view.\n * @param {number} zoom The maximum zoom level.\n * @api\n */\n View.prototype.setMaxZoom = function (zoom) {\n this.applyOptions_(this.getUpdatedOptions_({ maxZoom: zoom }));\n };\n /**\n * Get the minimum zoom level for the view.\n * @return {number} The minimum zoom level.\n * @api\n */\n View.prototype.getMinZoom = function () {\n return /** @type {number} */ (this.getZoomForResolution(this.maxResolution_));\n };\n /**\n * Set a new minimum zoom level for the view.\n * @param {number} zoom The minimum zoom level.\n * @api\n */\n View.prototype.setMinZoom = function (zoom) {\n this.applyOptions_(this.getUpdatedOptions_({ minZoom: zoom }));\n };\n /**\n * Set whether the view should allow intermediary zoom levels.\n * @param {boolean} enabled Whether the resolution is constrained.\n * @api\n */\n View.prototype.setConstrainResolution = function (enabled) {\n this.applyOptions_(this.getUpdatedOptions_({ constrainResolution: enabled }));\n };\n /**\n * Get the view projection.\n * @return {import(\"./proj/Projection.js\").default} The projection of the view.\n * @api\n */\n View.prototype.getProjection = function () {\n return this.projection_;\n };\n /**\n * Get the view resolution.\n * @return {number|undefined} The resolution of the view.\n * @observable\n * @api\n */\n View.prototype.getResolution = function () {\n return /** @type {number|undefined} */ (this.get(ViewProperty.RESOLUTION));\n };\n /**\n * Get the resolutions for the view. This returns the array of resolutions\n * passed to the constructor of the View, or undefined if none were given.\n * @return {Array<number>|undefined} The resolutions of the view.\n * @api\n */\n View.prototype.getResolutions = function () {\n return this.resolutions_;\n };\n /**\n * Get the resolution for a provided extent (in map units) and size (in pixels).\n * @param {import(\"./extent.js\").Extent} extent Extent.\n * @param {import(\"./size.js\").Size} [opt_size] Box pixel size.\n * @return {number} The resolution at which the provided extent will render at\n * the given size.\n * @api\n */\n View.prototype.getResolutionForExtent = function (extent, opt_size) {\n return this.getResolutionForExtentInternal(fromUserExtent(extent, this.getProjection()), opt_size);\n };\n /**\n * Get the resolution for a provided extent (in map units) and size (in pixels).\n * @param {import(\"./extent.js\").Extent} extent Extent.\n * @param {import(\"./size.js\").Size} [opt_size] Box pixel size.\n * @return {number} The resolution at which the provided extent will render at\n * the given size.\n */\n View.prototype.getResolutionForExtentInternal = function (extent, opt_size) {\n var size = opt_size || this.getViewportSizeMinusPadding_();\n var xResolution = getWidth(extent) / size[0];\n var yResolution = getHeight(extent) / size[1];\n return Math.max(xResolution, yResolution);\n };\n /**\n * Return a function that returns a value between 0 and 1 for a\n * resolution. Exponential scaling is assumed.\n * @param {number} [opt_power] Power.\n * @return {function(number): number} Resolution for value function.\n */\n View.prototype.getResolutionForValueFunction = function (opt_power) {\n var power = opt_power || 2;\n var maxResolution = this.getConstrainedResolution(this.maxResolution_);\n var minResolution = this.minResolution_;\n var max = Math.log(maxResolution / minResolution) / Math.log(power);\n return (\n /**\n * @param {number} value Value.\n * @return {number} Resolution.\n */\n function (value) {\n var resolution = maxResolution / Math.pow(power, value * max);\n return resolution;\n });\n };\n /**\n * Get the view rotation.\n * @return {number} The rotation of the view in radians.\n * @observable\n * @api\n */\n View.prototype.getRotation = function () {\n return /** @type {number} */ (this.get(ViewProperty.ROTATION));\n };\n /**\n * Return a function that returns a resolution for a value between\n * 0 and 1. Exponential scaling is assumed.\n * @param {number} [opt_power] Power.\n * @return {function(number): number} Value for resolution function.\n */\n View.prototype.getValueForResolutionFunction = function (opt_power) {\n var logPower = Math.log(opt_power || 2);\n var maxResolution = this.getConstrainedResolution(this.maxResolution_);\n var minResolution = this.minResolution_;\n var max = Math.log(maxResolution / minResolution) / logPower;\n return (\n /**\n * @param {number} resolution Resolution.\n * @return {number} Value.\n */\n function (resolution) {\n var value = Math.log(maxResolution / resolution) / logPower / max;\n return value;\n });\n };\n /**\n * Returns the size of the viewport minus padding.\n * @private\n * @param {number} [opt_rotation] Take into account the rotation of the viewport when giving the size\n * @return {import(\"./size.js\").Size} Viewport size reduced by the padding.\n */\n View.prototype.getViewportSizeMinusPadding_ = function (opt_rotation) {\n var size = this.getViewportSize_(opt_rotation);\n var padding = this.padding_;\n if (padding) {\n size = [\n size[0] - padding[1] - padding[3],\n size[1] - padding[0] - padding[2],\n ];\n }\n return size;\n };\n /**\n * @return {State} View state.\n */\n View.prototype.getState = function () {\n var projection = this.getProjection();\n var resolution = this.getResolution();\n var rotation = this.getRotation();\n var center = /** @type {import(\"./coordinate.js\").Coordinate} */ (this.getCenterInternal());\n var padding = this.padding_;\n if (padding) {\n var reducedSize = this.getViewportSizeMinusPadding_();\n center = calculateCenterOn(center, this.getViewportSize_(), [reducedSize[0] / 2 + padding[3], reducedSize[1] / 2 + padding[0]], resolution, rotation);\n }\n return {\n center: center.slice(0),\n projection: projection !== undefined ? projection : null,\n resolution: resolution,\n nextCenter: this.nextCenter_,\n nextResolution: this.nextResolution_,\n nextRotation: this.nextRotation_,\n rotation: rotation,\n zoom: this.getZoom(),\n };\n };\n /**\n * Get the current zoom level. This method may return non-integer zoom levels\n * if the view does not constrain the resolution, or if an interaction or\n * animation is underway.\n * @return {number|undefined} Zoom.\n * @api\n */\n View.prototype.getZoom = function () {\n var zoom;\n var resolution = this.getResolution();\n if (resolution !== undefined) {\n zoom = this.getZoomForResolution(resolution);\n }\n return zoom;\n };\n /**\n * Get the zoom level for a resolution.\n * @param {number} resolution The resolution.\n * @return {number|undefined} The zoom level for the provided resolution.\n * @api\n */\n View.prototype.getZoomForResolution = function (resolution) {\n var offset = this.minZoom_ || 0;\n var max, zoomFactor;\n if (this.resolutions_) {\n var nearest = linearFindNearest(this.resolutions_, resolution, 1);\n offset = nearest;\n max = this.resolutions_[nearest];\n if (nearest == this.resolutions_.length - 1) {\n zoomFactor = 2;\n }\n else {\n zoomFactor = max / this.resolutions_[nearest + 1];\n }\n }\n else {\n max = this.maxResolution_;\n zoomFactor = this.zoomFactor_;\n }\n return offset + Math.log(max / resolution) / Math.log(zoomFactor);\n };\n /**\n * Get the resolution for a zoom level.\n * @param {number} zoom Zoom level.\n * @return {number} The view resolution for the provided zoom level.\n * @api\n */\n View.prototype.getResolutionForZoom = function (zoom) {\n if (this.resolutions_) {\n if (this.resolutions_.length <= 1) {\n return 0;\n }\n var baseLevel = clamp(Math.floor(zoom), 0, this.resolutions_.length - 2);\n var zoomFactor = this.resolutions_[baseLevel] / this.resolutions_[baseLevel + 1];\n return (this.resolutions_[baseLevel] /\n Math.pow(zoomFactor, clamp(zoom - baseLevel, 0, 1)));\n }\n else {\n return (this.maxResolution_ / Math.pow(this.zoomFactor_, zoom - this.minZoom_));\n }\n };\n /**\n * Fit the given geometry or extent based on the given map size and border.\n * The size is pixel dimensions of the box to fit the extent into.\n * In most cases you will want to use the map size, that is `map.getSize()`.\n * Takes care of the map angle.\n * @param {import(\"./geom/SimpleGeometry.js\").default|import(\"./extent.js\").Extent} geometryOrExtent The geometry or\n * extent to fit the view to.\n * @param {FitOptions} [opt_options] Options.\n * @api\n */\n View.prototype.fit = function (geometryOrExtent, opt_options) {\n /** @type {import(\"./geom/SimpleGeometry.js\").default} */\n var geometry;\n assert(Array.isArray(geometryOrExtent) ||\n typeof ( /** @type {?} */(geometryOrExtent).getSimplifiedGeometry) ===\n 'function', 24); // Invalid extent or geometry provided as `geometry`\n if (Array.isArray(geometryOrExtent)) {\n assert(!isEmpty(geometryOrExtent), 25); // Cannot fit empty extent provided as `geometry`\n var extent = fromUserExtent(geometryOrExtent, this.getProjection());\n geometry = polygonFromExtent(extent);\n }\n else if (geometryOrExtent.getType() === GeometryType.CIRCLE) {\n var extent = fromUserExtent(geometryOrExtent.getExtent(), this.getProjection());\n geometry = polygonFromExtent(extent);\n geometry.rotate(this.getRotation(), getCenter(extent));\n }\n else {\n var userProjection = getUserProjection();\n if (userProjection) {\n geometry = /** @type {import(\"./geom/SimpleGeometry.js\").default} */ (geometryOrExtent\n .clone()\n .transform(userProjection, this.getProjection()));\n }\n else {\n geometry = geometryOrExtent;\n }\n }\n this.fitInternal(geometry, opt_options);\n };\n /**\n * Calculate rotated extent\n * @param {import(\"./geom/SimpleGeometry.js\").default} geometry The geometry.\n * @return {import(\"./extent\").Extent} The rotated extent for the geometry.\n */\n View.prototype.rotatedExtentForGeometry = function (geometry) {\n var rotation = this.getRotation();\n var cosAngle = Math.cos(rotation);\n var sinAngle = Math.sin(-rotation);\n var coords = geometry.getFlatCoordinates();\n var stride = geometry.getStride();\n var minRotX = +Infinity;\n var minRotY = +Infinity;\n var maxRotX = -Infinity;\n var maxRotY = -Infinity;\n for (var i = 0, ii = coords.length; i < ii; i += stride) {\n var rotX = coords[i] * cosAngle - coords[i + 1] * sinAngle;\n var rotY = coords[i] * sinAngle + coords[i + 1] * cosAngle;\n minRotX = Math.min(minRotX, rotX);\n minRotY = Math.min(minRotY, rotY);\n maxRotX = Math.max(maxRotX, rotX);\n maxRotY = Math.max(maxRotY, rotY);\n }\n return [minRotX, minRotY, maxRotX, maxRotY];\n };\n /**\n * @param {import(\"./geom/SimpleGeometry.js\").default} geometry The geometry.\n * @param {FitOptions} [opt_options] Options.\n */\n View.prototype.fitInternal = function (geometry, opt_options) {\n var options = opt_options || {};\n var size = options.size;\n if (!size) {\n size = this.getViewportSizeMinusPadding_();\n }\n var padding = options.padding !== undefined ? options.padding : [0, 0, 0, 0];\n var nearest = options.nearest !== undefined ? options.nearest : false;\n var minResolution;\n if (options.minResolution !== undefined) {\n minResolution = options.minResolution;\n }\n else if (options.maxZoom !== undefined) {\n minResolution = this.getResolutionForZoom(options.maxZoom);\n }\n else {\n minResolution = 0;\n }\n var rotatedExtent = this.rotatedExtentForGeometry(geometry);\n // calculate resolution\n var resolution = this.getResolutionForExtentInternal(rotatedExtent, [\n size[0] - padding[1] - padding[3],\n size[1] - padding[0] - padding[2],\n ]);\n resolution = isNaN(resolution)\n ? minResolution\n : Math.max(resolution, minResolution);\n resolution = this.getConstrainedResolution(resolution, nearest ? 0 : 1);\n // calculate center\n var rotation = this.getRotation();\n var sinAngle = Math.sin(rotation);\n var cosAngle = Math.cos(rotation);\n var centerRot = getCenter(rotatedExtent);\n centerRot[0] += ((padding[1] - padding[3]) / 2) * resolution;\n centerRot[1] += ((padding[0] - padding[2]) / 2) * resolution;\n var centerX = centerRot[0] * cosAngle - centerRot[1] * sinAngle;\n var centerY = centerRot[1] * cosAngle + centerRot[0] * sinAngle;\n var center = this.getConstrainedCenter([centerX, centerY], resolution);\n var callback = options.callback ? options.callback : VOID;\n if (options.duration !== undefined) {\n this.animateInternal({\n resolution: resolution,\n center: center,\n duration: options.duration,\n easing: options.easing,\n }, callback);\n }\n else {\n this.targetResolution_ = resolution;\n this.targetCenter_ = center;\n this.applyTargetState_(false, true);\n animationCallback(callback, true);\n }\n };\n /**\n * Center on coordinate and view position.\n * @param {import(\"./coordinate.js\").Coordinate} coordinate Coordinate.\n * @param {import(\"./size.js\").Size} size Box pixel size.\n * @param {import(\"./pixel.js\").Pixel} position Position on the view to center on.\n * @api\n */\n View.prototype.centerOn = function (coordinate, size, position) {\n this.centerOnInternal(fromUserCoordinate(coordinate, this.getProjection()), size, position);\n };\n /**\n * @param {import(\"./coordinate.js\").Coordinate} coordinate Coordinate.\n * @param {import(\"./size.js\").Size} size Box pixel size.\n * @param {import(\"./pixel.js\").Pixel} position Position on the view to center on.\n */\n View.prototype.centerOnInternal = function (coordinate, size, position) {\n this.setCenterInternal(calculateCenterOn(coordinate, size, position, this.getResolution(), this.getRotation()));\n };\n /**\n * Calculates the shift between map and viewport center.\n * @param {import(\"./coordinate.js\").Coordinate} center Center.\n * @param {number} resolution Resolution.\n * @param {number} rotation Rotation.\n * @param {import(\"./size.js\").Size} size Size.\n * @return {Array<number>|undefined} Center shift.\n */\n View.prototype.calculateCenterShift = function (center, resolution, rotation, size) {\n var centerShift;\n var padding = this.padding_;\n if (padding && center) {\n var reducedSize = this.getViewportSizeMinusPadding_(-rotation);\n var shiftedCenter = calculateCenterOn(center, size, [reducedSize[0] / 2 + padding[3], reducedSize[1] / 2 + padding[0]], resolution, rotation);\n centerShift = [\n center[0] - shiftedCenter[0],\n center[1] - shiftedCenter[1],\n ];\n }\n return centerShift;\n };\n /**\n * @return {boolean} Is defined.\n */\n View.prototype.isDef = function () {\n return !!this.getCenterInternal() && this.getResolution() !== undefined;\n };\n /**\n * Adds relative coordinates to the center of the view. Any extent constraint will apply.\n * @param {import(\"./coordinate.js\").Coordinate} deltaCoordinates Relative value to add.\n * @api\n */\n View.prototype.adjustCenter = function (deltaCoordinates) {\n var center = toUserCoordinate(this.targetCenter_, this.getProjection());\n this.setCenter([\n center[0] + deltaCoordinates[0],\n center[1] + deltaCoordinates[1],\n ]);\n };\n /**\n * Adds relative coordinates to the center of the view. Any extent constraint will apply.\n * @param {import(\"./coordinate.js\").Coordinate} deltaCoordinates Relative value to add.\n */\n View.prototype.adjustCenterInternal = function (deltaCoordinates) {\n var center = this.targetCenter_;\n this.setCenterInternal([\n center[0] + deltaCoordinates[0],\n center[1] + deltaCoordinates[1],\n ]);\n };\n /**\n * Multiply the view resolution by a ratio, optionally using an anchor. Any resolution\n * constraint will apply.\n * @param {number} ratio The ratio to apply on the view resolution.\n * @param {import(\"./coordinate.js\").Coordinate} [opt_anchor] The origin of the transformation.\n * @api\n */\n View.prototype.adjustResolution = function (ratio, opt_anchor) {\n var anchor = opt_anchor && fromUserCoordinate(opt_anchor, this.getProjection());\n this.adjustResolutionInternal(ratio, anchor);\n };\n /**\n * Multiply the view resolution by a ratio, optionally using an anchor. Any resolution\n * constraint will apply.\n * @param {number} ratio The ratio to apply on the view resolution.\n * @param {import(\"./coordinate.js\").Coordinate} [opt_anchor] The origin of the transformation.\n */\n View.prototype.adjustResolutionInternal = function (ratio, opt_anchor) {\n var isMoving = this.getAnimating() || this.getInteracting();\n var size = this.getViewportSize_(this.getRotation());\n var newResolution = this.constraints_.resolution(this.targetResolution_ * ratio, 0, size, isMoving);\n if (opt_anchor) {\n this.targetCenter_ = this.calculateCenterZoom(newResolution, opt_anchor);\n }\n this.targetResolution_ *= ratio;\n this.applyTargetState_();\n };\n /**\n * Adds a value to the view zoom level, optionally using an anchor. Any resolution\n * constraint will apply.\n * @param {number} delta Relative value to add to the zoom level.\n * @param {import(\"./coordinate.js\").Coordinate} [opt_anchor] The origin of the transformation.\n * @api\n */\n View.prototype.adjustZoom = function (delta, opt_anchor) {\n this.adjustResolution(Math.pow(this.zoomFactor_, -delta), opt_anchor);\n };\n /**\n * Adds a value to the view rotation, optionally using an anchor. Any rotation\n * constraint will apply.\n * @param {number} delta Relative value to add to the zoom rotation, in radians.\n * @param {import(\"./coordinate.js\").Coordinate} [opt_anchor] The rotation center.\n * @api\n */\n View.prototype.adjustRotation = function (delta, opt_anchor) {\n if (opt_anchor) {\n opt_anchor = fromUserCoordinate(opt_anchor, this.getProjection());\n }\n this.adjustRotationInternal(delta, opt_anchor);\n };\n /**\n * @param {number} delta Relative value to add to the zoom rotation, in radians.\n * @param {import(\"./coordinate.js\").Coordinate} [opt_anchor] The rotation center.\n */\n View.prototype.adjustRotationInternal = function (delta, opt_anchor) {\n var isMoving = this.getAnimating() || this.getInteracting();\n var newRotation = this.constraints_.rotation(this.targetRotation_ + delta, isMoving);\n if (opt_anchor) {\n this.targetCenter_ = this.calculateCenterRotate(newRotation, opt_anchor);\n }\n this.targetRotation_ += delta;\n this.applyTargetState_();\n };\n /**\n * Set the center of the current view. Any extent constraint will apply.\n * @param {import(\"./coordinate.js\").Coordinate|undefined} center The center of the view.\n * @observable\n * @api\n */\n View.prototype.setCenter = function (center) {\n this.setCenterInternal(center ? fromUserCoordinate(center, this.getProjection()) : center);\n };\n /**\n * Set the center using the view projection (not the user projection).\n * @param {import(\"./coordinate.js\").Coordinate|undefined} center The center of the view.\n */\n View.prototype.setCenterInternal = function (center) {\n this.targetCenter_ = center;\n this.applyTargetState_();\n };\n /**\n * @param {import(\"./ViewHint.js\").default} hint Hint.\n * @param {number} delta Delta.\n * @return {number} New value.\n */\n View.prototype.setHint = function (hint, delta) {\n this.hints_[hint] += delta;\n this.changed();\n return this.hints_[hint];\n };\n /**\n * Set the resolution for this view. Any resolution constraint will apply.\n * @param {number|undefined} resolution The resolution of the view.\n * @observable\n * @api\n */\n View.prototype.setResolution = function (resolution) {\n this.targetResolution_ = resolution;\n this.applyTargetState_();\n };\n /**\n * Set the rotation for this view. Any rotation constraint will apply.\n * @param {number} rotation The rotation of the view in radians.\n * @observable\n * @api\n */\n View.prototype.setRotation = function (rotation) {\n this.targetRotation_ = rotation;\n this.applyTargetState_();\n };\n /**\n * Zoom to a specific zoom level. Any resolution constrain will apply.\n * @param {number} zoom Zoom level.\n * @api\n */\n View.prototype.setZoom = function (zoom) {\n this.setResolution(this.getResolutionForZoom(zoom));\n };\n /**\n * Recompute rotation/resolution/center based on target values.\n * Note: we have to compute rotation first, then resolution and center considering that\n * parameters can influence one another in case a view extent constraint is present.\n * @param {boolean} [opt_doNotCancelAnims] Do not cancel animations.\n * @param {boolean} [opt_forceMoving] Apply constraints as if the view is moving.\n * @private\n */\n View.prototype.applyTargetState_ = function (opt_doNotCancelAnims, opt_forceMoving) {\n var isMoving = this.getAnimating() || this.getInteracting() || opt_forceMoving;\n // compute rotation\n var newRotation = this.constraints_.rotation(this.targetRotation_, isMoving);\n var size = this.getViewportSize_(newRotation);\n var newResolution = this.constraints_.resolution(this.targetResolution_, 0, size, isMoving);\n var newCenter = this.constraints_.center(this.targetCenter_, newResolution, size, isMoving, this.calculateCenterShift(this.targetCenter_, newResolution, newRotation, size));\n if (this.get(ViewProperty.ROTATION) !== newRotation) {\n this.set(ViewProperty.ROTATION, newRotation);\n }\n if (this.get(ViewProperty.RESOLUTION) !== newResolution) {\n this.set(ViewProperty.RESOLUTION, newResolution);\n this.set('zoom', this.getZoom(), true);\n }\n if (!newCenter ||\n !this.get(ViewProperty.CENTER) ||\n !equals(this.get(ViewProperty.CENTER), newCenter)) {\n this.set(ViewProperty.CENTER, newCenter);\n }\n if (this.getAnimating() && !opt_doNotCancelAnims) {\n this.cancelAnimations();\n }\n this.cancelAnchor_ = undefined;\n };\n /**\n * If any constraints need to be applied, an animation will be triggered.\n * This is typically done on interaction end.\n * Note: calling this with a duration of 0 will apply the constrained values straight away,\n * without animation.\n * @param {number} [opt_duration] The animation duration in ms.\n * @param {number} [opt_resolutionDirection] Which direction to zoom.\n * @param {import(\"./coordinate.js\").Coordinate} [opt_anchor] The origin of the transformation.\n */\n View.prototype.resolveConstraints = function (opt_duration, opt_resolutionDirection, opt_anchor) {\n var duration = opt_duration !== undefined ? opt_duration : 200;\n var direction = opt_resolutionDirection || 0;\n var newRotation = this.constraints_.rotation(this.targetRotation_);\n var size = this.getViewportSize_(newRotation);\n var newResolution = this.constraints_.resolution(this.targetResolution_, direction, size);\n var newCenter = this.constraints_.center(this.targetCenter_, newResolution, size, false, this.calculateCenterShift(this.targetCenter_, newResolution, newRotation, size));\n if (duration === 0 && !this.cancelAnchor_) {\n this.targetResolution_ = newResolution;\n this.targetRotation_ = newRotation;\n this.targetCenter_ = newCenter;\n this.applyTargetState_();\n return;\n }\n var anchor = opt_anchor || (duration === 0 ? this.cancelAnchor_ : undefined);\n this.cancelAnchor_ = undefined;\n if (this.getResolution() !== newResolution ||\n this.getRotation() !== newRotation ||\n !this.getCenterInternal() ||\n !equals(this.getCenterInternal(), newCenter)) {\n if (this.getAnimating()) {\n this.cancelAnimations();\n }\n this.animateInternal({\n rotation: newRotation,\n center: newCenter,\n resolution: newResolution,\n duration: duration,\n easing: easeOut,\n anchor: anchor,\n });\n }\n };\n /**\n * Notify the View that an interaction has started.\n * The view state will be resolved to a stable one if needed\n * (depending on its constraints).\n * @api\n */\n View.prototype.beginInteraction = function () {\n this.resolveConstraints(0);\n this.setHint(ViewHint.INTERACTING, 1);\n };\n /**\n * Notify the View that an interaction has ended. The view state will be resolved\n * to a stable one if needed (depending on its constraints).\n * @param {number} [opt_duration] Animation duration in ms.\n * @param {number} [opt_resolutionDirection] Which direction to zoom.\n * @param {import(\"./coordinate.js\").Coordinate} [opt_anchor] The origin of the transformation.\n * @api\n */\n View.prototype.endInteraction = function (opt_duration, opt_resolutionDirection, opt_anchor) {\n var anchor = opt_anchor && fromUserCoordinate(opt_anchor, this.getProjection());\n this.endInteractionInternal(opt_duration, opt_resolutionDirection, anchor);\n };\n /**\n * Notify the View that an interaction has ended. The view state will be resolved\n * to a stable one if needed (depending on its constraints).\n * @param {number} [opt_duration] Animation duration in ms.\n * @param {number} [opt_resolutionDirection] Which direction to zoom.\n * @param {import(\"./coordinate.js\").Coordinate} [opt_anchor] The origin of the transformation.\n */\n View.prototype.endInteractionInternal = function (opt_duration, opt_resolutionDirection, opt_anchor) {\n this.setHint(ViewHint.INTERACTING, -1);\n this.resolveConstraints(opt_duration, opt_resolutionDirection, opt_anchor);\n };\n /**\n * Get a valid position for the view center according to the current constraints.\n * @param {import(\"./coordinate.js\").Coordinate|undefined} targetCenter Target center position.\n * @param {number} [opt_targetResolution] Target resolution. If not supplied, the current one will be used.\n * This is useful to guess a valid center position at a different zoom level.\n * @return {import(\"./coordinate.js\").Coordinate|undefined} Valid center position.\n */\n View.prototype.getConstrainedCenter = function (targetCenter, opt_targetResolution) {\n var size = this.getViewportSize_(this.getRotation());\n return this.constraints_.center(targetCenter, opt_targetResolution || this.getResolution(), size);\n };\n /**\n * Get a valid zoom level according to the current view constraints.\n * @param {number|undefined} targetZoom Target zoom.\n * @param {number} [opt_direction=0] Indicate which resolution should be used\n * by a renderer if the view resolution does not match any resolution of the tile source.\n * If 0, the nearest resolution will be used. If 1, the nearest lower resolution\n * will be used. If -1, the nearest higher resolution will be used.\n * @return {number|undefined} Valid zoom level.\n */\n View.prototype.getConstrainedZoom = function (targetZoom, opt_direction) {\n var targetRes = this.getResolutionForZoom(targetZoom);\n return this.getZoomForResolution(this.getConstrainedResolution(targetRes, opt_direction));\n };\n /**\n * Get a valid resolution according to the current view constraints.\n * @param {number|undefined} targetResolution Target resolution.\n * @param {number} [opt_direction=0] Indicate which resolution should be used\n * by a renderer if the view resolution does not match any resolution of the tile source.\n * If 0, the nearest resolution will be used. If 1, the nearest lower resolution\n * will be used. If -1, the nearest higher resolution will be used.\n * @return {number|undefined} Valid resolution.\n */\n View.prototype.getConstrainedResolution = function (targetResolution, opt_direction) {\n var direction = opt_direction || 0;\n var size = this.getViewportSize_(this.getRotation());\n return this.constraints_.resolution(targetResolution, direction, size);\n };\n return View;\n}(BaseObject));\n/**\n * @param {Function} callback Callback.\n * @param {*} returnValue Return value.\n */\nfunction animationCallback(callback, returnValue) {\n setTimeout(function () {\n callback(returnValue);\n }, 0);\n}\n/**\n * @param {ViewOptions} options View options.\n * @return {import(\"./centerconstraint.js\").Type} The constraint.\n */\nexport function createCenterConstraint(options) {\n if (options.extent !== undefined) {\n var smooth = options.smoothExtentConstraint !== undefined\n ? options.smoothExtentConstraint\n : true;\n return createExtent(options.extent, options.constrainOnlyCenter, smooth);\n }\n var projection = createProjection(options.projection, 'EPSG:3857');\n if (options.multiWorld !== true && projection.isGlobal()) {\n var extent = projection.getExtent().slice();\n extent[0] = -Infinity;\n extent[2] = Infinity;\n return createExtent(extent, false, false);\n }\n return centerNone;\n}\n/**\n * @param {ViewOptions} options View options.\n * @return {{constraint: import(\"./resolutionconstraint.js\").Type, maxResolution: number,\n * minResolution: number, minZoom: number, zoomFactor: number}} The constraint.\n */\nexport function createResolutionConstraint(options) {\n var resolutionConstraint;\n var maxResolution;\n var minResolution;\n // TODO: move these to be ol constants\n // see https://github.com/openlayers/openlayers/issues/2076\n var defaultMaxZoom = 28;\n var defaultZoomFactor = 2;\n var minZoom = options.minZoom !== undefined ? options.minZoom : DEFAULT_MIN_ZOOM;\n var maxZoom = options.maxZoom !== undefined ? options.maxZoom : defaultMaxZoom;\n var zoomFactor = options.zoomFactor !== undefined ? options.zoomFactor : defaultZoomFactor;\n var multiWorld = options.multiWorld !== undefined ? options.multiWorld : false;\n var smooth = options.smoothResolutionConstraint !== undefined\n ? options.smoothResolutionConstraint\n : true;\n var showFullExtent = options.showFullExtent !== undefined ? options.showFullExtent : false;\n var projection = createProjection(options.projection, 'EPSG:3857');\n var projExtent = projection.getExtent();\n var constrainOnlyCenter = options.constrainOnlyCenter;\n var extent = options.extent;\n if (!multiWorld && !extent && projection.isGlobal()) {\n constrainOnlyCenter = false;\n extent = projExtent;\n }\n if (options.resolutions !== undefined) {\n var resolutions = options.resolutions;\n maxResolution = resolutions[minZoom];\n minResolution =\n resolutions[maxZoom] !== undefined\n ? resolutions[maxZoom]\n : resolutions[resolutions.length - 1];\n if (options.constrainResolution) {\n resolutionConstraint = createSnapToResolutions(resolutions, smooth, !constrainOnlyCenter && extent, showFullExtent);\n }\n else {\n resolutionConstraint = createMinMaxResolution(maxResolution, minResolution, smooth, !constrainOnlyCenter && extent, showFullExtent);\n }\n }\n else {\n // calculate the default min and max resolution\n var size = !projExtent\n ? // use an extent that can fit the whole world if need be\n (360 * METERS_PER_UNIT[Units.DEGREES]) / projection.getMetersPerUnit()\n : Math.max(getWidth(projExtent), getHeight(projExtent));\n var defaultMaxResolution = size / DEFAULT_TILE_SIZE / Math.pow(defaultZoomFactor, DEFAULT_MIN_ZOOM);\n var defaultMinResolution = defaultMaxResolution /\n Math.pow(defaultZoomFactor, defaultMaxZoom - DEFAULT_MIN_ZOOM);\n // user provided maxResolution takes precedence\n maxResolution = options.maxResolution;\n if (maxResolution !== undefined) {\n minZoom = 0;\n }\n else {\n maxResolution = defaultMaxResolution / Math.pow(zoomFactor, minZoom);\n }\n // user provided minResolution takes precedence\n minResolution = options.minResolution;\n if (minResolution === undefined) {\n if (options.maxZoom !== undefined) {\n if (options.maxResolution !== undefined) {\n minResolution = maxResolution / Math.pow(zoomFactor, maxZoom);\n }\n else {\n minResolution = defaultMaxResolution / Math.pow(zoomFactor, maxZoom);\n }\n }\n else {\n minResolution = defaultMinResolution;\n }\n }\n // given discrete zoom levels, minResolution may be different than provided\n maxZoom =\n minZoom +\n Math.floor(Math.log(maxResolution / minResolution) / Math.log(zoomFactor));\n minResolution = maxResolution / Math.pow(zoomFactor, maxZoom - minZoom);\n if (options.constrainResolution) {\n resolutionConstraint = createSnapToPower(zoomFactor, maxResolution, minResolution, smooth, !constrainOnlyCenter && extent, showFullExtent);\n }\n else {\n resolutionConstraint = createMinMaxResolution(maxResolution, minResolution, smooth, !constrainOnlyCenter && extent, showFullExtent);\n }\n }\n return {\n constraint: resolutionConstraint,\n maxResolution: maxResolution,\n minResolution: minResolution,\n minZoom: minZoom,\n zoomFactor: zoomFactor,\n };\n}\n/**\n * @param {ViewOptions} options View options.\n * @return {import(\"./rotationconstraint.js\").Type} Rotation constraint.\n */\nexport function createRotationConstraint(options) {\n var enableRotation = options.enableRotation !== undefined ? options.enableRotation : true;\n if (enableRotation) {\n var constrainRotation = options.constrainRotation;\n if (constrainRotation === undefined || constrainRotation === true) {\n return createSnapToZero();\n }\n else if (constrainRotation === false) {\n return rotationNone;\n }\n else if (typeof constrainRotation === 'number') {\n return createSnapToN(constrainRotation);\n }\n else {\n return rotationNone;\n }\n }\n else {\n return disable;\n }\n}\n/**\n * Determine if an animation involves no view change.\n * @param {Animation} animation The animation.\n * @return {boolean} The animation involves no view change.\n */\nexport function isNoopAnimation(animation) {\n if (animation.sourceCenter && animation.targetCenter) {\n if (!coordinatesEqual(animation.sourceCenter, animation.targetCenter)) {\n return false;\n }\n }\n if (animation.sourceResolution !== animation.targetResolution) {\n return false;\n }\n if (animation.sourceRotation !== animation.targetRotation) {\n return false;\n }\n return true;\n}\n/**\n * @param {import(\"./coordinate.js\").Coordinate} coordinate Coordinate.\n * @param {import(\"./size.js\").Size} size Box pixel size.\n * @param {import(\"./pixel.js\").Pixel} position Position on the view to center on.\n * @param {number} resolution Resolution.\n * @param {number} rotation Rotation.\n * @return {import(\"./coordinate.js\").Coordinate} Shifted center.\n */\nfunction calculateCenterOn(coordinate, size, position, resolution, rotation) {\n // calculate rotated position\n var cosAngle = Math.cos(-rotation);\n var sinAngle = Math.sin(-rotation);\n var rotX = coordinate[0] * cosAngle - coordinate[1] * sinAngle;\n var rotY = coordinate[1] * cosAngle + coordinate[0] * sinAngle;\n rotX += (size[0] / 2 - position[0]) * resolution;\n rotY += (position[1] - size[1] / 2) * resolution;\n // go back to original angle\n sinAngle = -sinAngle; // go back to original rotation\n var centerX = rotX * cosAngle - rotY * sinAngle;\n var centerY = rotY * cosAngle + rotX * sinAngle;\n return [centerX, centerY];\n}\nexport default View;\n//# sourceMappingURL=View.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/PluggableMap\n */\nimport BaseObject from './Object.js';\nimport Collection from './Collection.js';\nimport CollectionEventType from './CollectionEventType.js';\nimport EventType from './events/EventType.js';\nimport Layer from './layer/Layer.js';\nimport LayerGroup, { GroupEvent } from './layer/Group.js';\nimport MapBrowserEvent from './MapBrowserEvent.js';\nimport MapBrowserEventHandler from './MapBrowserEventHandler.js';\nimport MapBrowserEventType from './MapBrowserEventType.js';\nimport MapEvent from './MapEvent.js';\nimport MapEventType from './MapEventType.js';\nimport MapProperty from './MapProperty.js';\nimport ObjectEventType from './ObjectEventType.js';\nimport PointerEventType from './pointer/EventType.js';\nimport RenderEventType from './render/EventType.js';\nimport TileQueue, { getTilePriority } from './TileQueue.js';\nimport View from './View.js';\nimport ViewHint from './ViewHint.js';\nimport { DEVICE_PIXEL_RATIO, PASSIVE_EVENT_LISTENERS } from './has.js';\nimport { TRUE } from './functions.js';\nimport { apply as applyTransform, create as createTransform, } from './transform.js';\nimport { assert } from './asserts.js';\nimport { clone, createOrUpdateEmpty, equals, getForViewAndSize, isEmpty, } from './extent.js';\nimport { fromUserCoordinate, toUserCoordinate } from './proj.js';\nimport { getUid } from './util.js';\nimport { hasArea } from './size.js';\nimport { listen, unlistenByKey } from './events.js';\nimport { removeNode } from './dom.js';\n/**\n * State of the current frame. Only `pixelRatio`, `time` and `viewState` should\n * be used in applications.\n * @typedef {Object} FrameState\n * @property {number} pixelRatio The pixel ratio of the frame.\n * @property {number} time The time when rendering of the frame was requested.\n * @property {import(\"./View.js\").State} viewState The state of the current view.\n * @property {boolean} animate Animate.\n * @property {import(\"./transform.js\").Transform} coordinateToPixelTransform CoordinateToPixelTransform.\n * @property {import(\"rbush\").default} declutterTree DeclutterTree.\n * @property {null|import(\"./extent.js\").Extent} extent Extent.\n * @property {import(\"./extent.js\").Extent} [nextExtent] Next extent during an animation series.\n * @property {number} index Index.\n * @property {Array<import(\"./layer/Layer.js\").State>} layerStatesArray LayerStatesArray.\n * @property {number} layerIndex LayerIndex.\n * @property {import(\"./transform.js\").Transform} pixelToCoordinateTransform PixelToCoordinateTransform.\n * @property {Array<PostRenderFunction>} postRenderFunctions PostRenderFunctions.\n * @property {import(\"./size.js\").Size} size Size.\n * @property {TileQueue} tileQueue TileQueue.\n * @property {!Object<string, Object<string, boolean>>} usedTiles UsedTiles.\n * @property {Array<number>} viewHints ViewHints.\n * @property {!Object<string, Object<string, boolean>>} wantedTiles WantedTiles.\n * @property {string} mapId The id of the map.\n * @property {Object<string, boolean>} renderTargets Identifiers of previously rendered elements.\n */\n/**\n * @typedef {function(PluggableMap, ?FrameState): any} PostRenderFunction\n */\n/**\n * @typedef {Object} AtPixelOptions\n * @property {undefined|function(import(\"./layer/Layer.js\").default<import(\"./source/Source\").default>): boolean} [layerFilter] Layer filter\n * function. The filter function will receive one argument, the\n * {@link module:ol/layer/Layer~Layer layer-candidate} and it should return a boolean value.\n * Only layers which are visible and for which this function returns `true`\n * will be tested for features. By default, all visible layers will be tested.\n * @property {number} [hitTolerance=0] Hit-detection tolerance in css pixels. Pixels\n * inside the radius around the given position will be checked for features.\n * @property {boolean} [checkWrapped=true] Check-Wrapped Will check for for wrapped geometries inside the range of\n * +/- 1 world width. Works only if a projection is used that can be wrapped.\n */\n/**\n * @typedef {Object} MapOptionsInternal\n * @property {Collection<import(\"./control/Control.js\").default>} [controls] Controls.\n * @property {Collection<import(\"./interaction/Interaction.js\").default>} [interactions] Interactions.\n * @property {HTMLElement|Document} keyboardEventTarget KeyboardEventTarget.\n * @property {Collection<import(\"./Overlay.js\").default>} overlays Overlays.\n * @property {Object<string, *>} values Values.\n */\n/**\n * @typedef {import(\"./ObjectEventType\").Types|'change:layergroup'|'change:size'|'change:target'|'change:view'} MapObjectEventTypes\n */\n/***\n * @template Return\n * @typedef {import(\"./Observable\").OnSignature<import(\"./Observable\").EventTypes, import(\"./events/Event.js\").default, Return> &\n * import(\"./Observable\").OnSignature<MapObjectEventTypes, import(\"./Object\").ObjectEvent, Return> &\n * import(\"./Observable\").OnSignature<import(\"./MapBrowserEventType\").Types, import(\"./MapBrowserEvent\").default, Return> &\n * import(\"./Observable\").OnSignature<import(\"./MapEventType\").Types, import(\"./MapEvent\").default, Return> &\n * import(\"./Observable\").OnSignature<import(\"./render/EventType\").MapRenderEventTypes, import(\"./render/Event\").default, Return> &\n * import(\"./Observable\").CombinedOnSignature<import(\"./Observable\").EventTypes|MapObjectEventTypes|\n * import(\"./MapBrowserEventType\").Types|import(\"./MapEventType\").Types|\n * import(\"./render/EventType\").MapRenderEventTypes, Return>} PluggableMapOnSignature\n */\n/**\n * Object literal with config options for the map.\n * @typedef {Object} MapOptions\n * @property {Collection<import(\"./control/Control.js\").default>|Array<import(\"./control/Control.js\").default>} [controls]\n * Controls initially added to the map. If not specified,\n * {@link module:ol/control.defaults} is used.\n * @property {number} [pixelRatio=window.devicePixelRatio] The ratio between\n * physical pixels and device-independent pixels (dips) on the device.\n * @property {Collection<import(\"./interaction/Interaction.js\").default>|Array<import(\"./interaction/Interaction.js\").default>} [interactions]\n * Interactions that are initially added to the map. If not specified,\n * {@link module:ol/interaction.defaults} is used.\n * @property {HTMLElement|Document|string} [keyboardEventTarget] The element to\n * listen to keyboard events on. This determines when the `KeyboardPan` and\n * `KeyboardZoom` interactions trigger. For example, if this option is set to\n * `document` the keyboard interactions will always trigger. If this option is\n * not specified, the element the library listens to keyboard events on is the\n * map target (i.e. the user-provided div for the map). If this is not\n * `document`, the target element needs to be focused for key events to be\n * emitted, requiring that the target element has a `tabindex` attribute.\n * @property {Array<import(\"./layer/Base.js\").default>|Collection<import(\"./layer/Base.js\").default>|LayerGroup} [layers]\n * Layers. If this is not defined, a map with no layers will be rendered. Note\n * that layers are rendered in the order supplied, so if you want, for example,\n * a vector layer to appear on top of a tile layer, it must come after the tile\n * layer.\n * @property {number} [maxTilesLoading=16] Maximum number tiles to load\n * simultaneously.\n * @property {number} [moveTolerance=1] The minimum distance in pixels the\n * cursor must move to be detected as a map move event instead of a click.\n * Increasing this value can make it easier to click on the map.\n * @property {Collection<import(\"./Overlay.js\").default>|Array<import(\"./Overlay.js\").default>} [overlays]\n * Overlays initially added to the map. By default, no overlays are added.\n * @property {HTMLElement|string} [target] The container for the map, either the\n * element itself or the `id` of the element. If not specified at construction\n * time, {@link module:ol/Map~Map#setTarget} must be called for the map to be\n * rendered. If passed by element, the container can be in a secondary document.\n * @property {View|Promise<import(\"./View.js\").ViewOptions>} [view] The map's view. No layer sources will be\n * fetched unless this is specified at construction time or through\n * {@link module:ol/Map~Map#setView}.\n */\n/**\n * @param {import(\"./layer/Base.js\").default} layer Layer.\n */\nfunction removeLayerMapProperty(layer) {\n if (layer instanceof Layer) {\n layer.setMapInternal(null);\n return;\n }\n if (layer instanceof LayerGroup) {\n layer.getLayers().forEach(removeLayerMapProperty);\n }\n}\n/**\n * @param {import(\"./layer/Base.js\").default} layer Layer.\n * @param {PluggableMap} map Map.\n */\nfunction setLayerMapProperty(layer, map) {\n if (layer instanceof Layer) {\n layer.setMapInternal(map);\n return;\n }\n if (layer instanceof LayerGroup) {\n var layers = layer.getLayers().getArray();\n for (var i = 0, ii = layers.length; i < ii; ++i) {\n setLayerMapProperty(layers[i], map);\n }\n }\n}\n/**\n * @fires import(\"./MapBrowserEvent.js\").MapBrowserEvent\n * @fires import(\"./MapEvent.js\").MapEvent\n * @fires import(\"./render/Event.js\").default#precompose\n * @fires import(\"./render/Event.js\").default#postcompose\n * @fires import(\"./render/Event.js\").default#rendercomplete\n * @api\n */\nvar PluggableMap = /** @class */ (function (_super) {\n __extends(PluggableMap, _super);\n /**\n * @param {MapOptions} options Map options.\n */\n function PluggableMap(options) {\n var _this = _super.call(this) || this;\n /***\n * @type {PluggableMapOnSignature<import(\"./events\").EventsKey>}\n */\n _this.on;\n /***\n * @type {PluggableMapOnSignature<import(\"./events\").EventsKey>}\n */\n _this.once;\n /***\n * @type {PluggableMapOnSignature<void>}\n */\n _this.un;\n var optionsInternal = createOptionsInternal(options);\n /**\n * @private\n * @type {boolean|undefined}\n */\n _this.renderComplete_;\n /**\n * @private\n * @type {boolean}\n */\n _this.loaded_ = true;\n /** @private */\n _this.boundHandleBrowserEvent_ = _this.handleBrowserEvent.bind(_this);\n /**\n * @type {number}\n * @private\n */\n _this.maxTilesLoading_ =\n options.maxTilesLoading !== undefined ? options.maxTilesLoading : 16;\n /**\n * @private\n * @type {number}\n */\n _this.pixelRatio_ =\n options.pixelRatio !== undefined\n ? options.pixelRatio\n : DEVICE_PIXEL_RATIO;\n /**\n * @private\n * @type {*}\n */\n _this.postRenderTimeoutHandle_;\n /**\n * @private\n * @type {number|undefined}\n */\n _this.animationDelayKey_;\n /**\n * @private\n */\n _this.animationDelay_ = /** @this {PluggableMap} */ function () {\n this.animationDelayKey_ = undefined;\n this.renderFrame_(Date.now());\n }.bind(_this);\n /**\n * @private\n * @type {import(\"./transform.js\").Transform}\n */\n _this.coordinateToPixelTransform_ = createTransform();\n /**\n * @private\n * @type {import(\"./transform.js\").Transform}\n */\n _this.pixelToCoordinateTransform_ = createTransform();\n /**\n * @private\n * @type {number}\n */\n _this.frameIndex_ = 0;\n /**\n * @private\n * @type {?FrameState}\n */\n _this.frameState_ = null;\n /**\n * The extent at the previous 'moveend' event.\n * @private\n * @type {import(\"./extent.js\").Extent}\n */\n _this.previousExtent_ = null;\n /**\n * @private\n * @type {?import(\"./events.js\").EventsKey}\n */\n _this.viewPropertyListenerKey_ = null;\n /**\n * @private\n * @type {?import(\"./events.js\").EventsKey}\n */\n _this.viewChangeListenerKey_ = null;\n /**\n * @private\n * @type {?Array<import(\"./events.js\").EventsKey>}\n */\n _this.layerGroupPropertyListenerKeys_ = null;\n /**\n * @private\n * @type {!HTMLElement}\n */\n _this.viewport_ = document.createElement('div');\n _this.viewport_.className =\n 'ol-viewport' + ('ontouchstart' in window ? ' ol-touch' : '');\n _this.viewport_.style.position = 'relative';\n _this.viewport_.style.overflow = 'hidden';\n _this.viewport_.style.width = '100%';\n _this.viewport_.style.height = '100%';\n /**\n * @private\n * @type {!HTMLElement}\n */\n _this.overlayContainer_ = document.createElement('div');\n _this.overlayContainer_.style.position = 'absolute';\n _this.overlayContainer_.style.zIndex = '0';\n _this.overlayContainer_.style.width = '100%';\n _this.overlayContainer_.style.height = '100%';\n _this.overlayContainer_.style.pointerEvents = 'none';\n _this.overlayContainer_.className = 'ol-overlaycontainer';\n _this.viewport_.appendChild(_this.overlayContainer_);\n /**\n * @private\n * @type {!HTMLElement}\n */\n _this.overlayContainerStopEvent_ = document.createElement('div');\n _this.overlayContainerStopEvent_.style.position = 'absolute';\n _this.overlayContainerStopEvent_.style.zIndex = '0';\n _this.overlayContainerStopEvent_.style.width = '100%';\n _this.overlayContainerStopEvent_.style.height = '100%';\n _this.overlayContainerStopEvent_.style.pointerEvents = 'none';\n _this.overlayContainerStopEvent_.className = 'ol-overlaycontainer-stopevent';\n _this.viewport_.appendChild(_this.overlayContainerStopEvent_);\n /**\n * @private\n * @type {MapBrowserEventHandler}\n */\n _this.mapBrowserEventHandler_ = null;\n /**\n * @private\n * @type {number}\n */\n _this.moveTolerance_ = options.moveTolerance;\n /**\n * @private\n * @type {HTMLElement|Document}\n */\n _this.keyboardEventTarget_ = optionsInternal.keyboardEventTarget;\n /**\n * @private\n * @type {?Array<import(\"./events.js\").EventsKey>}\n */\n _this.targetChangeHandlerKeys_ = null;\n /**\n * @type {Collection<import(\"./control/Control.js\").default>}\n * @protected\n */\n _this.controls = optionsInternal.controls || new Collection();\n /**\n * @type {Collection<import(\"./interaction/Interaction.js\").default>}\n * @protected\n */\n _this.interactions = optionsInternal.interactions || new Collection();\n /**\n * @type {Collection<import(\"./Overlay.js\").default>}\n * @private\n */\n _this.overlays_ = optionsInternal.overlays;\n /**\n * A lookup of overlays by id.\n * @private\n * @type {Object<string, import(\"./Overlay.js\").default>}\n */\n _this.overlayIdIndex_ = {};\n /**\n * @type {import(\"./renderer/Map.js\").default|null}\n * @private\n */\n _this.renderer_ = null;\n /**\n * @private\n * @type {!Array<PostRenderFunction>}\n */\n _this.postRenderFunctions_ = [];\n /**\n * @private\n * @type {TileQueue}\n */\n _this.tileQueue_ = new TileQueue(_this.getTilePriority.bind(_this), _this.handleTileChange_.bind(_this));\n _this.addChangeListener(MapProperty.LAYERGROUP, _this.handleLayerGroupChanged_);\n _this.addChangeListener(MapProperty.VIEW, _this.handleViewChanged_);\n _this.addChangeListener(MapProperty.SIZE, _this.handleSizeChanged_);\n _this.addChangeListener(MapProperty.TARGET, _this.handleTargetChanged_);\n // setProperties will trigger the rendering of the map if the map\n // is \"defined\" already.\n _this.setProperties(optionsInternal.values);\n var map = _this;\n if (options.view && !(options.view instanceof View)) {\n options.view.then(function (viewOptions) {\n map.setView(new View(viewOptions));\n });\n }\n _this.controls.addEventListener(CollectionEventType.ADD, \n /**\n * @param {import(\"./Collection.js\").CollectionEvent} event CollectionEvent.\n */\n function (event) {\n event.element.setMap(this);\n }.bind(_this));\n _this.controls.addEventListener(CollectionEventType.REMOVE, \n /**\n * @param {import(\"./Collection.js\").CollectionEvent} event CollectionEvent.\n */\n function (event) {\n event.element.setMap(null);\n }.bind(_this));\n _this.interactions.addEventListener(CollectionEventType.ADD, \n /**\n * @param {import(\"./Collection.js\").CollectionEvent} event CollectionEvent.\n */\n function (event) {\n event.element.setMap(this);\n }.bind(_this));\n _this.interactions.addEventListener(CollectionEventType.REMOVE, \n /**\n * @param {import(\"./Collection.js\").CollectionEvent} event CollectionEvent.\n */\n function (event) {\n event.element.setMap(null);\n }.bind(_this));\n _this.overlays_.addEventListener(CollectionEventType.ADD, \n /**\n * @param {import(\"./Collection.js\").CollectionEvent} event CollectionEvent.\n */\n function (event) {\n this.addOverlayInternal_(\n /** @type {import(\"./Overlay.js\").default} */ (event.element));\n }.bind(_this));\n _this.overlays_.addEventListener(CollectionEventType.REMOVE, \n /**\n * @param {import(\"./Collection.js\").CollectionEvent} event CollectionEvent.\n */\n function (event) {\n var overlay = /** @type {import(\"./Overlay.js\").default} */ (event.element);\n var id = overlay.getId();\n if (id !== undefined) {\n delete this.overlayIdIndex_[id.toString()];\n }\n event.element.setMap(null);\n }.bind(_this));\n _this.controls.forEach(\n /**\n * @param {import(\"./control/Control.js\").default} control Control.\n * @this {PluggableMap}\n */\n function (control) {\n control.setMap(this);\n }.bind(_this));\n _this.interactions.forEach(\n /**\n * @param {import(\"./interaction/Interaction.js\").default} interaction Interaction.\n * @this {PluggableMap}\n */\n function (interaction) {\n interaction.setMap(this);\n }.bind(_this));\n _this.overlays_.forEach(_this.addOverlayInternal_.bind(_this));\n return _this;\n }\n /**\n * @abstract\n * @return {import(\"./renderer/Map.js\").default} The map renderer\n */\n PluggableMap.prototype.createRenderer = function () {\n throw new Error('Use a map type that has a createRenderer method');\n };\n /**\n * Add the given control to the map.\n * @param {import(\"./control/Control.js\").default} control Control.\n * @api\n */\n PluggableMap.prototype.addControl = function (control) {\n this.getControls().push(control);\n };\n /**\n * Add the given interaction to the map. If you want to add an interaction\n * at another point of the collection use `getInteraction()` and the methods\n * available on {@link module:ol/Collection~Collection}. This can be used to\n * stop the event propagation from the handleEvent function. The interactions\n * get to handle the events in the reverse order of this collection.\n * @param {import(\"./interaction/Interaction.js\").default} interaction Interaction to add.\n * @api\n */\n PluggableMap.prototype.addInteraction = function (interaction) {\n this.getInteractions().push(interaction);\n };\n /**\n * Adds the given layer to the top of this map. If you want to add a layer\n * elsewhere in the stack, use `getLayers()` and the methods available on\n * {@link module:ol/Collection~Collection}.\n * @param {import(\"./layer/Base.js\").default} layer Layer.\n * @api\n */\n PluggableMap.prototype.addLayer = function (layer) {\n var layers = this.getLayerGroup().getLayers();\n layers.push(layer);\n };\n /**\n * @param {import(\"./layer/Group.js\").GroupEvent} event The layer add event.\n * @private\n */\n PluggableMap.prototype.handleLayerAdd_ = function (event) {\n setLayerMapProperty(event.layer, this);\n };\n /**\n * Add the given overlay to the map.\n * @param {import(\"./Overlay.js\").default} overlay Overlay.\n * @api\n */\n PluggableMap.prototype.addOverlay = function (overlay) {\n this.getOverlays().push(overlay);\n };\n /**\n * This deals with map's overlay collection changes.\n * @param {import(\"./Overlay.js\").default} overlay Overlay.\n * @private\n */\n PluggableMap.prototype.addOverlayInternal_ = function (overlay) {\n var id = overlay.getId();\n if (id !== undefined) {\n this.overlayIdIndex_[id.toString()] = overlay;\n }\n overlay.setMap(this);\n };\n /**\n *\n * Clean up.\n */\n PluggableMap.prototype.disposeInternal = function () {\n this.setTarget(null);\n _super.prototype.disposeInternal.call(this);\n };\n /**\n * Detect features that intersect a pixel on the viewport, and execute a\n * callback with each intersecting feature. Layers included in the detection can\n * be configured through the `layerFilter` option in `opt_options`.\n * @param {import(\"./pixel.js\").Pixel} pixel Pixel.\n * @param {function(import(\"./Feature.js\").FeatureLike, import(\"./layer/Layer.js\").default<import(\"./source/Source\").default>, import(\"./geom/SimpleGeometry.js\").default): T} callback Feature callback. The callback will be\n * called with two arguments. The first argument is one\n * {@link module:ol/Feature~Feature feature} or\n * {@link module:ol/render/Feature~RenderFeature render feature} at the pixel, the second is\n * the {@link module:ol/layer/Layer~Layer layer} of the feature and will be null for\n * unmanaged layers. To stop detection, callback functions can return a\n * truthy value.\n * @param {AtPixelOptions} [opt_options] Optional options.\n * @return {T|undefined} Callback result, i.e. the return value of last\n * callback execution, or the first truthy callback return value.\n * @template T\n * @api\n */\n PluggableMap.prototype.forEachFeatureAtPixel = function (pixel, callback, opt_options) {\n if (!this.frameState_ || !this.renderer_) {\n return;\n }\n var coordinate = this.getCoordinateFromPixelInternal(pixel);\n opt_options = opt_options !== undefined ? opt_options : {};\n var hitTolerance = opt_options.hitTolerance !== undefined ? opt_options.hitTolerance : 0;\n var layerFilter = opt_options.layerFilter !== undefined ? opt_options.layerFilter : TRUE;\n var checkWrapped = opt_options.checkWrapped !== false;\n return this.renderer_.forEachFeatureAtCoordinate(coordinate, this.frameState_, hitTolerance, checkWrapped, callback, null, layerFilter, null);\n };\n /**\n * Get all features that intersect a pixel on the viewport.\n * @param {import(\"./pixel.js\").Pixel} pixel Pixel.\n * @param {AtPixelOptions} [opt_options] Optional options.\n * @return {Array<import(\"./Feature.js\").FeatureLike>} The detected features or\n * an empty array if none were found.\n * @api\n */\n PluggableMap.prototype.getFeaturesAtPixel = function (pixel, opt_options) {\n var features = [];\n this.forEachFeatureAtPixel(pixel, function (feature) {\n features.push(feature);\n }, opt_options);\n return features;\n };\n /**\n * Get all layers from all layer groups.\n * @return {Array<import(\"./layer/Layer.js\").default>} Layers.\n * @api\n */\n PluggableMap.prototype.getAllLayers = function () {\n var layers = [];\n function addLayersFrom(layerGroup) {\n layerGroup.forEach(function (layer) {\n if (layer instanceof LayerGroup) {\n addLayersFrom(layer.getLayers());\n }\n else {\n layers.push(layer);\n }\n });\n }\n addLayersFrom(this.getLayers());\n return layers;\n };\n /**\n * Please the `layer.getData()` method for {@link module:ol/layer/Tile~TileLayer#getData tile layers} or\n * {@link module:ol/layer/Image~ImageLayer#getData image layers} instead of using this method.\n *\n * Detect layers that have a color value at a pixel on the viewport, and\n * execute a callback with each matching layer. Layers included in the\n * detection can be configured through `opt_layerFilter`.\n *\n * Note: In maps with more than one layer, this method will typically return pixel data\n * representing the composed image of all layers visible at the given pixel – because layers\n * will generally share the same rendering context. To force layers to render separately, and\n * to get pixel data representing only one layer at a time, you can assign each layer a unique\n * `className` in its constructor.\n *\n * @param {import(\"./pixel.js\").Pixel} pixel Pixel.\n * @param {function(this: S, import(\"./layer/Layer.js\").default, (Uint8ClampedArray|Uint8Array)): T} callback\n * Layer callback. This callback will receive two arguments: first is the\n * {@link module:ol/layer/Layer~Layer layer}, second argument is an array representing\n * [R, G, B, A] pixel values (0 - 255) and will be `null` for layer types\n * that do not currently support this argument. To stop detection, callback\n * functions can return a truthy value.\n * @param {AtPixelOptions} [opt_options] Configuration options.\n * @return {T|undefined} Callback result, i.e. the return value of last\n * callback execution, or the first truthy callback return value.\n * @template S,T\n * @api\n * @deprecated\n */\n PluggableMap.prototype.forEachLayerAtPixel = function (pixel, callback, opt_options) {\n if (!this.frameState_ || !this.renderer_) {\n return;\n }\n var options = opt_options || {};\n var hitTolerance = options.hitTolerance !== undefined ? options.hitTolerance : 0;\n var layerFilter = options.layerFilter || TRUE;\n return this.renderer_.forEachLayerAtPixel(pixel, this.frameState_, hitTolerance, callback, layerFilter);\n };\n /**\n * Detect if features intersect a pixel on the viewport. Layers included in the\n * detection can be configured through `opt_layerFilter`.\n * @param {import(\"./pixel.js\").Pixel} pixel Pixel.\n * @param {AtPixelOptions} [opt_options] Optional options.\n * @return {boolean} Is there a feature at the given pixel?\n * @api\n */\n PluggableMap.prototype.hasFeatureAtPixel = function (pixel, opt_options) {\n if (!this.frameState_ || !this.renderer_) {\n return false;\n }\n var coordinate = this.getCoordinateFromPixelInternal(pixel);\n opt_options = opt_options !== undefined ? opt_options : {};\n var layerFilter = opt_options.layerFilter !== undefined ? opt_options.layerFilter : TRUE;\n var hitTolerance = opt_options.hitTolerance !== undefined ? opt_options.hitTolerance : 0;\n var checkWrapped = opt_options.checkWrapped !== false;\n return this.renderer_.hasFeatureAtCoordinate(coordinate, this.frameState_, hitTolerance, checkWrapped, layerFilter, null);\n };\n /**\n * Returns the coordinate in user projection for a browser event.\n * @param {MouseEvent} event Event.\n * @return {import(\"./coordinate.js\").Coordinate} Coordinate.\n * @api\n */\n PluggableMap.prototype.getEventCoordinate = function (event) {\n return this.getCoordinateFromPixel(this.getEventPixel(event));\n };\n /**\n * Returns the coordinate in view projection for a browser event.\n * @param {MouseEvent} event Event.\n * @return {import(\"./coordinate.js\").Coordinate} Coordinate.\n */\n PluggableMap.prototype.getEventCoordinateInternal = function (event) {\n return this.getCoordinateFromPixelInternal(this.getEventPixel(event));\n };\n /**\n * Returns the map pixel position for a browser event relative to the viewport.\n * @param {UIEvent} event Event.\n * @return {import(\"./pixel.js\").Pixel} Pixel.\n * @api\n */\n PluggableMap.prototype.getEventPixel = function (event) {\n var viewportPosition = this.viewport_.getBoundingClientRect();\n var eventPosition = \n //FIXME Are we really calling this with a TouchEvent anywhere?\n 'changedTouches' in event\n ? /** @type {TouchEvent} */ (event).changedTouches[0]\n : /** @type {MouseEvent} */ (event);\n return [\n eventPosition.clientX - viewportPosition.left,\n eventPosition.clientY - viewportPosition.top,\n ];\n };\n /**\n * Get the target in which this map is rendered.\n * Note that this returns what is entered as an option or in setTarget:\n * if that was an element, it returns an element; if a string, it returns that.\n * @return {HTMLElement|string|undefined} The Element or id of the Element that the\n * map is rendered in.\n * @observable\n * @api\n */\n PluggableMap.prototype.getTarget = function () {\n return /** @type {HTMLElement|string|undefined} */ (this.get(MapProperty.TARGET));\n };\n /**\n * Get the DOM element into which this map is rendered. In contrast to\n * `getTarget` this method always return an `Element`, or `null` if the\n * map has no target.\n * @return {HTMLElement} The element that the map is rendered in.\n * @api\n */\n PluggableMap.prototype.getTargetElement = function () {\n var target = this.getTarget();\n if (target !== undefined) {\n return typeof target === 'string'\n ? document.getElementById(target)\n : target;\n }\n else {\n return null;\n }\n };\n /**\n * Get the coordinate for a given pixel. This returns a coordinate in the\n * user projection.\n * @param {import(\"./pixel.js\").Pixel} pixel Pixel position in the map viewport.\n * @return {import(\"./coordinate.js\").Coordinate} The coordinate for the pixel position.\n * @api\n */\n PluggableMap.prototype.getCoordinateFromPixel = function (pixel) {\n return toUserCoordinate(this.getCoordinateFromPixelInternal(pixel), this.getView().getProjection());\n };\n /**\n * Get the coordinate for a given pixel. This returns a coordinate in the\n * map view projection.\n * @param {import(\"./pixel.js\").Pixel} pixel Pixel position in the map viewport.\n * @return {import(\"./coordinate.js\").Coordinate} The coordinate for the pixel position.\n */\n PluggableMap.prototype.getCoordinateFromPixelInternal = function (pixel) {\n var frameState = this.frameState_;\n if (!frameState) {\n return null;\n }\n else {\n return applyTransform(frameState.pixelToCoordinateTransform, pixel.slice());\n }\n };\n /**\n * Get the map controls. Modifying this collection changes the controls\n * associated with the map.\n * @return {Collection<import(\"./control/Control.js\").default>} Controls.\n * @api\n */\n PluggableMap.prototype.getControls = function () {\n return this.controls;\n };\n /**\n * Get the map overlays. Modifying this collection changes the overlays\n * associated with the map.\n * @return {Collection<import(\"./Overlay.js\").default>} Overlays.\n * @api\n */\n PluggableMap.prototype.getOverlays = function () {\n return this.overlays_;\n };\n /**\n * Get an overlay by its identifier (the value returned by overlay.getId()).\n * Note that the index treats string and numeric identifiers as the same. So\n * `map.getOverlayById(2)` will return an overlay with id `'2'` or `2`.\n * @param {string|number} id Overlay identifier.\n * @return {import(\"./Overlay.js\").default} Overlay.\n * @api\n */\n PluggableMap.prototype.getOverlayById = function (id) {\n var overlay = this.overlayIdIndex_[id.toString()];\n return overlay !== undefined ? overlay : null;\n };\n /**\n * Get the map interactions. Modifying this collection changes the interactions\n * associated with the map.\n *\n * Interactions are used for e.g. pan, zoom and rotate.\n * @return {Collection<import(\"./interaction/Interaction.js\").default>} Interactions.\n * @api\n */\n PluggableMap.prototype.getInteractions = function () {\n return this.interactions;\n };\n /**\n * Get the layergroup associated with this map.\n * @return {LayerGroup} A layer group containing the layers in this map.\n * @observable\n * @api\n */\n PluggableMap.prototype.getLayerGroup = function () {\n return /** @type {LayerGroup} */ (this.get(MapProperty.LAYERGROUP));\n };\n /**\n * Clear any existing layers and add layers to the map.\n * @param {Array<import(\"./layer/Base.js\").default>|Collection<import(\"./layer/Base.js\").default>} layers The layers to be added to the map.\n * @api\n */\n PluggableMap.prototype.setLayers = function (layers) {\n var group = this.getLayerGroup();\n if (layers instanceof Collection) {\n group.setLayers(layers);\n return;\n }\n var collection = group.getLayers();\n collection.clear();\n collection.extend(layers);\n };\n /**\n * Get the collection of layers associated with this map.\n * @return {!Collection<import(\"./layer/Base.js\").default>} Layers.\n * @api\n */\n PluggableMap.prototype.getLayers = function () {\n var layers = this.getLayerGroup().getLayers();\n return layers;\n };\n /**\n * @return {boolean} Layers have sources that are still loading.\n */\n PluggableMap.prototype.getLoadingOrNotReady = function () {\n var layerStatesArray = this.getLayerGroup().getLayerStatesArray();\n for (var i = 0, ii = layerStatesArray.length; i < ii; ++i) {\n var state = layerStatesArray[i];\n if (!state.visible) {\n continue;\n }\n var renderer = state.layer.getRenderer();\n if (renderer && !renderer.ready) {\n return true;\n }\n var source = /** @type {import(\"./layer/Layer.js\").default} */ (state.layer).getSource();\n if (source && source.loading) {\n return true;\n }\n }\n return false;\n };\n /**\n * Get the pixel for a coordinate. This takes a coordinate in the user\n * projection and returns the corresponding pixel.\n * @param {import(\"./coordinate.js\").Coordinate} coordinate A map coordinate.\n * @return {import(\"./pixel.js\").Pixel} A pixel position in the map viewport.\n * @api\n */\n PluggableMap.prototype.getPixelFromCoordinate = function (coordinate) {\n var viewCoordinate = fromUserCoordinate(coordinate, this.getView().getProjection());\n return this.getPixelFromCoordinateInternal(viewCoordinate);\n };\n /**\n * Get the pixel for a coordinate. This takes a coordinate in the map view\n * projection and returns the corresponding pixel.\n * @param {import(\"./coordinate.js\").Coordinate} coordinate A map coordinate.\n * @return {import(\"./pixel.js\").Pixel} A pixel position in the map viewport.\n */\n PluggableMap.prototype.getPixelFromCoordinateInternal = function (coordinate) {\n var frameState = this.frameState_;\n if (!frameState) {\n return null;\n }\n else {\n return applyTransform(frameState.coordinateToPixelTransform, coordinate.slice(0, 2));\n }\n };\n /**\n * Get the map renderer.\n * @return {import(\"./renderer/Map.js\").default|null} Renderer\n */\n PluggableMap.prototype.getRenderer = function () {\n return this.renderer_;\n };\n /**\n * Get the size of this map.\n * @return {import(\"./size.js\").Size|undefined} The size in pixels of the map in the DOM.\n * @observable\n * @api\n */\n PluggableMap.prototype.getSize = function () {\n return /** @type {import(\"./size.js\").Size|undefined} */ (this.get(MapProperty.SIZE));\n };\n /**\n * Get the view associated with this map. A view manages properties such as\n * center and resolution.\n * @return {View} The view that controls this map.\n * @observable\n * @api\n */\n PluggableMap.prototype.getView = function () {\n return /** @type {View} */ (this.get(MapProperty.VIEW));\n };\n /**\n * Get the element that serves as the map viewport.\n * @return {HTMLElement} Viewport.\n * @api\n */\n PluggableMap.prototype.getViewport = function () {\n return this.viewport_;\n };\n /**\n * Get the element that serves as the container for overlays. Elements added to\n * this container will let mousedown and touchstart events through to the map,\n * so clicks and gestures on an overlay will trigger {@link module:ol/MapBrowserEvent~MapBrowserEvent}\n * events.\n * @return {!HTMLElement} The map's overlay container.\n */\n PluggableMap.prototype.getOverlayContainer = function () {\n return this.overlayContainer_;\n };\n /**\n * Get the element that serves as a container for overlays that don't allow\n * event propagation. Elements added to this container won't let mousedown and\n * touchstart events through to the map, so clicks and gestures on an overlay\n * don't trigger any {@link module:ol/MapBrowserEvent~MapBrowserEvent}.\n * @return {!HTMLElement} The map's overlay container that stops events.\n */\n PluggableMap.prototype.getOverlayContainerStopEvent = function () {\n return this.overlayContainerStopEvent_;\n };\n /**\n * @return {!Document} The document where the map is displayed.\n */\n PluggableMap.prototype.getOwnerDocument = function () {\n var targetElement = this.getTargetElement();\n return targetElement ? targetElement.ownerDocument : document;\n };\n /**\n * @param {import(\"./Tile.js\").default} tile Tile.\n * @param {string} tileSourceKey Tile source key.\n * @param {import(\"./coordinate.js\").Coordinate} tileCenter Tile center.\n * @param {number} tileResolution Tile resolution.\n * @return {number} Tile priority.\n */\n PluggableMap.prototype.getTilePriority = function (tile, tileSourceKey, tileCenter, tileResolution) {\n return getTilePriority(this.frameState_, tile, tileSourceKey, tileCenter, tileResolution);\n };\n /**\n * @param {UIEvent} browserEvent Browser event.\n * @param {string} [opt_type] Type.\n */\n PluggableMap.prototype.handleBrowserEvent = function (browserEvent, opt_type) {\n var type = opt_type || browserEvent.type;\n var mapBrowserEvent = new MapBrowserEvent(type, this, browserEvent);\n this.handleMapBrowserEvent(mapBrowserEvent);\n };\n /**\n * @param {MapBrowserEvent} mapBrowserEvent The event to handle.\n */\n PluggableMap.prototype.handleMapBrowserEvent = function (mapBrowserEvent) {\n if (!this.frameState_) {\n // With no view defined, we cannot translate pixels into geographical\n // coordinates so interactions cannot be used.\n return;\n }\n var originalEvent = /** @type {PointerEvent} */ (mapBrowserEvent.originalEvent);\n var eventType = originalEvent.type;\n if (eventType === PointerEventType.POINTERDOWN ||\n eventType === EventType.WHEEL ||\n eventType === EventType.KEYDOWN) {\n var doc = this.getOwnerDocument();\n var rootNode = this.viewport_.getRootNode\n ? this.viewport_.getRootNode()\n : doc;\n var target = /** @type {Node} */ (originalEvent.target);\n if (\n // Abort if the target is a child of the container for elements whose events are not meant\n // to be handled by map interactions.\n this.overlayContainerStopEvent_.contains(target) ||\n // Abort if the event target is a child of the container that is no longer in the page.\n // It's possible for the target to no longer be in the page if it has been removed in an\n // event listener, this might happen in a Control that recreates it's content based on\n // user interaction either manually or via a render in something like https://reactjs.org/\n !(rootNode === doc ? doc.documentElement : rootNode).contains(target)) {\n return;\n }\n }\n mapBrowserEvent.frameState = this.frameState_;\n if (this.dispatchEvent(mapBrowserEvent) !== false) {\n var interactionsArray = this.getInteractions().getArray().slice();\n for (var i = interactionsArray.length - 1; i >= 0; i--) {\n var interaction = interactionsArray[i];\n if (interaction.getMap() !== this ||\n !interaction.getActive() ||\n !this.getTargetElement()) {\n continue;\n }\n var cont = interaction.handleEvent(mapBrowserEvent);\n if (!cont || mapBrowserEvent.propagationStopped) {\n break;\n }\n }\n }\n };\n /**\n * @protected\n */\n PluggableMap.prototype.handlePostRender = function () {\n var frameState = this.frameState_;\n // Manage the tile queue\n // Image loads are expensive and a limited resource, so try to use them\n // efficiently:\n // * When the view is static we allow a large number of parallel tile loads\n // to complete the frame as quickly as possible.\n // * When animating or interacting, image loads can cause janks, so we reduce\n // the maximum number of loads per frame and limit the number of parallel\n // tile loads to remain reactive to view changes and to reduce the chance of\n // loading tiles that will quickly disappear from view.\n var tileQueue = this.tileQueue_;\n if (!tileQueue.isEmpty()) {\n var maxTotalLoading = this.maxTilesLoading_;\n var maxNewLoads = maxTotalLoading;\n if (frameState) {\n var hints = frameState.viewHints;\n if (hints[ViewHint.ANIMATING] || hints[ViewHint.INTERACTING]) {\n var lowOnFrameBudget = Date.now() - frameState.time > 8;\n maxTotalLoading = lowOnFrameBudget ? 0 : 8;\n maxNewLoads = lowOnFrameBudget ? 0 : 2;\n }\n }\n if (tileQueue.getTilesLoading() < maxTotalLoading) {\n tileQueue.reprioritize(); // FIXME only call if view has changed\n tileQueue.loadMoreTiles(maxTotalLoading, maxNewLoads);\n }\n }\n if (frameState && this.renderer_ && !frameState.animate) {\n if (this.renderComplete_ === true) {\n if (this.hasListener(RenderEventType.RENDERCOMPLETE)) {\n this.renderer_.dispatchRenderEvent(RenderEventType.RENDERCOMPLETE, frameState);\n }\n if (this.loaded_ === false) {\n this.loaded_ = true;\n this.dispatchEvent(new MapEvent(MapEventType.LOADEND, this, frameState));\n }\n }\n else if (this.loaded_ === true) {\n this.loaded_ = false;\n this.dispatchEvent(new MapEvent(MapEventType.LOADSTART, this, frameState));\n }\n }\n var postRenderFunctions = this.postRenderFunctions_;\n for (var i = 0, ii = postRenderFunctions.length; i < ii; ++i) {\n postRenderFunctions[i](this, frameState);\n }\n postRenderFunctions.length = 0;\n };\n /**\n * @private\n */\n PluggableMap.prototype.handleSizeChanged_ = function () {\n if (this.getView() && !this.getView().getAnimating()) {\n this.getView().resolveConstraints(0);\n }\n this.render();\n };\n /**\n * @private\n */\n PluggableMap.prototype.handleTargetChanged_ = function () {\n if (this.mapBrowserEventHandler_) {\n for (var i = 0, ii = this.targetChangeHandlerKeys_.length; i < ii; ++i) {\n unlistenByKey(this.targetChangeHandlerKeys_[i]);\n }\n this.targetChangeHandlerKeys_ = null;\n this.viewport_.removeEventListener(EventType.CONTEXTMENU, this.boundHandleBrowserEvent_);\n this.viewport_.removeEventListener(EventType.WHEEL, this.boundHandleBrowserEvent_);\n this.mapBrowserEventHandler_.dispose();\n this.mapBrowserEventHandler_ = null;\n removeNode(this.viewport_);\n }\n // target may be undefined, null, a string or an Element.\n // If it's a string we convert it to an Element before proceeding.\n // If it's not now an Element we remove the viewport from the DOM.\n // If it's an Element we append the viewport element to it.\n var targetElement = this.getTargetElement();\n if (!targetElement) {\n if (this.renderer_) {\n clearTimeout(this.postRenderTimeoutHandle_);\n this.postRenderTimeoutHandle_ = undefined;\n this.postRenderFunctions_.length = 0;\n this.renderer_.dispose();\n this.renderer_ = null;\n }\n if (this.animationDelayKey_) {\n cancelAnimationFrame(this.animationDelayKey_);\n this.animationDelayKey_ = undefined;\n }\n }\n else {\n targetElement.appendChild(this.viewport_);\n if (!this.renderer_) {\n this.renderer_ = this.createRenderer();\n }\n this.mapBrowserEventHandler_ = new MapBrowserEventHandler(this, this.moveTolerance_);\n for (var key in MapBrowserEventType) {\n this.mapBrowserEventHandler_.addEventListener(MapBrowserEventType[key], this.handleMapBrowserEvent.bind(this));\n }\n this.viewport_.addEventListener(EventType.CONTEXTMENU, this.boundHandleBrowserEvent_, false);\n this.viewport_.addEventListener(EventType.WHEEL, this.boundHandleBrowserEvent_, PASSIVE_EVENT_LISTENERS ? { passive: false } : false);\n var defaultView = this.getOwnerDocument().defaultView;\n var keyboardEventTarget = !this.keyboardEventTarget_\n ? targetElement\n : this.keyboardEventTarget_;\n this.targetChangeHandlerKeys_ = [\n listen(keyboardEventTarget, EventType.KEYDOWN, this.handleBrowserEvent, this),\n listen(keyboardEventTarget, EventType.KEYPRESS, this.handleBrowserEvent, this),\n listen(defaultView, EventType.RESIZE, this.updateSize, this),\n ];\n }\n this.updateSize();\n // updateSize calls setSize, so no need to call this.render\n // ourselves here.\n };\n /**\n * @private\n */\n PluggableMap.prototype.handleTileChange_ = function () {\n this.render();\n };\n /**\n * @private\n */\n PluggableMap.prototype.handleViewPropertyChanged_ = function () {\n this.render();\n };\n /**\n * @private\n */\n PluggableMap.prototype.handleViewChanged_ = function () {\n if (this.viewPropertyListenerKey_) {\n unlistenByKey(this.viewPropertyListenerKey_);\n this.viewPropertyListenerKey_ = null;\n }\n if (this.viewChangeListenerKey_) {\n unlistenByKey(this.viewChangeListenerKey_);\n this.viewChangeListenerKey_ = null;\n }\n var view = this.getView();\n if (view) {\n this.updateViewportSize_();\n this.viewPropertyListenerKey_ = listen(view, ObjectEventType.PROPERTYCHANGE, this.handleViewPropertyChanged_, this);\n this.viewChangeListenerKey_ = listen(view, EventType.CHANGE, this.handleViewPropertyChanged_, this);\n view.resolveConstraints(0);\n }\n this.render();\n };\n /**\n * @private\n */\n PluggableMap.prototype.handleLayerGroupChanged_ = function () {\n if (this.layerGroupPropertyListenerKeys_) {\n this.layerGroupPropertyListenerKeys_.forEach(unlistenByKey);\n this.layerGroupPropertyListenerKeys_ = null;\n }\n var layerGroup = this.getLayerGroup();\n if (layerGroup) {\n this.handleLayerAdd_(new GroupEvent('addlayer', layerGroup));\n this.layerGroupPropertyListenerKeys_ = [\n listen(layerGroup, ObjectEventType.PROPERTYCHANGE, this.render, this),\n listen(layerGroup, EventType.CHANGE, this.render, this),\n listen(layerGroup, 'addlayer', this.handleLayerAdd_, this),\n listen(layerGroup, 'removelayer', this.handleLayerRemove_, this),\n ];\n }\n this.render();\n };\n /**\n * @return {boolean} Is rendered.\n */\n PluggableMap.prototype.isRendered = function () {\n return !!this.frameState_;\n };\n /**\n * Requests an immediate render in a synchronous manner.\n * @api\n */\n PluggableMap.prototype.renderSync = function () {\n if (this.animationDelayKey_) {\n cancelAnimationFrame(this.animationDelayKey_);\n }\n this.animationDelay_();\n };\n /**\n * Redraws all text after new fonts have loaded\n */\n PluggableMap.prototype.redrawText = function () {\n var layerStates = this.getLayerGroup().getLayerStatesArray();\n for (var i = 0, ii = layerStates.length; i < ii; ++i) {\n var layer = layerStates[i].layer;\n if (layer.hasRenderer()) {\n layer.getRenderer().handleFontsChanged();\n }\n }\n };\n /**\n * Request a map rendering (at the next animation frame).\n * @api\n */\n PluggableMap.prototype.render = function () {\n if (this.renderer_ && this.animationDelayKey_ === undefined) {\n this.animationDelayKey_ = requestAnimationFrame(this.animationDelay_);\n }\n };\n /**\n * Remove the given control from the map.\n * @param {import(\"./control/Control.js\").default} control Control.\n * @return {import(\"./control/Control.js\").default|undefined} The removed control (or undefined\n * if the control was not found).\n * @api\n */\n PluggableMap.prototype.removeControl = function (control) {\n return this.getControls().remove(control);\n };\n /**\n * Remove the given interaction from the map.\n * @param {import(\"./interaction/Interaction.js\").default} interaction Interaction to remove.\n * @return {import(\"./interaction/Interaction.js\").default|undefined} The removed interaction (or\n * undefined if the interaction was not found).\n * @api\n */\n PluggableMap.prototype.removeInteraction = function (interaction) {\n return this.getInteractions().remove(interaction);\n };\n /**\n * Removes the given layer from the map.\n * @param {import(\"./layer/Base.js\").default} layer Layer.\n * @return {import(\"./layer/Base.js\").default|undefined} The removed layer (or undefined if the\n * layer was not found).\n * @api\n */\n PluggableMap.prototype.removeLayer = function (layer) {\n var layers = this.getLayerGroup().getLayers();\n return layers.remove(layer);\n };\n /**\n * @param {import(\"./layer/Group.js\").GroupEvent} event The layer remove event.\n * @private\n */\n PluggableMap.prototype.handleLayerRemove_ = function (event) {\n removeLayerMapProperty(event.layer);\n };\n /**\n * Remove the given overlay from the map.\n * @param {import(\"./Overlay.js\").default} overlay Overlay.\n * @return {import(\"./Overlay.js\").default|undefined} The removed overlay (or undefined\n * if the overlay was not found).\n * @api\n */\n PluggableMap.prototype.removeOverlay = function (overlay) {\n return this.getOverlays().remove(overlay);\n };\n /**\n * @param {number} time Time.\n * @private\n */\n PluggableMap.prototype.renderFrame_ = function (time) {\n var _this = this;\n var size = this.getSize();\n var view = this.getView();\n var previousFrameState = this.frameState_;\n /** @type {?FrameState} */\n var frameState = null;\n if (size !== undefined && hasArea(size) && view && view.isDef()) {\n var viewHints = view.getHints(this.frameState_ ? this.frameState_.viewHints : undefined);\n var viewState = view.getState();\n frameState = {\n animate: false,\n coordinateToPixelTransform: this.coordinateToPixelTransform_,\n declutterTree: null,\n extent: getForViewAndSize(viewState.center, viewState.resolution, viewState.rotation, size),\n index: this.frameIndex_++,\n layerIndex: 0,\n layerStatesArray: this.getLayerGroup().getLayerStatesArray(),\n pixelRatio: this.pixelRatio_,\n pixelToCoordinateTransform: this.pixelToCoordinateTransform_,\n postRenderFunctions: [],\n size: size,\n tileQueue: this.tileQueue_,\n time: time,\n usedTiles: {},\n viewState: viewState,\n viewHints: viewHints,\n wantedTiles: {},\n mapId: getUid(this),\n renderTargets: {},\n };\n if (viewState.nextCenter && viewState.nextResolution) {\n var rotation = isNaN(viewState.nextRotation)\n ? viewState.rotation\n : viewState.nextRotation;\n frameState.nextExtent = getForViewAndSize(viewState.nextCenter, viewState.nextResolution, rotation, size);\n }\n }\n this.frameState_ = frameState;\n /** @type {import(\"./renderer/Map.js\").default} */ (this.renderer_).renderFrame(frameState);\n if (frameState) {\n if (frameState.animate) {\n this.render();\n }\n Array.prototype.push.apply(this.postRenderFunctions_, frameState.postRenderFunctions);\n if (previousFrameState) {\n var moveStart = !this.previousExtent_ ||\n (!isEmpty(this.previousExtent_) &&\n !equals(frameState.extent, this.previousExtent_));\n if (moveStart) {\n this.dispatchEvent(new MapEvent(MapEventType.MOVESTART, this, previousFrameState));\n this.previousExtent_ = createOrUpdateEmpty(this.previousExtent_);\n }\n }\n var idle = this.previousExtent_ &&\n !frameState.viewHints[ViewHint.ANIMATING] &&\n !frameState.viewHints[ViewHint.INTERACTING] &&\n !equals(frameState.extent, this.previousExtent_);\n if (idle) {\n this.dispatchEvent(new MapEvent(MapEventType.MOVEEND, this, frameState));\n clone(frameState.extent, this.previousExtent_);\n }\n }\n this.dispatchEvent(new MapEvent(MapEventType.POSTRENDER, this, frameState));\n this.renderComplete_ =\n this.hasListener(MapEventType.LOADSTART) ||\n this.hasListener(MapEventType.LOADEND) ||\n this.hasListener(RenderEventType.RENDERCOMPLETE)\n ? !this.tileQueue_.getTilesLoading() &&\n !this.tileQueue_.getCount() &&\n !this.getLoadingOrNotReady()\n : undefined;\n if (!this.postRenderTimeoutHandle_) {\n this.postRenderTimeoutHandle_ = setTimeout(function () {\n _this.postRenderTimeoutHandle_ = undefined;\n _this.handlePostRender();\n }, 0);\n }\n };\n /**\n * Sets the layergroup of this map.\n * @param {LayerGroup} layerGroup A layer group containing the layers in this map.\n * @observable\n * @api\n */\n PluggableMap.prototype.setLayerGroup = function (layerGroup) {\n var oldLayerGroup = this.getLayerGroup();\n if (oldLayerGroup) {\n this.handleLayerRemove_(new GroupEvent('removelayer', oldLayerGroup));\n }\n this.set(MapProperty.LAYERGROUP, layerGroup);\n };\n /**\n * Set the size of this map.\n * @param {import(\"./size.js\").Size|undefined} size The size in pixels of the map in the DOM.\n * @observable\n * @api\n */\n PluggableMap.prototype.setSize = function (size) {\n this.set(MapProperty.SIZE, size);\n };\n /**\n * Set the target element to render this map into.\n * @param {HTMLElement|string} [target] The Element or id of the Element\n * that the map is rendered in.\n * @observable\n * @api\n */\n PluggableMap.prototype.setTarget = function (target) {\n this.set(MapProperty.TARGET, target);\n };\n /**\n * Set the view for this map.\n * @param {View|Promise<import(\"./View.js\").ViewOptions>} view The view that controls this map.\n * It is also possible to pass a promise that resolves to options for constructing a view. This\n * alternative allows view properties to be resolved by sources or other components that load\n * view-related metadata.\n * @observable\n * @api\n */\n PluggableMap.prototype.setView = function (view) {\n if (!view || view instanceof View) {\n this.set(MapProperty.VIEW, view);\n return;\n }\n this.set(MapProperty.VIEW, new View());\n var map = this;\n view.then(function (viewOptions) {\n map.setView(new View(viewOptions));\n });\n };\n /**\n * Force a recalculation of the map viewport size. This should be called when\n * third-party code changes the size of the map viewport.\n * @api\n */\n PluggableMap.prototype.updateSize = function () {\n var targetElement = this.getTargetElement();\n var size = undefined;\n if (targetElement) {\n var computedStyle = getComputedStyle(targetElement);\n var width = targetElement.offsetWidth -\n parseFloat(computedStyle['borderLeftWidth']) -\n parseFloat(computedStyle['paddingLeft']) -\n parseFloat(computedStyle['paddingRight']) -\n parseFloat(computedStyle['borderRightWidth']);\n var height = targetElement.offsetHeight -\n parseFloat(computedStyle['borderTopWidth']) -\n parseFloat(computedStyle['paddingTop']) -\n parseFloat(computedStyle['paddingBottom']) -\n parseFloat(computedStyle['borderBottomWidth']);\n if (!isNaN(width) && !isNaN(height)) {\n size = [width, height];\n if (!hasArea(size) &&\n !!(targetElement.offsetWidth ||\n targetElement.offsetHeight ||\n targetElement.getClientRects().length)) {\n // eslint-disable-next-line\n console.warn(\"No map visible because the map container's width or height are 0.\");\n }\n }\n }\n this.setSize(size);\n this.updateViewportSize_();\n };\n /**\n * Recomputes the viewport size and save it on the view object (if any)\n * @private\n */\n PluggableMap.prototype.updateViewportSize_ = function () {\n var view = this.getView();\n if (view) {\n var size = undefined;\n var computedStyle = getComputedStyle(this.viewport_);\n if (computedStyle.width && computedStyle.height) {\n size = [\n parseInt(computedStyle.width, 10),\n parseInt(computedStyle.height, 10),\n ];\n }\n view.setViewportSize(size);\n }\n };\n return PluggableMap;\n}(BaseObject));\n/**\n * @param {MapOptions} options Map options.\n * @return {MapOptionsInternal} Internal map options.\n */\nfunction createOptionsInternal(options) {\n /**\n * @type {HTMLElement|Document}\n */\n var keyboardEventTarget = null;\n if (options.keyboardEventTarget !== undefined) {\n keyboardEventTarget =\n typeof options.keyboardEventTarget === 'string'\n ? document.getElementById(options.keyboardEventTarget)\n : options.keyboardEventTarget;\n }\n /**\n * @type {Object<string, *>}\n */\n var values = {};\n var layerGroup = options.layers &&\n typeof ( /** @type {?} */(options.layers).getLayers) === 'function'\n ? /** @type {LayerGroup} */ (options.layers)\n : new LayerGroup({ layers: /** @type {Collection} */ (options.layers) });\n values[MapProperty.LAYERGROUP] = layerGroup;\n values[MapProperty.TARGET] = options.target;\n values[MapProperty.VIEW] =\n options.view instanceof View ? options.view : new View();\n var controls;\n if (options.controls !== undefined) {\n if (Array.isArray(options.controls)) {\n controls = new Collection(options.controls.slice());\n }\n else {\n assert(typeof ( /** @type {?} */(options.controls).getArray) === 'function', 47); // Expected `controls` to be an array or an `import(\"./Collection.js\").Collection`\n controls = /** @type {Collection} */ (options.controls);\n }\n }\n var interactions;\n if (options.interactions !== undefined) {\n if (Array.isArray(options.interactions)) {\n interactions = new Collection(options.interactions.slice());\n }\n else {\n assert(typeof ( /** @type {?} */(options.interactions).getArray) ===\n 'function', 48); // Expected `interactions` to be an array or an `import(\"./Collection.js\").Collection`\n interactions = /** @type {Collection} */ (options.interactions);\n }\n }\n var overlays;\n if (options.overlays !== undefined) {\n if (Array.isArray(options.overlays)) {\n overlays = new Collection(options.overlays.slice());\n }\n else {\n assert(typeof ( /** @type {?} */(options.overlays).getArray) === 'function', 49); // Expected `overlays` to be an array or an `import(\"./Collection.js\").Collection`\n overlays = options.overlays;\n }\n }\n else {\n overlays = new Collection();\n }\n return {\n controls: controls,\n interactions: interactions,\n keyboardEventTarget: keyboardEventTarget,\n overlays: overlays,\n values: values,\n };\n}\nexport default PluggableMap;\n//# sourceMappingURL=PluggableMap.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/control/Rotate\n */\nimport Control from './Control.js';\nimport EventType from '../events/EventType.js';\nimport { CLASS_CONTROL, CLASS_HIDDEN, CLASS_UNSELECTABLE } from '../css.js';\nimport { easeOut } from '../easing.js';\n/**\n * @typedef {Object} Options\n * @property {string} [className='ol-rotate'] CSS class name.\n * @property {string|HTMLElement} [label='⇧'] Text label to use for the rotate button.\n * Instead of text, also an element (e.g. a `span` element) can be used.\n * @property {string} [tipLabel='Reset rotation'] Text label to use for the rotate tip.\n * @property {string} [compassClassName='ol-compass'] CSS class name for the compass.\n * @property {number} [duration=250] Animation duration in milliseconds.\n * @property {boolean} [autoHide=true] Hide the control when rotation is 0.\n * @property {function(import(\"../MapEvent.js\").default):void} [render] Function called when the control should\n * be re-rendered. This is called in a `requestAnimationFrame` callback.\n * @property {function():void} [resetNorth] Function called when the control is clicked.\n * This will override the default `resetNorth`.\n * @property {HTMLElement|string} [target] Specify a target if you want the control to be\n * rendered outside of the map's viewport.\n */\n/**\n * @classdesc\n * A button control to reset rotation to 0.\n * To style this control use css selector `.ol-rotate`. A `.ol-hidden` css\n * selector is added to the button when the rotation is 0.\n *\n * @api\n */\nvar Rotate = /** @class */ (function (_super) {\n __extends(Rotate, _super);\n /**\n * @param {Options} [opt_options] Rotate options.\n */\n function Rotate(opt_options) {\n var _this = this;\n var options = opt_options ? opt_options : {};\n _this = _super.call(this, {\n element: document.createElement('div'),\n render: options.render,\n target: options.target,\n }) || this;\n var className = options.className !== undefined ? options.className : 'ol-rotate';\n var label = options.label !== undefined ? options.label : '\\u21E7';\n var compassClassName = options.compassClassName !== undefined\n ? options.compassClassName\n : 'ol-compass';\n /**\n * @type {HTMLElement}\n * @private\n */\n _this.label_ = null;\n if (typeof label === 'string') {\n _this.label_ = document.createElement('span');\n _this.label_.className = compassClassName;\n _this.label_.textContent = label;\n }\n else {\n _this.label_ = label;\n _this.label_.classList.add(compassClassName);\n }\n var tipLabel = options.tipLabel ? options.tipLabel : 'Reset rotation';\n var button = document.createElement('button');\n button.className = className + '-reset';\n button.setAttribute('type', 'button');\n button.title = tipLabel;\n button.appendChild(_this.label_);\n button.addEventListener(EventType.CLICK, _this.handleClick_.bind(_this), false);\n var cssClasses = className + ' ' + CLASS_UNSELECTABLE + ' ' + CLASS_CONTROL;\n var element = _this.element;\n element.className = cssClasses;\n element.appendChild(button);\n _this.callResetNorth_ = options.resetNorth ? options.resetNorth : undefined;\n /**\n * @type {number}\n * @private\n */\n _this.duration_ = options.duration !== undefined ? options.duration : 250;\n /**\n * @type {boolean}\n * @private\n */\n _this.autoHide_ = options.autoHide !== undefined ? options.autoHide : true;\n /**\n * @private\n * @type {number|undefined}\n */\n _this.rotation_ = undefined;\n if (_this.autoHide_) {\n _this.element.classList.add(CLASS_HIDDEN);\n }\n return _this;\n }\n /**\n * @param {MouseEvent} event The event to handle\n * @private\n */\n Rotate.prototype.handleClick_ = function (event) {\n event.preventDefault();\n if (this.callResetNorth_ !== undefined) {\n this.callResetNorth_();\n }\n else {\n this.resetNorth_();\n }\n };\n /**\n * @private\n */\n Rotate.prototype.resetNorth_ = function () {\n var map = this.getMap();\n var view = map.getView();\n if (!view) {\n // the map does not have a view, so we can't act\n // upon it\n return;\n }\n var rotation = view.getRotation();\n if (rotation !== undefined) {\n if (this.duration_ > 0 && rotation % (2 * Math.PI) !== 0) {\n view.animate({\n rotation: 0,\n duration: this.duration_,\n easing: easeOut,\n });\n }\n else {\n view.setRotation(0);\n }\n }\n };\n /**\n * Update the rotate control element.\n * @param {import(\"../MapEvent.js\").default} mapEvent Map event.\n * @override\n */\n Rotate.prototype.render = function (mapEvent) {\n var frameState = mapEvent.frameState;\n if (!frameState) {\n return;\n }\n var rotation = frameState.viewState.rotation;\n if (rotation != this.rotation_) {\n var transform = 'rotate(' + rotation + 'rad)';\n if (this.autoHide_) {\n var contains = this.element.classList.contains(CLASS_HIDDEN);\n if (!contains && rotation === 0) {\n this.element.classList.add(CLASS_HIDDEN);\n }\n else if (contains && rotation !== 0) {\n this.element.classList.remove(CLASS_HIDDEN);\n }\n }\n this.label_.style.transform = transform;\n }\n this.rotation_ = rotation;\n };\n return Rotate;\n}(Control));\nexport default Rotate;\n//# sourceMappingURL=Rotate.js.map","/**\n * @module ol/interaction/Property\n */\n/**\n * @enum {string}\n */\nexport default {\n ACTIVE: 'active',\n};\n//# sourceMappingURL=Property.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/interaction/Interaction\n */\nimport BaseObject from '../Object.js';\nimport InteractionProperty from './Property.js';\nimport { easeOut, linear } from '../easing.js';\n/***\n * @template Return\n * @typedef {import(\"../Observable\").OnSignature<import(\"../Observable\").EventTypes, import(\"../events/Event.js\").default, Return> &\n * import(\"../Observable\").OnSignature<import(\"../ObjectEventType\").Types|\n * 'change:active', import(\"../Object\").ObjectEvent, Return> &\n * import(\"../Observable\").CombinedOnSignature<import(\"../Observable\").EventTypes|import(\"../ObjectEventType\").Types|\n * 'change:active', Return>} InteractionOnSignature\n */\n/**\n * Object literal with config options for interactions.\n * @typedef {Object} InteractionOptions\n * @property {function(import(\"../MapBrowserEvent.js\").default):boolean} handleEvent\n * Method called by the map to notify the interaction that a browser event was\n * dispatched to the map. If the function returns a falsy value, propagation of\n * the event to other interactions in the map's interactions chain will be\n * prevented (this includes functions with no explicit return). The interactions\n * are traversed in reverse order of the interactions collection of the map.\n */\n/**\n * @classdesc\n * Abstract base class; normally only used for creating subclasses and not\n * instantiated in apps.\n * User actions that change the state of the map. Some are similar to controls,\n * but are not associated with a DOM element.\n * For example, {@link module:ol/interaction/KeyboardZoom~KeyboardZoom} is\n * functionally the same as {@link module:ol/control/Zoom~Zoom}, but triggered\n * by a keyboard event not a button element event.\n * Although interactions do not have a DOM element, some of them do render\n * vectors and so are visible on the screen.\n * @api\n */\nvar Interaction = /** @class */ (function (_super) {\n __extends(Interaction, _super);\n /**\n * @param {InteractionOptions} [opt_options] Options.\n */\n function Interaction(opt_options) {\n var _this = _super.call(this) || this;\n /***\n * @type {InteractionOnSignature<import(\"../events\").EventsKey>}\n */\n _this.on;\n /***\n * @type {InteractionOnSignature<import(\"../events\").EventsKey>}\n */\n _this.once;\n /***\n * @type {InteractionOnSignature<void>}\n */\n _this.un;\n if (opt_options && opt_options.handleEvent) {\n _this.handleEvent = opt_options.handleEvent;\n }\n /**\n * @private\n * @type {import(\"../PluggableMap.js\").default|null}\n */\n _this.map_ = null;\n _this.setActive(true);\n return _this;\n }\n /**\n * Return whether the interaction is currently active.\n * @return {boolean} `true` if the interaction is active, `false` otherwise.\n * @observable\n * @api\n */\n Interaction.prototype.getActive = function () {\n return /** @type {boolean} */ (this.get(InteractionProperty.ACTIVE));\n };\n /**\n * Get the map associated with this interaction.\n * @return {import(\"../PluggableMap.js\").default|null} Map.\n * @api\n */\n Interaction.prototype.getMap = function () {\n return this.map_;\n };\n /**\n * Handles the {@link module:ol/MapBrowserEvent~MapBrowserEvent map browser event}.\n * @param {import(\"../MapBrowserEvent.js\").default} mapBrowserEvent Map browser event.\n * @return {boolean} `false` to stop event propagation.\n * @api\n */\n Interaction.prototype.handleEvent = function (mapBrowserEvent) {\n return true;\n };\n /**\n * Activate or deactivate the interaction.\n * @param {boolean} active Active.\n * @observable\n * @api\n */\n Interaction.prototype.setActive = function (active) {\n this.set(InteractionProperty.ACTIVE, active);\n };\n /**\n * Remove the interaction from its current map and attach it to the new map.\n * Subclasses may set up event handlers to get notified about changes to\n * the map here.\n * @param {import(\"../PluggableMap.js\").default|null} map Map.\n */\n Interaction.prototype.setMap = function (map) {\n this.map_ = map;\n };\n return Interaction;\n}(BaseObject));\n/**\n * @param {import(\"../View.js\").default} view View.\n * @param {import(\"../coordinate.js\").Coordinate} delta Delta.\n * @param {number} [opt_duration] Duration.\n */\nexport function pan(view, delta, opt_duration) {\n var currentCenter = view.getCenterInternal();\n if (currentCenter) {\n var center = [currentCenter[0] + delta[0], currentCenter[1] + delta[1]];\n view.animateInternal({\n duration: opt_duration !== undefined ? opt_duration : 250,\n easing: linear,\n center: view.getConstrainedCenter(center),\n });\n }\n}\n/**\n * @param {import(\"../View.js\").default} view View.\n * @param {number} delta Delta from previous zoom level.\n * @param {import(\"../coordinate.js\").Coordinate} [opt_anchor] Anchor coordinate in the user projection.\n * @param {number} [opt_duration] Duration.\n */\nexport function zoomByDelta(view, delta, opt_anchor, opt_duration) {\n var currentZoom = view.getZoom();\n if (currentZoom === undefined) {\n return;\n }\n var newZoom = view.getConstrainedZoom(currentZoom + delta);\n var newResolution = view.getResolutionForZoom(newZoom);\n if (view.getAnimating()) {\n view.cancelAnimations();\n }\n view.animate({\n resolution: newResolution,\n anchor: opt_anchor,\n duration: opt_duration !== undefined ? opt_duration : 250,\n easing: easeOut,\n });\n}\nexport default Interaction;\n//# sourceMappingURL=Interaction.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/interaction/DoubleClickZoom\n */\nimport Interaction, { zoomByDelta } from './Interaction.js';\nimport MapBrowserEventType from '../MapBrowserEventType.js';\n/**\n * @typedef {Object} Options\n * @property {number} [duration=250] Animation duration in milliseconds.\n * @property {number} [delta=1] The zoom delta applied on each double click.\n */\n/**\n * @classdesc\n * Allows the user to zoom by double-clicking on the map.\n * @api\n */\nvar DoubleClickZoom = /** @class */ (function (_super) {\n __extends(DoubleClickZoom, _super);\n /**\n * @param {Options} [opt_options] Options.\n */\n function DoubleClickZoom(opt_options) {\n var _this = _super.call(this) || this;\n var options = opt_options ? opt_options : {};\n /**\n * @private\n * @type {number}\n */\n _this.delta_ = options.delta ? options.delta : 1;\n /**\n * @private\n * @type {number}\n */\n _this.duration_ = options.duration !== undefined ? options.duration : 250;\n return _this;\n }\n /**\n * Handles the {@link module:ol/MapBrowserEvent~MapBrowserEvent map browser event} (if it was a\n * doubleclick) and eventually zooms the map.\n * @param {import(\"../MapBrowserEvent.js\").default} mapBrowserEvent Map browser event.\n * @return {boolean} `false` to stop event propagation.\n */\n DoubleClickZoom.prototype.handleEvent = function (mapBrowserEvent) {\n var stopEvent = false;\n if (mapBrowserEvent.type == MapBrowserEventType.DBLCLICK) {\n var browserEvent = /** @type {MouseEvent} */ (mapBrowserEvent.originalEvent);\n var map = mapBrowserEvent.map;\n var anchor = mapBrowserEvent.coordinate;\n var delta = browserEvent.shiftKey ? -this.delta_ : this.delta_;\n var view = map.getView();\n zoomByDelta(view, delta, anchor, this.duration_);\n browserEvent.preventDefault();\n stopEvent = true;\n }\n return !stopEvent;\n };\n return DoubleClickZoom;\n}(Interaction));\nexport default DoubleClickZoom;\n//# sourceMappingURL=DoubleClickZoom.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/interaction/Pointer\n */\nimport Interaction from './Interaction.js';\nimport MapBrowserEventType from '../MapBrowserEventType.js';\nimport { getValues } from '../obj.js';\n/**\n * @typedef {Object} Options\n * @property {function(import(\"../MapBrowserEvent.js\").default):boolean} [handleDownEvent]\n * Function handling \"down\" events. If the function returns `true` then a drag\n * sequence is started.\n * @property {function(import(\"../MapBrowserEvent.js\").default):void} [handleDragEvent]\n * Function handling \"drag\" events. This function is called on \"move\" events\n * during a drag sequence.\n * @property {function(import(\"../MapBrowserEvent.js\").default):boolean} [handleEvent]\n * Method called by the map to notify the interaction that a browser event was\n * dispatched to the map. The function may return `false` to prevent the\n * propagation of the event to other interactions in the map's interactions\n * chain.\n * @property {function(import(\"../MapBrowserEvent.js\").default):void} [handleMoveEvent]\n * Function handling \"move\" events. This function is called on \"move\" events.\n * This functions is also called during a drag sequence, so during a drag\n * sequence both the `handleDragEvent` function and this function are called.\n * If `handleDownEvent` is defined and it returns true this function will not\n * be called during a drag sequence.\n * @property {function(import(\"../MapBrowserEvent.js\").default):boolean} [handleUpEvent]\n * Function handling \"up\" events. If the function returns `false` then the\n * current drag sequence is stopped.\n * @property {function(boolean):boolean} [stopDown]\n * Should the down event be propagated to other interactions, or should be\n * stopped?\n */\n/**\n * @classdesc\n * Base class that calls user-defined functions on `down`, `move` and `up`\n * events. This class also manages \"drag sequences\".\n *\n * When the `handleDownEvent` user function returns `true` a drag sequence is\n * started. During a drag sequence the `handleDragEvent` user function is\n * called on `move` events. The drag sequence ends when the `handleUpEvent`\n * user function is called and returns `false`.\n * @api\n */\nvar PointerInteraction = /** @class */ (function (_super) {\n __extends(PointerInteraction, _super);\n /**\n * @param {Options} [opt_options] Options.\n */\n function PointerInteraction(opt_options) {\n var _this = this;\n var options = opt_options ? opt_options : {};\n _this = _super.call(this, \n /** @type {import(\"./Interaction.js\").InteractionOptions} */ (options)) || this;\n if (options.handleDownEvent) {\n _this.handleDownEvent = options.handleDownEvent;\n }\n if (options.handleDragEvent) {\n _this.handleDragEvent = options.handleDragEvent;\n }\n if (options.handleMoveEvent) {\n _this.handleMoveEvent = options.handleMoveEvent;\n }\n if (options.handleUpEvent) {\n _this.handleUpEvent = options.handleUpEvent;\n }\n if (options.stopDown) {\n _this.stopDown = options.stopDown;\n }\n /**\n * @type {boolean}\n * @protected\n */\n _this.handlingDownUpSequence = false;\n /**\n * @type {!Object<string, PointerEvent>}\n * @private\n */\n _this.trackedPointers_ = {};\n /**\n * @type {Array<PointerEvent>}\n * @protected\n */\n _this.targetPointers = [];\n return _this;\n }\n /**\n * Returns the current number of pointers involved in the interaction,\n * e.g. `2` when two fingers are used.\n * @return {number} The number of pointers.\n * @api\n */\n PointerInteraction.prototype.getPointerCount = function () {\n return this.targetPointers.length;\n };\n /**\n * Handle pointer down events.\n * @param {import(\"../MapBrowserEvent.js\").default} mapBrowserEvent Event.\n * @return {boolean} If the event was consumed.\n * @protected\n */\n PointerInteraction.prototype.handleDownEvent = function (mapBrowserEvent) {\n return false;\n };\n /**\n * Handle pointer drag events.\n * @param {import(\"../MapBrowserEvent.js\").default} mapBrowserEvent Event.\n * @protected\n */\n PointerInteraction.prototype.handleDragEvent = function (mapBrowserEvent) { };\n /**\n * Handles the {@link module:ol/MapBrowserEvent~MapBrowserEvent map browser event} and may call into\n * other functions, if event sequences like e.g. 'drag' or 'down-up' etc. are\n * detected.\n * @param {import(\"../MapBrowserEvent.js\").default} mapBrowserEvent Map browser event.\n * @return {boolean} `false` to stop event propagation.\n * @api\n */\n PointerInteraction.prototype.handleEvent = function (mapBrowserEvent) {\n if (!mapBrowserEvent.originalEvent) {\n return true;\n }\n var stopEvent = false;\n this.updateTrackedPointers_(mapBrowserEvent);\n if (this.handlingDownUpSequence) {\n if (mapBrowserEvent.type == MapBrowserEventType.POINTERDRAG) {\n this.handleDragEvent(mapBrowserEvent);\n // prevent page scrolling during dragging\n mapBrowserEvent.originalEvent.preventDefault();\n }\n else if (mapBrowserEvent.type == MapBrowserEventType.POINTERUP) {\n var handledUp = this.handleUpEvent(mapBrowserEvent);\n this.handlingDownUpSequence =\n handledUp && this.targetPointers.length > 0;\n }\n }\n else {\n if (mapBrowserEvent.type == MapBrowserEventType.POINTERDOWN) {\n var handled = this.handleDownEvent(mapBrowserEvent);\n this.handlingDownUpSequence = handled;\n stopEvent = this.stopDown(handled);\n }\n else if (mapBrowserEvent.type == MapBrowserEventType.POINTERMOVE) {\n this.handleMoveEvent(mapBrowserEvent);\n }\n }\n return !stopEvent;\n };\n /**\n * Handle pointer move events.\n * @param {import(\"../MapBrowserEvent.js\").default} mapBrowserEvent Event.\n * @protected\n */\n PointerInteraction.prototype.handleMoveEvent = function (mapBrowserEvent) { };\n /**\n * Handle pointer up events.\n * @param {import(\"../MapBrowserEvent.js\").default} mapBrowserEvent Event.\n * @return {boolean} If the event was consumed.\n * @protected\n */\n PointerInteraction.prototype.handleUpEvent = function (mapBrowserEvent) {\n return false;\n };\n /**\n * This function is used to determine if \"down\" events should be propagated\n * to other interactions or should be stopped.\n * @param {boolean} handled Was the event handled by the interaction?\n * @return {boolean} Should the `down` event be stopped?\n */\n PointerInteraction.prototype.stopDown = function (handled) {\n return handled;\n };\n /**\n * @param {import(\"../MapBrowserEvent.js\").default} mapBrowserEvent Event.\n * @private\n */\n PointerInteraction.prototype.updateTrackedPointers_ = function (mapBrowserEvent) {\n if (isPointerDraggingEvent(mapBrowserEvent)) {\n var event_1 = mapBrowserEvent.originalEvent;\n var id = event_1.pointerId.toString();\n if (mapBrowserEvent.type == MapBrowserEventType.POINTERUP) {\n delete this.trackedPointers_[id];\n }\n else if (mapBrowserEvent.type == MapBrowserEventType.POINTERDOWN) {\n this.trackedPointers_[id] = event_1;\n }\n else if (id in this.trackedPointers_) {\n // update only when there was a pointerdown event for this pointer\n this.trackedPointers_[id] = event_1;\n }\n this.targetPointers = getValues(this.trackedPointers_);\n }\n };\n return PointerInteraction;\n}(Interaction));\n/**\n * @param {Array<PointerEvent>} pointerEvents List of events.\n * @return {import(\"../pixel.js\").Pixel} Centroid pixel.\n */\nexport function centroid(pointerEvents) {\n var length = pointerEvents.length;\n var clientX = 0;\n var clientY = 0;\n for (var i = 0; i < length; i++) {\n clientX += pointerEvents[i].clientX;\n clientY += pointerEvents[i].clientY;\n }\n return [clientX / length, clientY / length];\n}\n/**\n * @param {import(\"../MapBrowserEvent.js\").default} mapBrowserEvent Event.\n * @return {boolean} Whether the event is a pointerdown, pointerdrag\n * or pointerup event.\n */\nfunction isPointerDraggingEvent(mapBrowserEvent) {\n var type = mapBrowserEvent.type;\n return (type === MapBrowserEventType.POINTERDOWN ||\n type === MapBrowserEventType.POINTERDRAG ||\n type === MapBrowserEventType.POINTERUP);\n}\nexport default PointerInteraction;\n//# sourceMappingURL=Pointer.js.map","/**\n * @module ol/events/condition\n */\nimport MapBrowserEventType from '../MapBrowserEventType.js';\nimport { FALSE, TRUE } from '../functions.js';\nimport { MAC, WEBKIT } from '../has.js';\nimport { assert } from '../asserts.js';\n/**\n * A function that takes an {@link module:ol/MapBrowserEvent~MapBrowserEvent} and returns a\n * `{boolean}`. If the condition is met, true should be returned.\n *\n * @typedef {function(this: ?, import(\"../MapBrowserEvent.js\").default): boolean} Condition\n */\n/**\n * Creates a condition function that passes when all provided conditions pass.\n * @param {...Condition} var_args Conditions to check.\n * @return {Condition} Condition function.\n */\nexport function all(var_args) {\n var conditions = arguments;\n /**\n * @param {import(\"../MapBrowserEvent.js\").default} event Event.\n * @return {boolean} All conditions passed.\n */\n return function (event) {\n var pass = true;\n for (var i = 0, ii = conditions.length; i < ii; ++i) {\n pass = pass && conditions[i](event);\n if (!pass) {\n break;\n }\n }\n return pass;\n };\n}\n/**\n * Return `true` if only the alt-key is pressed, `false` otherwise (e.g. when\n * additionally the shift-key is pressed).\n *\n * @param {import(\"../MapBrowserEvent.js\").default} mapBrowserEvent Map browser event.\n * @return {boolean} True if only the alt key is pressed.\n * @api\n */\nexport var altKeyOnly = function (mapBrowserEvent) {\n var originalEvent = /** @type {KeyboardEvent|MouseEvent|TouchEvent} */ (mapBrowserEvent.originalEvent);\n return (originalEvent.altKey &&\n !(originalEvent.metaKey || originalEvent.ctrlKey) &&\n !originalEvent.shiftKey);\n};\n/**\n * Return `true` if only the alt-key and shift-key is pressed, `false` otherwise\n * (e.g. when additionally the platform-modifier-key is pressed).\n *\n * @param {import(\"../MapBrowserEvent.js\").default} mapBrowserEvent Map browser event.\n * @return {boolean} True if only the alt and shift keys are pressed.\n * @api\n */\nexport var altShiftKeysOnly = function (mapBrowserEvent) {\n var originalEvent = /** @type {KeyboardEvent|MouseEvent|TouchEvent} */ (mapBrowserEvent.originalEvent);\n return (originalEvent.altKey &&\n !(originalEvent.metaKey || originalEvent.ctrlKey) &&\n originalEvent.shiftKey);\n};\n/**\n * Return `true` if the map has the focus. This condition requires a map target\n * element with a `tabindex` attribute, e.g. `<div id=\"map\" tabindex=\"1\">`.\n *\n * @param {import(\"../MapBrowserEvent.js\").default} event Map browser event.\n * @return {boolean} The map has the focus.\n * @api\n */\nexport var focus = function (event) {\n var targetElement = event.map.getTargetElement();\n var activeElement = event.map.getOwnerDocument().activeElement;\n return targetElement.contains(activeElement);\n};\n/**\n * Return `true` if the map has the focus or no 'tabindex' attribute set.\n *\n * @param {import(\"../MapBrowserEvent.js\").default} event Map browser event.\n * @return {boolean} The map container has the focus or no 'tabindex' attribute.\n */\nexport var focusWithTabindex = function (event) {\n return event.map.getTargetElement().hasAttribute('tabindex')\n ? focus(event)\n : true;\n};\n/**\n * Return always true.\n *\n * @param {import(\"../MapBrowserEvent.js\").default} mapBrowserEvent Map browser event.\n * @return {boolean} True.\n * @api\n */\nexport var always = TRUE;\n/**\n * Return `true` if the event is a `click` event, `false` otherwise.\n *\n * @param {import(\"../MapBrowserEvent.js\").default} mapBrowserEvent Map browser event.\n * @return {boolean} True if the event is a map `click` event.\n * @api\n */\nexport var click = function (mapBrowserEvent) {\n return mapBrowserEvent.type == MapBrowserEventType.CLICK;\n};\n/**\n * Return `true` if the event has an \"action\"-producing mouse button.\n *\n * By definition, this includes left-click on windows/linux, and left-click\n * without the ctrl key on Macs.\n *\n * @param {import(\"../MapBrowserEvent.js\").default} mapBrowserEvent Map browser event.\n * @return {boolean} The result.\n */\nexport var mouseActionButton = function (mapBrowserEvent) {\n var originalEvent = /** @type {MouseEvent} */ (mapBrowserEvent.originalEvent);\n return originalEvent.button == 0 && !(WEBKIT && MAC && originalEvent.ctrlKey);\n};\n/**\n * Return always false.\n *\n * @param {import(\"../MapBrowserEvent.js\").default} mapBrowserEvent Map browser event.\n * @return {boolean} False.\n * @api\n */\nexport var never = FALSE;\n/**\n * Return `true` if the browser event is a `pointermove` event, `false`\n * otherwise.\n *\n * @param {import(\"../MapBrowserEvent.js\").default} mapBrowserEvent Map browser event.\n * @return {boolean} True if the browser event is a `pointermove` event.\n * @api\n */\nexport var pointerMove = function (mapBrowserEvent) {\n return mapBrowserEvent.type == 'pointermove';\n};\n/**\n * Return `true` if the event is a map `singleclick` event, `false` otherwise.\n *\n * @param {import(\"../MapBrowserEvent.js\").default} mapBrowserEvent Map browser event.\n * @return {boolean} True if the event is a map `singleclick` event.\n * @api\n */\nexport var singleClick = function (mapBrowserEvent) {\n return mapBrowserEvent.type == MapBrowserEventType.SINGLECLICK;\n};\n/**\n * Return `true` if the event is a map `dblclick` event, `false` otherwise.\n *\n * @param {import(\"../MapBrowserEvent.js\").default} mapBrowserEvent Map browser event.\n * @return {boolean} True if the event is a map `dblclick` event.\n * @api\n */\nexport var doubleClick = function (mapBrowserEvent) {\n return mapBrowserEvent.type == MapBrowserEventType.DBLCLICK;\n};\n/**\n * Return `true` if no modifier key (alt-, shift- or platform-modifier-key) is\n * pressed.\n *\n * @param {import(\"../MapBrowserEvent.js\").default} mapBrowserEvent Map browser event.\n * @return {boolean} True only if there no modifier keys are pressed.\n * @api\n */\nexport var noModifierKeys = function (mapBrowserEvent) {\n var originalEvent = /** @type {KeyboardEvent|MouseEvent|TouchEvent} */ (mapBrowserEvent.originalEvent);\n return (!originalEvent.altKey &&\n !(originalEvent.metaKey || originalEvent.ctrlKey) &&\n !originalEvent.shiftKey);\n};\n/**\n * Return `true` if only the platform-modifier-key (the meta-key on Mac,\n * ctrl-key otherwise) is pressed, `false` otherwise (e.g. when additionally\n * the shift-key is pressed).\n *\n * @param {import(\"../MapBrowserEvent.js\").default} mapBrowserEvent Map browser event.\n * @return {boolean} True if only the platform modifier key is pressed.\n * @api\n */\nexport var platformModifierKeyOnly = function (mapBrowserEvent) {\n var originalEvent = /** @type {KeyboardEvent|MouseEvent|TouchEvent} */ (mapBrowserEvent.originalEvent);\n return (!originalEvent.altKey &&\n (MAC ? originalEvent.metaKey : originalEvent.ctrlKey) &&\n !originalEvent.shiftKey);\n};\n/**\n * Return `true` if only the shift-key is pressed, `false` otherwise (e.g. when\n * additionally the alt-key is pressed).\n *\n * @param {import(\"../MapBrowserEvent.js\").default} mapBrowserEvent Map browser event.\n * @return {boolean} True if only the shift key is pressed.\n * @api\n */\nexport var shiftKeyOnly = function (mapBrowserEvent) {\n var originalEvent = /** @type {KeyboardEvent|MouseEvent|TouchEvent} */ (mapBrowserEvent.originalEvent);\n return (!originalEvent.altKey &&\n !(originalEvent.metaKey || originalEvent.ctrlKey) &&\n originalEvent.shiftKey);\n};\n/**\n * Return `true` if the target element is not editable, i.e. not a `<input>`-,\n * `<select>`- or `<textarea>`-element, `false` otherwise.\n *\n * @param {import(\"../MapBrowserEvent.js\").default} mapBrowserEvent Map browser event.\n * @return {boolean} True only if the target element is not editable.\n * @api\n */\nexport var targetNotEditable = function (mapBrowserEvent) {\n var originalEvent = /** @type {KeyboardEvent|MouseEvent|TouchEvent} */ (mapBrowserEvent.originalEvent);\n var tagName = /** @type {Element} */ (originalEvent.target).tagName;\n return tagName !== 'INPUT' && tagName !== 'SELECT' && tagName !== 'TEXTAREA';\n};\n/**\n * Return `true` if the event originates from a mouse device.\n *\n * @param {import(\"../MapBrowserEvent.js\").default} mapBrowserEvent Map browser event.\n * @return {boolean} True if the event originates from a mouse device.\n * @api\n */\nexport var mouseOnly = function (mapBrowserEvent) {\n var pointerEvent = /** @type {import(\"../MapBrowserEvent\").default} */ (mapBrowserEvent).originalEvent;\n assert(pointerEvent !== undefined, 56); // mapBrowserEvent must originate from a pointer event\n // see https://www.w3.org/TR/pointerevents/#widl-PointerEvent-pointerType\n return pointerEvent.pointerType == 'mouse';\n};\n/**\n * Return `true` if the event originates from a touchable device.\n *\n * @param {import(\"../MapBrowserEvent.js\").default} mapBrowserEvent Map browser event.\n * @return {boolean} True if the event originates from a touchable device.\n * @api\n */\nexport var touchOnly = function (mapBrowserEvent) {\n var pointerEvt = /** @type {import(\"../MapBrowserEvent\").default} */ (mapBrowserEvent).originalEvent;\n assert(pointerEvt !== undefined, 56); // mapBrowserEvent must originate from a pointer event\n // see https://www.w3.org/TR/pointerevents/#widl-PointerEvent-pointerType\n return pointerEvt.pointerType === 'touch';\n};\n/**\n * Return `true` if the event originates from a digital pen.\n *\n * @param {import(\"../MapBrowserEvent.js\").default} mapBrowserEvent Map browser event.\n * @return {boolean} True if the event originates from a digital pen.\n * @api\n */\nexport var penOnly = function (mapBrowserEvent) {\n var pointerEvt = /** @type {import(\"../MapBrowserEvent\").default} */ (mapBrowserEvent).originalEvent;\n assert(pointerEvt !== undefined, 56); // mapBrowserEvent must originate from a pointer event\n // see https://www.w3.org/TR/pointerevents/#widl-PointerEvent-pointerType\n return pointerEvt.pointerType === 'pen';\n};\n/**\n * Return `true` if the event originates from a primary pointer in\n * contact with the surface or if the left mouse button is pressed.\n * See https://www.w3.org/TR/pointerevents/#button-states.\n *\n * @param {import(\"../MapBrowserEvent.js\").default} mapBrowserEvent Map browser event.\n * @return {boolean} True if the event originates from a primary pointer.\n * @api\n */\nexport var primaryAction = function (mapBrowserEvent) {\n var pointerEvent = /** @type {import(\"../MapBrowserEvent\").default} */ (mapBrowserEvent).originalEvent;\n assert(pointerEvent !== undefined, 56); // mapBrowserEvent must originate from a pointer event\n return pointerEvent.isPrimary && pointerEvent.button === 0;\n};\n//# sourceMappingURL=condition.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/interaction/DragPan\n */\nimport PointerInteraction, { centroid as centroidFromPointers, } from './Pointer.js';\nimport { FALSE } from '../functions.js';\nimport { all, focusWithTabindex, noModifierKeys, primaryAction, } from '../events/condition.js';\nimport { easeOut } from '../easing.js';\nimport { rotate as rotateCoordinate, scale as scaleCoordinate, } from '../coordinate.js';\n/**\n * @typedef {Object} Options\n * @property {import(\"../events/condition.js\").Condition} [condition] A function that takes an {@link module:ol/MapBrowserEvent~MapBrowserEvent} and returns a boolean\n * to indicate whether that event should be handled.\n * Default is {@link module:ol/events/condition.noModifierKeys} and {@link module:ol/events/condition.primaryAction}.\n * @property {boolean} [onFocusOnly=false] When the map's target has a `tabindex` attribute set,\n * the interaction will only handle events when the map has the focus.\n * @property {import(\"../Kinetic.js\").default} [kinetic] Kinetic inertia to apply to the pan.\n */\n/**\n * @classdesc\n * Allows the user to pan the map by dragging the map.\n * @api\n */\nvar DragPan = /** @class */ (function (_super) {\n __extends(DragPan, _super);\n /**\n * @param {Options} [opt_options] Options.\n */\n function DragPan(opt_options) {\n var _this = _super.call(this, {\n stopDown: FALSE,\n }) || this;\n var options = opt_options ? opt_options : {};\n /**\n * @private\n * @type {import(\"../Kinetic.js\").default|undefined}\n */\n _this.kinetic_ = options.kinetic;\n /**\n * @type {import(\"../pixel.js\").Pixel}\n */\n _this.lastCentroid = null;\n /**\n * @type {number}\n */\n _this.lastPointersCount_;\n /**\n * @type {boolean}\n */\n _this.panning_ = false;\n var condition = options.condition\n ? options.condition\n : all(noModifierKeys, primaryAction);\n /**\n * @private\n * @type {import(\"../events/condition.js\").Condition}\n */\n _this.condition_ = options.onFocusOnly\n ? all(focusWithTabindex, condition)\n : condition;\n /**\n * @private\n * @type {boolean}\n */\n _this.noKinetic_ = false;\n return _this;\n }\n /**\n * Handle pointer drag events.\n * @param {import(\"../MapBrowserEvent.js\").default} mapBrowserEvent Event.\n */\n DragPan.prototype.handleDragEvent = function (mapBrowserEvent) {\n if (!this.panning_) {\n this.panning_ = true;\n this.getMap().getView().beginInteraction();\n }\n var targetPointers = this.targetPointers;\n var centroid = centroidFromPointers(targetPointers);\n if (targetPointers.length == this.lastPointersCount_) {\n if (this.kinetic_) {\n this.kinetic_.update(centroid[0], centroid[1]);\n }\n if (this.lastCentroid) {\n var delta = [\n this.lastCentroid[0] - centroid[0],\n centroid[1] - this.lastCentroid[1],\n ];\n var map = mapBrowserEvent.map;\n var view = map.getView();\n scaleCoordinate(delta, view.getResolution());\n rotateCoordinate(delta, view.getRotation());\n view.adjustCenterInternal(delta);\n }\n }\n else if (this.kinetic_) {\n // reset so we don't overestimate the kinetic energy after\n // after one finger down, tiny drag, second finger down\n this.kinetic_.begin();\n }\n this.lastCentroid = centroid;\n this.lastPointersCount_ = targetPointers.length;\n mapBrowserEvent.originalEvent.preventDefault();\n };\n /**\n * Handle pointer up events.\n * @param {import(\"../MapBrowserEvent.js\").default} mapBrowserEvent Event.\n * @return {boolean} If the event was consumed.\n */\n DragPan.prototype.handleUpEvent = function (mapBrowserEvent) {\n var map = mapBrowserEvent.map;\n var view = map.getView();\n if (this.targetPointers.length === 0) {\n if (!this.noKinetic_ && this.kinetic_ && this.kinetic_.end()) {\n var distance = this.kinetic_.getDistance();\n var angle = this.kinetic_.getAngle();\n var center = view.getCenterInternal();\n var centerpx = map.getPixelFromCoordinateInternal(center);\n var dest = map.getCoordinateFromPixelInternal([\n centerpx[0] - distance * Math.cos(angle),\n centerpx[1] - distance * Math.sin(angle),\n ]);\n view.animateInternal({\n center: view.getConstrainedCenter(dest),\n duration: 500,\n easing: easeOut,\n });\n }\n if (this.panning_) {\n this.panning_ = false;\n view.endInteraction();\n }\n return false;\n }\n else {\n if (this.kinetic_) {\n // reset so we don't overestimate the kinetic energy after\n // after one finger up, tiny drag, second finger up\n this.kinetic_.begin();\n }\n this.lastCentroid = null;\n return true;\n }\n };\n /**\n * Handle pointer down events.\n * @param {import(\"../MapBrowserEvent.js\").default} mapBrowserEvent Event.\n * @return {boolean} If the event was consumed.\n */\n DragPan.prototype.handleDownEvent = function (mapBrowserEvent) {\n if (this.targetPointers.length > 0 && this.condition_(mapBrowserEvent)) {\n var map = mapBrowserEvent.map;\n var view = map.getView();\n this.lastCentroid = null;\n // stop any current animation\n if (view.getAnimating()) {\n view.cancelAnimations();\n }\n if (this.kinetic_) {\n this.kinetic_.begin();\n }\n // No kinetic as soon as more than one pointer on the screen is\n // detected. This is to prevent nasty pans after pinch.\n this.noKinetic_ = this.targetPointers.length > 1;\n return true;\n }\n else {\n return false;\n }\n };\n return DragPan;\n}(PointerInteraction));\nexport default DragPan;\n//# sourceMappingURL=DragPan.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/interaction/DragRotate\n */\nimport PointerInteraction from './Pointer.js';\nimport { FALSE } from '../functions.js';\nimport { altShiftKeysOnly, mouseActionButton, mouseOnly, } from '../events/condition.js';\nimport { disable } from '../rotationconstraint.js';\n/**\n * @typedef {Object} Options\n * @property {import(\"../events/condition.js\").Condition} [condition] A function that takes an\n * {@link module:ol/MapBrowserEvent~MapBrowserEvent} and returns a boolean\n * to indicate whether that event should be handled.\n * Default is {@link module:ol/events/condition.altShiftKeysOnly}.\n * @property {number} [duration=250] Animation duration in milliseconds.\n */\n/**\n * @classdesc\n * Allows the user to rotate the map by clicking and dragging on the map,\n * normally combined with an {@link module:ol/events/condition} that limits\n * it to when the alt and shift keys are held down.\n *\n * This interaction is only supported for mouse devices.\n * @api\n */\nvar DragRotate = /** @class */ (function (_super) {\n __extends(DragRotate, _super);\n /**\n * @param {Options} [opt_options] Options.\n */\n function DragRotate(opt_options) {\n var _this = this;\n var options = opt_options ? opt_options : {};\n _this = _super.call(this, {\n stopDown: FALSE,\n }) || this;\n /**\n * @private\n * @type {import(\"../events/condition.js\").Condition}\n */\n _this.condition_ = options.condition ? options.condition : altShiftKeysOnly;\n /**\n * @private\n * @type {number|undefined}\n */\n _this.lastAngle_ = undefined;\n /**\n * @private\n * @type {number}\n */\n _this.duration_ = options.duration !== undefined ? options.duration : 250;\n return _this;\n }\n /**\n * Handle pointer drag events.\n * @param {import(\"../MapBrowserEvent.js\").default} mapBrowserEvent Event.\n */\n DragRotate.prototype.handleDragEvent = function (mapBrowserEvent) {\n if (!mouseOnly(mapBrowserEvent)) {\n return;\n }\n var map = mapBrowserEvent.map;\n var view = map.getView();\n if (view.getConstraints().rotation === disable) {\n return;\n }\n var size = map.getSize();\n var offset = mapBrowserEvent.pixel;\n var theta = Math.atan2(size[1] / 2 - offset[1], offset[0] - size[0] / 2);\n if (this.lastAngle_ !== undefined) {\n var delta = theta - this.lastAngle_;\n view.adjustRotationInternal(-delta);\n }\n this.lastAngle_ = theta;\n };\n /**\n * Handle pointer up events.\n * @param {import(\"../MapBrowserEvent.js\").default} mapBrowserEvent Event.\n * @return {boolean} If the event was consumed.\n */\n DragRotate.prototype.handleUpEvent = function (mapBrowserEvent) {\n if (!mouseOnly(mapBrowserEvent)) {\n return true;\n }\n var map = mapBrowserEvent.map;\n var view = map.getView();\n view.endInteraction(this.duration_);\n return false;\n };\n /**\n * Handle pointer down events.\n * @param {import(\"../MapBrowserEvent.js\").default} mapBrowserEvent Event.\n * @return {boolean} If the event was consumed.\n */\n DragRotate.prototype.handleDownEvent = function (mapBrowserEvent) {\n if (!mouseOnly(mapBrowserEvent)) {\n return false;\n }\n if (mouseActionButton(mapBrowserEvent) &&\n this.condition_(mapBrowserEvent)) {\n var map = mapBrowserEvent.map;\n map.getView().beginInteraction();\n this.lastAngle_ = undefined;\n return true;\n }\n else {\n return false;\n }\n };\n return DragRotate;\n}(PointerInteraction));\nexport default DragRotate;\n//# sourceMappingURL=DragRotate.js.map","/**\n * @module ol/render/Box\n */\nvar __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\nimport Disposable from '../Disposable.js';\nimport Polygon from '../geom/Polygon.js';\nvar RenderBox = /** @class */ (function (_super) {\n __extends(RenderBox, _super);\n /**\n * @param {string} className CSS class name.\n */\n function RenderBox(className) {\n var _this = _super.call(this) || this;\n /**\n * @type {import(\"../geom/Polygon.js\").default}\n * @private\n */\n _this.geometry_ = null;\n /**\n * @type {HTMLDivElement}\n * @private\n */\n _this.element_ = document.createElement('div');\n _this.element_.style.position = 'absolute';\n _this.element_.style.pointerEvents = 'auto';\n _this.element_.className = 'ol-box ' + className;\n /**\n * @private\n * @type {import(\"../PluggableMap.js\").default|null}\n */\n _this.map_ = null;\n /**\n * @private\n * @type {import(\"../pixel.js\").Pixel}\n */\n _this.startPixel_ = null;\n /**\n * @private\n * @type {import(\"../pixel.js\").Pixel}\n */\n _this.endPixel_ = null;\n return _this;\n }\n /**\n * Clean up.\n */\n RenderBox.prototype.disposeInternal = function () {\n this.setMap(null);\n };\n /**\n * @private\n */\n RenderBox.prototype.render_ = function () {\n var startPixel = this.startPixel_;\n var endPixel = this.endPixel_;\n var px = 'px';\n var style = this.element_.style;\n style.left = Math.min(startPixel[0], endPixel[0]) + px;\n style.top = Math.min(startPixel[1], endPixel[1]) + px;\n style.width = Math.abs(endPixel[0] - startPixel[0]) + px;\n style.height = Math.abs(endPixel[1] - startPixel[1]) + px;\n };\n /**\n * @param {import(\"../PluggableMap.js\").default|null} map Map.\n */\n RenderBox.prototype.setMap = function (map) {\n if (this.map_) {\n this.map_.getOverlayContainer().removeChild(this.element_);\n var style = this.element_.style;\n style.left = 'inherit';\n style.top = 'inherit';\n style.width = 'inherit';\n style.height = 'inherit';\n }\n this.map_ = map;\n if (this.map_) {\n this.map_.getOverlayContainer().appendChild(this.element_);\n }\n };\n /**\n * @param {import(\"../pixel.js\").Pixel} startPixel Start pixel.\n * @param {import(\"../pixel.js\").Pixel} endPixel End pixel.\n */\n RenderBox.prototype.setPixels = function (startPixel, endPixel) {\n this.startPixel_ = startPixel;\n this.endPixel_ = endPixel;\n this.createOrUpdateGeometry();\n this.render_();\n };\n /**\n * Creates or updates the cached geometry.\n */\n RenderBox.prototype.createOrUpdateGeometry = function () {\n var startPixel = this.startPixel_;\n var endPixel = this.endPixel_;\n var pixels = [\n startPixel,\n [startPixel[0], endPixel[1]],\n endPixel,\n [endPixel[0], startPixel[1]],\n ];\n var coordinates = pixels.map(this.map_.getCoordinateFromPixelInternal, this.map_);\n // close the polygon\n coordinates[4] = coordinates[0].slice();\n if (!this.geometry_) {\n this.geometry_ = new Polygon([coordinates]);\n }\n else {\n this.geometry_.setCoordinates([coordinates]);\n }\n };\n /**\n * @return {import(\"../geom/Polygon.js\").default} Geometry.\n */\n RenderBox.prototype.getGeometry = function () {\n return this.geometry_;\n };\n return RenderBox;\n}(Disposable));\nexport default RenderBox;\n//# sourceMappingURL=Box.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/interaction/DragBox\n */\n// FIXME draw drag box\nimport Event from '../events/Event.js';\nimport PointerInteraction from './Pointer.js';\nimport RenderBox from '../render/Box.js';\nimport { mouseActionButton } from '../events/condition.js';\n/**\n * A function that takes a {@link module:ol/MapBrowserEvent~MapBrowserEvent} and two\n * {@link module:ol/pixel~Pixel}s and returns a `{boolean}`. If the condition is met,\n * true should be returned.\n * @typedef {function(this: ?, import(\"../MapBrowserEvent.js\").default, import(\"../pixel.js\").Pixel, import(\"../pixel.js\").Pixel):boolean} EndCondition\n */\n/**\n * @typedef {Object} Options\n * @property {string} [className='ol-dragbox'] CSS class name for styling the box.\n * @property {import(\"../events/condition.js\").Condition} [condition] A function that takes an {@link module:ol/MapBrowserEvent~MapBrowserEvent} and returns a boolean\n * to indicate whether that event should be handled.\n * Default is {@link ol/events/condition~mouseActionButton}.\n * @property {number} [minArea=64] The minimum area of the box in pixel, this value is used by the default\n * `boxEndCondition` function.\n * @property {EndCondition} [boxEndCondition] A function that takes a {@link module:ol/MapBrowserEvent~MapBrowserEvent} and two\n * {@link module:ol/pixel~Pixel}s to indicate whether a `boxend` event should be fired.\n * Default is `true` if the area of the box is bigger than the `minArea` option.\n * @property {function(this:DragBox, import(\"../MapBrowserEvent.js\").default):void} [onBoxEnd] Code to execute just\n * before `boxend` is fired.\n */\n/**\n * @enum {string}\n */\nvar DragBoxEventType = {\n /**\n * Triggered upon drag box start.\n * @event DragBoxEvent#boxstart\n * @api\n */\n BOXSTART: 'boxstart',\n /**\n * Triggered on drag when box is active.\n * @event DragBoxEvent#boxdrag\n * @api\n */\n BOXDRAG: 'boxdrag',\n /**\n * Triggered upon drag box end.\n * @event DragBoxEvent#boxend\n * @api\n */\n BOXEND: 'boxend',\n /**\n * Triggered upon drag box canceled.\n * @event DragBoxEvent#boxcancel\n * @api\n */\n BOXCANCEL: 'boxcancel',\n};\n/**\n * @classdesc\n * Events emitted by {@link module:ol/interaction/DragBox~DragBox} instances are instances of\n * this type.\n */\nvar DragBoxEvent = /** @class */ (function (_super) {\n __extends(DragBoxEvent, _super);\n /**\n * @param {string} type The event type.\n * @param {import(\"../coordinate.js\").Coordinate} coordinate The event coordinate.\n * @param {import(\"../MapBrowserEvent.js\").default} mapBrowserEvent Originating event.\n */\n function DragBoxEvent(type, coordinate, mapBrowserEvent) {\n var _this = _super.call(this, type) || this;\n /**\n * The coordinate of the drag event.\n * @const\n * @type {import(\"../coordinate.js\").Coordinate}\n * @api\n */\n _this.coordinate = coordinate;\n /**\n * @const\n * @type {import(\"../MapBrowserEvent.js\").default}\n * @api\n */\n _this.mapBrowserEvent = mapBrowserEvent;\n return _this;\n }\n return DragBoxEvent;\n}(Event));\nexport { DragBoxEvent };\n/***\n * @template Return\n * @typedef {import(\"../Observable\").OnSignature<import(\"../Observable\").EventTypes, import(\"../events/Event.js\").default, Return> &\n * import(\"../Observable\").OnSignature<import(\"../ObjectEventType\").Types|\n * 'change:active', import(\"../Object\").ObjectEvent, Return> &\n * import(\"../Observable\").OnSignature<'boxcancel'|'boxdrag'|'boxend'|'boxstart', DragBoxEvent, Return> &\n * import(\"../Observable\").CombinedOnSignature<import(\"../Observable\").EventTypes|import(\"../ObjectEventType\").Types|\n * 'change:active'|'boxcancel'|'boxdrag'|'boxend', Return>} DragBoxOnSignature\n */\n/**\n * @classdesc\n * Allows the user to draw a vector box by clicking and dragging on the map,\n * normally combined with an {@link module:ol/events/condition} that limits\n * it to when the shift or other key is held down. This is used, for example,\n * for zooming to a specific area of the map\n * (see {@link module:ol/interaction/DragZoom~DragZoom} and\n * {@link module:ol/interaction/DragRotateAndZoom~DragRotateAndZoom}).\n *\n * @fires DragBoxEvent\n * @api\n */\nvar DragBox = /** @class */ (function (_super) {\n __extends(DragBox, _super);\n /**\n * @param {Options} [opt_options] Options.\n */\n function DragBox(opt_options) {\n var _this = _super.call(this) || this;\n /***\n * @type {DragBoxOnSignature<import(\"../events\").EventsKey>}\n */\n _this.on;\n /***\n * @type {DragBoxOnSignature<import(\"../events\").EventsKey>}\n */\n _this.once;\n /***\n * @type {DragBoxOnSignature<void>}\n */\n _this.un;\n var options = opt_options ? opt_options : {};\n /**\n * @type {import(\"../render/Box.js\").default}\n * @private\n */\n _this.box_ = new RenderBox(options.className || 'ol-dragbox');\n /**\n * @type {number}\n * @private\n */\n _this.minArea_ = options.minArea !== undefined ? options.minArea : 64;\n if (options.onBoxEnd) {\n _this.onBoxEnd = options.onBoxEnd;\n }\n /**\n * @type {import(\"../pixel.js\").Pixel}\n * @private\n */\n _this.startPixel_ = null;\n /**\n * @private\n * @type {import(\"../events/condition.js\").Condition}\n */\n _this.condition_ = options.condition ? options.condition : mouseActionButton;\n /**\n * @private\n * @type {EndCondition}\n */\n _this.boxEndCondition_ = options.boxEndCondition\n ? options.boxEndCondition\n : _this.defaultBoxEndCondition;\n return _this;\n }\n /**\n * The default condition for determining whether the boxend event\n * should fire.\n * @param {import(\"../MapBrowserEvent.js\").default} mapBrowserEvent The originating MapBrowserEvent\n * leading to the box end.\n * @param {import(\"../pixel.js\").Pixel} startPixel The starting pixel of the box.\n * @param {import(\"../pixel.js\").Pixel} endPixel The end pixel of the box.\n * @return {boolean} Whether or not the boxend condition should be fired.\n */\n DragBox.prototype.defaultBoxEndCondition = function (mapBrowserEvent, startPixel, endPixel) {\n var width = endPixel[0] - startPixel[0];\n var height = endPixel[1] - startPixel[1];\n return width * width + height * height >= this.minArea_;\n };\n /**\n * Returns geometry of last drawn box.\n * @return {import(\"../geom/Polygon.js\").default} Geometry.\n * @api\n */\n DragBox.prototype.getGeometry = function () {\n return this.box_.getGeometry();\n };\n /**\n * Handle pointer drag events.\n * @param {import(\"../MapBrowserEvent.js\").default} mapBrowserEvent Event.\n */\n DragBox.prototype.handleDragEvent = function (mapBrowserEvent) {\n this.box_.setPixels(this.startPixel_, mapBrowserEvent.pixel);\n this.dispatchEvent(new DragBoxEvent(DragBoxEventType.BOXDRAG, mapBrowserEvent.coordinate, mapBrowserEvent));\n };\n /**\n * Handle pointer up events.\n * @param {import(\"../MapBrowserEvent.js\").default} mapBrowserEvent Event.\n * @return {boolean} If the event was consumed.\n */\n DragBox.prototype.handleUpEvent = function (mapBrowserEvent) {\n this.box_.setMap(null);\n var completeBox = this.boxEndCondition_(mapBrowserEvent, this.startPixel_, mapBrowserEvent.pixel);\n if (completeBox) {\n this.onBoxEnd(mapBrowserEvent);\n }\n this.dispatchEvent(new DragBoxEvent(completeBox ? DragBoxEventType.BOXEND : DragBoxEventType.BOXCANCEL, mapBrowserEvent.coordinate, mapBrowserEvent));\n return false;\n };\n /**\n * Handle pointer down events.\n * @param {import(\"../MapBrowserEvent.js\").default} mapBrowserEvent Event.\n * @return {boolean} If the event was consumed.\n */\n DragBox.prototype.handleDownEvent = function (mapBrowserEvent) {\n if (this.condition_(mapBrowserEvent)) {\n this.startPixel_ = mapBrowserEvent.pixel;\n this.box_.setMap(mapBrowserEvent.map);\n this.box_.setPixels(this.startPixel_, this.startPixel_);\n this.dispatchEvent(new DragBoxEvent(DragBoxEventType.BOXSTART, mapBrowserEvent.coordinate, mapBrowserEvent));\n return true;\n }\n else {\n return false;\n }\n };\n /**\n * Function to execute just before `onboxend` is fired\n * @param {import(\"../MapBrowserEvent.js\").default} event Event.\n */\n DragBox.prototype.onBoxEnd = function (event) { };\n return DragBox;\n}(PointerInteraction));\nexport default DragBox;\n//# sourceMappingURL=DragBox.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/interaction/DragZoom\n */\nimport DragBox from './DragBox.js';\nimport { easeOut } from '../easing.js';\nimport { shiftKeyOnly } from '../events/condition.js';\n/**\n * @typedef {Object} Options\n * @property {string} [className='ol-dragzoom'] CSS class name for styling the\n * box.\n * @property {import(\"../events/condition.js\").Condition} [condition] A function that\n * takes an {@link module:ol/MapBrowserEvent~MapBrowserEvent} and returns a\n * boolean to indicate whether that event should be handled.\n * Default is {@link module:ol/events/condition.shiftKeyOnly}.\n * @property {number} [duration=200] Animation duration in milliseconds.\n * @property {boolean} [out=false] Use interaction for zooming out.\n * @property {number} [minArea=64] The minimum area of the box in pixel, this value is used by the parent default\n * `boxEndCondition` function.\n */\n/**\n * @classdesc\n * Allows the user to zoom the map by clicking and dragging on the map,\n * normally combined with an {@link module:ol/events/condition} that limits\n * it to when a key, shift by default, is held down.\n *\n * To change the style of the box, use CSS and the `.ol-dragzoom` selector, or\n * your custom one configured with `className`.\n * @api\n */\nvar DragZoom = /** @class */ (function (_super) {\n __extends(DragZoom, _super);\n /**\n * @param {Options} [opt_options] Options.\n */\n function DragZoom(opt_options) {\n var _this = this;\n var options = opt_options ? opt_options : {};\n var condition = options.condition ? options.condition : shiftKeyOnly;\n _this = _super.call(this, {\n condition: condition,\n className: options.className || 'ol-dragzoom',\n minArea: options.minArea,\n }) || this;\n /**\n * @private\n * @type {number}\n */\n _this.duration_ = options.duration !== undefined ? options.duration : 200;\n /**\n * @private\n * @type {boolean}\n */\n _this.out_ = options.out !== undefined ? options.out : false;\n return _this;\n }\n /**\n * Function to execute just before `onboxend` is fired\n * @param {import(\"../MapBrowserEvent.js\").default} event Event.\n */\n DragZoom.prototype.onBoxEnd = function (event) {\n var map = this.getMap();\n var view = /** @type {!import(\"../View.js\").default} */ (map.getView());\n var geometry = this.getGeometry();\n if (this.out_) {\n var rotatedExtent = view.rotatedExtentForGeometry(geometry);\n var resolution = view.getResolutionForExtentInternal(rotatedExtent);\n var factor = view.getResolution() / resolution;\n geometry = geometry.clone();\n geometry.scale(factor * factor);\n }\n view.fitInternal(geometry, {\n duration: this.duration_,\n easing: easeOut,\n });\n };\n return DragZoom;\n}(DragBox));\nexport default DragZoom;\n//# sourceMappingURL=DragZoom.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/interaction/KeyboardPan\n */\nimport EventType from '../events/EventType.js';\nimport Interaction, { pan } from './Interaction.js';\nimport KeyCode from '../events/KeyCode.js';\nimport { noModifierKeys, targetNotEditable } from '../events/condition.js';\nimport { rotate as rotateCoordinate } from '../coordinate.js';\n/**\n * @typedef {Object} Options\n * @property {import(\"../events/condition.js\").Condition} [condition] A function that\n * takes an {@link module:ol/MapBrowserEvent~MapBrowserEvent} and returns a\n * boolean to indicate whether that event should be handled. Default is\n * {@link module:ol/events/condition.noModifierKeys} and\n * {@link module:ol/events/condition.targetNotEditable}.\n * @property {number} [duration=100] Animation duration in milliseconds.\n * @property {number} [pixelDelta=128] The amount of pixels to pan on each key\n * press.\n */\n/**\n * @classdesc\n * Allows the user to pan the map using keyboard arrows.\n * Note that, although this interaction is by default included in maps,\n * the keys can only be used when browser focus is on the element to which\n * the keyboard events are attached. By default, this is the map div,\n * though you can change this with the `keyboardEventTarget` in\n * {@link module:ol/Map~Map}. `document` never loses focus but, for any other\n * element, focus will have to be on, and returned to, this element if the keys\n * are to function.\n * See also {@link module:ol/interaction/KeyboardZoom~KeyboardZoom}.\n * @api\n */\nvar KeyboardPan = /** @class */ (function (_super) {\n __extends(KeyboardPan, _super);\n /**\n * @param {Options} [opt_options] Options.\n */\n function KeyboardPan(opt_options) {\n var _this = _super.call(this) || this;\n var options = opt_options || {};\n /**\n * @private\n * @param {import(\"../MapBrowserEvent.js\").default} mapBrowserEvent Browser event.\n * @return {boolean} Combined condition result.\n */\n _this.defaultCondition_ = function (mapBrowserEvent) {\n return (noModifierKeys(mapBrowserEvent) && targetNotEditable(mapBrowserEvent));\n };\n /**\n * @private\n * @type {import(\"../events/condition.js\").Condition}\n */\n _this.condition_ =\n options.condition !== undefined\n ? options.condition\n : _this.defaultCondition_;\n /**\n * @private\n * @type {number}\n */\n _this.duration_ = options.duration !== undefined ? options.duration : 100;\n /**\n * @private\n * @type {number}\n */\n _this.pixelDelta_ =\n options.pixelDelta !== undefined ? options.pixelDelta : 128;\n return _this;\n }\n /**\n * Handles the {@link module:ol/MapBrowserEvent~MapBrowserEvent map browser event} if it was a\n * `KeyEvent`, and decides the direction to pan to (if an arrow key was\n * pressed).\n * @param {import(\"../MapBrowserEvent.js\").default} mapBrowserEvent Map browser event.\n * @return {boolean} `false` to stop event propagation.\n * @this {KeyboardPan}\n */\n KeyboardPan.prototype.handleEvent = function (mapBrowserEvent) {\n var stopEvent = false;\n if (mapBrowserEvent.type == EventType.KEYDOWN) {\n var keyEvent = /** @type {KeyboardEvent} */ (mapBrowserEvent.originalEvent);\n var keyCode = keyEvent.keyCode;\n if (this.condition_(mapBrowserEvent) &&\n (keyCode == KeyCode.DOWN ||\n keyCode == KeyCode.LEFT ||\n keyCode == KeyCode.RIGHT ||\n keyCode == KeyCode.UP)) {\n var map = mapBrowserEvent.map;\n var view = map.getView();\n var mapUnitsDelta = view.getResolution() * this.pixelDelta_;\n var deltaX = 0, deltaY = 0;\n if (keyCode == KeyCode.DOWN) {\n deltaY = -mapUnitsDelta;\n }\n else if (keyCode == KeyCode.LEFT) {\n deltaX = -mapUnitsDelta;\n }\n else if (keyCode == KeyCode.RIGHT) {\n deltaX = mapUnitsDelta;\n }\n else {\n deltaY = mapUnitsDelta;\n }\n var delta = [deltaX, deltaY];\n rotateCoordinate(delta, view.getRotation());\n pan(view, delta, this.duration_);\n keyEvent.preventDefault();\n stopEvent = true;\n }\n }\n return !stopEvent;\n };\n return KeyboardPan;\n}(Interaction));\nexport default KeyboardPan;\n//# sourceMappingURL=KeyboardPan.js.map","/**\n * @module ol/events/KeyCode\n */\n/**\n * @enum {number}\n * @const\n */\nexport default {\n LEFT: 37,\n UP: 38,\n RIGHT: 39,\n DOWN: 40,\n};\n//# sourceMappingURL=KeyCode.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/interaction/KeyboardZoom\n */\nimport EventType from '../events/EventType.js';\nimport Interaction, { zoomByDelta } from './Interaction.js';\nimport { targetNotEditable } from '../events/condition.js';\n/**\n * @typedef {Object} Options\n * @property {number} [duration=100] Animation duration in milliseconds.\n * @property {import(\"../events/condition.js\").Condition} [condition] A function that\n * takes an {@link module:ol/MapBrowserEvent~MapBrowserEvent} and returns a\n * boolean to indicate whether that event should be handled. Default is\n * {@link module:ol/events/condition.targetNotEditable}.\n * @property {number} [delta=1] The zoom level delta on each key press.\n */\n/**\n * @classdesc\n * Allows the user to zoom the map using keyboard + and -.\n * Note that, although this interaction is by default included in maps,\n * the keys can only be used when browser focus is on the element to which\n * the keyboard events are attached. By default, this is the map div,\n * though you can change this with the `keyboardEventTarget` in\n * {@link module:ol/Map~Map}. `document` never loses focus but, for any other\n * element, focus will have to be on, and returned to, this element if the keys\n * are to function.\n * See also {@link module:ol/interaction/KeyboardPan~KeyboardPan}.\n * @api\n */\nvar KeyboardZoom = /** @class */ (function (_super) {\n __extends(KeyboardZoom, _super);\n /**\n * @param {Options} [opt_options] Options.\n */\n function KeyboardZoom(opt_options) {\n var _this = _super.call(this) || this;\n var options = opt_options ? opt_options : {};\n /**\n * @private\n * @type {import(\"../events/condition.js\").Condition}\n */\n _this.condition_ = options.condition ? options.condition : targetNotEditable;\n /**\n * @private\n * @type {number}\n */\n _this.delta_ = options.delta ? options.delta : 1;\n /**\n * @private\n * @type {number}\n */\n _this.duration_ = options.duration !== undefined ? options.duration : 100;\n return _this;\n }\n /**\n * Handles the {@link module:ol/MapBrowserEvent~MapBrowserEvent map browser event} if it was a\n * `KeyEvent`, and decides whether to zoom in or out (depending on whether the\n * key pressed was '+' or '-').\n * @param {import(\"../MapBrowserEvent.js\").default} mapBrowserEvent Map browser event.\n * @return {boolean} `false` to stop event propagation.\n * @this {KeyboardZoom}\n */\n KeyboardZoom.prototype.handleEvent = function (mapBrowserEvent) {\n var stopEvent = false;\n if (mapBrowserEvent.type == EventType.KEYDOWN ||\n mapBrowserEvent.type == EventType.KEYPRESS) {\n var keyEvent = /** @type {KeyboardEvent} */ (mapBrowserEvent.originalEvent);\n var charCode = keyEvent.charCode;\n if (this.condition_(mapBrowserEvent) &&\n (charCode == '+'.charCodeAt(0) || charCode == '-'.charCodeAt(0))) {\n var map = mapBrowserEvent.map;\n var delta = charCode == '+'.charCodeAt(0) ? this.delta_ : -this.delta_;\n var view = map.getView();\n zoomByDelta(view, delta, undefined, this.duration_);\n keyEvent.preventDefault();\n stopEvent = true;\n }\n }\n return !stopEvent;\n };\n return KeyboardZoom;\n}(Interaction));\nexport default KeyboardZoom;\n//# sourceMappingURL=KeyboardZoom.js.map","/**\n * @module ol/Kinetic\n */\n/**\n * @classdesc\n * Implementation of inertial deceleration for map movement.\n *\n * @api\n */\nvar Kinetic = /** @class */ (function () {\n /**\n * @param {number} decay Rate of decay (must be negative).\n * @param {number} minVelocity Minimum velocity (pixels/millisecond).\n * @param {number} delay Delay to consider to calculate the kinetic\n * initial values (milliseconds).\n */\n function Kinetic(decay, minVelocity, delay) {\n /**\n * @private\n * @type {number}\n */\n this.decay_ = decay;\n /**\n * @private\n * @type {number}\n */\n this.minVelocity_ = minVelocity;\n /**\n * @private\n * @type {number}\n */\n this.delay_ = delay;\n /**\n * @private\n * @type {Array<number>}\n */\n this.points_ = [];\n /**\n * @private\n * @type {number}\n */\n this.angle_ = 0;\n /**\n * @private\n * @type {number}\n */\n this.initialVelocity_ = 0;\n }\n /**\n * FIXME empty description for jsdoc\n */\n Kinetic.prototype.begin = function () {\n this.points_.length = 0;\n this.angle_ = 0;\n this.initialVelocity_ = 0;\n };\n /**\n * @param {number} x X.\n * @param {number} y Y.\n */\n Kinetic.prototype.update = function (x, y) {\n this.points_.push(x, y, Date.now());\n };\n /**\n * @return {boolean} Whether we should do kinetic animation.\n */\n Kinetic.prototype.end = function () {\n if (this.points_.length < 6) {\n // at least 2 points are required (i.e. there must be at least 6 elements\n // in the array)\n return false;\n }\n var delay = Date.now() - this.delay_;\n var lastIndex = this.points_.length - 3;\n if (this.points_[lastIndex + 2] < delay) {\n // the last tracked point is too old, which means that the user stopped\n // panning before releasing the map\n return false;\n }\n // get the first point which still falls into the delay time\n var firstIndex = lastIndex - 3;\n while (firstIndex > 0 && this.points_[firstIndex + 2] > delay) {\n firstIndex -= 3;\n }\n var duration = this.points_[lastIndex + 2] - this.points_[firstIndex + 2];\n // we don't want a duration of 0 (divide by zero)\n // we also make sure the user panned for a duration of at least one frame\n // (1/60s) to compute sane displacement values\n if (duration < 1000 / 60) {\n return false;\n }\n var dx = this.points_[lastIndex] - this.points_[firstIndex];\n var dy = this.points_[lastIndex + 1] - this.points_[firstIndex + 1];\n this.angle_ = Math.atan2(dy, dx);\n this.initialVelocity_ = Math.sqrt(dx * dx + dy * dy) / duration;\n return this.initialVelocity_ > this.minVelocity_;\n };\n /**\n * @return {number} Total distance travelled (pixels).\n */\n Kinetic.prototype.getDistance = function () {\n return (this.minVelocity_ - this.initialVelocity_) / this.decay_;\n };\n /**\n * @return {number} Angle of the kinetic panning animation (radians).\n */\n Kinetic.prototype.getAngle = function () {\n return this.angle_;\n };\n return Kinetic;\n}());\nexport default Kinetic;\n//# sourceMappingURL=Kinetic.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/interaction/MouseWheelZoom\n */\nimport EventType from '../events/EventType.js';\nimport Interaction, { zoomByDelta } from './Interaction.js';\nimport { DEVICE_PIXEL_RATIO, FIREFOX } from '../has.js';\nimport { all, always, focusWithTabindex } from '../events/condition.js';\nimport { clamp } from '../math.js';\n/**\n * @enum {string}\n */\nexport var Mode = {\n TRACKPAD: 'trackpad',\n WHEEL: 'wheel',\n};\n/**\n * @typedef {Object} Options\n * @property {import(\"../events/condition.js\").Condition} [condition] A function that\n * takes an {@link module:ol/MapBrowserEvent~MapBrowserEvent} and returns a\n * boolean to indicate whether that event should be handled. Default is\n * {@link module:ol/events/condition.always}.\n * @property {boolean} [onFocusOnly=false] When the map's target has a `tabindex` attribute set,\n * the interaction will only handle events when the map has the focus.\n * @property {number} [maxDelta=1] Maximum mouse wheel delta.\n * @property {number} [duration=250] Animation duration in milliseconds.\n * @property {number} [timeout=80] Mouse wheel timeout duration in milliseconds.\n * @property {boolean} [useAnchor=true] Enable zooming using the mouse's\n * location as the anchor. When set to `false`, zooming in and out will zoom to\n * the center of the screen instead of zooming on the mouse's location.\n * @property {boolean} [constrainResolution=false] If true, the mouse wheel zoom\n * event will always animate to the closest zoom level after an interaction;\n * false means intermediary zoom levels are allowed.\n */\n/**\n * @classdesc\n * Allows the user to zoom the map by scrolling the mouse wheel.\n * @api\n */\nvar MouseWheelZoom = /** @class */ (function (_super) {\n __extends(MouseWheelZoom, _super);\n /**\n * @param {Options} [opt_options] Options.\n */\n function MouseWheelZoom(opt_options) {\n var _this = this;\n var options = opt_options ? opt_options : {};\n _this = _super.call(this, \n /** @type {import(\"./Interaction.js\").InteractionOptions} */ (options)) || this;\n /**\n * @private\n * @type {number}\n */\n _this.totalDelta_ = 0;\n /**\n * @private\n * @type {number}\n */\n _this.lastDelta_ = 0;\n /**\n * @private\n * @type {number}\n */\n _this.maxDelta_ = options.maxDelta !== undefined ? options.maxDelta : 1;\n /**\n * @private\n * @type {number}\n */\n _this.duration_ = options.duration !== undefined ? options.duration : 250;\n /**\n * @private\n * @type {number}\n */\n _this.timeout_ = options.timeout !== undefined ? options.timeout : 80;\n /**\n * @private\n * @type {boolean}\n */\n _this.useAnchor_ =\n options.useAnchor !== undefined ? options.useAnchor : true;\n /**\n * @private\n * @type {boolean}\n */\n _this.constrainResolution_ =\n options.constrainResolution !== undefined\n ? options.constrainResolution\n : false;\n var condition = options.condition ? options.condition : always;\n /**\n * @private\n * @type {import(\"../events/condition.js\").Condition}\n */\n _this.condition_ = options.onFocusOnly\n ? all(focusWithTabindex, condition)\n : condition;\n /**\n * @private\n * @type {?import(\"../coordinate.js\").Coordinate}\n */\n _this.lastAnchor_ = null;\n /**\n * @private\n * @type {number|undefined}\n */\n _this.startTime_ = undefined;\n /**\n * @private\n * @type {?}\n */\n _this.timeoutId_;\n /**\n * @private\n * @type {Mode|undefined}\n */\n _this.mode_ = undefined;\n /**\n * Trackpad events separated by this delay will be considered separate\n * interactions.\n * @type {number}\n */\n _this.trackpadEventGap_ = 400;\n /**\n * @type {?}\n */\n _this.trackpadTimeoutId_;\n /**\n * The number of delta values per zoom level\n * @private\n * @type {number}\n */\n _this.deltaPerZoom_ = 300;\n return _this;\n }\n /**\n * @private\n */\n MouseWheelZoom.prototype.endInteraction_ = function () {\n this.trackpadTimeoutId_ = undefined;\n var view = this.getMap().getView();\n view.endInteraction(undefined, this.lastDelta_ ? (this.lastDelta_ > 0 ? 1 : -1) : 0, this.lastAnchor_);\n };\n /**\n * Handles the {@link module:ol/MapBrowserEvent~MapBrowserEvent map browser event} (if it was a mousewheel-event) and eventually\n * zooms the map.\n * @param {import(\"../MapBrowserEvent.js\").default} mapBrowserEvent Map browser event.\n * @return {boolean} `false` to stop event propagation.\n */\n MouseWheelZoom.prototype.handleEvent = function (mapBrowserEvent) {\n if (!this.condition_(mapBrowserEvent)) {\n return true;\n }\n var type = mapBrowserEvent.type;\n if (type !== EventType.WHEEL) {\n return true;\n }\n var map = mapBrowserEvent.map;\n var wheelEvent = /** @type {WheelEvent} */ (mapBrowserEvent.originalEvent);\n wheelEvent.preventDefault();\n if (this.useAnchor_) {\n this.lastAnchor_ = mapBrowserEvent.coordinate;\n }\n // Delta normalisation inspired by\n // https://github.com/mapbox/mapbox-gl-js/blob/001c7b9/js/ui/handler/scroll_zoom.js\n var delta;\n if (mapBrowserEvent.type == EventType.WHEEL) {\n delta = wheelEvent.deltaY;\n if (FIREFOX && wheelEvent.deltaMode === WheelEvent.DOM_DELTA_PIXEL) {\n delta /= DEVICE_PIXEL_RATIO;\n }\n if (wheelEvent.deltaMode === WheelEvent.DOM_DELTA_LINE) {\n delta *= 40;\n }\n }\n if (delta === 0) {\n return false;\n }\n else {\n this.lastDelta_ = delta;\n }\n var now = Date.now();\n if (this.startTime_ === undefined) {\n this.startTime_ = now;\n }\n if (!this.mode_ || now - this.startTime_ > this.trackpadEventGap_) {\n this.mode_ = Math.abs(delta) < 4 ? Mode.TRACKPAD : Mode.WHEEL;\n }\n var view = map.getView();\n if (this.mode_ === Mode.TRACKPAD &&\n !(view.getConstrainResolution() || this.constrainResolution_)) {\n if (this.trackpadTimeoutId_) {\n clearTimeout(this.trackpadTimeoutId_);\n }\n else {\n if (view.getAnimating()) {\n view.cancelAnimations();\n }\n view.beginInteraction();\n }\n this.trackpadTimeoutId_ = setTimeout(this.endInteraction_.bind(this), this.timeout_);\n view.adjustZoom(-delta / this.deltaPerZoom_, this.lastAnchor_);\n this.startTime_ = now;\n return false;\n }\n this.totalDelta_ += delta;\n var timeLeft = Math.max(this.timeout_ - (now - this.startTime_), 0);\n clearTimeout(this.timeoutId_);\n this.timeoutId_ = setTimeout(this.handleWheelZoom_.bind(this, map), timeLeft);\n return false;\n };\n /**\n * @private\n * @param {import(\"../PluggableMap.js\").default} map Map.\n */\n MouseWheelZoom.prototype.handleWheelZoom_ = function (map) {\n var view = map.getView();\n if (view.getAnimating()) {\n view.cancelAnimations();\n }\n var delta = -clamp(this.totalDelta_, -this.maxDelta_ * this.deltaPerZoom_, this.maxDelta_ * this.deltaPerZoom_) / this.deltaPerZoom_;\n if (view.getConstrainResolution() || this.constrainResolution_) {\n // view has a zoom constraint, zoom by 1\n delta = delta ? (delta > 0 ? 1 : -1) : 0;\n }\n zoomByDelta(view, delta, this.lastAnchor_, this.duration_);\n this.mode_ = undefined;\n this.totalDelta_ = 0;\n this.lastAnchor_ = null;\n this.startTime_ = undefined;\n this.timeoutId_ = undefined;\n };\n /**\n * Enable or disable using the mouse's location as an anchor when zooming\n * @param {boolean} useAnchor true to zoom to the mouse's location, false\n * to zoom to the center of the map\n * @api\n */\n MouseWheelZoom.prototype.setMouseAnchor = function (useAnchor) {\n this.useAnchor_ = useAnchor;\n if (!useAnchor) {\n this.lastAnchor_ = null;\n }\n };\n return MouseWheelZoom;\n}(Interaction));\nexport default MouseWheelZoom;\n//# sourceMappingURL=MouseWheelZoom.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/interaction/PinchRotate\n */\nimport PointerInteraction, { centroid as centroidFromPointers, } from './Pointer.js';\nimport { FALSE } from '../functions.js';\nimport { disable } from '../rotationconstraint.js';\n/**\n * @typedef {Object} Options\n * @property {number} [duration=250] The duration of the animation in\n * milliseconds.\n * @property {number} [threshold=0.3] Minimal angle in radians to start a rotation.\n */\n/**\n * @classdesc\n * Allows the user to rotate the map by twisting with two fingers\n * on a touch screen.\n * @api\n */\nvar PinchRotate = /** @class */ (function (_super) {\n __extends(PinchRotate, _super);\n /**\n * @param {Options} [opt_options] Options.\n */\n function PinchRotate(opt_options) {\n var _this = this;\n var options = opt_options ? opt_options : {};\n var pointerOptions = /** @type {import(\"./Pointer.js\").Options} */ (options);\n if (!pointerOptions.stopDown) {\n pointerOptions.stopDown = FALSE;\n }\n _this = _super.call(this, pointerOptions) || this;\n /**\n * @private\n * @type {import(\"../coordinate.js\").Coordinate}\n */\n _this.anchor_ = null;\n /**\n * @private\n * @type {number|undefined}\n */\n _this.lastAngle_ = undefined;\n /**\n * @private\n * @type {boolean}\n */\n _this.rotating_ = false;\n /**\n * @private\n * @type {number}\n */\n _this.rotationDelta_ = 0.0;\n /**\n * @private\n * @type {number}\n */\n _this.threshold_ = options.threshold !== undefined ? options.threshold : 0.3;\n /**\n * @private\n * @type {number}\n */\n _this.duration_ = options.duration !== undefined ? options.duration : 250;\n return _this;\n }\n /**\n * Handle pointer drag events.\n * @param {import(\"../MapBrowserEvent.js\").default} mapBrowserEvent Event.\n */\n PinchRotate.prototype.handleDragEvent = function (mapBrowserEvent) {\n var rotationDelta = 0.0;\n var touch0 = this.targetPointers[0];\n var touch1 = this.targetPointers[1];\n // angle between touches\n var angle = Math.atan2(touch1.clientY - touch0.clientY, touch1.clientX - touch0.clientX);\n if (this.lastAngle_ !== undefined) {\n var delta = angle - this.lastAngle_;\n this.rotationDelta_ += delta;\n if (!this.rotating_ && Math.abs(this.rotationDelta_) > this.threshold_) {\n this.rotating_ = true;\n }\n rotationDelta = delta;\n }\n this.lastAngle_ = angle;\n var map = mapBrowserEvent.map;\n var view = map.getView();\n if (view.getConstraints().rotation === disable) {\n return;\n }\n // rotate anchor point.\n // FIXME: should be the intersection point between the lines:\n // touch0,touch1 and previousTouch0,previousTouch1\n var viewportPosition = map.getViewport().getBoundingClientRect();\n var centroid = centroidFromPointers(this.targetPointers);\n centroid[0] -= viewportPosition.left;\n centroid[1] -= viewportPosition.top;\n this.anchor_ = map.getCoordinateFromPixelInternal(centroid);\n // rotate\n if (this.rotating_) {\n map.render();\n view.adjustRotationInternal(rotationDelta, this.anchor_);\n }\n };\n /**\n * Handle pointer up events.\n * @param {import(\"../MapBrowserEvent.js\").default} mapBrowserEvent Event.\n * @return {boolean} If the event was consumed.\n */\n PinchRotate.prototype.handleUpEvent = function (mapBrowserEvent) {\n if (this.targetPointers.length < 2) {\n var map = mapBrowserEvent.map;\n var view = map.getView();\n view.endInteraction(this.duration_);\n return false;\n }\n else {\n return true;\n }\n };\n /**\n * Handle pointer down events.\n * @param {import(\"../MapBrowserEvent.js\").default} mapBrowserEvent Event.\n * @return {boolean} If the event was consumed.\n */\n PinchRotate.prototype.handleDownEvent = function (mapBrowserEvent) {\n if (this.targetPointers.length >= 2) {\n var map = mapBrowserEvent.map;\n this.anchor_ = null;\n this.lastAngle_ = undefined;\n this.rotating_ = false;\n this.rotationDelta_ = 0.0;\n if (!this.handlingDownUpSequence) {\n map.getView().beginInteraction();\n }\n return true;\n }\n else {\n return false;\n }\n };\n return PinchRotate;\n}(PointerInteraction));\nexport default PinchRotate;\n//# sourceMappingURL=PinchRotate.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/interaction/PinchZoom\n */\nimport PointerInteraction, { centroid as centroidFromPointers, } from './Pointer.js';\nimport { FALSE } from '../functions.js';\n/**\n * @typedef {Object} Options\n * @property {number} [duration=400] Animation duration in milliseconds.\n */\n/**\n * @classdesc\n * Allows the user to zoom the map by pinching with two fingers\n * on a touch screen.\n * @api\n */\nvar PinchZoom = /** @class */ (function (_super) {\n __extends(PinchZoom, _super);\n /**\n * @param {Options} [opt_options] Options.\n */\n function PinchZoom(opt_options) {\n var _this = this;\n var options = opt_options ? opt_options : {};\n var pointerOptions = /** @type {import(\"./Pointer.js\").Options} */ (options);\n if (!pointerOptions.stopDown) {\n pointerOptions.stopDown = FALSE;\n }\n _this = _super.call(this, pointerOptions) || this;\n /**\n * @private\n * @type {import(\"../coordinate.js\").Coordinate}\n */\n _this.anchor_ = null;\n /**\n * @private\n * @type {number}\n */\n _this.duration_ = options.duration !== undefined ? options.duration : 400;\n /**\n * @private\n * @type {number|undefined}\n */\n _this.lastDistance_ = undefined;\n /**\n * @private\n * @type {number}\n */\n _this.lastScaleDelta_ = 1;\n return _this;\n }\n /**\n * Handle pointer drag events.\n * @param {import(\"../MapBrowserEvent.js\").default} mapBrowserEvent Event.\n */\n PinchZoom.prototype.handleDragEvent = function (mapBrowserEvent) {\n var scaleDelta = 1.0;\n var touch0 = this.targetPointers[0];\n var touch1 = this.targetPointers[1];\n var dx = touch0.clientX - touch1.clientX;\n var dy = touch0.clientY - touch1.clientY;\n // distance between touches\n var distance = Math.sqrt(dx * dx + dy * dy);\n if (this.lastDistance_ !== undefined) {\n scaleDelta = this.lastDistance_ / distance;\n }\n this.lastDistance_ = distance;\n var map = mapBrowserEvent.map;\n var view = map.getView();\n if (scaleDelta != 1.0) {\n this.lastScaleDelta_ = scaleDelta;\n }\n // scale anchor point.\n var viewportPosition = map.getViewport().getBoundingClientRect();\n var centroid = centroidFromPointers(this.targetPointers);\n centroid[0] -= viewportPosition.left;\n centroid[1] -= viewportPosition.top;\n this.anchor_ = map.getCoordinateFromPixelInternal(centroid);\n // scale, bypass the resolution constraint\n map.render();\n view.adjustResolutionInternal(scaleDelta, this.anchor_);\n };\n /**\n * Handle pointer up events.\n * @param {import(\"../MapBrowserEvent.js\").default} mapBrowserEvent Event.\n * @return {boolean} If the event was consumed.\n */\n PinchZoom.prototype.handleUpEvent = function (mapBrowserEvent) {\n if (this.targetPointers.length < 2) {\n var map = mapBrowserEvent.map;\n var view = map.getView();\n var direction = this.lastScaleDelta_ > 1 ? 1 : -1;\n view.endInteraction(this.duration_, direction);\n return false;\n }\n else {\n return true;\n }\n };\n /**\n * Handle pointer down events.\n * @param {import(\"../MapBrowserEvent.js\").default} mapBrowserEvent Event.\n * @return {boolean} If the event was consumed.\n */\n PinchZoom.prototype.handleDownEvent = function (mapBrowserEvent) {\n if (this.targetPointers.length >= 2) {\n var map = mapBrowserEvent.map;\n this.anchor_ = null;\n this.lastDistance_ = undefined;\n this.lastScaleDelta_ = 1;\n if (!this.handlingDownUpSequence) {\n map.getView().beginInteraction();\n }\n return true;\n }\n else {\n return false;\n }\n };\n return PinchZoom;\n}(PointerInteraction));\nexport default PinchZoom;\n//# sourceMappingURL=PinchZoom.js.map","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @module ol/Map\n */\nimport CompositeMapRenderer from './renderer/Composite.js';\nimport PluggableMap from './PluggableMap.js';\nimport { assign } from './obj.js';\nimport { defaults as defaultControls } from './control.js';\nimport { defaults as defaultInteractions } from './interaction.js';\n/**\n * @classdesc\n * The map is the core component of OpenLayers. For a map to render, a view,\n * one or more layers, and a target container are needed:\n *\n * import Map from 'ol/Map';\n * import View from 'ol/View';\n * import TileLayer from 'ol/layer/Tile';\n * import OSM from 'ol/source/OSM';\n *\n * var map = new Map({\n * view: new View({\n * center: [0, 0],\n * zoom: 1\n * }),\n * layers: [\n * new TileLayer({\n * source: new OSM()\n * })\n * ],\n * target: 'map'\n * });\n *\n * The above snippet creates a map using a {@link module:ol/layer/Tile~TileLayer} to\n * display {@link module:ol/source/OSM~OSM} OSM data and render it to a DOM\n * element with the id `map`.\n *\n * The constructor places a viewport container (with CSS class name\n * `ol-viewport`) in the target element (see `getViewport()`), and then two\n * further elements within the viewport: one with CSS class name\n * `ol-overlaycontainer-stopevent` for controls and some overlays, and one with\n * CSS class name `ol-overlaycontainer` for other overlays (see the `stopEvent`\n * option of {@link module:ol/Overlay~Overlay} for the difference). The map\n * itself is placed in a further element within the viewport.\n *\n * Layers are stored as a {@link module:ol/Collection~Collection} in\n * layerGroups. A top-level group is provided by the library. This is what is\n * accessed by `getLayerGroup` and `setLayerGroup`. Layers entered in the\n * options are added to this group, and `addLayer` and `removeLayer` change the\n * layer collection in the group. `getLayers` is a convenience function for\n * `getLayerGroup().getLayers()`. Note that {@link module:ol/layer/Group~LayerGroup}\n * is a subclass of {@link module:ol/layer/Base~BaseLayer}, so layers entered in the\n * options or added with `addLayer` can be groups, which can contain further\n * groups, and so on.\n *\n * @api\n */\nvar Map = /** @class */ (function (_super) {\n __extends(Map, _super);\n /**\n * @param {import(\"./PluggableMap.js\").MapOptions} options Map options.\n */\n function Map(options) {\n options = assign({}, options);\n if (!options.controls) {\n options.controls = defaultControls();\n }\n if (!options.interactions) {\n options.interactions = defaultInteractions({\n onFocusOnly: true,\n });\n }\n return _super.call(this, options) || this;\n }\n Map.prototype.createRenderer = function () {\n return new CompositeMapRenderer(this);\n };\n return Map;\n}(PluggableMap));\nexport default Map;\n//# sourceMappingURL=Map.js.map","/**\n * @module ol/control\n */\nimport Attribution from './control/Attribution.js';\nimport Collection from './Collection.js';\nimport Rotate from './control/Rotate.js';\nimport Zoom from './control/Zoom.js';\nexport { default as Attribution } from './control/Attribution.js';\nexport { default as Control } from './control/Control.js';\nexport { default as FullScreen } from './control/FullScreen.js';\nexport { default as MousePosition } from './control/MousePosition.js';\nexport { default as OverviewMap } from './control/OverviewMap.js';\nexport { default as Rotate } from './control/Rotate.js';\nexport { default as ScaleLine } from './control/ScaleLine.js';\nexport { default as Zoom } from './control/Zoom.js';\nexport { default as ZoomSlider } from './control/ZoomSlider.js';\nexport { default as ZoomToExtent } from './control/ZoomToExtent.js';\n/**\n * @typedef {Object} DefaultsOptions\n * @property {boolean} [attribution=true] Include\n * {@link module:ol/control/Attribution~Attribution}.\n * @property {import(\"./control/Attribution.js\").Options} [attributionOptions]\n * Options for {@link module:ol/control/Attribution~Attribution}.\n * @property {boolean} [rotate=true] Include\n * {@link module:ol/control/Rotate~Rotate}.\n * @property {import(\"./control/Rotate.js\").Options} [rotateOptions] Options\n * for {@link module:ol/control/Rotate~Rotate}.\n * @property {boolean} [zoom] Include {@link module:ol/control/Zoom~Zoom}.\n * @property {import(\"./control/Zoom.js\").Options} [zoomOptions] Options for\n * {@link module:ol/control/Zoom~Zoom}.\n * @api\n */\n/**\n * Set of controls included in maps by default. Unless configured otherwise,\n * this returns a collection containing an instance of each of the following\n * controls:\n * * {@link module:ol/control/Zoom~Zoom}\n * * {@link module:ol/control/Rotate~Rotate}\n * * {@link module:ol/control/Attribution~Attribution}\n *\n * @param {DefaultsOptions} [opt_options]\n * Defaults options.\n * @return {Collection<import(\"./control/Control.js\").default>}\n * Controls.\n * @api\n */\nexport function defaults(opt_options) {\n var options = opt_options ? opt_options : {};\n var controls = new Collection();\n var zoomControl = options.zoom !== undefined ? options.zoom : true;\n if (zoomControl) {\n controls.push(new Zoom(options.zoomOptions));\n }\n var rotateControl = options.rotate !== undefined ? options.rotate : true;\n if (rotateControl) {\n controls.push(new Rotate(options.rotateOptions));\n }\n var attributionControl = options.attribution !== undefined ? options.attribution : true;\n if (attributionControl) {\n controls.push(new Attribution(options.attributionOptions));\n }\n return controls;\n}\n//# sourceMappingURL=control.js.map","/**\n * @module ol/interaction\n */\nimport Collection from './Collection.js';\nimport DoubleClickZoom from './interaction/DoubleClickZoom.js';\nimport DragPan from './interaction/DragPan.js';\nimport DragRotate from './interaction/DragRotate.js';\nimport DragZoom from './interaction/DragZoom.js';\nimport KeyboardPan from './interaction/KeyboardPan.js';\nimport KeyboardZoom from './interaction/KeyboardZoom.js';\nimport Kinetic from './Kinetic.js';\nimport MouseWheelZoom from './interaction/MouseWheelZoom.js';\nimport PinchRotate from './interaction/PinchRotate.js';\nimport PinchZoom from './interaction/PinchZoom.js';\nexport { default as DoubleClickZoom } from './interaction/DoubleClickZoom.js';\nexport { default as DragAndDrop } from './interaction/DragAndDrop.js';\nexport { default as DragBox } from './interaction/DragBox.js';\nexport { default as DragPan } from './interaction/DragPan.js';\nexport { default as DragRotate } from './interaction/DragRotate.js';\nexport { default as DragRotateAndZoom } from './interaction/DragRotateAndZoom.js';\nexport { default as DragZoom } from './interaction/DragZoom.js';\nexport { default as Draw } from './interaction/Draw.js';\nexport { default as Extent } from './interaction/Extent.js';\nexport { default as Interaction } from './interaction/Interaction.js';\nexport { default as KeyboardPan } from './interaction/KeyboardPan.js';\nexport { default as KeyboardZoom } from './interaction/KeyboardZoom.js';\nexport { default as Modify } from './interaction/Modify.js';\nexport { default as MouseWheelZoom } from './interaction/MouseWheelZoom.js';\nexport { default as PinchRotate } from './interaction/PinchRotate.js';\nexport { default as PinchZoom } from './interaction/PinchZoom.js';\nexport { default as Pointer } from './interaction/Pointer.js';\nexport { default as Select } from './interaction/Select.js';\nexport { default as Snap } from './interaction/Snap.js';\nexport { default as Translate } from './interaction/Translate.js';\n/**\n * @typedef {Object} DefaultsOptions\n * @property {boolean} [altShiftDragRotate=true] Whether Alt-Shift-drag rotate is\n * desired.\n * @property {boolean} [onFocusOnly=false] Interact only when the map has the\n * focus. This affects the `MouseWheelZoom` and `DragPan` interactions and is\n * useful when page scroll is desired for maps that do not have the browser's\n * focus.\n * @property {boolean} [doubleClickZoom=true] Whether double click zoom is\n * desired.\n * @property {boolean} [keyboard=true] Whether keyboard interaction is desired.\n * @property {boolean} [mouseWheelZoom=true] Whether mousewheel zoom is desired.\n * @property {boolean} [shiftDragZoom=true] Whether Shift-drag zoom is desired.\n * @property {boolean} [dragPan=true] Whether drag pan is desired.\n * @property {boolean} [pinchRotate=true] Whether pinch rotate is desired.\n * @property {boolean} [pinchZoom=true] Whether pinch zoom is desired.\n * @property {number} [zoomDelta] Zoom level delta when using keyboard or double click zoom.\n * @property {number} [zoomDuration] Duration of the zoom animation in\n * milliseconds.\n */\n/**\n * Set of interactions included in maps by default. Specific interactions can be\n * excluded by setting the appropriate option to false in the constructor\n * options, but the order of the interactions is fixed. If you want to specify\n * a different order for interactions, you will need to create your own\n * {@link module:ol/interaction/Interaction~Interaction} instances and insert\n * them into a {@link module:ol/Collection~Collection} in the order you want\n * before creating your {@link module:ol/Map~Map} instance. Changing the order can\n * be of interest if the event propagation needs to be stopped at a point.\n * The default set of interactions, in sequence, is:\n * * {@link module:ol/interaction/DragRotate~DragRotate}\n * * {@link module:ol/interaction/DoubleClickZoom~DoubleClickZoom}\n * * {@link module:ol/interaction/DragPan~DragPan}\n * * {@link module:ol/interaction/PinchRotate~PinchRotate}\n * * {@link module:ol/interaction/PinchZoom~PinchZoom}\n * * {@link module:ol/interaction/KeyboardPan~KeyboardPan}\n * * {@link module:ol/interaction/KeyboardZoom~KeyboardZoom}\n * * {@link module:ol/interaction/MouseWheelZoom~MouseWheelZoom}\n * * {@link module:ol/interaction/DragZoom~DragZoom}\n *\n * @param {DefaultsOptions} [opt_options] Defaults options.\n * @return {import(\"./Collection.js\").default<import(\"./interaction/Interaction.js\").default>}\n * A collection of interactions to be used with the {@link module:ol/Map~Map}\n * constructor's `interactions` option.\n * @api\n */\nexport function defaults(opt_options) {\n var options = opt_options ? opt_options : {};\n var interactions = new Collection();\n var kinetic = new Kinetic(-0.005, 0.05, 100);\n var altShiftDragRotate = options.altShiftDragRotate !== undefined\n ? options.altShiftDragRotate\n : true;\n if (altShiftDragRotate) {\n interactions.push(new DragRotate());\n }\n var doubleClickZoom = options.doubleClickZoom !== undefined ? options.doubleClickZoom : true;\n if (doubleClickZoom) {\n interactions.push(new DoubleClickZoom({\n delta: options.zoomDelta,\n duration: options.zoomDuration,\n }));\n }\n var dragPan = options.dragPan !== undefined ? options.dragPan : true;\n if (dragPan) {\n interactions.push(new DragPan({\n onFocusOnly: options.onFocusOnly,\n kinetic: kinetic,\n }));\n }\n var pinchRotate = options.pinchRotate !== undefined ? options.pinchRotate : true;\n if (pinchRotate) {\n interactions.push(new PinchRotate());\n }\n var pinchZoom = options.pinchZoom !== undefined ? options.pinchZoom : true;\n if (pinchZoom) {\n interactions.push(new PinchZoom({\n duration: options.zoomDuration,\n }));\n }\n var keyboard = options.keyboard !== undefined ? options.keyboard : true;\n if (keyboard) {\n interactions.push(new KeyboardPan());\n interactions.push(new KeyboardZoom({\n delta: options.zoomDelta,\n duration: options.zoomDuration,\n }));\n }\n var mouseWheelZoom = options.mouseWheelZoom !== undefined ? options.mouseWheelZoom : true;\n if (mouseWheelZoom) {\n interactions.push(new MouseWheelZoom({\n onFocusOnly: options.onFocusOnly,\n duration: options.zoomDuration,\n }));\n }\n var shiftDragZoom = options.shiftDragZoom !== undefined ? options.shiftDragZoom : true;\n if (shiftDragZoom) {\n interactions.push(new DragZoom({\n duration: options.zoomDuration,\n }));\n }\n return interactions;\n}\n//# sourceMappingURL=interaction.js.map","import { Attribution, MousePosition, Zoom } from 'ol/control.js';\nimport { createStringXY } from 'ol/coordinate.js';\nimport { boundingExtent } from 'ol/extent.js';\nimport { LineString, LinearRing, MultiLineString, MultiPoint, MultiPolygon, Point, Polygon } from 'ol/geom.js';\nimport { Tile, Vector as VectorLayer } from 'ol/layer.js';\nimport { fromLonLat, get, transformExtent } from 'ol/proj.js';\nimport { OSM, Vector as VectorSource } from 'ol/source.js';\nimport { Circle, Fill, Stroke, Style, Text } from 'ol/style.js';\nimport { Feature, Map, View } from 'ol';\n\nconst ol = {\n control: {\n Attribution, MousePosition, Zoom\n },\n coordinate: {\n createStringXY\n },\n extent: {\n boundingExtent\n },\n geom: {\n LineString, LinearRing, MultiLineString, MultiPoint, MultiPolygon, Point, Polygon\n },\n layer: {\n Tile, Vector: VectorLayer\n },\n proj: {\n fromLonLat, get, transformExtent\n },\n source: {\n OSM, Vector: VectorSource\n },\n style: {\n Circle, Fill, Stroke, Style, Text\n },\n Feature, Map, View\n}\n\nexport default ol;"],"names":["root","factory","exports","module","define","amd","self","t","r","e","a","h","n","o","s","l","Math","log","f","exp","u","sqrt","max","floor","min","p","d","x","i","length","this","_maxEntries","_minEntries","ceil","clear","indexOf","children","minX","minY","maxX","maxY","leaf","m","c","height","pop","push","prototype","all","_all","data","search","toBBox","collides","load","insert","_build","slice","_splitRoot","_insert","remove","splice","_condense","compareMinX","compareMinY","toJSON","fromJSON","apply","pow","_chooseSubtree","_split","_adjustParentBBoxes","_chooseSplitAxis","_chooseSplitIndex","v","M","_allDistMargin","sort","__webpack_module_cache__","__webpack_require__","moduleId","cachedModule","undefined","__webpack_modules__","call","definition","key","Object","defineProperty","enumerable","get","obj","prop","hasOwnProperty","BaseEvent","type","propagationStopped","defaultPrevented","target","preventDefault","stopPropagation","Disposable","disposed","dispose","disposeInternal","numberSafeCompareFunction","b","linearFindNearest","arr","direction","reverseSubArray","begin","end","tmp","extension","Array","isArray","equals","arr1","arr2","len1","TRUE","VOID","assign","var_sources","TypeError","output","ii","arguments","source","object","property","getValues","values","extendStatics","__extends","setPrototypeOf","__proto__","String","__","constructor","create","_super","Target","opt_target","_this","eventTarget_","pendingRemovals_","dispatching_","listeners_","addEventListener","listener","listeners","listenersForType","dispatchEvent","event","isString","evt","Event","propagate","dispatching","pendingRemovals","handleEvent","pr","removeEventListener","getListeners","hasListener","opt_type","keys","index","listen","opt_this","opt_once","bind","originalListener_1","eventsKey","listenOnce","unlistenByKey","Observable","on","once","un","revision_","changed","EventType","getRevision","onInternal","len","onceInternal","ol_key","unInternal","unByKey","Error","uidCounter_","getUid","ol_uid","ObjectEvent","oldValue","BaseObject","opt_values","values_","setProperties","value","getKeys","getProperties","hasProperties","notify","eventType","concat","ObjectEventType","addChangeListener","removeChangeListener","set","opt_silent","applyProperties","unset","ua","navigator","userAgent","toLowerCase","FIREFOX","WEBKIT","match","DEVICE_PIXEL_RATIO","devicePixelRatio","WORKER_OFFSCREEN_CANVAS","WorkerGlobalScope","OffscreenCanvas","IMAGE_DECODE","Image","decode","PASSIVE_EVENT_LISTENERS","passive","options","window","error","createCanvasContext2D","opt_width","opt_height","opt_canvasPool","opt_Context2DSettings","canvas","shift","document","createElement","width","getContext","replaceNode","newNode","oldNode","parent","parentNode","replaceChild","removeNode","node","removeChild","Control","element","style","pointerEvents","target_","map_","listenerKeys","render","setTarget","getMap","setMap","map","getOverlayContainerStopEvent","appendChild","MapEventType","mapEvent","getElementById","CLASS_HIDDEN","CLASS_CONTROL","fontRegEx","RegExp","join","fontRegExMatchIndex","getFontParameters","fontSpec","lineHeight","size","weight","variant","families","family","split","cssOpacity","opacity","round","AssertionError","code","message","name","assertion","errorCode","cosh","y","log2","LOG2E","squaredSegmentDistance","x1","y1","x2","y2","dx","dy","angleInDegrees","PI","lerp","toFixed","decimals","factor","BaseLayer","background_","background","properties","visible","zIndex","maxResolution","Infinity","minResolution","minZoom","maxZoom","className_","className","state_","getBackground","getClassName","getLayerState","opt_managed","state","layer","managed","getZIndex","getOpacity","getVisible","extent","getExtent","getMaxResolution","getMinResolution","getMinZoom","getMaxZoom","getLayersArray","opt_array","getLayerStatesArray","opt_states","getSourceState","setBackground","opt_background","setExtent","setMaxResolution","setMinResolution","setMaxZoom","setMinZoom","setOpacity","setVisible","setZIndex","zindex","inView","layerState","viewState","resolution","zoom","Layer","baseOptions","mapPrecomposeKey_","mapRenderKey_","sourceChangeKey_","renderer_","rendered","handleSourcePropertyChange_","setSource","array","states","getSource","getRenderSource","getState","handleSourceChange_","getFeatures","pixel","Promise","resolve","getData","frameState","layerRenderer","getRenderer","prepareFrame","renderFrame","unrender","setMapInternal","getMapInternal","layerStatesArray","some","arrayLayerState","createRenderer","hasRenderer","Base","Attribution","opt_options","ulElement_","collapsed_","collapsed","userCollapsed_","overrideCollapsible_","collapsible","collapsible_","tipLabel","expandClassName","collapseLabel","collapseClassName","collapseLabel_","textContent","label","label_","activeLabel","toggleButton_","setAttribute","title","handleClick_","cssClasses","renderedAttributions_","renderedVisible_","collectSourceAttributions_","lookup","visibleAttributions","attributionGetter","getAttributions","attributions","getAttributionsCollapsible","j","jj","setCollapsible","updateElement_","display","lastChild","removeChildren","innerHTML","handleToggle_","classList","toggle","getCollapsible","setCollapsed","getCollapsed","Units","RADIANS","DEGREES","FEET","METERS","PIXELS","TILE_PIXELS","USFEET","Projection","code_","units_","extent_","worldExtent_","worldExtent","axisOrientation_","axisOrientation","global_","global","canWrapX_","getPointResolutionFunc_","getPointResolution","defaultTileGrid_","metersPerUnit_","metersPerUnit","canWrapX","getCode","getUnits","getMetersPerUnit","getWorldExtent","getAxisOrientation","isGlobal","setGlobal","getDefaultTileGrid","setDefaultTileGrid","tileGrid","setWorldExtent","setGetPointResolution","func","getPointResolutionFunc","RADIUS","HALF_SIZE","EXTENT","WORLD_EXTENT","MAX_SAFE_Y","tan","EPSG3857Projection","units","point","PROJECTIONS","EPSG4326Projection","opt_axisOrientation","cache","transforms","destination","transformFn","sourceCode","destinationCode","boundingExtent","coordinates","extendCoordinate","buffer","opt_extent","clone","closestSquaredDistanceXY","containsCoordinate","coordinate","containsXY","containsExtent","extent1","extent2","coordinateRelationship","relationship","createOrUpdate","createOrUpdateEmpty","createOrUpdateFromFlatCoordinates","flatCoordinates","offset","stride","extendFlatCoordinates","extendXY","forEachCorner","callback","val","getBottomLeft","getBottomRight","getTopRight","getTopLeft","getArea","area","getHeight","getCenter","getCorner","corner","Corner","getForViewAndSize","center","rotation","cosRotation","cos","sinRotation","sin","xCos","xSin","yCos","ySin","x0","x3","y0","y3","getIntersection","intersection","intersects","coordinate1","coordinate2","rotate","angle","cosAngle","sinAngle","projection","worldWidth","worldsAway","opt_sourceExtentWidth","projectionExtent","sourceExtentWidth","getDistance","c1","c2","opt_radius","radius","lat1","lat2","deltaLatBy2","deltaLonBy2","atan2","showCoordinateWarning","disableCoordinateWarning","opt_disable","cloneTransform","input","opt_output","opt_dimension","identityTransform","addProjection","add","projectionLike","replace","opt_units","pointResolution","getter","toEPSG4326_1","getTransformFromProjections","vertices","addEquivalentProjections","projections","forEach","addProjections","createProjection","defaultCode","equivalent","projection1","projection2","equalUnits","sourceProjection","destinationProjection","transformFunc","transform","getTransform","transformExtent","opt_stops","xs","ys","_boundingExtentXYs","applyTransform","projections2","forwardTransform","inverseTransform","userProjection","getUserProjection","toUserCoordinate","fromUserCoordinate","destProjection","console","warn","toUserResolution","dimension","atan","PROJECTION","COORDINATE_FORMAT","MousePosition","handleProjectionChanged_","coordinateFormat","setCoordinateFormat","setProjection","renderOnMouseOut","placeholder","undefinedHTML","placeholder_","renderOnMouseOut_","renderedHTML_","mapProjection_","transform_","getCoordinateFormat","getProjection","handleMouseMove","updateHTML_","getEventPixel","handleMouseOut","viewport","getViewport","format","html","getCoordinateFromPixelInternal","toString","easeIn","easeOut","inAndOut","linear","transformStringDiv","Zoom","delta","zoomInClassName","zoomOutClassName","zoomInLabel","zoomOutLabel","zoomInTipLabel","zoomOutTipLabel","inElement","createTextNode","outElement","duration_","duration","zoomByDelta_","view","getView","currentZoom","getZoom","newZoom","getConstrainedZoom","getAnimating","cancelAnimations","animate","easing","setZoom","compose","dx1","dy1","sx","sy","dx2","dy2","makeInverse","mat","det","transformString","transform2D","opt_dest","dest","anchor","anchorX","anchorY","deltaX","deltaY","k","tmpTransform","Geometry","fn","lastResult","lastArgs","lastThis","called","extentRevision_","simplifiedGeometryMaxMinSquaredTolerance","simplifiedGeometryRevision","simplifyTransformedInternal","revision","squaredTolerance","opt_transform","getSimplifiedGeometry","nextArgs","simplifyTransformed","closestPointXY","closestPoint","minSquaredDistance","coord","getClosestPoint","opt_closestPoint","NaN","intersectsCoordinate","computeExtent","isNaN","returnOrUpdate","scale","opt_sy","opt_anchor","simplify","tolerance","getType","intersectsExtent","translate","sourceProj","inCoordinates","outCoordinates","pixelExtent","projectedExtent","SimpleGeometry","layout","getCoordinates","getFirstCoordinate","getFlatCoordinates","getLastCoordinate","getLayout","simplifiedGeometry","getSimplifiedGeometryInternal","getStride","setFlatCoordinates","getStrideForLayout","setCoordinates","opt_layout","setLayout","nesting","getLayoutForStride","assignClosest","offset1","offset2","maxSquaredDelta","squaredDelta","arrayMaxSquaredDelta","ends","assignClosestPoint","maxDelta","isRing","opt_tmpPoint","squaredDistance","tmpPoint","assignClosestArrayPoint","deflateCoordinates","deflateCoordinatesArray","coordinatess","opt_ends","douglasPeucker","simplifiedFlatCoordinates","simplifiedOffset","markers","stack","last","first","maxSquaredDistance","squaredDistance_1","snap","quantize","quantizeArray","simplifiedEnds","ret","inflateCoordinates","opt_coordinates","inflateCoordinatesArray","opt_coordinatess","inflateMultiCoordinatesArray","endss","opt_coordinatesss","coordinatesss","interpolatePoint","fraction","length_1","cumulativeLengths","haystack","needle","opt_comparator","mid","cmp","comparator","low","high","found","binarySearch","lineStringCoordinateAtM","extrapolate","lo","hi","m0","linearRingContainsExtent","linearRingContainsXY","wn","linearRingsContainsXY","intersectsLineString","coordinatesExtent","point1","point2","start","startRel","endRel","startX","startY","endX","endY","slope","intersectsSegment","intersectsLinearRingArray","intersectsLinearRing","lineStringLength","LineString","flatMidpoint_","flatMidpointRevision_","maxDelta_","maxDeltaRevision_","appendCoordinate","lineString","forEachSegment","getCoordinateAtM","opt_extrapolate","getCoordinateAt","getLength","getFlatMidpoint","linearRing","twiceArea","linearRings","LinearRing","MultiLineString","ends_","lineStrings","appendLineString","multiLineString","opt_interpolate","interpolate","lineStringsCoordinateAtM","getEnds","getLineString","getLineStrings","getFlatMidpoints","midpoints","douglasPeuckerArray","intersectsLineStringArray","Point","deflateCoordinate","MultiPoint","appendPoint","multiPoint","getPoint","getPoints","points","getInteriorPointOfArray","flatCenters","flatCentersOffset","intersections","rr","pointX","maxSegmentLength","segmentLength","abs","linearRingIsClockwise","edge","linearRingsAreOriented","opt_right","right","isClockwise","orientLinearRings","orientLinearRingsArray","Polygon","flatInteriorPointRevision_","flatInteriorPoint_","orientedRevision_","orientedFlatCoordinates_","appendLinearRing","polygon","getOrientedFlatCoordinates","getFlatInteriorPoint","flatCenter","getInteriorPoint","getLinearRingCount","getLinearRing","getLinearRings","fromExtent","MultiPolygon","opt_endss","endss_","flatInteriorPointsRevision_","flatInteriorPoints_","polygons","appendPolygon","newEndss","multiPolygon","multiArrayMaxSquaredDelta","assignClosestMultiArrayPoint","linearRingssContainsXY","linearRingss","getEndss","getFlatInteriorPoints","interiorPoints","getInteriorPointsOfMultiArray","getInteriorPoints","linearRingssAreOriented","simplifiedEndss","quantizeMultiArray","getPolygon","prevEnds","getPolygons","intersectsLinearRingMultiArray","deflateMultiCoordinatesArray","lastEnds","BaseTileLayer","preload","useInterimTilesOnError","setPreload","setUseInterimTilesOnError","getPreload","TileProperty","getUseInterimTilesOnError","LayerRenderer","ready","boundHandleImageChange_","handleImageChange_","layer_","declutterExecutorGroup","loadedTileCallback","tiles","tile","tileCoord","createLoadedTileFinder","tileRange","forEachLoadedTile","forEachFeatureAtCoordinate","hitTolerance","matches","getDataAtPixel","getLayer","handleFontsChanged","renderIfReadyAndVisible","loadImage","image","imageState","RenderEvent","opt_inversePixelTransform","opt_frameState","opt_context","inversePixelTransform","context","HEX_COLOR_RE_","NAMED_COLOR_RE_","asString","color","fromString","cacheSize","g","exec","el","body","rgb","getComputedStyle","fromNamed","hasAlpha","parseInt","substr","normalize","Number","fromStringInternal_","asArray","pixelContext","CanvasLayerRenderer","container","renderedResolution","tempTransform","pixelTransform","containerReused","pixelContext_","getImageData","col","row","clearRect","drawImage","err","useContainer","opt_backgroundColor","layerClassName","backgroundColor","firstElementChild","HTMLCanvasElement","position","left","transformOrigin","clipUnrotated","topLeft","topRight","bottomRight","bottomLeft","coordinateToPixelTransform","inverted","save","beginPath","moveTo","lineTo","clip","dispatchRenderEvent_","event_1","preRender","postRender","getRenderTransform","pixelRatio","offsetX","renderPixel","layerExtent","pixelToCoordinateTransform","pixelCanvas","Uint8Array","Tile","interimTile","transition_","transition","transitionStarts_","release","getKey","getInterimTile","refreshInterimChain","prev","getTileCoord","setState","getAlpha","id","time","inTransition","endTransition","ImageBase","pixelRatio_","getImage","getPixelRatio","getResolution","listenImage","loadHandler","errorHandler","img","listening","decoding","loaded","src","then","catch","ImageWrapper","crossOrigin","imageLoadFunction","src_","image_","unlisten_","imageLoadFunction_","handleImageError_","unlistenImage_","handleImageLoad_","setImage","brokenDiagonalRendering_","ImageTile","tileLoadFunction","crossOrigin_","tileLoadFunction_","ctx","fillStyle","fillRect","naturalWidth","naturalHeight","Triangulation","targetProj","targetExtent","maxSourceExtent","errorThreshold","opt_destinationResolution","sourceProj_","targetProj_","transformInvCache","transformInv","transformInv_","maxSourceExtent_","errorThresholdSquared_","triangles_","wrapsXInSource_","canWrapXInSource_","sourceWorldWidth_","targetWorldWidth_","destinationTopLeft","destinationTopRight","destinationBottomRight","destinationBottomLeft","sourceTopLeft","sourceTopRight","sourceBottomRight","sourceBottomLeft","maxSubdivision","addQuad_","leftBound_1","triangle","newTriangle","addTriangle_","aSrc","bSrc","cSrc","dSrc","sourceQuadExtent","sourceCoverageX","sourceWorldWidth","wrapsX","needsSubdivision","isFinite","isNotFinite","centerSrc","bc","bcSrc","da","daSrc","ab","abSrc","cd","cdSrc","calculateSourceExtent","getTriangles","IMAGE_SMOOTHING_DISABLED","imageSmoothingEnabled","msImageSmoothingEnabled","IMAGE_SMOOTHING_ENABLED","drawTestTriangle","u1","v1","u2","v2","closePath","restore","verifyBrokenDiagonalRendering","calculateSourceResolution","targetCenter","targetResolution","sourceCenter","sourceResolution","targetMetersPerUnit","sourceMetersPerUnit","sourceExtent","compensationFactor","ReprojTile","sourceTileGrid","targetTileGrid","wrappedTileCoord","gutter","getTileFunction","opt_errorThreshold","opt_renderEdges","renderEdges_","gutter_","canvas_","sourceTileGrid_","targetTileGrid_","wrappedTileCoord_","sourceTiles_","sourcesListenerKeys_","sourceZ_","getTileCoordExtent","maxTargetExtent","limitedTargetExtent","sourceProjExtent","calculateSourceExtentResolution","errorThresholdInPixels","triangulation_","getZForResolution","sourceRange","getTileRangeForExtentAndZ","srcX","srcY","reproject_","sources","z","getTileSize","triangulation","pixelRound","globalCompositeOperation","sourceDataExtent","canvasWidthInUnits","canvasHeightInUnits","stitchContext","stitchScale","xPos","yPos","srcWidth","srcHeight","targetTopLeft","u0","v0","sourceNumericalShiftX","sourceNumericalShiftY","affineCoefs","maxRow","maxEl","absValue","coef","solveLinearSystem","isBrokenDiagonalRendering","ud","vd","step","steps","strokeStyle","lineWidth","stroke","leftToLoad_1","sourceListenKey_1","unlistenSources_","setTimeout","TileRange","contains","containsTileRange","extend","getSize","getWidth","hasArea","toSize","opt_size","CanvasTileLayerRenderer","tileLayer","extentChanged","renderedExtent_","renderedPixelRatio","renderedProjection","renderedRevision","renderedTiles","newTiles_","tmpExtent","tmpTileRange_","isDrawableTile","tileState","getTile","getTileGridForProjection","tilePixelRatio","getTilePixelRatio","getTileCoordForCoordAndZ","tileOrigin","getOrigin","tileSize","tileResolution","layerIndex","viewResolution","viewCenter","tileSource","sourceRevision","zDirection","canvasExtent","tilesToDrawByZ","findLoadedTiles","tmpTileRange","uid","childTileRange","getTileCoordChildTileRange","covered","forEachTileCoordParentTileRange","canvasScale","canvasTransform","getInterpolate","clips","clipZs","currentClip","zs","getOpaque","reverse","currentZ","currentTilePixelSize","getTilePixelSize","currentScale","dx_1","dy_1","originTileCoord","originTileExtent","origin_1","tileGutter","getGutterForProjection","tilesToDraw","tileCoordKey","xIndex","nextX","yIndex","nextY","w","contextSaved","i_1","drawTileImage","unshift","updateUsedTiles","usedTiles","manageTilePyramid","scheduleExpireCache","getTileImage","alpha","alphaChanged","globalAlpha","canExpireCache","postRenderFunction","tileSourceKey","expireCache","postRenderFunctions","opt_tileCallback","wantedTiles","tileQueue","tileCount","isKeyQueued","enqueue","getTileCoordCenter","useTile","updateCacheSize","TileLayer","BaseTile","ImageStyle","opacity_","rotateWithView_","rotateWithView","rotation_","scale_","scaleArray_","displacement_","displacement","getScale","getRotation","getRotateWithView","getDisplacement","getScaleArray","getAnchor","getHitDetectionImage","getImageState","getImageSize","setDisplacement","setRotateWithView","setRotation","setScale","listenImageChange","unlistenImageChange","asColorLike","defaultFont","defaultFillStyle","defaultLineCap","defaultLineDash","defaultLineJoin","defaultStrokeStyle","defaultTextAlign","defaultTextBaseline","defaultPadding","checkedFonts","setSize","measureFont","measureElement","measureContext","textHeights","registerFont","interval","referenceWidth","referenceFonts","text","isAvailable","fontStyle","fontWeight","fontFamily","available","referenceFont","measureTextWidth","check","done","fonts","font","clearInterval","setInterval","measureTextHeight","metrics","measureText","actualBoundingBoxAscent","actualBoundingBoxDescent","minHeight","maxHeight","padding","border","offsetHeight","measureAndCacheTextWidth","RegularShape","hitDetectionCanvas_","fill_","fill","origin_","points_","radius_","radius1","radius2_","radius2","angle_","stroke_","size_","renderOptions_","getFill","getRadius","getRadius2","getAngle","getStroke","createHitDetectionCanvas_","renderOptions","draw_","calculateLineJoinSize_","lineJoin","strokeWidth","miterLimit","r1","r2","miterRatio","bevelAdd","aa","dd","innerMiterRatio","innerLength","createRenderOptions","lineDash","lineDashOffset","getColor","getLineDash","getLineDashOffset","getLineJoin","getMiterLimit","maxRadius","createPath_","setLineDash","drawHitDetectionCanvas_","arc","startAngle","angle0","radiusC","CircleStyle","setRadius","Fill","color_","setColor","Stroke","lineCap_","lineCap","lineDash_","lineDashOffset_","lineJoin_","miterLimit_","width_","getLineCap","setLineCap","setLineDashOffset","setLineJoin","setMiterLimit","setWidth","Style","geometry_","geometryFunction_","defaultGeometryFunction","geometry","setGeometry","renderer","hitDetectionRenderer_","hitDetectionRenderer","text_","zIndex_","getGeometry","getText","setRenderer","setHitDetectionRenderer","getHitDetectionRenderer","getGeometryFunction","setFill","setStroke","setText","feature","defaultStyles","createDefaultStyle","Circle","BaseVectorLayer","renderBuffer","updateWhileAnimating","updateWhileInteracting","declutter_","declutter","renderBuffer_","style_","styleFunction_","setStyle","updateWhileAnimating_","updateWhileInteracting_","getDeclutter","getRenderBuffer","getRenderOrder","getStyle","getStyleFunction","getUpdateWhileAnimating","getUpdateWhileInteracting","renderDeclutter","declutterTree","setRenderOrder","renderOrder","opt_style","styleFunction","styles_1","Instruction","BEGIN_GEOMETRY","BEGIN_PATH","CIRCLE","CLOSE_PATH","CUSTOM","DRAW_CHARS","DRAW_IMAGE","END_GEOMETRY","FILL","MOVE_TO_LINE_TO","SET_FILL_STYLE","SET_STROKE_STYLE","STROKE","fillInstruction","strokeInstruction","beginPathInstruction","closePathInstruction","VectorContext","drawCustom","drawGeometry","drawCircle","circleGeometry","drawFeature","drawGeometryCollection","geometryCollectionGeometry","drawLineString","lineStringGeometry","drawMultiLineString","multiLineStringGeometry","drawMultiPoint","multiPointGeometry","drawMultiPolygon","multiPolygonGeometry","drawPoint","pointGeometry","drawPolygon","polygonGeometry","drawText","setFillStrokeStyle","setImageStyle","imageStyle","opt_declutterImageWithText","setTextStyle","textStyle","CanvasBuilder","maxExtent","maxLineWidth","beginGeometryInstruction1_","beginGeometryInstruction2_","bufferedMaxExtent_","instructions","tmpCoordinate_","hitDetectionInstructions","applyPixelRatio","dashArray","dash","appendFlatPointCoordinates","getBufferedMaxExtent","tmpCoord","myEnd","appendFlatLineCoordinates","closed","skipFirst","lastRel","nextRel","lastXCoord","lastYCoord","nextCoord","skipped","drawCustomCoordinates_","builderEnds","builderEnd","beginGeometry","builderEndss","builderBegin","myEnds","endGeometry","finish","reverseHitDetectionInstructions","instruction","fillStyleColor","strokeStyleColor","strokeStyleLineCap","strokeStyleLineDash","strokeStyleLineDashOffset","strokeStyleLineJoin","strokeStyleWidth","strokeStyleMiterLimit","createFill","applyStroke","createStroke","updateFillStyle","currentFillStyle","updateStrokeStyle","currentStrokeStyle","currentLineCap","currentLineDash","currentLineDashOffset","currentLineJoin","currentLineWidth","currentMiterLimit","endGeometryInstruction","CanvasImageBuilder","hitDetectionImage_","imagePixelRatio_","anchorX_","anchorY_","height_","originX_","originY_","declutterImageWithText_","myBegin","opt_sharedData","hitDetectionImage","origin","CanvasLineStringBuilder","drawFlatCoordinates_","moveToLineToInstruction","lastStroke","CanvasPolygonBuilder","drawFlatCoordinatess_","numEnds","setFillStrokeStyles_","circleInstruction","matchingChunk","maxAngle","m12","m23","x12","y12","x23","y23","chunkStart","chunkEnd","chunkM","acos","TEXT_ALIGN","CanvasTextBuilder","labels_","textOffsetX_","textOffsetY_","textRotateWithView_","textRotation_","textFillState_","fillStates","textStrokeState_","strokeStates","textState_","textStates","textKey_","fillKey_","strokeKey_","fillState","strokeState","textState","geometryType","placement","geometryWidths","overflow","beg_1","filter","keep","saveTextStates_","backgroundFill","backgroundStroke","p0","p1","p2","p3","pixelRatio_1","textAlign","flatOffset","flatEnd","oo","range","drawChars_","strokeKey","textKey","textBaseline","fillKey","baseline","offsetY","textFillStyle","textStrokeStyle","getFont","textScale","getOverflow","getMaxAngle","getPlacement","getTextAlign","getTextBaseline","getBackgroundFill","getBackgroundStroke","getPadding","textOffsetX","getOffsetX","textOffsetY","getOffsetY","textRotateWithView","textRotation","BATCH_CONSTRUCTORS","PolygonBuilder","Builder","ImageBuilder","LineStringBuilder","BuilderGroup","tolerance_","maxExtent_","resolution_","buildersByZIndex_","builderInstructions","zKey","builders","builderKey","builderInstruction","getBuilder","builderType","zIndexKey","replays","replay","Constructor","drawTextOnPath","startM","segmentM","advance","beginX","beginY","startOffset","startLength","endM","flat","previousAngle","result","singleSegment","iStart","charLength","chars","substring","p4","getDeclutterBox","replayImageOrLabelArgs","declutterBox","rtlRegEx","fromCharCode","horizontalTextAlign","align","test","createTextChunks","acc","line","Executor","overlaps","alignFill_","coordinateCache_","renderedTransform_","pixelCoordinates_","viewRotation_","widths_","createLabel","textIsArray","chunks","reduce","_a","baseStyle","widths","heights","lineWidths","currentWidth","currentHeight","getTextDimensions","renderWidth","contextInstructions","OffscreenCanvasRenderingContext2D","CanvasRenderingContext2D","previousFont","leftRight","strokeInstructions","fillInstructions","lineOffset","widthHeightIndex","lineWidthIndex","text_1","fillStrokeArgs","replayTextBackground_","setStrokeStyle_","calculateImageOrLabelDimensions_","sheetWidth","sheetHeight","centerX","centerY","originX","originY","snapToPixel","fillStroke","boxW","boxH","boxX","boxY","drawImageX","drawImageY","drawImageW","drawImageH","replayImageOrLabel_","contextScale","imageOrLabel","dimensions","box","strokePadding","labelOrImage","setTransform","executeLabelInstructions","drawImageOrLabel","repeatSize","drawLabelWithPointPlacement_","execute_","opt_featureCallback","opt_hitExtent","opt_declutterTree","pixelCoordinates","transform1","transform2","prevX","prevY","roundX","roundY","currentGeometry","pendingFill","pendingStroke","lastFillInstruction","lastStrokeInstruction","coordinateCache","viewRotation","viewRotationFromTransform","batchSize","coords","declutterImageWithText","labelWithAnchor","widthIndex","args","imageArgs","imageDeclutterBox","measurePixelRatio","pixelRatioScale","cachedWidths","pathLength","textLength","parts","drawChars","cc","part","ii_1","execute","executeHitDetection","ORDER","BuilderType","ExecutorGroup","allInstructions","opt_renderBuffer","overlaps_","executorsByZIndex_","hitDetectionContext_","hitDetectionTransform_","createExecutors_","flatClipCoords","getClipCoords","executors","instructionByZindex","hasExecutors","candidates","declutteredFeatures","contextSize","newContext","hitExtent","indexes","circlePixelIndexArrayCache","maxDistanceSq","distances","distanceSq","distance","pixelIndex","getPixelIndexArray","featureCallback","imageData","idx","result_1","executor","isEmpty","opt_builderTypes","builderTypes","CanvasImmediateRenderer","opt_squaredTolerance","opt_userTransform","context_","squaredTolerance_","userTransform_","contextFillState_","contextStrokeState_","contextTextState_","fillState_","strokeState_","imageAnchorX_","imageAnchorY_","imageHeight_","imageOpacity_","imageOriginX_","imageOriginY_","imageRotateWithView_","imageRotation_","imageScale_","imageWidth_","textScale_","tmpLocalTransform_","drawImages_","localTransform","drawText_","setContextFillState_","setContextStrokeState_","setContextTextState_","strokeText","fillText","moveToLineTo_","close","drawRings_","simpleGeometry","transformGeom2D","geometries","getGeometriesArray","flatMidpoint","geometryExtent","flatMidpoints","flatInteriorPoint","flatInteriorPoints","contextFillState","contextStrokeState","contextTextState","imageSize","imageAnchor","imageOrigin","textFillStyleColor","textStrokeStyleColor","textStrokeStyleLineCap","textStrokeStyleLineDash","textStrokeStyleLineDashOffset","textStrokeStyleLineJoin","textStrokeStyleWidth","textStrokeStyleMiterLimit","textFont","textText","textTextAlign","textTextBaseline","shared","IconImageCache","cache_","cacheSize_","maxCacheSize_","expire","iconImage","maxCacheSize","taintedTestContext","IconImage","imageState_","tainted_","isTainted_","dispatchChangeEvent_","replaceColor_","getSrc","imgData","putImageData","Icon","anchor_","normalizedAnchor_","anchorOrigin_","anchorOrigin","IconOrigin","anchorXUnits_","anchorXUnits","IconAnchorUnits","anchorYUnits_","anchorYUnits","imgSize_","imgSize","iconImage_","offset_","offsetOrigin_","offsetOrigin","setAnchor","iconImageSize","HIT_DETECT_RESOLUTION","GEOMETRY_RENDERERS","builderGroup","opt_declutterBuilderGroup","imageReplay","textReplay","lineStringReplay","polygonReplay","replayGroup","geometryRenderer","circleReplay","defaultOrder","feature1","feature2","getTolerance","renderFeature","loading","renderGeometry","renderFeatureInternal","getGeometries","CanvasVectorLayerRenderer","vectorLayer","boundHandleStyleImageChange_","handleStyleImageChange_","animatingOrInteracting_","dirty_","hitDetectionImageData_","renderedFeatures_","renderedRevision_","renderedResolution_","wrappedRenderedExtent_","renderedRotation_","renderedCenter_","renderedProjection_","renderedRenderOrder_","replayGroup_","replayGroupChanged","clipping","renderWorlds","executorGroup","vectorSource","viewHints","multiWorld","getWrapX","endWorld","world","makeScale","clipped","features","featureCount","indexFactor","featuresByZIndex","featureStyleFunction","styles","originalStyle","imgContext","byGeometryType","zIndexKeys","geomAndStyle","kk","createHitDetectionImageData","resultFeatures","hitDetect","lastIndexOf","executorGroups","item","animating","interacting","frameStateExtent","vectorLayerRevision","vectorLayerRenderBuffer","vectorLayerRenderOrder","renderedExtent","loadExtents","loadExtent","declutterBuilderGroup","userTransform","userExtent_1","loadFeatures","dirty","userExtent","getFeaturesInExtent","replayGroupInstructions","getOverlaps","VectorLayer","BaseVector","LRUCache","opt_highWaterMark","highWaterMark","count_","entries_","oldest_","newest_","getCount","containsKey","entry","value_","key_","newer","older","peekLast","peekLastKey","peekFirstKey","opt_tileCoord","getKeyZXY","TileCache","pruneExceptNewestZ","adaptAttributions","attributionLike","Source","attributions_","attributionsCollapsible_","attributionsCollapsible","wrapX_","wrapX","interpolate_","viewResolver","viewRejector","viewPromise_","reject","getResolutions","refresh","setAttributions","tmpTileCoord","TileGrid","compare","zoomFactor","resolutions_","resolutions","every","currentVal","res","origins","zoomFactor_","origins_","tileSizes_","tileSizes","tileSize_","fullTileRanges_","tmpSize_","tmpExtent_","sizes","restrictedTileRange","calculateTileRanges_","forEachTileCoord","opt_tileRange","tileCoordExtent","getTileRangeForTileCoordAndZ","tileCoordZ","tileCoordX","tileCoordY","getTileRangeExtent","getTileCoordForXYAndZ_","getTileCoordForCoordAndResolution","getTileCoordForXYAndResolution_","reverseIntersectionPolicy","getTileCoordResolution","getFullTileRange","opt_direction","fullTileRanges","getForProjection","opt_maxZoom","opt_tileSize","opt_corner","resolutionsFromExtent","createForExtent","extentFromProjection","createForProjection","opt_maxResolution","half","TileSource","opaque_","opaque","tilePixelRatio_","tileCache","tmpSize","tileOptions","getTileCacheForProjection","setKey","getTileGrid","ratio","getTileCoordForTileUrlFunction","opt_projection","withinExtentAndZ","TileSourceEvent","createFromTemplate","template","zRegEx","xRegEx","yRegEx","dashYRegEx","UrlTile","generateTileUrlFunction_","tileUrlFunction","urls","setUrls","url","setUrl","tileLoadingKeys_","getTileLoadFunction","getTileUrlFunction","getPrototypeOf","getUrls","handleTileChange","setTileLoadFunction","setTileUrlFunction","startCharCode","charCodeAt","stopCharCode","charCode","stop_1","expandUrl","templates","tileUrlFunctions","createFromTileUrlFunctions","createFromTemplates","TileImage","imageSmoothing","defaultTileLoadFunction","tileClass","tileCacheForProjection","tileGridForProjection","reprojectionErrorThreshold_","reprojectionErrorThreshold","renderReprojectionEdges_","usedTileCache","getGutter","thisProj","projKey","createTile_","urlTileCoord","tileUrl","newTile","getTileInternal","setRenderReprojectionEdges","setTileGridForProjection","tilegrid","proj","imageTile","XYZ","xyzOptions","gridOptions","createXYZ","OSM","CollectionEvent","opt_element","opt_index","Collection","unique_","unique","array_","assertUnique_","updateLength_","getArray","insertAt","elem","CollectionEventType","removeAt","setAt","opt_except","RBush","opt_maxEntries","rbush_","items_","extents","items","update","getAll","getInExtent","bbox","forEach_","forEachInExtent","rbush","xhr","success","failure","XMLHttpRequest","open","FormatType","responseType","withCredentials","onload","status","responseText","responseXML","DOMParser","parseFromString","readFeatures","featureProjection","readProjection","onerror","send","loadFeaturesXhr","dataProjection","addFeatures","VectorSourceEvent","opt_feature","opt_features","VectorSource","loader_","format_","url_","loader","strategy_","strategy","collection","useSpatialIndex","featuresRtree_","loadedExtentsRtree_","loadingExtentsCount_","nullGeometryFeatures_","idIndex_","uidIndex_","featureChangeKeys_","featuresCollection_","addFeaturesInternal","bindFeaturesCollection_","addFeature","addFeatureInternal","featureKey","addToIndex_","setupChangeEvents_","VectorEventType","handleFeatureChange_","valid","getId","newFeatures","geometryFeatures","length_2","length_3","modifyingCollection","removeFeature","opt_fast","featureId","removeAndIgnoreReturn","removeFeatureInternal","clearEvent","forEachFeature","forEachFeatureAtCoordinateDirect","forEachFeatureInExtent","forEachFeatureIntersectingExtent","getFeaturesCollection","getFeaturesAtCoordinate","getClosestFeatureToCoordinate","opt_filter","closestFeature","previousMinSquaredDistance","minDistance","getFeatureById","getFeatureByUid","getFormat","getUrl","sid","removeFromIdIndex_","hasFeature","loadedExtentsRtree","extentsToLoad","_loop_1","extentToLoad","this_1","removeLoadedExtent","featureChangeKeys","removed","setLoader","Text","font_","textAlign_","textBaseline_","maxAngle_","placement_","overflow_","offsetX_","offsetY_","backgroundFill_","backgroundStroke_","padding_","setOverflow","setFont","setMaxAngle","setOffsetX","setOffsetY","setPlacement","setTextAlign","setTextBaseline","setBackgroundFill","setBackgroundStroke","setPadding","Feature","opt_geometryOrProperties","id_","geometryName_","geometryChangeKey_","handleGeometryChanged_","setGeometryName","getGeometryName","handleGeometryChange_","setId","MapRenderer","dispatchRenderEvent","calculateMatrices2D","checkWrapped","thisArg","layerFilter","thisArg2","translatedCoordinate","offsets","layerStates","numLayers","callback_1","order","forEachLayerAtPixel","hasFeatureAtCoordinate","scheduleExpireIconCache","expireIconCache","CompositeMapRenderer","fontChangeListenerKey_","redrawText","element_","CLASS_UNSELECTABLE","insertBefore","firstChild","children_","declutterLayers","previousElement","sourceState","oldChildren","childNodes","oldChild","newChild","replaceChildren","Map","GroupEvent","LayerGroup","layers","layersListenerKeys_","listenerKeys_","handleLayersChanged_","setLayers","handleLayerChange_","getLayers","handleLayersAdd_","handleLayersRemove_","layersArray","registerLayerListeners_","handleLayerGroupAdd_","handleLayerGroupRemove_","collectionEvent","currentLayers","pos","ownLayerState","defaultZIndex","MapEvent","MapBrowserEvent","originalEvent","opt_dragging","pixel_","coordinate_","dragging","configurable","getCoordinateFromPixel","SINGLECLICK","CLICK","DBLCLICK","POINTERDRAG","POINTERMOVE","POINTERDOWN","POINTERUP","POINTEROVER","POINTEROUT","POINTERENTER","POINTERLEAVE","POINTERCANCEL","MapBrowserEventHandler","moveTolerance","clickTimeoutId_","emulateClicks_","dragging_","dragListenerKeys_","moveTolerance_","down_","activePointers_","trackedTouches_","pointerdownListenerKey_","handlePointerDown_","originalPointerMoveEvent_","relayedListenerKey_","relayEvent_","boundHandleTouchMove_","handleTouchMove_","emulateClick_","pointerEvent","newEvent","clearTimeout","updateActivePointers_","pointerId","handlePointerUp_","isMouseActionButton_","button","doc","getOwnerDocument","handlePointerMove_","getRootNode","isMoving_","cancelable","clientX","clientY","DROP","PriorityQueue","priorityFunction","keyFunction","priorityFunction_","keyFunction_","elements_","priorities_","queuedElements_","dequeue","elements","priorities","siftUp_","elementKey","priority","siftDown_","getLeftChildIndex_","getRightChildIndex_","getParentIndex_","heapify_","isQueued","count","startIndex","lIndex","rIndex","smallerChildIndex","parentIndex","reprioritize","TileQueue","tilePriorityFunction","tileChangeCallback","boundHandleTileChange_","tileChangeCallback_","tilesLoading_","tilesLoadingKeys_","added","getTilesLoading","tileKey","loadMoreTiles","maxTotalLoading","maxNewLoads","newLoads","CENTER","RESOLUTION","ROTATION","createExtent","onlyCenter","smooth","opt_isMoving","opt_centerShift","viewWidth","viewHeight","shiftX","shiftY","none","getViewportClampedResolution","viewportSize","showFullExtent","xResolution","yResolution","getSmoothClampedResolution","createMinMaxResolution","opt_smooth","opt_maxExtent","opt_showFullExtent","cappedMaxRes","disable","View","hints_","animations_","updateAnimationKey_","projection_","viewportSize_","targetCenter_","targetResolution_","targetRotation_","nextCenter_","nextResolution_","nextRotation_","cancelAnchor_","applyOptions_","ViewProperty","resolutionConstraintInfo","resolutionConstraint","smoothResolutionConstraint","projExtent","constrainOnlyCenter","constrainResolution","capped","createSnapToResolutions","defaultMaxResolution","defaultMinResolution","defaultMaxZoom","power","opt_minResolution","minZoomLevel","cappedZoomLevel","zoomLevel","createSnapToPower","constraint","createResolutionConstraint","maxResolution_","minResolution_","minZoom_","centerConstraint","smoothExtentConstraint","createCenterConstraint","rotationConstraint","enableRotation","constrainRotation","theta","createRotationConstraint","constraints_","setCenterInternal","setResolution","oldPadding","newPadding","getUpdatedOptions_","newOptions","getCenterInternal","var_args","isDef","resolveConstraints","animateInternal","animationCount","Date","now","series","animation","complete","getResolutionForZoom","sourceRotation","targetRotation","isNoopAnimation","setHint","updateAnimations_","animationCallback","getInteracting","cancelAnimationFrame","more","seriesComplete","elapsed","progress","getViewportSize_","constrainedResolution","calculateCenterZoom","applyTargetState_","constrainedRotation","calculateCenterRotate","Boolean","requestAnimationFrame","currentCenter","currentResolution","opt_rotation","setViewportSize","getConstraints","getConstrainResolution","getHints","opt_hints","calculateExtent","calculateExtentInternal","getViewportSizeMinusPadding_","getZoomForResolution","setConstrainResolution","enabled","getResolutionForExtent","getResolutionForExtentInternal","getResolutionForValueFunction","opt_power","getConstrainedResolution","getValueForResolutionFunction","logPower","reducedSize","calculateCenterOn","nextCenter","nextResolution","nextRotation","nearest","baseLevel","fit","geometryOrExtent","fitInternal","rotatedExtentForGeometry","minRotX","minRotY","maxRotX","maxRotY","rotX","rotY","rotatedExtent","centerRot","getConstrainedCenter","centerOn","centerOnInternal","calculateCenterShift","centerShift","shiftedCenter","adjustCenter","deltaCoordinates","setCenter","adjustCenterInternal","adjustResolution","adjustResolutionInternal","isMoving","newResolution","adjustZoom","adjustRotation","adjustRotationInternal","newRotation","hint","opt_doNotCancelAnims","opt_forceMoving","newCenter","opt_duration","opt_resolutionDirection","beginInteraction","endInteraction","endInteractionInternal","opt_targetResolution","targetZoom","targetRes","returnValue","removeLayerMapProperty","setLayerMapProperty","PluggableMap","optionsInternal","keyboardEventTarget","controls","interactions","overlays","layerGroup","createOptionsInternal","renderComplete_","loaded_","boundHandleBrowserEvent_","handleBrowserEvent","maxTilesLoading_","maxTilesLoading","postRenderTimeoutHandle_","animationDelayKey_","animationDelay_","renderFrame_","coordinateToPixelTransform_","pixelToCoordinateTransform_","frameIndex_","frameState_","previousExtent_","viewPropertyListenerKey_","viewChangeListenerKey_","layerGroupPropertyListenerKeys_","viewport_","overlayContainer_","overlayContainerStopEvent_","mapBrowserEventHandler_","keyboardEventTarget_","targetChangeHandlerKeys_","overlays_","overlayIdIndex_","postRenderFunctions_","tileQueue_","getTilePriority","handleTileChange_","MapProperty","handleLayerGroupChanged_","handleViewChanged_","handleSizeChanged_","handleTargetChanged_","viewOptions","setView","addOverlayInternal_","control","interaction","addControl","getControls","addInteraction","getInteractions","addLayer","getLayerGroup","handleLayerAdd_","addOverlay","overlay","getOverlays","forEachFeatureAtPixel","getFeaturesAtPixel","getAllLayers","addLayersFrom","hasFeatureAtPixel","getEventCoordinate","getEventCoordinateInternal","viewportPosition","getBoundingClientRect","eventPosition","changedTouches","top","getTarget","getTargetElement","getOverlayById","group","getLoadingOrNotReady","getPixelFromCoordinate","viewCoordinate","getPixelFromCoordinateInternal","getOverlayContainer","targetElement","ownerDocument","tileCenter","browserEvent","mapBrowserEvent","handleMapBrowserEvent","rootNode","documentElement","interactionsArray","getActive","handlePostRender","hints","lowOnFrameBudget","defaultView","updateSize","handleViewPropertyChanged_","updateViewportSize_","handleLayerRemove_","isRendered","renderSync","removeControl","removeInteraction","removeLayer","removeOverlay","previousFrameState","mapId","renderTargets","nextExtent","setLayerGroup","oldLayerGroup","computedStyle","offsetWidth","parseFloat","getClientRects","Rotate","compassClassName","callResetNorth_","resetNorth","autoHide_","autoHide","resetNorth_","zoomByDelta","Interaction","setActive","active","DoubleClickZoom","delta_","stopEvent","shiftKey","PointerInteraction","handleDownEvent","handleDragEvent","handleMoveEvent","handleUpEvent","stopDown","handlingDownUpSequence","trackedPointers_","targetPointers","getPointerCount","updateTrackedPointers_","handledUp","handled","isPointerDraggingEvent","conditions","pass","altShiftKeysOnly","altKey","metaKey","ctrlKey","focusWithTabindex","hasAttribute","activeElement","always","mouseActionButton","noModifierKeys","shiftKeyOnly","targetNotEditable","tagName","mouseOnly","pointerType","primaryAction","isPrimary","DragPan","kinetic_","kinetic","lastCentroid","lastPointersCount_","panning_","condition","condition_","onFocusOnly","noKinetic_","centroid","centerpx","Pointer","DragRotate","lastAngle_","RenderBox","startPixel_","endPixel_","render_","startPixel","endPixel","px","setPixels","createOrUpdateGeometry","DragBoxEvent","DragBox","box_","minArea_","minArea","onBoxEnd","boxEndCondition_","boxEndCondition","defaultBoxEndCondition","completeBox","DragZoom","out_","out","KeyboardPan","defaultCondition_","pixelDelta_","pixelDelta","keyEvent","keyCode","mapUnitsDelta","pan","KeyboardZoom","Kinetic","decay","minVelocity","delay","decay_","minVelocity_","delay_","initialVelocity_","lastIndex","firstIndex","Mode","MouseWheelZoom","totalDelta_","lastDelta_","timeout_","timeout","useAnchor_","useAnchor","constrainResolution_","lastAnchor_","startTime_","timeoutId_","mode_","trackpadEventGap_","trackpadTimeoutId_","deltaPerZoom_","endInteraction_","wheelEvent","deltaMode","WheelEvent","DOM_DELTA_PIXEL","DOM_DELTA_LINE","timeLeft","handleWheelZoom_","setMouseAnchor","PinchRotate","pointerOptions","rotating_","rotationDelta_","threshold_","threshold","rotationDelta","touch0","touch1","PinchZoom","lastDistance_","lastScaleDelta_","scaleDelta","zoomOptions","rotateOptions","attribution","attributionOptions","altShiftDragRotate","doubleClickZoom","zoomDelta","zoomDuration","dragPan","pinchRotate","pinchZoom","keyboard","mouseWheelZoom","shiftDragZoom","Composite","createStringXY","opt_fractionDigits","toStringXY","geom","Vector","fromLonLat"],"sourceRoot":""} \ No newline at end of file
diff --git a/js/vendor/openlayers/theme/ol.css b/js/vendor/openlayers/theme/ol.css
index 1e3225bfc9..18ad4ac1d3 100644
--- a/js/vendor/openlayers/theme/ol.css
+++ b/js/vendor/openlayers/theme/ol.css
@@ -39,13 +39,13 @@
height: 15px;
background-color: #000000;
float: right;
- z-Index: 10;
+ z-index: 10;
}
.ol-scale-step-text {
position: absolute;
bottom: -5px;
font-size: 12px;
- z-Index: 11;
+ z-index: 11;
color: #000000;
text-shadow: -2px 0 #FFFFFF, 0 2px #FFFFFF, 2px 0 #FFFFFF, 0 -2px #FFFFFF;
}
@@ -60,7 +60,7 @@
.ol-scale-singlebar {
position: relative;
height: 10px;
- z-Index: 9;
+ z-index: 9;
box-sizing: border-box;
border: 1px solid black;
}
@@ -76,6 +76,9 @@
user-select: none;
-webkit-tap-highlight-color: rgba(0,0,0,0);
}
+.ol-viewport canvas {
+ all: unset;
+}
.ol-selectable {
-webkit-touch-callout: default;
-webkit-user-select: text;
diff --git a/package.json b/package.json
index 963b38e2e5..8067c642ad 100644
--- a/package.json
+++ b/package.json
@@ -17,17 +17,17 @@
"@zxcvbn-ts/core": "^1.0.0-beta.0",
"autoprefixer": "^10.3.6",
"bootstrap": "5.1.3",
- "codemirror": "5.63.3",
+ "codemirror": "5.65.3",
"jquery": "3.6.0",
"jquery-debounce-throttle": "^1.0.6-rc.0",
- "jquery-migrate": "3.3.2",
- "jquery-ui-dist": "1.12.1",
+ "jquery-migrate": "3.4.0",
+ "jquery-ui-dist": "1.13.1",
"jquery-ui-timepicker-addon": "1.6.3",
"jquery-uitablefilter": "^1.0.0",
"jquery-validation": "1.19.3",
"js-cookie": "2.2.1",
"locutus.sprintf": "^2.0.14-code-lts.2",
- "ol": "6.9.0",
+ "ol": "6.14.1",
"postcss": "^8.3.8",
"postcss-cli": "^9.0.1",
"rtlcss": "^3.3.0",
diff --git a/yarn.lock b/yarn.lock
index ca77d2a74b..195b79cb91 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -3,25 +3,25 @@
"@ampproject/remapping@^2.1.0":
- version "2.1.2"
- resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.1.2.tgz#4edca94973ded9630d20101cd8559cedb8d8bd34"
- integrity sha512-hoyByceqwKirw7w3Z7gnIIZC3Wx3J484Y3L/cMpXFbr7d9ZQj2mODrirNzcJa+SM3UlpWXYvKV4RlRpFXlWgXg==
+ version "2.2.0"
+ resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.2.0.tgz#56c133824780de3174aed5ab6834f3026790154d"
+ integrity sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==
dependencies:
- "@jridgewell/trace-mapping" "^0.3.0"
+ "@jridgewell/gen-mapping" "^0.1.0"
+ "@jridgewell/trace-mapping" "^0.3.9"
"@babel/cli@^7.15.7":
- version "7.17.6"
- resolved "https://registry.yarnpkg.com/@babel/cli/-/cli-7.17.6.tgz#169e5935f1795f0b62ded5a2accafeedfe5c5363"
- integrity sha512-l4w608nsDNlxZhiJ5tE3DbNmr61fIKMZ6fTBo171VEFuFMIYuJ3mHRhTLEkKKyvx2Mizkkv/0a8OJOnZqkKYNA==
+ version "7.17.10"
+ resolved "https://registry.yarnpkg.com/@babel/cli/-/cli-7.17.10.tgz#5ea0bf6298bb78f3b59c7c06954f9bd1c79d5943"
+ integrity sha512-OygVO1M2J4yPMNOW9pb+I6kFGpQK77HmG44Oz3hg8xQIl5L/2zq+ZohwAdSaqYgVwM0SfmPHZHphH4wR8qzVYw==
dependencies:
- "@jridgewell/trace-mapping" "^0.3.4"
+ "@jridgewell/trace-mapping" "^0.3.8"
commander "^4.0.1"
convert-source-map "^1.1.0"
fs-readdir-recursive "^1.1.0"
glob "^7.0.0"
make-dir "^2.1.0"
slash "^2.0.0"
- source-map "^0.5.0"
optionalDependencies:
"@nicolo-ribaudo/chokidar-2" "2.1.8-no-fsevents.3"
chokidar "^3.4.0"
@@ -40,40 +40,40 @@
dependencies:
"@babel/highlight" "^7.16.7"
-"@babel/compat-data@^7.13.11", "@babel/compat-data@^7.16.4", "@babel/compat-data@^7.16.8", "@babel/compat-data@^7.17.0":
- version "7.17.0"
- resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.17.0.tgz#86850b8597ea6962089770952075dcaabb8dba34"
- integrity sha512-392byTlpGWXMv4FbyWw3sAZ/FrW/DrwqLGXpy0mbyNe9Taqv1mg9yON5/o0cnr8XYCkFTZbC1eV+c+LAROgrng==
+"@babel/compat-data@^7.13.11", "@babel/compat-data@^7.17.0", "@babel/compat-data@^7.17.10":
+ version "7.17.10"
+ resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.17.10.tgz#711dc726a492dfc8be8220028b1b92482362baab"
+ integrity sha512-GZt/TCsG70Ms19gfZO1tM4CVnXsPgEPBCpJu+Qz3L0LUDsY5nZqFZglIoPC1kIYOtNBZlrnFT+klg12vFGZXrw==
"@babel/core@>=7.9.0", "@babel/core@^7.1.0", "@babel/core@^7.12.3", "@babel/core@^7.15.5", "@babel/core@^7.7.2", "@babel/core@^7.8.0":
- version "7.17.5"
- resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.17.5.tgz#6cd2e836058c28f06a4ca8ee7ed955bbf37c8225"
- integrity sha512-/BBMw4EvjmyquN5O+t5eh0+YqB3XXJkYD2cjKpYtWOfFy4lQ4UozNSmxAcWT8r2XtZs0ewG+zrfsqeR15i1ajA==
+ version "7.17.10"
+ resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.17.10.tgz#74ef0fbf56b7dfc3f198fc2d927f4f03e12f4b05"
+ integrity sha512-liKoppandF3ZcBnIYFjfSDHZLKdLHGJRkoWtG8zQyGJBQfIYobpnVGI5+pLBNtS6psFLDzyq8+h5HiVljW9PNA==
dependencies:
"@ampproject/remapping" "^2.1.0"
"@babel/code-frame" "^7.16.7"
- "@babel/generator" "^7.17.3"
- "@babel/helper-compilation-targets" "^7.16.7"
- "@babel/helper-module-transforms" "^7.16.7"
- "@babel/helpers" "^7.17.2"
- "@babel/parser" "^7.17.3"
+ "@babel/generator" "^7.17.10"
+ "@babel/helper-compilation-targets" "^7.17.10"
+ "@babel/helper-module-transforms" "^7.17.7"
+ "@babel/helpers" "^7.17.9"
+ "@babel/parser" "^7.17.10"
"@babel/template" "^7.16.7"
- "@babel/traverse" "^7.17.3"
- "@babel/types" "^7.17.0"
+ "@babel/traverse" "^7.17.10"
+ "@babel/types" "^7.17.10"
convert-source-map "^1.7.0"
debug "^4.1.0"
gensync "^1.0.0-beta.2"
- json5 "^2.1.2"
+ json5 "^2.2.1"
semver "^6.3.0"
-"@babel/generator@^7.17.3", "@babel/generator@^7.7.2":
- version "7.17.3"
- resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.17.3.tgz#a2c30b0c4f89858cb87050c3ffdfd36bdf443200"
- integrity sha512-+R6Dctil/MgUsZsZAkYgK+ADNSZzJRRy0TvY65T71z/CR854xHQ1EweBYXdfT+HNeN7w0cSJJEzgxZMv40pxsg==
+"@babel/generator@^7.17.10", "@babel/generator@^7.7.2":
+ version "7.17.10"
+ resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.17.10.tgz#c281fa35b0c349bbe9d02916f4ae08fc85ed7189"
+ integrity sha512-46MJZZo9y3o4kmhBVc7zW7i8dtR1oIK/sdO5NcfcZRhTGYi+KKJRtHNgsU6c4VUcJmUNV/LQdebD/9Dlv4K+Tg==
dependencies:
- "@babel/types" "^7.17.0"
+ "@babel/types" "^7.17.10"
+ "@jridgewell/gen-mapping" "^0.1.0"
jsesc "^2.5.1"
- source-map "^0.5.0"
"@babel/helper-annotate-as-pure@^7.16.7":
version "7.16.7"
@@ -90,30 +90,30 @@
"@babel/helper-explode-assignable-expression" "^7.16.7"
"@babel/types" "^7.16.7"
-"@babel/helper-compilation-targets@^7.13.0", "@babel/helper-compilation-targets@^7.16.7":
- version "7.16.7"
- resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.16.7.tgz#06e66c5f299601e6c7da350049315e83209d551b"
- integrity sha512-mGojBwIWcwGD6rfqgRXVlVYmPAv7eOpIemUG3dGnDdCY4Pae70ROij3XmfrH6Fa1h1aiDylpglbZyktfzyo/hA==
+"@babel/helper-compilation-targets@^7.13.0", "@babel/helper-compilation-targets@^7.16.7", "@babel/helper-compilation-targets@^7.17.10":
+ version "7.17.10"
+ resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.17.10.tgz#09c63106d47af93cf31803db6bc49fef354e2ebe"
+ integrity sha512-gh3RxjWbauw/dFiU/7whjd0qN9K6nPJMqe6+Er7rOavFh0CQUSwhAE3IcTho2rywPJFxej6TUUHDkWcYI6gGqQ==
dependencies:
- "@babel/compat-data" "^7.16.4"
+ "@babel/compat-data" "^7.17.10"
"@babel/helper-validator-option" "^7.16.7"
- browserslist "^4.17.5"
+ browserslist "^4.20.2"
semver "^6.3.0"
"@babel/helper-create-class-features-plugin@^7.16.10", "@babel/helper-create-class-features-plugin@^7.16.7", "@babel/helper-create-class-features-plugin@^7.17.6":
- version "7.17.6"
- resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.17.6.tgz#3778c1ed09a7f3e65e6d6e0f6fbfcc53809d92c9"
- integrity sha512-SogLLSxXm2OkBbSsHZMM4tUi8fUzjs63AT/d0YQIzr6GSd8Hxsbk2KYDX0k0DweAzGMj/YWeiCsorIdtdcW8Eg==
+ version "7.17.9"
+ resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.17.9.tgz#71835d7fb9f38bd9f1378e40a4c0902fdc2ea49d"
+ integrity sha512-kUjip3gruz6AJKOq5i3nC6CoCEEF/oHH3cp6tOZhB+IyyyPyW0g1Gfsxn3mkk6S08pIA2y8GQh609v9G/5sHVQ==
dependencies:
"@babel/helper-annotate-as-pure" "^7.16.7"
"@babel/helper-environment-visitor" "^7.16.7"
- "@babel/helper-function-name" "^7.16.7"
- "@babel/helper-member-expression-to-functions" "^7.16.7"
+ "@babel/helper-function-name" "^7.17.9"
+ "@babel/helper-member-expression-to-functions" "^7.17.7"
"@babel/helper-optimise-call-expression" "^7.16.7"
"@babel/helper-replace-supers" "^7.16.7"
"@babel/helper-split-export-declaration" "^7.16.7"
-"@babel/helper-create-regexp-features-plugin@^7.16.7":
+"@babel/helper-create-regexp-features-plugin@^7.16.7", "@babel/helper-create-regexp-features-plugin@^7.17.0":
version "7.17.0"
resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.17.0.tgz#1dcc7d40ba0c6b6b25618997c5dbfd310f186fe1"
integrity sha512-awO2So99wG6KnlE+TPs6rn83gCz5WlEePJDTnLEqbchMVrBeAujURVphRdigsk094VhvZehFoNOihSlcBjwsXA==
@@ -149,21 +149,13 @@
dependencies:
"@babel/types" "^7.16.7"
-"@babel/helper-function-name@^7.16.7":
- version "7.16.7"
- resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.16.7.tgz#f1ec51551fb1c8956bc8dd95f38523b6cf375f8f"
- integrity sha512-QfDfEnIUyyBSR3HtrtGECuZ6DAyCkYFp7GHl75vFtTnn6pjKeK0T1DB5lLkFvBea8MdaiUABx3osbgLyInoejA==
+"@babel/helper-function-name@^7.16.7", "@babel/helper-function-name@^7.17.9":
+ version "7.17.9"
+ resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.17.9.tgz#136fcd54bc1da82fcb47565cf16fd8e444b1ff12"
+ integrity sha512-7cRisGlVtiVqZ0MW0/yFB4atgpGLWEHUVYnb448hZK4x+vih0YO5UoS11XIYtZYqHd0dIPMdUSv8q5K4LdMnIg==
dependencies:
- "@babel/helper-get-function-arity" "^7.16.7"
"@babel/template" "^7.16.7"
- "@babel/types" "^7.16.7"
-
-"@babel/helper-get-function-arity@^7.16.7":
- version "7.16.7"
- resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.16.7.tgz#ea08ac753117a669f1508ba06ebcc49156387419"
- integrity sha512-flc+RLSOBXzNzVhcLu6ujeHUrD6tANAOU5ojrRx/as+tbzf8+stUCj7+IfRRoAbEZqj/ahXEMsjhOhgeZsrnTw==
- dependencies:
- "@babel/types" "^7.16.7"
+ "@babel/types" "^7.17.0"
"@babel/helper-hoist-variables@^7.16.7":
version "7.16.7"
@@ -172,12 +164,12 @@
dependencies:
"@babel/types" "^7.16.7"
-"@babel/helper-member-expression-to-functions@^7.16.7":
- version "7.16.7"
- resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.16.7.tgz#42b9ca4b2b200123c3b7e726b0ae5153924905b0"
- integrity sha512-VtJ/65tYiU/6AbMTDwyoXGPKHgTsfRarivm+YbB5uAzKUyuPjgZSgAFeG87FCigc7KNHu2Pegh1XIT3lXjvz3Q==
+"@babel/helper-member-expression-to-functions@^7.16.7", "@babel/helper-member-expression-to-functions@^7.17.7":
+ version "7.17.7"
+ resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.17.7.tgz#a34013b57d8542a8c4ff8ba3f747c02452a4d8c4"
+ integrity sha512-thxXgnQ8qQ11W2wVUObIqDL4p148VMxkt5T/qpN5k2fboRyzFGFmKsTGViquyM5QHKUy48OZoca8kw4ajaDPyw==
dependencies:
- "@babel/types" "^7.16.7"
+ "@babel/types" "^7.17.0"
"@babel/helper-module-imports@^7.12.13", "@babel/helper-module-imports@^7.16.7":
version "7.16.7"
@@ -186,14 +178,14 @@
dependencies:
"@babel/types" "^7.16.7"
-"@babel/helper-module-transforms@^7.16.7":
- version "7.17.6"
- resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.17.6.tgz#3c3b03cc6617e33d68ef5a27a67419ac5199ccd0"
- integrity sha512-2ULmRdqoOMpdvkbT8jONrZML/XALfzxlb052bldftkicAUy8AxSCkD5trDPQcwHNmolcl7wP6ehNqMlyUw6AaA==
+"@babel/helper-module-transforms@^7.16.7", "@babel/helper-module-transforms@^7.17.7":
+ version "7.17.7"
+ resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.17.7.tgz#3943c7f777139e7954a5355c815263741a9c1cbd"
+ integrity sha512-VmZD99F3gNTYB7fJRDTi+u6l/zxY0BE6OIxPSU7a50s6ZUQkHwSDmV92FfM+oCG0pZRVojGYhkR8I0OGeCVREw==
dependencies:
"@babel/helper-environment-visitor" "^7.16.7"
"@babel/helper-module-imports" "^7.16.7"
- "@babel/helper-simple-access" "^7.16.7"
+ "@babel/helper-simple-access" "^7.17.7"
"@babel/helper-split-export-declaration" "^7.16.7"
"@babel/helper-validator-identifier" "^7.16.7"
"@babel/template" "^7.16.7"
@@ -232,12 +224,12 @@
"@babel/traverse" "^7.16.7"
"@babel/types" "^7.16.7"
-"@babel/helper-simple-access@^7.16.7":
- version "7.16.7"
- resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.16.7.tgz#d656654b9ea08dbb9659b69d61063ccd343ff0f7"
- integrity sha512-ZIzHVyoeLMvXMN/vok/a4LWRy8G2v205mNP0XOuf9XRLyX5/u9CnVulUtDgUTama3lT+bf/UqucuZjqiGuTS1g==
+"@babel/helper-simple-access@^7.17.7":
+ version "7.17.7"
+ resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.17.7.tgz#aaa473de92b7987c6dfa7ce9a7d9674724823367"
+ integrity sha512-txyMCGroZ96i+Pxr3Je3lzEJjqwaRC9buMUgtomcrLe5Nd0+fk1h0LLA+ixUF5OW7AhHuQ7Es1WcQJZmZsz2XA==
dependencies:
- "@babel/types" "^7.16.7"
+ "@babel/types" "^7.17.0"
"@babel/helper-skip-transparent-expression-wrappers@^7.16.0":
version "7.16.0"
@@ -273,28 +265,28 @@
"@babel/traverse" "^7.16.8"
"@babel/types" "^7.16.8"
-"@babel/helpers@^7.17.2":
- version "7.17.2"
- resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.17.2.tgz#23f0a0746c8e287773ccd27c14be428891f63417"
- integrity sha512-0Qu7RLR1dILozr/6M0xgj+DFPmi6Bnulgm9M8BVa9ZCWxDqlSnqt3cf8IDPB5m45sVXUZ0kuQAgUrdSFFH79fQ==
+"@babel/helpers@^7.17.9":
+ version "7.17.9"
+ resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.17.9.tgz#b2af120821bfbe44f9907b1826e168e819375a1a"
+ integrity sha512-cPCt915ShDWUEzEp3+UNRktO2n6v49l5RSnG9M5pS24hA+2FAc5si+Pn1i4VVbQQ+jh+bIZhPFQOJOzbrOYY1Q==
dependencies:
"@babel/template" "^7.16.7"
- "@babel/traverse" "^7.17.0"
+ "@babel/traverse" "^7.17.9"
"@babel/types" "^7.17.0"
"@babel/highlight@^7.10.4", "@babel/highlight@^7.16.7":
- version "7.16.10"
- resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.16.10.tgz#744f2eb81579d6eea753c227b0f570ad785aba88"
- integrity sha512-5FnTQLSLswEj6IkgVw5KusNUUFY9ZGqe/TRFnP/BKYHYgfh7tc+C7mwiy95/yNP7Dh9x580Vv8r7u7ZfTBFxdw==
+ version "7.17.9"
+ resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.17.9.tgz#61b2ee7f32ea0454612def4fccdae0de232b73e3"
+ integrity sha512-J9PfEKCbFIv2X5bjTMiZu6Vf341N05QIY+d6FvVKynkG1S7G0j3I0QoRtWIrXhZ+/Nlb5Q0MzqL7TokEJ5BNHg==
dependencies:
"@babel/helper-validator-identifier" "^7.16.7"
chalk "^2.0.0"
js-tokens "^4.0.0"
-"@babel/parser@^7.1.0", "@babel/parser@^7.14.7", "@babel/parser@^7.16.7", "@babel/parser@^7.17.3":
- version "7.17.3"
- resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.17.3.tgz#b07702b982990bf6fdc1da5049a23fece4c5c3d0"
- integrity sha512-7yJPvPV+ESz2IUTPbOL+YkIGyCqOyNIzdguKQuJGnH7bg1WTIifuM21YqokFt/THWh1AkCRn9IgoykTRCBVpzA==
+"@babel/parser@^7.1.0", "@babel/parser@^7.14.7", "@babel/parser@^7.16.7", "@babel/parser@^7.17.10":
+ version "7.17.10"
+ resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.17.10.tgz#873b16db82a8909e0fbd7f115772f4b739f6ce78"
+ integrity sha512-n2Q6i+fnJqzOaq2VkdXxy2TCPCWQZHiCo0XqmrCvDWcZQKRyZzYi4Z0yxlBuN0w+r2ZHmre+Q087DSrw3pbJDQ==
"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.16.7":
version "7.16.7"
@@ -329,7 +321,7 @@
"@babel/helper-create-class-features-plugin" "^7.16.7"
"@babel/helper-plugin-utils" "^7.16.7"
-"@babel/plugin-proposal-class-static-block@^7.16.7":
+"@babel/plugin-proposal-class-static-block@^7.17.6":
version "7.17.6"
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.17.6.tgz#164e8fd25f0d80fa48c5a4d1438a6629325ad83c"
integrity sha512-X/tididvL2zbs7jZCeeRJ8167U/+Ac135AM6jCAx6gYXDUviZV5Ku9UDvWS2NCuWlFjIRXklYhwo6HhAC7ETnA==
@@ -386,7 +378,7 @@
"@babel/helper-plugin-utils" "^7.16.7"
"@babel/plugin-syntax-numeric-separator" "^7.10.4"
-"@babel/plugin-proposal-object-rest-spread@^7.16.7":
+"@babel/plugin-proposal-object-rest-spread@^7.17.3":
version "7.17.3"
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.17.3.tgz#d9eb649a54628a51701aef7e0ea3d17e2b9dd390"
integrity sha512-yuL5iQA/TbZn+RGAfxQXfi7CNLmKi1f8zInn4IgobuCWcAb7i+zj4TYzQ9l8cEzVyJ89PDGuqxK1xZpUDISesw==
@@ -553,9 +545,9 @@
"@babel/helper-plugin-utils" "^7.14.5"
"@babel/plugin-syntax-typescript@^7.7.2":
- version "7.16.7"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.16.7.tgz#39c9b55ee153151990fb038651d58d3fd03f98f8"
- integrity sha512-YhUIJHHGkqPgEcMYkPCKTyGUdoGKWtopIycQyjJH8OjvRgOYsXsaKehLVPScKJWAULPxMa4N1vCe6szREFlZ7A==
+ version "7.17.10"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.17.10.tgz#80031e6042cad6a95ed753f672ebd23c30933195"
+ integrity sha512-xJefea1DWXW09pW4Tm9bjwVlPDyYA2it3fWlmEjpYz6alPvTUjL0EOzNzI/FEOyI3r4/J7uVH5UqKgl1TQ5hqQ==
dependencies:
"@babel/helper-plugin-utils" "^7.16.7"
@@ -610,10 +602,10 @@
dependencies:
"@babel/helper-plugin-utils" "^7.16.7"
-"@babel/plugin-transform-destructuring@^7.16.7":
- version "7.17.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.17.3.tgz#c445f75819641788a27a0a3a759d9df911df6abc"
- integrity sha512-dDFzegDYKlPqa72xIlbmSkly5MluLoaC1JswABGktyt6NTXSBcUuse/kWE/wvKFWJHPETpi158qJZFS3JmykJg==
+"@babel/plugin-transform-destructuring@^7.17.7":
+ version "7.17.7"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.17.7.tgz#49dc2675a7afa9a5e4c6bdee636061136c3408d1"
+ integrity sha512-XVh0r5yq9sLR4vZ6eVZe8FKfIcSgaTBxVBRSYokRj2qksf6QerYnTxz9/GTuKTH/n/HwLP7t6gtlybHetJ/6hQ==
dependencies:
"@babel/helper-plugin-utils" "^7.16.7"
@@ -679,23 +671,23 @@
"@babel/helper-plugin-utils" "^7.16.7"
babel-plugin-dynamic-import-node "^2.3.3"
-"@babel/plugin-transform-modules-commonjs@^7.16.8":
- version "7.16.8"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.16.8.tgz#cdee19aae887b16b9d331009aa9a219af7c86afe"
- integrity sha512-oflKPvsLT2+uKQopesJt3ApiaIS2HW+hzHFcwRNtyDGieAeC/dIHZX8buJQ2J2X1rxGPy4eRcUijm3qcSPjYcA==
+"@babel/plugin-transform-modules-commonjs@^7.17.9":
+ version "7.17.9"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.17.9.tgz#274be1a2087beec0254d4abd4d86e52442e1e5b6"
+ integrity sha512-2TBFd/r2I6VlYn0YRTz2JdazS+FoUuQ2rIFHoAxtyP/0G3D82SBLaRq9rnUkpqlLg03Byfl/+M32mpxjO6KaPw==
dependencies:
- "@babel/helper-module-transforms" "^7.16.7"
+ "@babel/helper-module-transforms" "^7.17.7"
"@babel/helper-plugin-utils" "^7.16.7"
- "@babel/helper-simple-access" "^7.16.7"
+ "@babel/helper-simple-access" "^7.17.7"
babel-plugin-dynamic-import-node "^2.3.3"
-"@babel/plugin-transform-modules-systemjs@^7.16.7":
- version "7.16.7"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.16.7.tgz#887cefaef88e684d29558c2b13ee0563e287c2d7"
- integrity sha512-DuK5E3k+QQmnOqBR9UkusByy5WZWGRxfzV529s9nPra1GE7olmxfqO2FHobEOYSPIjPBTr4p66YDcjQnt8cBmw==
+"@babel/plugin-transform-modules-systemjs@^7.17.8":
+ version "7.17.8"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.17.8.tgz#81fd834024fae14ea78fbe34168b042f38703859"
+ integrity sha512-39reIkMTUVagzgA5x88zDYXPCMT6lcaRKs1+S9K6NKBPErbgO/w/kP8GlNQTC87b412ZTlmNgr3k2JrWgHH+Bw==
dependencies:
"@babel/helper-hoist-variables" "^7.16.7"
- "@babel/helper-module-transforms" "^7.16.7"
+ "@babel/helper-module-transforms" "^7.17.7"
"@babel/helper-plugin-utils" "^7.16.7"
"@babel/helper-validator-identifier" "^7.16.7"
babel-plugin-dynamic-import-node "^2.3.3"
@@ -708,12 +700,12 @@
"@babel/helper-module-transforms" "^7.16.7"
"@babel/helper-plugin-utils" "^7.16.7"
-"@babel/plugin-transform-named-capturing-groups-regex@^7.16.8":
- version "7.16.8"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.16.8.tgz#7f860e0e40d844a02c9dcf9d84965e7dfd666252"
- integrity sha512-j3Jw+n5PvpmhRR+mrgIh04puSANCk/T/UA3m3P1MjJkhlK906+ApHhDIqBQDdOgL/r1UYpz4GNclTXxyZrYGSw==
+"@babel/plugin-transform-named-capturing-groups-regex@^7.17.10":
+ version "7.17.10"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.17.10.tgz#715dbcfafdb54ce8bccd3d12e8917296a4ba66a4"
+ integrity sha512-v54O6yLaJySCs6mGzaVOUw9T967GnH38T6CQSAtnzdNPwu84l2qAjssKzo/WSO8Yi7NF+7ekm5cVbF/5qiIgNA==
dependencies:
- "@babel/helper-create-regexp-features-plugin" "^7.16.7"
+ "@babel/helper-create-regexp-features-plugin" "^7.17.0"
"@babel/plugin-transform-new-target@^7.16.7":
version "7.16.7"
@@ -744,12 +736,12 @@
dependencies:
"@babel/helper-plugin-utils" "^7.16.7"
-"@babel/plugin-transform-regenerator@^7.16.7":
- version "7.16.7"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.16.7.tgz#9e7576dc476cb89ccc5096fff7af659243b4adeb"
- integrity sha512-mF7jOgGYCkSJagJ6XCujSQg+6xC1M77/03K2oBmVJWoFGNUtnVJO4WHKJk3dnPC8HCcj4xBQP1Egm8DWh3Pb3Q==
+"@babel/plugin-transform-regenerator@^7.17.9":
+ version "7.17.9"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.17.9.tgz#0a33c3a61cf47f45ed3232903683a0afd2d3460c"
+ integrity sha512-Lc2TfbxR1HOyn/c6b4Y/b6NHoTb67n/IoWLxTu4kC7h4KQnWlhCq2S8Tx0t2SVvv5Uu87Hs+6JEJ5kt2tYGylQ==
dependencies:
- regenerator-transform "^0.14.2"
+ regenerator-transform "^0.15.0"
"@babel/plugin-transform-reserved-words@^7.16.7":
version "7.16.7"
@@ -810,26 +802,26 @@
"@babel/helper-plugin-utils" "^7.16.7"
"@babel/preset-env@^7.15.6":
- version "7.16.11"
- resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.16.11.tgz#5dd88fd885fae36f88fd7c8342475c9f0abe2982"
- integrity sha512-qcmWG8R7ZW6WBRPZK//y+E3Cli151B20W1Rv7ln27vuPaXU/8TKms6jFdiJtF7UDTxcrb7mZd88tAeK9LjdT8g==
+ version "7.17.10"
+ resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.17.10.tgz#a81b093669e3eb6541bb81a23173c5963c5de69c"
+ integrity sha512-YNgyBHZQpeoBSRBg0xixsZzfT58Ze1iZrajvv0lJc70qDDGuGfonEnMGfWeSY0mQ3JTuCWFbMkzFRVafOyJx4g==
dependencies:
- "@babel/compat-data" "^7.16.8"
- "@babel/helper-compilation-targets" "^7.16.7"
+ "@babel/compat-data" "^7.17.10"
+ "@babel/helper-compilation-targets" "^7.17.10"
"@babel/helper-plugin-utils" "^7.16.7"
"@babel/helper-validator-option" "^7.16.7"
"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression" "^7.16.7"
"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.16.7"
"@babel/plugin-proposal-async-generator-functions" "^7.16.8"
"@babel/plugin-proposal-class-properties" "^7.16.7"
- "@babel/plugin-proposal-class-static-block" "^7.16.7"
+ "@babel/plugin-proposal-class-static-block" "^7.17.6"
"@babel/plugin-proposal-dynamic-import" "^7.16.7"
"@babel/plugin-proposal-export-namespace-from" "^7.16.7"
"@babel/plugin-proposal-json-strings" "^7.16.7"
"@babel/plugin-proposal-logical-assignment-operators" "^7.16.7"
"@babel/plugin-proposal-nullish-coalescing-operator" "^7.16.7"
"@babel/plugin-proposal-numeric-separator" "^7.16.7"
- "@babel/plugin-proposal-object-rest-spread" "^7.16.7"
+ "@babel/plugin-proposal-object-rest-spread" "^7.17.3"
"@babel/plugin-proposal-optional-catch-binding" "^7.16.7"
"@babel/plugin-proposal-optional-chaining" "^7.16.7"
"@babel/plugin-proposal-private-methods" "^7.16.11"
@@ -855,7 +847,7 @@
"@babel/plugin-transform-block-scoping" "^7.16.7"
"@babel/plugin-transform-classes" "^7.16.7"
"@babel/plugin-transform-computed-properties" "^7.16.7"
- "@babel/plugin-transform-destructuring" "^7.16.7"
+ "@babel/plugin-transform-destructuring" "^7.17.7"
"@babel/plugin-transform-dotall-regex" "^7.16.7"
"@babel/plugin-transform-duplicate-keys" "^7.16.7"
"@babel/plugin-transform-exponentiation-operator" "^7.16.7"
@@ -864,15 +856,15 @@
"@babel/plugin-transform-literals" "^7.16.7"
"@babel/plugin-transform-member-expression-literals" "^7.16.7"
"@babel/plugin-transform-modules-amd" "^7.16.7"
- "@babel/plugin-transform-modules-commonjs" "^7.16.8"
- "@babel/plugin-transform-modules-systemjs" "^7.16.7"
+ "@babel/plugin-transform-modules-commonjs" "^7.17.9"
+ "@babel/plugin-transform-modules-systemjs" "^7.17.8"
"@babel/plugin-transform-modules-umd" "^7.16.7"
- "@babel/plugin-transform-named-capturing-groups-regex" "^7.16.8"
+ "@babel/plugin-transform-named-capturing-groups-regex" "^7.17.10"
"@babel/plugin-transform-new-target" "^7.16.7"
"@babel/plugin-transform-object-super" "^7.16.7"
"@babel/plugin-transform-parameters" "^7.16.7"
"@babel/plugin-transform-property-literals" "^7.16.7"
- "@babel/plugin-transform-regenerator" "^7.16.7"
+ "@babel/plugin-transform-regenerator" "^7.17.9"
"@babel/plugin-transform-reserved-words" "^7.16.7"
"@babel/plugin-transform-shorthand-properties" "^7.16.7"
"@babel/plugin-transform-spread" "^7.16.7"
@@ -882,11 +874,11 @@
"@babel/plugin-transform-unicode-escapes" "^7.16.7"
"@babel/plugin-transform-unicode-regex" "^7.16.7"
"@babel/preset-modules" "^0.1.5"
- "@babel/types" "^7.16.8"
+ "@babel/types" "^7.17.10"
babel-plugin-polyfill-corejs2 "^0.3.0"
babel-plugin-polyfill-corejs3 "^0.5.0"
babel-plugin-polyfill-regenerator "^0.3.0"
- core-js-compat "^3.20.2"
+ core-js-compat "^3.22.1"
semver "^6.3.0"
"@babel/preset-modules@^0.1.5":
@@ -901,9 +893,9 @@
esutils "^2.0.2"
"@babel/runtime@^7.8.4":
- version "7.17.2"
- resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.17.2.tgz#66f68591605e59da47523c631416b18508779941"
- integrity sha512-hzeyJyMA1YGdJTuWU0e/j4wKXrU4OMFvY2MSlaI9B7VQb0r5cxTE3EAIS2Q7Tn2RIcDkRvTA/v2JsAEhxe99uw==
+ version "7.17.9"
+ resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.17.9.tgz#d19fbf802d01a8cb6cf053a64e472d42c434ba72"
+ integrity sha512-lSiBBvodq29uShpWGNbgFdKYNiFDo5/HIYsaCEY9ff4sb10x9jizo2+pRrSyF4jKZCXqgzuqBOQKbUm90gQwJg==
dependencies:
regenerator-runtime "^0.13.4"
@@ -916,26 +908,26 @@
"@babel/parser" "^7.16.7"
"@babel/types" "^7.16.7"
-"@babel/traverse@^7.13.0", "@babel/traverse@^7.16.7", "@babel/traverse@^7.16.8", "@babel/traverse@^7.17.0", "@babel/traverse@^7.17.3", "@babel/traverse@^7.7.2":
- version "7.17.3"
- resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.17.3.tgz#0ae0f15b27d9a92ba1f2263358ea7c4e7db47b57"
- integrity sha512-5irClVky7TxRWIRtxlh2WPUUOLhcPN06AGgaQSB8AEwuyEBgJVuJ5imdHm5zxk8w0QS5T+tDfnDxAlhWjpb7cw==
+"@babel/traverse@^7.13.0", "@babel/traverse@^7.16.7", "@babel/traverse@^7.16.8", "@babel/traverse@^7.17.10", "@babel/traverse@^7.17.3", "@babel/traverse@^7.17.9", "@babel/traverse@^7.7.2":
+ version "7.17.10"
+ resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.17.10.tgz#1ee1a5ac39f4eac844e6cf855b35520e5eb6f8b5"
+ integrity sha512-VmbrTHQteIdUUQNTb+zE12SHS/xQVIShmBPhlNP12hD5poF2pbITW1Z4172d03HegaQWhLffdkRJYtAzp0AGcw==
dependencies:
"@babel/code-frame" "^7.16.7"
- "@babel/generator" "^7.17.3"
+ "@babel/generator" "^7.17.10"
"@babel/helper-environment-visitor" "^7.16.7"
- "@babel/helper-function-name" "^7.16.7"
+ "@babel/helper-function-name" "^7.17.9"
"@babel/helper-hoist-variables" "^7.16.7"
"@babel/helper-split-export-declaration" "^7.16.7"
- "@babel/parser" "^7.17.3"
- "@babel/types" "^7.17.0"
+ "@babel/parser" "^7.17.10"
+ "@babel/types" "^7.17.10"
debug "^4.1.0"
globals "^11.1.0"
-"@babel/types@^7.0.0", "@babel/types@^7.16.0", "@babel/types@^7.16.7", "@babel/types@^7.16.8", "@babel/types@^7.17.0", "@babel/types@^7.3.0", "@babel/types@^7.3.3", "@babel/types@^7.4.4":
- version "7.17.0"
- resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.17.0.tgz#a826e368bccb6b3d84acd76acad5c0d87342390b"
- integrity sha512-TmKSNO4D5rzhL5bjWFcVHHLETzfQ/AmbKpKPOSjlP0WoHZ6L911fgoOKY4Alp/emzG4cHJdyN49zpgkbXFEHHw==
+"@babel/types@^7.0.0", "@babel/types@^7.16.0", "@babel/types@^7.16.7", "@babel/types@^7.16.8", "@babel/types@^7.17.0", "@babel/types@^7.17.10", "@babel/types@^7.3.0", "@babel/types@^7.3.3", "@babel/types@^7.4.4":
+ version "7.17.10"
+ resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.17.10.tgz#d35d7b4467e439fcf06d195f8100e0fea7fc82c4"
+ integrity sha512-9O26jG0mBYfGkUYCYZRnBwbVLd1UZOICEr2Em6InB6jVfsAv1GKgwXHmrSg+WFWDmeKTA6vyTZiN8tCSM5Oo3A==
dependencies:
"@babel/helper-validator-identifier" "^7.16.7"
to-fast-properties "^2.0.0"
@@ -1159,20 +1151,33 @@
"@types/yargs" "^16.0.0"
chalk "^4.0.0"
+"@jridgewell/gen-mapping@^0.1.0":
+ version "0.1.1"
+ resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz#e5d2e450306a9491e3bd77e323e38d7aff315996"
+ integrity sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==
+ dependencies:
+ "@jridgewell/set-array" "^1.0.0"
+ "@jridgewell/sourcemap-codec" "^1.4.10"
+
"@jridgewell/resolve-uri@^3.0.3":
- version "3.0.5"
- resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.0.5.tgz#68eb521368db76d040a6315cdb24bf2483037b9c"
- integrity sha512-VPeQ7+wH0itvQxnG+lIzWgkysKIr3L9sslimFW55rHMdGu/qCQ5z5h9zq4gI8uBtqkpHhsF4Z/OwExufUCThew==
+ version "3.0.6"
+ resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.0.6.tgz#4ac237f4dabc8dd93330386907b97591801f7352"
+ integrity sha512-R7xHtBSNm+9SyvpJkdQl+qrM3Hm2fea3Ef197M3mUug+v+yR+Rhfbs7PBtcBUVnIWJ4JcAdjvij+c8hXS9p5aw==
+
+"@jridgewell/set-array@^1.0.0":
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.1.0.tgz#1179863356ac8fbea64a5a4bcde93a4871012c01"
+ integrity sha512-SfJxIxNVYLTsKwzB3MoOQ1yxf4w/E6MdkvTgrgAt1bfxjSrLUoHMKrDOykwN14q65waezZIdqDneUIPh4/sKxg==
"@jridgewell/sourcemap-codec@^1.4.10":
version "1.4.11"
resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.11.tgz#771a1d8d744eeb71b6adb35808e1a6c7b9b8c8ec"
integrity sha512-Fg32GrJo61m+VqYSdRSjRXMjQ06j8YIYfcTqndLYVAaHmroZHLJZCydsWBOTDqXS2v+mjxohBWEMfg97GXmYQg==
-"@jridgewell/trace-mapping@^0.3.0", "@jridgewell/trace-mapping@^0.3.4":
- version "0.3.4"
- resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.4.tgz#f6a0832dffd5b8a6aaa633b7d9f8e8e94c83a0c3"
- integrity sha512-vFv9ttIedivx0ux3QSjhgtCVjPZd5l46ZOMDSCwnH1yUO2e964gO8LZGyv2QkqcgR6TnBU1v+1IFqmeoG+0UJQ==
+"@jridgewell/trace-mapping@^0.3.8", "@jridgewell/trace-mapping@^0.3.9":
+ version "0.3.9"
+ resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz#6534fd5933a53ba7cbf3a17615e273a0d1273ff9"
+ integrity sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==
dependencies:
"@jridgewell/resolve-uri" "^3.0.3"
"@jridgewell/sourcemap-codec" "^1.4.10"
@@ -1183,9 +1188,9 @@
integrity sha1-zlblOfg1UrWNENZy6k1vya3HsjQ=
"@mapbox/mapbox-gl-style-spec@^13.20.1":
- version "13.23.1"
- resolved "https://registry.yarnpkg.com/@mapbox/mapbox-gl-style-spec/-/mapbox-gl-style-spec-13.23.1.tgz#481f41801517b7b52fea595f07d3633a903a250c"
- integrity sha512-C6wh8A/5EdsgzhL6y6yl464VCQNIxK0yjrpnvCvchcFe3sNK2RbBw/J9u3m+p8Y6S6MsGuSMt3AkGAXOKMYweQ==
+ version "13.24.0"
+ resolved "https://registry.yarnpkg.com/@mapbox/mapbox-gl-style-spec/-/mapbox-gl-style-spec-13.24.0.tgz#38e6dbf64eeb934c148cb76b251710d00c0c124f"
+ integrity sha512-9yhRSqnKX+59MrG647x2pACfR2Ewk8Ii5X75Ag8oToEKZU+PSY0+r10EirIVCTDwuHPzp/VuuN3j6n+Hv/gGpQ==
dependencies:
"@mapbox/jsonlint-lines-primitives" "~2.0.2"
"@mapbox/point-geometry" "^0.1.0"
@@ -1243,9 +1248,9 @@
integrity sha512-Yx6Z93kmz3JVPYoPPRFJXnt2/G4kfaxRROcZVVHsE4zOClJXvkOVidv/JfvP6hWn16lykbKYKVzUsId6mqXdGg==
"@popperjs/core@^2.10.2":
- version "2.11.2"
- resolved "https://registry.yarnpkg.com/@popperjs/core/-/core-2.11.2.tgz#830beaec4b4091a9e9398ac50f865ddea52186b9"
- integrity sha512-92FRmppjjqz29VMJ2dn+xdyXZBrMlE42AV6Kq6BwjWV7CNUW1hs2FtxSNLQE+gJhaZ6AAmYuO9y8dshhcBl7vA==
+ version "2.11.5"
+ resolved "https://registry.yarnpkg.com/@popperjs/core/-/core-2.11.5.tgz#db5a11bf66bdab39569719555b0f76e138d7bd64"
+ integrity sha512-9X2obfABZuDVLCgPK9aX0a/x4jaOEweTTWE2+9sr0Qqqevj2Uv5XorvusThmc9XGYpS9yI+fhh8RTafBtGposw==
"@sinonjs/commons@^1.7.0":
version "1.8.3"
@@ -1282,9 +1287,9 @@
integrity sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==
"@types/babel__core@^7.0.0", "@types/babel__core@^7.1.14":
- version "7.1.18"
- resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.18.tgz#1a29abcc411a9c05e2094c98f9a1b7da6cdf49f8"
- integrity sha512-S7unDjm/C7z2A2R9NzfKCK1I+BAALDtxEmsJBwlB3EzNfb929ykjL++1CK9LO++EIp2fQrC8O+BwjKvz6UeDyQ==
+ version "7.1.19"
+ resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.19.tgz#7b497495b7d1b4812bdb9d02804d0576f43ee460"
+ integrity sha512-WEOTgRsbYkvA/KCsDwVEGkd7WAr1e3g31VHQ8zy5gul/V1qKullU/BU5I68X5v7V3GnB9eotmom4v5a5gjxorw==
dependencies:
"@babel/parser" "^7.1.0"
"@babel/types" "^7.0.0"
@@ -1308,9 +1313,9 @@
"@babel/types" "^7.0.0"
"@types/babel__traverse@*", "@types/babel__traverse@^7.0.4", "@types/babel__traverse@^7.0.6":
- version "7.14.2"
- resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.14.2.tgz#ffcd470bbb3f8bf30481678fb5502278ca833a43"
- integrity sha512-K2waXdXBi2302XUdcHcR1jCeU0LL4TD9HRs/gk0N2Xvrht+G/BfJa4QObBQZfhMdxiCpV3COl5Nfq4uKTeTnJA==
+ version "7.17.1"
+ resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.17.1.tgz#1a0e73e8c28c7e832656db372b779bfd2ef37314"
+ integrity sha512-kVzjari1s2YVi77D3w1yuvohV2idweYXMCDzqBiVNN63TcDWrIlTVOYpqVrvbbyOE/IyzBoTKF0fdnLPEORFxA==
dependencies:
"@babel/types" "^7.3.0"
@@ -1353,9 +1358,9 @@
integrity sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==
"@types/node@*":
- version "17.0.21"
- resolved "https://registry.yarnpkg.com/@types/node/-/node-17.0.21.tgz#864b987c0c68d07b4345845c3e63b75edd143644"
- integrity sha512-DBZCJbhII3r90XbQxI8Y9IjjiiOGlZ0Hr32omXIZvwwZ7p4DMMXGrKXVyPfuoBOri9XNtL0UK69jYIBIsRX3QQ==
+ version "17.0.30"
+ resolved "https://registry.yarnpkg.com/@types/node/-/node-17.0.30.tgz#2c6e8512acac70815e8176aa30c38025067880ef"
+ integrity sha512-oNBIZjIqyHYP8VCNAV9uEytXVeXG2oR0w9lgAXro20eugRQfY002qr3CUl6BAe+Yf/z3CRjPdz27Pu6WWtuSRw==
"@types/normalize-package-data@^2.4.0":
version "2.4.1"
@@ -1368,9 +1373,9 @@
integrity sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==
"@types/prettier@^2.1.5":
- version "2.4.4"
- resolved "https://registry.yarnpkg.com/@types/prettier/-/prettier-2.4.4.tgz#5d9b63132df54d8909fce1c3f8ca260fdd693e17"
- integrity sha512-ReVR2rLTV1kvtlWFyuot+d1pkpG2Fw/XKE3PDAdj57rbM97ttSp9JZ2UsP+2EHTylra9cUf6JA7tGwW1INzUrA==
+ version "2.6.0"
+ resolved "https://registry.yarnpkg.com/@types/prettier/-/prettier-2.6.0.tgz#efcbd41937f9ae7434c714ab698604822d890759"
+ integrity sha512-G/AdOadiZhnJp0jXCaBQU449W2h716OW/EoXeYkCytxKL06X1WCXB4DZpp8TpZ8eyIJVS1cw4lrlkkSYU21cDw==
"@types/stack-utils@^2.0.0":
version "2.0.1"
@@ -1400,9 +1405,9 @@
integrity sha512-zaGUGolat04MB1ImVMbP8o7uDytKRLahZO6VSWeW6tK+tko6vHMl/eNsdKWSSWG7OR45BeUy7nBvFg79HYSdGA==
abab@^2.0.3, abab@^2.0.5:
- version "2.0.5"
- resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.5.tgz#c0b678fb32d60fc1219c784d6a826fe385aeb79a"
- integrity sha512-9IK9EadsbHo6jLWIpxpR6pL0sazTXV6+SQv25ZB+F7Bj9mJNaOc4nCRabwd5M/JwmUa8idz6Eci6eKfJryPs6Q==
+ version "2.0.6"
+ resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.6.tgz#41b80f2c871d19686216b82309231cfd3cb3d291"
+ integrity sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==
acorn-globals@^6.0.0:
version "6.0.0"
@@ -1428,9 +1433,9 @@ acorn@^7.1.1, acorn@^7.4.0:
integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==
acorn@^8.2.4:
- version "8.7.0"
- resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.7.0.tgz#90951fde0f8f09df93549481e5fc141445b791cf"
- integrity sha512-V/LGr1APy+PXIwKebEWrkZPwoeoF+w1jiOBUmuxuiUIaOHtob8Qc9BTrYo7VuI5fR8tqsy+buA2WFooR5olqvQ==
+ version "8.7.1"
+ resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.7.1.tgz#0197122c843d1bf6d0a5e83220a788f278f63c30"
+ integrity sha512-Xx54uLJQZ19lKygFXOWsscKUbsBZW0CPykPhVQdhIeIwrbPmJzqeASDInc8nKBnp/JT6igTs82qPXz069H8I/A==
agent-base@6:
version "6.0.2"
@@ -1450,9 +1455,9 @@ ajv@^6.10.0, ajv@^6.12.4:
uri-js "^4.2.2"
ajv@^8.0.1:
- version "8.10.0"
- resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.10.0.tgz#e573f719bd3af069017e3b66538ab968d040e54d"
- integrity sha512-bzqAEZOjkrUMl2afH8dknrq5KEk2SrwdBROR+vH1EKVQTqaUbJVPdc/gEdggTMM0Se+s+Ja4ju4TlNcStKl2Hw==
+ version "8.11.0"
+ resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.11.0.tgz#977e91dd96ca669f54a11e23e378e33b884a565f"
+ integrity sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==
dependencies:
fast-deep-equal "^3.1.1"
json-schema-traverse "^1.0.0"
@@ -1543,13 +1548,13 @@ asynckit@^0.4.0:
integrity sha1-x57Zf380y48robyXkLzDZkdLS3k=
autoprefixer@^10.3.6:
- version "10.4.2"
- resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-10.4.2.tgz#25e1df09a31a9fba5c40b578936b90d35c9d4d3b"
- integrity sha512-9fOPpHKuDW1w/0EKfRmVnxTDt8166MAnLI3mgZ1JCnhNtYWxcJ6Ud5CO/AVOZi/AvFa8DY9RTy3h3+tFBlrrdQ==
+ version "10.4.5"
+ resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-10.4.5.tgz#662193c744094b53d3637f39be477e07bd904998"
+ integrity sha512-Fvd8yCoA7lNX/OUllvS+aS1I7WRBclGXsepbvT8ZaPgrH24rgXpZzF0/6Hh3ZEkwg+0AES/Osd196VZmYoEFtw==
dependencies:
- browserslist "^4.19.1"
- caniuse-lite "^1.0.30001297"
- fraction.js "^4.1.2"
+ browserslist "^4.20.2"
+ caniuse-lite "^1.0.30001332"
+ fraction.js "^4.2.0"
normalize-range "^0.1.2"
picocolors "^1.0.0"
postcss-value-parser "^4.2.0"
@@ -1692,7 +1697,7 @@ brace-expansion@^1.1.7:
balanced-match "^1.0.0"
concat-map "0.0.1"
-braces@^3.0.1, braces@~3.0.2:
+braces@^3.0.2, braces@~3.0.2:
version "3.0.2"
resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107"
integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==
@@ -1704,15 +1709,15 @@ browser-process-hrtime@^1.0.0:
resolved "https://registry.yarnpkg.com/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz#3c9b4b7d782c8121e56f10106d84c0d0ffc94626"
integrity sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==
-browserslist@^4.12.0, browserslist@^4.16.8, browserslist@^4.17.5, browserslist@^4.19.1:
- version "4.20.0"
- resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.20.0.tgz#35951e3541078c125d36df76056e94738a52ebe9"
- integrity sha512-bnpOoa+DownbciXj0jVGENf8VYQnE2LNWomhYuCsMmmx9Jd9lwq0WXODuwpSsp8AVdKM2/HorrzxAfbKvWTByQ==
+browserslist@^4.12.0, browserslist@^4.16.8, browserslist@^4.20.2, browserslist@^4.20.3:
+ version "4.20.3"
+ resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.20.3.tgz#eb7572f49ec430e054f56d52ff0ebe9be915f8bf"
+ integrity sha512-NBhymBQl1zM0Y5dQT/O+xiLP9/rzOIQdKM/eMJBAq7yBgaB6krIYLGejrwVYnSHZdqjscB1SPuAjHwxjvN6Wdg==
dependencies:
- caniuse-lite "^1.0.30001313"
- electron-to-chromium "^1.4.76"
+ caniuse-lite "^1.0.30001332"
+ electron-to-chromium "^1.4.118"
escalade "^3.1.1"
- node-releases "^2.0.2"
+ node-releases "^2.0.3"
picocolors "^1.0.0"
bser@2.1.1:
@@ -1735,7 +1740,7 @@ call-bind@^1.0.0:
function-bind "^1.1.1"
get-intrinsic "^1.0.2"
-callsites@^3.0.0, callsites@^3.1.0:
+callsites@^3.0.0:
version "3.1.0"
resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73"
integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==
@@ -1759,10 +1764,10 @@ camelcase@^6.2.0:
resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a"
integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==
-caniuse-lite@^1.0.30001109, caniuse-lite@^1.0.30001251, caniuse-lite@^1.0.30001297, caniuse-lite@^1.0.30001313:
- version "1.0.30001314"
- resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001314.tgz#65c7f9fb7e4594fca0a333bec1d8939662377596"
- integrity sha512-0zaSO+TnCHtHJIbpLroX7nsD+vYuOVjl3uzFbJO1wMVbuveJA0RK2WcQA9ZUIOiO0/ArMiMgHJLxfEZhQiC0kw==
+caniuse-lite@^1.0.30001109, caniuse-lite@^1.0.30001251, caniuse-lite@^1.0.30001332:
+ version "1.0.30001334"
+ resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001334.tgz#892e9965b35285033fc2b8a8eff499fe02f13d8b"
+ integrity sha512-kbaCEBRRVSoeNs74sCuq92MJyGrMtjWVfhltoHUCW4t4pXFvGjUBrfo47weBRViHkiV3eBYyIsfl956NtHGazw==
chalk@^2.0.0:
version "2.4.2"
@@ -1847,10 +1852,10 @@ co@^4.6.0:
resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184"
integrity sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=
-codemirror@5.63.3:
- version "5.63.3"
- resolved "https://registry.yarnpkg.com/codemirror/-/codemirror-5.63.3.tgz#97042a242027fe0c87c09b36bc01931d37b76527"
- integrity sha512-1C+LELr+5grgJYqwZKqxrcbPsHFHapVaVAloBsFBASbpLnQqLw1U8yXJ3gT5D+rhxIiSpo+kTqN+hQ+9ialIXw==
+codemirror@5.65.3:
+ version "5.65.3"
+ resolved "https://registry.yarnpkg.com/codemirror/-/codemirror-5.65.3.tgz#2d029930d5a293bc5fb96ceea64654803c0d4ac7"
+ integrity sha512-kCC0iwGZOVZXHEKW3NDTObvM7pTIyowjty4BUqeREROc/3I6bWbgZDA3fGDwlA+rbgRjvnRnfqs9SfXynel1AQ==
collect-v8-coverage@^1.0.0:
version "1.0.1"
@@ -1905,18 +1910,18 @@ convert-source-map@^1.1.0, convert-source-map@^1.4.0, convert-source-map@^1.6.0,
dependencies:
safe-buffer "~5.1.1"
-core-js-compat@^3.20.2, core-js-compat@^3.21.0:
- version "3.21.1"
- resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.21.1.tgz#cac369f67c8d134ff8f9bd1623e3bc2c42068c82"
- integrity sha512-gbgX5AUvMb8gwxC7FLVWYT7Kkgu/y7+h/h1X43yJkNqhlK2fuYyQimqvKGNZFAY6CKii/GFKJ2cp/1/42TN36g==
+core-js-compat@^3.21.0, core-js-compat@^3.22.1:
+ version "3.22.3"
+ resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.22.3.tgz#9b10d786052d042bc97ee8df9c0d1fb6a49c2005"
+ integrity sha512-wliMbvPI2idgFWpFe7UEyHMvu6HWgW8WA+HnDRtgzoSDYvXFMpoGX1H3tPDDXrcfUSyXafCLDd7hOeMQHEZxGw==
dependencies:
- browserslist "^4.19.1"
+ browserslist "^4.20.3"
semver "7.0.0"
core-js@^3.16.2:
- version "3.21.1"
- resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.21.1.tgz#f2e0ddc1fc43da6f904706e8e955bc19d06a0d94"
- integrity sha512-FRq5b/VMrWlrmCzwRrpDYNxyHP9BcAZC+xHJaqTgIE5091ZV1NTmyh0sGOg5XqpnHvR0svdy0sv1gWA1zmhxig==
+ version "3.22.3"
+ resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.22.3.tgz#498c41d997654cb00e81c7a54b44f0ab21ab01d5"
+ integrity sha512-1t+2a/d2lppW1gkLXx3pKPVGbBdxXAkqztvWb1EJ8oF8O2gIGiytzflNiFEehYwVK/t2ryUsGBoOFFvNx95mbg==
cosmiconfig@^7.0.0:
version "7.0.1"
@@ -1974,10 +1979,10 @@ data-urls@^2.0.0:
whatwg-mimetype "^2.3.0"
whatwg-url "^8.0.0"
-debug@4, debug@^4.0.0, debug@^4.0.1, debug@^4.1.0, debug@^4.1.1, debug@^4.2.0, debug@^4.3.1:
- version "4.3.3"
- resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.3.tgz#04266e0b70a98d4462e6e288e38259213332b664"
- integrity sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==
+debug@4, debug@^4.0.0, debug@^4.0.1, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1:
+ version "4.3.4"
+ resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865"
+ integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==
dependencies:
ms "2.1.2"
@@ -2015,11 +2020,12 @@ deepmerge@^4.2.2:
integrity sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==
define-properties@^1.1.3:
- version "1.1.3"
- resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1"
- integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==
+ version "1.1.4"
+ resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.4.tgz#0b14d7bd7fbeb2f3572c3a7eda80ea5d57fb05b1"
+ integrity sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==
dependencies:
- object-keys "^1.0.12"
+ has-property-descriptors "^1.0.0"
+ object-keys "^1.1.1"
delayed-stream@~1.0.0:
version "1.0.0"
@@ -2069,9 +2075,9 @@ domelementtype@1, domelementtype@^1.3.1:
integrity sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==
domelementtype@^2.0.1:
- version "2.2.0"
- resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.2.0.tgz#9a0b6c2782ed6a1c7323d42267183df9bd8b1d57"
- integrity sha512-DtBMo82pv1dFtUmHyr48beiuq792Sxohr+8Hm9zoxklYPfa6n0Z3Byjj2IV7bmr2IyqClnqEQhfgHJJ5QF0R5A==
+ version "2.3.0"
+ resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.3.0.tgz#5c45e8e869952626331d7aab326d01daf65d589d"
+ integrity sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==
domexception@^2.0.1:
version "2.0.1"
@@ -2095,10 +2101,10 @@ domutils@^1.5.1:
dom-serializer "0"
domelementtype "1"
-electron-to-chromium@^1.4.76:
- version "1.4.81"
- resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.81.tgz#a9ce8997232fb9fb0ec53de8931a85b18c0a7383"
- integrity sha512-Gs7xVpIZ7tYYSDA+WgpzwpPvfGwUk3KSIjJ0akuj5XQHFdyQnsUoM76EA4CIHXNLPiVwTwOFay9RMb0ChG3OBw==
+electron-to-chromium@^1.4.118:
+ version "1.4.127"
+ resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.127.tgz#4ef19d5d920abe2676d938f4170729b44f7f423a"
+ integrity sha512-nhD6S8nKI0O2MueC6blNOEZio+/PWppE/pevnf3LOlQA/fKPCrDp2Ao4wx4LFwmIkJpVdFdn2763YWLy9ENIZg==
emittery@^0.8.1:
version "0.8.1"
@@ -2256,11 +2262,6 @@ eslint@^7.32.0:
text-table "^0.2.0"
v8-compile-cache "^2.0.3"
-esm@^3.2.25:
- version "3.2.25"
- resolved "https://registry.yarnpkg.com/esm/-/esm-3.2.25.tgz#342c18c29d56157688ba5ce31f8431fbb795cc10"
- integrity sha512-U1suiZ2oDVWv4zPO56S0NcR5QriEahGtdN2OR6FiOG4WJvcjBVFB0qI4+eKoWFH483PKGuLuu6V8Z4T5g63UVA==
-
espree@^7.3.0, espree@^7.3.1:
version "7.3.1"
resolved "https://registry.yarnpkg.com/espree/-/espree-7.3.1.tgz#f2df330b752c6f55019f8bd89b7660039c1bbbb6"
@@ -2443,15 +2444,15 @@ form-data@^3.0.0:
combined-stream "^1.0.8"
mime-types "^2.1.12"
-fraction.js@^4.1.2:
+fraction.js@^4.2.0:
version "4.2.0"
resolved "https://registry.yarnpkg.com/fraction.js/-/fraction.js-4.2.0.tgz#448e5109a313a3527f5a3ab2119ec4cf0e0e2950"
integrity sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==
fs-extra@^10.0.0:
- version "10.0.1"
- resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-10.0.1.tgz#27de43b4320e833f6867cc044bfce29fdf0ef3b8"
- integrity sha512-NbdoVMZso2Lsrn/QwLXOy6rm0ufY2zEOKCDzJR/0kBsb0E6qed0P3iYK+Ath3BfvXEeu4JhEtXLgILx5psUfag==
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-10.1.0.tgz#02873cfbc4084dde127eaa5f9905eef2325d1abf"
+ integrity sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==
dependencies:
graceful-fs "^4.2.0"
jsonfile "^6.0.1"
@@ -2487,17 +2488,17 @@ gensync@^1.0.0-beta.2:
resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0"
integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==
-geotiff@^1.0.8:
- version "1.0.9"
- resolved "https://registry.yarnpkg.com/geotiff/-/geotiff-1.0.9.tgz#a2037c1f672c0a11bfbac8b46bbc56f901e32198"
- integrity sha512-PY+q1OP8RtQZkx1630pVfC3hEkxFnGW9LwIF/glSzcalyShkrH+W8uM/M4RVY12j4QkDQvRXVKOpU65hq6t0iQ==
+geotiff@^2.0.2:
+ version "2.0.5"
+ resolved "https://registry.yarnpkg.com/geotiff/-/geotiff-2.0.5.tgz#ef94227aba5c1b64167b49c44304b1fea5b01c95"
+ integrity sha512-U5kVYm118YAmw2swiLu8rhfrYnDKOFI7VaMjuQwcq6Intuuid9Pyb4jjxYUxxkq8kOu2r7Am0Rmb52PObGp4pQ==
dependencies:
"@petamoriken/float16" "^3.4.7"
lerc "^3.0.0"
- lru-cache "^6.0.0"
pako "^2.0.4"
parse-headers "^2.0.2"
- threads "^1.7.0"
+ quick-lru "^6.1.0"
+ web-worker "^1.2.0"
xml-utils "^1.0.2"
get-caller-file@^2.0.5:
@@ -2505,7 +2506,7 @@ get-caller-file@^2.0.5:
resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e"
integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==
-get-intrinsic@^1.0.2:
+get-intrinsic@^1.0.2, get-intrinsic@^1.1.1:
version "1.1.1"
resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.1.tgz#15f59f376f855c446963948f0d24cd3637b4abc6"
integrity sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==
@@ -2575,9 +2576,9 @@ globals@^11.1.0:
integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==
globals@^13.6.0, globals@^13.9.0:
- version "13.12.1"
- resolved "https://registry.yarnpkg.com/globals/-/globals-13.12.1.tgz#ec206be932e6c77236677127577aa8e50bf1c5cb"
- integrity sha512-317dFlgY2pdJZ9rspXDks7073GpDmXdfbM3vYYp0HAMKGDh1FfWPleI2ljVNLQX5M5lXcAslTcPTrOrMEFOjyw==
+ version "13.13.0"
+ resolved "https://registry.yarnpkg.com/globals/-/globals-13.13.0.tgz#ac32261060d8070e2719dd6998406e27d2b5727b"
+ integrity sha512-EQ7Q18AJlPwp3vUDL4mKA0KXrXyNIQyWon6T6XQiBQF0XHvRsiCSrWmmeATpUzdJN2HhWZU6Pdl0a9zdep5p6A==
dependencies:
type-fest "^0.20.2"
@@ -2618,9 +2619,9 @@ gonzales-pe@^4.3.0:
minimist "^1.2.5"
graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.9:
- version "4.2.9"
- resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.9.tgz#041b05df45755e587a24942279b9d113146e1c96"
- integrity sha512-NtNxqUcXgpW2iMrfqSfR73Glt39K+BLwWsPs94yR63v45T0Wbej7eRmL5cWfwEgqXnmjQp3zaJTshdRW/qC2ZQ==
+ version "4.2.10"
+ resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.10.tgz#147d3a006da4ca3ce14728c7aefc287c367d7a6c"
+ integrity sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==
hard-rejection@^2.1.0:
version "2.1.0"
@@ -2637,6 +2638,13 @@ has-flag@^4.0.0:
resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b"
integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==
+has-property-descriptors@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz#610708600606d36961ed04c196193b6a607fa861"
+ integrity sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==
+ dependencies:
+ get-intrinsic "^1.1.1"
+
has-symbols@^1.0.1:
version "1.0.3"
resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8"
@@ -2674,9 +2682,9 @@ html-escaper@^2.0.0:
integrity sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==
html-tags@^3.1.0:
- version "3.1.0"
- resolved "https://registry.yarnpkg.com/html-tags/-/html-tags-3.1.0.tgz#7b5e6f7e665e9fb41f30007ed9e0d41e97fb2140"
- integrity sha512-1qYz89hW3lFDEazhjW0yVAV87lw8lVkrJocr72XmBkMKsoSVJCQx3W8BXsC7hO2qAt8BoVjYjtAcZ9perqGnNg==
+ version "3.2.0"
+ resolved "https://registry.yarnpkg.com/html-tags/-/html-tags-3.2.0.tgz#dbb3518d20b726524e4dd43de397eb0a95726961"
+ integrity sha512-vy7ClnArOZwCnqZgvv+ddgHgJiAFXe3Ge9ML5/mBctVJoUoYPCdxVucOywjDARn6CVoh3dRSFdPHy2sX80L0Wg==
htmlparser2@^3.10.0:
version "3.10.1"
@@ -2700,9 +2708,9 @@ http-proxy-agent@^4.0.1:
debug "4"
https-proxy-agent@^5.0.0:
- version "5.0.0"
- resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-5.0.0.tgz#e2a90542abb68a762e0a0850f6c9edadfd8506b2"
- integrity sha512-EkYm5BcKUGiduxzSt3Eppko+PiNWNEpa4ySk9vTC6wDsQJW9rHSa+UhGNJoRYp7bz6Ht1eaRIa6QaJqO5rCFbA==
+ version "5.0.1"
+ resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz#c59ef224a04fe8b754f3db0063a25ea30d0005d6"
+ integrity sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==
dependencies:
agent-base "6"
debug "4"
@@ -2819,9 +2827,9 @@ is-buffer@^2.0.0:
integrity sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==
is-core-module@^2.5.0, is-core-module@^2.8.1:
- version "2.8.1"
- resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.8.1.tgz#f59fdfca701d5879d0a6b100a40aa1560ce27211"
- integrity sha512-SdNCUs284hr40hFTFP6l0IfZ/RSrMXF3qgoRHd3/79unUTvrFO/JoXwkGm+5J/Oe3E/b5GsnG330uUNgRpu1PA==
+ version "2.9.0"
+ resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.9.0.tgz#e1c34429cd51c6dd9e09e0799e396e27b19a9c69"
+ integrity sha512-+5FPy5PnwmO3lvfMb0AsoPaBG+5KHUI0wYFXOtYPnVVVspTFUuMZNfNaNVRt3FZadstu2c8x23vykRW/NBoU6A==
dependencies:
has "^1.0.3"
@@ -2862,11 +2870,6 @@ is-number@^7.0.0:
resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b"
integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==
-is-observable@^2.1.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/is-observable/-/is-observable-2.1.0.tgz#5c8d733a0b201c80dff7bb7c0df58c6a255c7c69"
- integrity sha512-DailKdLb0WU+xX8K5w7VsJhapwHLZ9jjmazqCJq4X12CTgqq73TKnbRcnSLuXYPOoLQgV5IrD7ePiX/h1vnkBw==
-
is-plain-obj@^1.1.0:
version "1.1.0"
resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e"
@@ -2913,9 +2916,9 @@ istanbul-lib-coverage@^3.0.0, istanbul-lib-coverage@^3.2.0:
integrity sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==
istanbul-lib-instrument@^5.0.4, istanbul-lib-instrument@^5.1.0:
- version "5.1.0"
- resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-5.1.0.tgz#7b49198b657b27a730b8e9cb601f1e1bff24c59a"
- integrity sha512-czwUz525rkOFDJxfKK6mYfIs9zBKILyrZQxjz3ABhjQXhbhFsSbo1HW/BFcsDnfJYJWA6thRR5/TUY2qs5W99Q==
+ version "5.2.0"
+ resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.0.tgz#31d18bdd127f825dd02ea7bfdfd906f8ab840e9f"
+ integrity sha512-6Lthe1hqXHBNsqvgDzGO6l03XNeu3CrG4RqQ1KM9+l5+jNGpEJfIELx1NS3SEHmJQA8np/u+E4EPRKRiu6m19A==
dependencies:
"@babel/core" "^7.12.3"
"@babel/parser" "^7.14.7"
@@ -3361,15 +3364,17 @@ jquery-debounce-throttle@^1.0.6-rc.0:
dependencies:
jquery ">=1.7"
-jquery-migrate@3.3.2:
- version "3.3.2"
- resolved "https://registry.yarnpkg.com/jquery-migrate/-/jquery-migrate-3.3.2.tgz#7829ee24de3054d0d2f42dd093390d8a7b7af01a"
- integrity sha512-L3gYhr7yEtLUSAeqXSicVa0vRD4aGwjw/bWY8YzrO2o/qDY1BaMyP3oB3bZf5Auy3Hu9ynliio0CTyDWCBPVDw==
+jquery-migrate@3.4.0:
+ version "3.4.0"
+ resolved "https://registry.yarnpkg.com/jquery-migrate/-/jquery-migrate-3.4.0.tgz#915d6e914c76bd7410a58c86d20fec0052784af9"
+ integrity sha512-K0W02EhZyqjVpyF5pdi+t238cIfQACzMsXiX4AEfEOxPPfiZZFzf3brtFY21FOOEPiWZF4mH04TXHDE6e2YDyg==
-jquery-ui-dist@1.12.1:
- version "1.12.1"
- resolved "https://registry.yarnpkg.com/jquery-ui-dist/-/jquery-ui-dist-1.12.1.tgz#5c0815d3cc6f90ff5faaf5b268a6e23b4ca904fa"
- integrity sha1-XAgV08xvkP9fqvWyaKbiO0ypBPo=
+jquery-ui-dist@1.13.1:
+ version "1.13.1"
+ resolved "https://registry.yarnpkg.com/jquery-ui-dist/-/jquery-ui-dist-1.13.1.tgz#47dcc1bf9cec141221ece59b2c8eaabad846ec0e"
+ integrity sha512-Y711Pu4BRVrAlL58KSxX4ail74jaCJZaZcdNDLava+MgZeNwmVWmyYiK7KxyoJu1MB73eSunjJvYDbOuNrOA7w==
+ dependencies:
+ jquery ">=1.8.0 <4.0.0"
jquery-ui-timepicker-addon@1.6.3:
version "1.6.3"
@@ -3386,7 +3391,7 @@ jquery-validation@1.19.3:
resolved "https://registry.yarnpkg.com/jquery-validation/-/jquery-validation-1.19.3.tgz#50b350eba8b02bcfd119ba15f199487b7eb64086"
integrity sha512-iXxCS5W7STthSTMFX/NDZfWHBLbJ1behVK3eAgHXAV8/0vRa9M4tiqHvJMr39VGWHMGdlkhrtrkBuaL2UlE8yw==
-jquery@3.6.0, jquery@>=1.2.6, jquery@>=1.7:
+jquery@3.6.0, jquery@>=1.2.6, jquery@>=1.7, "jquery@>=1.8.0 <4.0.0":
version "3.6.0"
resolved "https://registry.yarnpkg.com/jquery/-/jquery-3.6.0.tgz#c72a09f15c1bdce142f49dbf1170bdf8adac2470"
integrity sha512-JVzAR/AjBvVt2BmYhxRCSYysDsPcssdmTFnzyLEts9qNwmjmu4JTAMYubEfwVOSwpQ1I1sKKFcxhZCI2buerfw==
@@ -3477,12 +3482,10 @@ json-stringify-pretty-compact@^2.0.0:
resolved "https://registry.yarnpkg.com/json-stringify-pretty-compact/-/json-stringify-pretty-compact-2.0.0.tgz#e77c419f52ff00c45a31f07f4c820c2433143885"
integrity sha512-WRitRfs6BGq4q8gTgOy4ek7iPFXjbra0H3PmDLKm2xnZ+Gh1HUhiKGgCZkSPNULlP7mvfu6FV/mOLhCarspADQ==
-json5@^2.1.2:
- version "2.2.0"
- resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.0.tgz#2dfefe720c6ba525d9ebd909950f0515316c89a3"
- integrity sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA==
- dependencies:
- minimist "^1.2.5"
+json5@^2.2.1:
+ version "2.2.1"
+ resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.1.tgz#655d50ed1e6f95ad1a3caababd2b0efda10b395c"
+ integrity sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==
jsonfile@^6.0.1:
version "6.1.0"
@@ -3534,10 +3537,10 @@ levn@~0.3.0:
prelude-ls "~1.1.2"
type-check "~0.3.2"
-lilconfig@^2.0.4:
- version "2.0.4"
- resolved "https://registry.yarnpkg.com/lilconfig/-/lilconfig-2.0.4.tgz#f4507d043d7058b380b6a8f5cb7bcd4b34cee082"
- integrity sha512-bfTIN7lEsiooCocSISTWXkiWJkRqtL9wYtYy+8EK3Y41qh3mpwPU0ycTOgjdY9ErwXCc8QyrQp82bdL0Xkm9yA==
+lilconfig@^2.0.5:
+ version "2.0.5"
+ resolved "https://registry.yarnpkg.com/lilconfig/-/lilconfig-2.0.5.tgz#19e57fd06ccc3848fd1891655b5a447092225b25"
+ integrity sha512-xaYmXZtTHPAw5m+xLN8ab9C+3a8YmV3asNSPOATITbtwrfbwaLJj8h66H1WMIpALCkqsIzK3h7oQ+PdX+LQ9Eg==
lines-and-columns@^1.1.6:
version "1.2.4"
@@ -3715,24 +3718,24 @@ micromark@~2.11.0:
parse-entities "^2.0.0"
micromatch@^4.0.4:
- version "4.0.4"
- resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.4.tgz#896d519dfe9db25fce94ceb7a500919bf881ebf9"
- integrity sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg==
+ version "4.0.5"
+ resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.5.tgz#bc8999a7cbbf77cdc89f132f6e467051b49090c6"
+ integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==
dependencies:
- braces "^3.0.1"
- picomatch "^2.2.3"
+ braces "^3.0.2"
+ picomatch "^2.3.1"
-mime-db@1.51.0:
- version "1.51.0"
- resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.51.0.tgz#d9ff62451859b18342d960850dc3cfb77e63fb0c"
- integrity sha512-5y8A56jg7XVQx2mbv1lu49NR4dokRnhZYTtL+KGfaa27uq4pSTXkwQkFJl4pkRMyNFz/EtYDSkiiEHx3F7UN6g==
+mime-db@1.52.0:
+ version "1.52.0"
+ resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70"
+ integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==
mime-types@^2.1.12:
- version "2.1.34"
- resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.34.tgz#5a712f9ec1503511a945803640fafe09d3793c24"
- integrity sha512-6cP692WwGIs9XXdOO4++N+7qjqv0rqxxVvJ3VHPh/Sc9mVZcQP+ZGhkKiTvWMQRr2tbHkJP/Yn7Y0npb3ZBs4A==
+ version "2.1.35"
+ resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.35.tgz#381a871b62a734450660ae3deee44813f70d959a"
+ integrity sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==
dependencies:
- mime-db "1.51.0"
+ mime-db "1.52.0"
mimic-fn@^2.1.0:
version "2.1.0"
@@ -3761,9 +3764,9 @@ minimist-options@4.1.0:
kind-of "^6.0.3"
minimist@^1.2.5:
- version "1.2.5"
- resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602"
- integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==
+ version "1.2.6"
+ resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.6.tgz#8637a5b759ea0d6e98702cfb3a9283323c93af44"
+ integrity sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==
ms@2.1.2:
version "2.1.2"
@@ -3771,9 +3774,9 @@ ms@2.1.2:
integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==
nanoid@^3.3.1:
- version "3.3.1"
- resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.1.tgz#6347a18cac88af88f58af0b3594b723d5e99bb35"
- integrity sha512-n6Vs/3KGyxPQd6uO0eH4Bv0ojGSUvuLlIHtC3Y0kEO23YRge8H9x1GCzLn28YX0H66pMkxuaeESFq4tKISKwdw==
+ version "3.3.3"
+ resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.3.tgz#fd8e8b7aa761fe807dba2d1b98fb7241bb724a25"
+ integrity sha512-p1sjXuopFs0xg+fPASzQ28agW1oHD7xDsd9Xkf3T15H3c/cifrFHVwrh74PdoklAPi+i7MdRsE47vm2r6JoB+w==
natural-compare@^1.4.0:
version "1.4.0"
@@ -3785,10 +3788,10 @@ node-int64@^0.4.0:
resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b"
integrity sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs=
-node-releases@^2.0.2:
- version "2.0.2"
- resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.2.tgz#7139fe71e2f4f11b47d4d2986aaf8c48699e0c01"
- integrity sha512-XxYDdcQ6eKqp/YjI+tb2C5WM2LgjnZrfYg4vgQt49EK268b6gYCHsBLrK2qvJo4FmCtqmKezb0WZFK4fkrZNsg==
+node-releases@^2.0.3:
+ version "2.0.4"
+ resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.4.tgz#f38252370c43854dc48aa431c766c6c398f40476"
+ integrity sha512-gbMzqQtTtDz/00jQzZ21PQzdI9PyLYqUSvD0p3naOhX4odFji0ZxYdnVwPTxmSwkmxhcFImpozceidSG+AgoPQ==
normalize-package-data@^2.5.0:
version "2.5.0"
@@ -3842,7 +3845,7 @@ nwsapi@^2.2.0:
resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.0.tgz#204879a9e3d068ff2a55139c2c772780681a38b7"
integrity sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ==
-object-keys@^1.0.12, object-keys@^1.1.1:
+object-keys@^1.1.1:
version "1.1.1"
resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e"
integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==
@@ -3857,27 +3860,22 @@ object.assign@^4.1.0:
has-symbols "^1.0.1"
object-keys "^1.1.1"
-observable-fns@^0.6.1:
- version "0.6.1"
- resolved "https://registry.yarnpkg.com/observable-fns/-/observable-fns-0.6.1.tgz#636eae4fdd1132e88c0faf38d33658cc79d87e37"
- integrity sha512-9gRK4+sRWzeN6AOewNBTLXir7Zl/i3GB6Yl26gK4flxz8BXVpD3kt8amREmWNb0mxYOGDotvE5a4N+PtGGKdkg==
-
-ol-mapbox-style@^6.5.1:
- version "6.9.0"
- resolved "https://registry.yarnpkg.com/ol-mapbox-style/-/ol-mapbox-style-6.9.0.tgz#b9587e390d8cc2037481ecdea53f0a6b9ba1d46c"
- integrity sha512-Isxk+IPB6pCBD2Pubz9cpQcZjEeuPhxyk/QsLZjb2+KwvyGaIFltdlxnxx/QXJ7rOxUiLvS/XhsOyiK0c7prEw==
+ol-mapbox-style@^7.1.1:
+ version "7.1.1"
+ resolved "https://registry.yarnpkg.com/ol-mapbox-style/-/ol-mapbox-style-7.1.1.tgz#cf33c39badd943c25fc438c689bf678f9aa847a2"
+ integrity sha512-GLTEYiH/Ec9Zn1eS4S/zXyR2sierVrUc+OLVP8Ra0FRyqRhoYbXdko0b7OIeSHWdtJfHssWYefDOGxfTRUUZ/A==
dependencies:
"@mapbox/mapbox-gl-style-spec" "^13.20.1"
mapbox-to-css-font "^2.4.1"
webfont-matcher "^1.1.0"
-ol@6.9.0:
- version "6.9.0"
- resolved "https://registry.yarnpkg.com/ol/-/ol-6.9.0.tgz#3e1b39a76f99ede117ad79e66464698d6915df0b"
- integrity sha512-VmU5HKHwO2O1uGgmBcng/dL1PouVB1jKiYUbiXPR5l1i/3B3qatexl4rapZAnsGx0vsOC7lI1GLx7jEZro8C8Q==
+ol@6.14.1:
+ version "6.14.1"
+ resolved "https://registry.yarnpkg.com/ol/-/ol-6.14.1.tgz#8061bdcf7cd67a665fc8e76545442a702cbc7282"
+ integrity sha512-sIcUWkGud3Y2gT3TJubSHlkyMXiPVh1yxfCPHxmY8+qtm79bB9oRnei9xHVIbRRG0Ro6Ldp5E+BMVSvYCxSpaA==
dependencies:
- geotiff "^1.0.8"
- ol-mapbox-style "^6.5.1"
+ geotiff "^2.0.2"
+ ol-mapbox-style "^7.1.1"
pbf "3.2.1"
rbush "^3.0.1"
@@ -3977,9 +3975,9 @@ parse-entities@^2.0.0:
is-hexadecimal "^1.0.0"
parse-headers@^2.0.2:
- version "2.0.4"
- resolved "https://registry.yarnpkg.com/parse-headers/-/parse-headers-2.0.4.tgz#9eaf2d02bed2d1eff494331ce3df36d7924760bf"
- integrity sha512-psZ9iZoCNFLrgRjZ1d8mn0h9WRqJwFxM9q3x7iUjN/YT2OksthDJ5TiPCu2F38kS4zutqfW+YdVVkBZZx3/1aw==
+ version "2.0.5"
+ resolved "https://registry.yarnpkg.com/parse-headers/-/parse-headers-2.0.5.tgz#069793f9356a54008571eb7f9761153e6c770da9"
+ integrity sha512-ft3iAoLOB/MlwbNXgzy43SWGP6sQki2jQvAyBg/zDFAgr9bfNWZIUj42Kw2eJIl8kEi4PbgE6U1Zau/HwI75HA==
parse-json@^5.0.0, parse-json@^5.2.0:
version "5.2.0"
@@ -4039,7 +4037,7 @@ picocolors@^1.0.0:
resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c"
integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==
-picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.2.3:
+picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.2.3, picomatch@^2.3.1:
version "2.3.1"
resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42"
integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==
@@ -4099,11 +4097,11 @@ postcss-less@^3.1.4:
postcss "^7.0.14"
postcss-load-config@^3.0.0:
- version "3.1.3"
- resolved "https://registry.yarnpkg.com/postcss-load-config/-/postcss-load-config-3.1.3.tgz#21935b2c43b9a86e6581a576ca7ee1bde2bd1d23"
- integrity sha512-5EYgaM9auHGtO//ljHH+v/aC/TQ5LHXtL7bQajNAUBKUVKiYE8rYpFms7+V26D9FncaGe2zwCoPQsFKb5zF/Hw==
+ version "3.1.4"
+ resolved "https://registry.yarnpkg.com/postcss-load-config/-/postcss-load-config-3.1.4.tgz#1ab2571faf84bb078877e1d07905eabe9ebda855"
+ integrity sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==
dependencies:
- lilconfig "^2.0.4"
+ lilconfig "^2.0.5"
yaml "^1.10.2"
postcss-media-query-parser@^0.2.3:
@@ -4147,9 +4145,9 @@ postcss-scss@^2.1.1:
postcss "^7.0.6"
postcss-selector-parser@^6.0.2, postcss-selector-parser@^6.0.5:
- version "6.0.9"
- resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.9.tgz#ee71c3b9ff63d9cd130838876c13a2ec1a992b2f"
- integrity sha512-UO3SgnZOVTwu4kyLR22UQ1xZh086RyNZppb7lLAKBFK8a32ttG5i87Y/P3+2bRSjZNyJ1B7hfFNo273tKe9YxQ==
+ version "6.0.10"
+ resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.10.tgz#79b61e2c0d1bfc2602d549e11d0876256f8df88d"
+ integrity sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==
dependencies:
cssesc "^3.0.0"
util-deprecate "^1.0.2"
@@ -4173,9 +4171,9 @@ postcss@^7.0.14, postcss@^7.0.2, postcss@^7.0.21, postcss@^7.0.26, postcss@^7.0.
source-map "^0.6.1"
postcss@^8.3.11, postcss@^8.3.8:
- version "8.4.8"
- resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.8.tgz#dad963a76e82c081a0657d3a2f3602ce10c2e032"
- integrity sha512-2tXEqGxrjvAO6U+CJzDL2Fk2kPHTv1jQsYkSoMeOis2SsYaXRO2COxTdQp99cYvif9JTXaAk9lYGc3VhJt7JPQ==
+ version "8.4.12"
+ resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.12.tgz#1e7de78733b28970fa4743f7da6f3763648b1905"
+ integrity sha512-lg6eITwYe9v6Hr5CncVbK70SoioNQIq81nsaG86ev5hAidQvmOeETBqs7jm43K2F5/Ley3ytDtriImV6TpNiSg==
dependencies:
nanoid "^3.3.1"
picocolors "^1.0.0"
@@ -4243,6 +4241,11 @@ quick-lru@^4.0.1:
resolved "https://registry.yarnpkg.com/quick-lru/-/quick-lru-4.0.1.tgz#5b8878f113a58217848c6482026c73e1ba57727f"
integrity sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==
+quick-lru@^6.1.0:
+ version "6.1.1"
+ resolved "https://registry.yarnpkg.com/quick-lru/-/quick-lru-6.1.1.tgz#f8e5bf9010376c126c80c1a62827a526c0e60adf"
+ integrity sha512-S27GBT+F0NTRiehtbrgaSE1idUAJ5bX8dPAQTdylEyNlrdcH5X4Lz7Edz3DYzecbsCluD5zO8ZNEe04z3D3u6Q==
+
quickselect@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/quickselect/-/quickselect-2.0.0.tgz#f19680a486a5eefb581303e023e98faaf25dd018"
@@ -4327,10 +4330,10 @@ regenerator-runtime@^0.13.4:
resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz#8925742a98ffd90814988d7566ad30ca3b263b52"
integrity sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==
-regenerator-transform@^0.14.2:
- version "0.14.5"
- resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.14.5.tgz#c98da154683671c9c4dcb16ece736517e1b7feb4"
- integrity sha512-eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw==
+regenerator-transform@^0.15.0:
+ version "0.15.0"
+ resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.15.0.tgz#cbd9ead5d77fae1a48d957cf889ad0586adb6537"
+ integrity sha512-LsrGtPmbYg19bcPHwdtmXwbW+TqNvtY4riE3P83foeHRroMbH6/2ddFBfab3t7kbzc7v7p4wbkIecHImqt0QNg==
dependencies:
"@babel/runtime" "^7.8.4"
@@ -4489,9 +4492,9 @@ safe-buffer@~5.2.0:
integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==
sass@^1.42.1:
- version "1.49.9"
- resolved "https://registry.yarnpkg.com/sass/-/sass-1.49.9.tgz#b15a189ecb0ca9e24634bae5d1ebc191809712f9"
- integrity sha512-YlYWkkHP9fbwaFRZQRXgDi3mXZShslVmmo+FVK3kHLUELHHEYrCmL1x6IUjC7wLS6VuJSAFXRQS/DxdsC4xL1A==
+ version "1.51.0"
+ resolved "https://registry.yarnpkg.com/sass/-/sass-1.51.0.tgz#25ea36cf819581fe1fe8329e8c3a4eaaf70d2845"
+ integrity sha512-haGdpTgywJTvHC2b91GSq+clTKGbtkkZmVAb82jZQN/wTy6qs8DdFm2lhEQbEwrY0QDRgSQ3xDurqM977C3noA==
dependencies:
chokidar ">=3.0.0 <4.0.0"
immutable "^4.0.0"
@@ -4514,7 +4517,7 @@ semver@7.0.0:
resolved "https://registry.yarnpkg.com/semver/-/semver-7.0.0.tgz#5f3ca35761e47e05b206c6daff2cf814f0316b8e"
integrity sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==
-semver@7.3.5, semver@^7.2.1, semver@^7.3.2, semver@^7.3.4:
+semver@7.3.5:
version "7.3.5"
resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.5.tgz#0b621c879348d8998e4b0e4be94b3f12e6018ef7"
integrity sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==
@@ -4526,6 +4529,13 @@ semver@^6.0.0, semver@^6.1.1, semver@^6.1.2, semver@^6.3.0:
resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d"
integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==
+semver@^7.2.1, semver@^7.3.2, semver@^7.3.4:
+ version "7.3.7"
+ resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.7.tgz#12c5b649afdbf9049707796e22a4028814ce523f"
+ integrity sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==
+ dependencies:
+ lru-cache "^6.0.0"
+
shebang-command@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea"
@@ -4603,11 +4613,6 @@ source-map-support@^0.5.6:
buffer-from "^1.0.0"
source-map "^0.6.0"
-source-map@^0.5.0:
- version "0.5.7"
- resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"
- integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=
-
source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.1:
version "0.6.1"
resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263"
@@ -4899,30 +4904,11 @@ thenby@^1.3.4:
resolved "https://registry.yarnpkg.com/thenby/-/thenby-1.3.4.tgz#81581f6e1bb324c6dedeae9bfc28e59b1a2201cc"
integrity sha512-89Gi5raiWA3QZ4b2ePcEwswC3me9JIg+ToSgtE0JWeCynLnLxNr/f9G+xfo9K+Oj4AFdom8YNJjibIARTJmapQ==
-threads@^1.7.0:
- version "1.7.0"
- resolved "https://registry.yarnpkg.com/threads/-/threads-1.7.0.tgz#d9e9627bfc1ef22ada3b733c2e7558bbe78e589c"
- integrity sha512-Mx5NBSHX3sQYR6iI9VYbgHKBLisyB+xROCBGjjWm1O9wb9vfLxdaGtmT/KCjUqMsSNW6nERzCW3T6H43LqjDZQ==
- dependencies:
- callsites "^3.1.0"
- debug "^4.2.0"
- is-observable "^2.1.0"
- observable-fns "^0.6.1"
- optionalDependencies:
- tiny-worker ">= 2"
-
throat@^6.0.1:
version "6.0.1"
resolved "https://registry.yarnpkg.com/throat/-/throat-6.0.1.tgz#d514fedad95740c12c2d7fc70ea863eb51ade375"
integrity sha512-8hmiGIJMDlwjg7dlJ4yKGLK8EsYqKgPWbG3b4wjJddKNwc7N7Dpn08Df4szr/sZdMVeOstrdYSsqzX6BYbcB+w==
-"tiny-worker@>= 2":
- version "2.3.0"
- resolved "https://registry.yarnpkg.com/tiny-worker/-/tiny-worker-2.3.0.tgz#715ae34304c757a9af573ae9a8e3967177e6011e"
- integrity sha512-pJ70wq5EAqTAEl9IkGzA+fN0836rycEuz2Cn6yeZ6FRzlVS5IDOkFHpIoEsksPRQV34GDqXm65+OlnZqUSyK2g==
- dependencies:
- esm "^3.2.25"
-
tmpl@1.0.5:
version "1.0.5"
resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.5.tgz#8683e0b902bb9c20c4f726e3c0b69f36518c07cc"
@@ -5169,6 +5155,11 @@ walker@^1.0.7:
dependencies:
makeerror "1.0.12"
+web-worker@^1.2.0:
+ version "1.2.0"
+ resolved "https://registry.yarnpkg.com/web-worker/-/web-worker-1.2.0.tgz#5d85a04a7fbc1e7db58f66595d7a3ac7c9c180da"
+ integrity sha512-PgF341avzqyx60neE9DD+XS26MMNMoUQRz9NOZwW32nPQrF6p77f1htcnjBSEV8BGMKZ16choqUG4hyI0Hx7mA==
+
webfont-matcher@^1.1.0:
version "1.1.0"
resolved "https://registry.yarnpkg.com/webfont-matcher/-/webfont-matcher-1.1.0.tgz#98ce95097b29e31fbe733053e10e571642d1c6c7"
@@ -5307,9 +5298,9 @@ yargs@^16.2.0:
yargs-parser "^20.2.2"
yargs@^17.0.0:
- version "17.3.1"
- resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.3.1.tgz#da56b28f32e2fd45aefb402ed9c26f42be4c07b9"
- integrity sha512-WUANQeVgjLbNsEmGk20f+nlHgOqzRFpiGWVaBrYGYIGANIIu3lWjoyi0fNlFmJkvfhCZ6BXINe7/W2O2bV4iaA==
+ version "17.4.1"
+ resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.4.1.tgz#ebe23284207bb75cee7c408c33e722bfb27b5284"
+ integrity sha512-WSZD9jgobAg3ZKuCQZSa3g9QOJeCCqLoLAykiWgmXnDo9EPnn4RPf5qVTtzgOx66o6/oqhcA5tHtJXpG8pMt3g==
dependencies:
cliui "^7.0.2"
escalade "^3.1.1"